/* Growth stage determination */
@font-face { font-family: Poppins; font-weight: 400; font-display: swap; src: url(../../fonts/poppins-400.ttf) format("truetype"); }
@font-face { font-family: Poppins; font-weight: 700; font-display: swap; src: url(../../fonts/poppins-700.ttf) format("truetype"); }
@font-face { font-family: Poppins; font-weight: 900; font-display: swap; src: url(../../fonts/poppins-900.ttf) format("truetype"); }

.growth-stage { padding: 10px; }
.gs-hero { padding: 120px 30px 50px; background: #4a228c; color: #fff; font-family: Poppins, Arial, sans-serif; }
.gs-hero__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; max-width: 1200px; margin: auto; }
.gs-hero__inner > * { flex: 1; min-width: 320px; }
.gs-hero__copy { display: flex; flex-direction: column; justify-content: center; }
.gs-badge { display: flex; align-self: flex-start; align-items: center; gap: 8px; margin-bottom: 20px; padding: 8px 16px; border-radius: 20px; background: #000; font-size: 14px; font-weight: 700; }
.gs-badge span { width: 10px; height: 10px; border-radius: 50%; background: red; }
.gs-hero h1 { margin: 0 0 10px; color: #ffd700; font-size: clamp(32px, 5vw, 44px); font-weight: 900; line-height: 1.2; letter-spacing: -.05em; }
.gs-hero__sub { margin-bottom: 60px; font-size: 18px; opacity: .9; }
.gs-fee { display: inline-block; margin-bottom: 15px; padding: 8px 16px; border-radius: 8px; background: #fff; color: #4a228c; font-size: 19px; font-weight: 700; }
.gs-offer { display: inline-block; margin-bottom: 40px; padding: 12px 24px; border-radius: 8px; background: #ffd700; color: #4a228c; font-size: clamp(24px, 4.8vw, 32px); font-weight: 900; animation: gs-pulse 2s infinite; }
@keyframes gs-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, .7); }
  70% { transform: scale(1.05); box-shadow: 0 0 10px 20px rgba(255, 215, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.gs-join { display: inline-flex; align-self: flex-start; align-items: center; gap: 10px; margin-bottom: 50px; padding: 15px 40px; border-radius: 10px; background: #000; font-size: 20px; font-weight: 700; }
.gs-join span { font-size: 24px; }
.gs-hero__media { position: relative; display: flex; flex-direction: column; align-items: center; }
.gs-diagrams { align-self: flex-start; width: 100%; max-width: 450px; margin-bottom: 20px; border-radius: 15px; }
.gs-character { align-self: flex-start; position: relative; z-index: 1; width: 100%; max-width: 200px; }
.gs-questions {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin-top: -80px;
  padding: 120px 25px 25px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 15px;
  background: rgba(74, 34, 140, .5);
  backdrop-filter: blur(5px);
  line-height: 1.6;
}
.gs-questions li { display: flex; margin-bottom: 15px; padding-left: 34px; }
.gs-questions li:last-child { margin-bottom: 0; }
.gs-questions li::before { top: 10px; width: 10px; height: 10px; background: #fff; }
.gs-questions li::after {
  content: "";
  flex: none;
  order: -1;
  width: 20px;
  height: 20px;
  margin: 2px 10px 0 0;
  background: #ffd700;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / contain no-repeat;
}
