/* Growth Mindset landing page */

.growth-page {
  display: grid;
  gap: 18px;
}

.growth-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 84% 24%, rgba(124, 58, 237, 0.14), transparent 42%),
    radial-gradient(circle at 28% 76%, rgba(139, 92, 246, 0.08), transparent 55%),
    var(--panel);
}

.growth-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--accent-2);
}

.growth-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.growth-hero__lead {
  margin: 16px 0 18px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.growth-hero__visual {
  position: relative;
  min-height: 290px;
}

.growth-hero__visual img {
  position: absolute;
  inset: 10px 0 0 6%;
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.bubble {
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
}

.bubble--a { top: 8%; left: 12%; }
.bubble--b { top: 6%; right: 4%; }
.bubble--c { bottom: 13%; left: 22%; }
.bubble--d { bottom: 10%; right: 8%; }

.growth-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 20px;
}

.feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.feature h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.growth-header {
  text-align: center;
  padding: 8px 0 2px;
}

.growth-header h2 {
  margin: 0 0 4px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.growth-header p {
  margin: 0;
  color: var(--muted);
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.growth-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.growth-card__number {
  margin: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8b5cf6 0%, var(--accent) 100%);
  color: #ffffff !important;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.growth-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.growth-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-subtle);
}

.growth-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.growth-card a {
  margin-top: auto;
  font-weight: 600;
}

.growth-why {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.growth-why__icon img {
  width: 66px;
  height: 66px;
}

.growth-why__copy h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.growth-why__copy p {
  margin: 0;
  color: var(--muted);
}

.growth-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.growth-why__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
}

.growth-why__list img {
  width: 18px;
  height: 18px;
}

.growth-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
}

.growth-cta__copy {
  display: flex;
  align-items: center;
  gap: 12px;
}

.growth-cta__copy img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.growth-cta h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.growth-cta p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .growth-cards {
    grid-template-columns: 1fr;
  }

  .growth-hero {
    grid-template-columns: 1fr;
  }

  .growth-hero__visual {
    min-height: 240px;
  }

  .growth-hero__visual img {
    inset: 8px 0 0 5%;
    width: 90%;
    height: 90%;
  }

  .growth-features {
    grid-template-columns: 1fr;
  }

  .growth-why {
    grid-template-columns: 1fr;
  }
}
