/* =====================================================
   LET'S GROW — Landing Page CSS
   Background: #000212 | Accent: #46E6FF / #2AB3FF
   Font: Montserrat
   ===================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:        #000212;
  --bg-dark:        #000710;
  --bg-navy:        #00041B;
  --surface-card:   rgba(0, 4, 27, 0.80);
  --cyan-primary:   #46E6FF;
  --cyan-link:      #2AB3FF;
  --cyan-btn-start: #70E1DF;
  --cyan-btn-mid:   #1BC0DF;
  --cyan-btn-end:   #10A0DF;
  --text-white:     #FFFFFF;
  --text-offwhite:  #FAFAFA;
  --text-muted:     rgba(255,255,255,0.55);
  --border-card:    1.6px solid rgba(42, 179, 255, 0.20);
  --radius:         15px;
  --font:           'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg-deep);
  color: var(--text-offwhite);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
s { opacity: 0.55; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTON ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 8px;
  transition: opacity .2s, transform .15s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--cta {
  background: linear-gradient(135deg, var(--cyan-btn-start) 0%, var(--cyan-btn-mid) 50%, var(--cyan-btn-end) 100%);
  color: rgb(0, 4, 28);
  padding: 14px 28px;
  font-size: 15px;
  letter-spacing: .5px;
}
.btn--lg {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 10px;
  letter-spacing: .8px;
}
.btn--full { width: 100%; justify-content: center; }

/* ---- EYEBROW ---- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--cyan-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- SECTION TITLE ---- */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 16px;
}
.section-title strong { font-weight: 800; }

/* ---- SECTION SUBTITLE ---- */
.section-subtitle {
  font-size: 17.6px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ---- DIVIDER LINE (decorativo) ---- */
.divider-line {
  width: 165px;
  height: 6px;
  background: var(--cyan-primary);
  border-radius: 4px;
  margin: 20px 0 28px;
}

/* ---- SECTION DIVIDER (separador entre seções) ---- */
.section-divider {
  width: 165px;
  height: 6px;
  background: rgba(70, 230, 255, 0.35);
  border-radius: 4px;
  margin: 0 auto;
}

/* ---- PLACEHOLDERS ---- */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(70, 230, 255, 0.05);
  border: 1.5px dashed rgba(70, 230, 255, 0.3);
  border-radius: var(--radius);
  color: rgba(70, 230, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.placeholder--hero  { width: 100%; height: 100%; min-height: 620px; border-radius: 0; }
.placeholder--video { width: 100%; height: 420px; }
.placeholder--card  { width: 100%; height: 260px; border-radius: var(--radius) var(--radius) 0 0; }
.placeholder--mentor { width: 100%; height: 480px; border-radius: var(--radius); }
.placeholder--testimonial { width: 100%; height: 200px; }
.placeholder--avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(70,230,255,0.15);
  border: 1.5px dashed rgba(70,230,255,0.4);
  flex-shrink: 0;
}

/* ---- PLAY BUTTON ---- */
.play-btn { cursor: pointer; transition: transform .2s; }
.play-btn:hover { transform: scale(1.08); }
.play-btn--sm svg { width: 44px; height: 44px; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #000710;
}

/* Imagem de fundo (banner completo) */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Gradiente sobre o banner: escurece o lado esquerdo e faz fade suave */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 5, 18, 0.96) 0%,
    rgba(0, 5, 18, 0.88) 35%,
    rgba(0, 5, 18, 0.40) 60%,
    rgba(0, 5, 18, 0.0) 100%
  );
}

/* Layout de duas colunas */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  align-items: center;
  min-height: 100svh;
}

/* Coluna de conteúdo (esquerda) */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 0;
}

/* Logo + texto da logo */
.hero__logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero__logo {
  height: 64px;
  width: auto;
}
.hero__logo-text {
  height: 28px;
  width: auto;
}

/* Badge pill — "EVENTO PRESENCIAL EXCLUSIVO" */
.hero__badge-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 6px 20px;
  margin-bottom: 28px;
}

/* Título principal */
.hero__title {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 20px;
}
.hero__title strong { font-weight: 800; }

/* Subtítulo descritivo */
.hero__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero__subtitle strong { color: var(--text-white); font-weight: 700; }

/* Botão CTA — ciano largo, igual à referência */
.btn--hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--cyan-btn-start) 0%, var(--cyan-btn-mid) 50%, var(--cyan-btn-end) 100%);
  color: rgb(0, 4, 28);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.2px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  margin-bottom: 18px;
}
.btn--hero-cta:hover { opacity: .88; transform: translateY(-2px); }

/* Info do evento abaixo do botão */
.hero__event-info {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* Coluna direita: foto do Willame */
.hero__photo-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  /* Fade suave na borda esquerda para integrar com o texto */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 100%
  );
}

/* ---- RESPONSIVE HERO ---- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }
  .hero__photo-col {
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
  }
  .hero__photo {
    max-width: 100%;
    width: 100%;
  }
  .hero__bg {
    background-position: 70% center;
  }
  .hero__bg::after {
    background: linear-gradient(
      to right,
      rgba(0, 5, 18, 0.97) 0%,
      rgba(0, 5, 18, 0.80) 60%,
      rgba(0, 5, 18, 0.60) 100%
    );
  }
  .btn--hero-cta { max-width: 100%; }
}

/* =====================================================
   TICKER / FAIXA EM MOVIMENTO
   ===================================================== */
.ticker {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan-btn-start) 0%, var(--cyan-btn-mid) 50%, var(--cyan-btn-end) 100%);
  padding: 14px 0;
  position: relative;
}

/* Fade nas bordas esquerda e direita */
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--cyan-btn-start), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--cyan-btn-end), transparent);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }

.ticker__item {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(0, 4, 28);
  white-space: nowrap;
  padding: 0 28px;
}

.ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(0, 4, 28);
  flex-shrink: 0;
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   O QUE É O LET'S GROW
   ===================================================== */
.what-section {
  padding: 100px 0;
  background: linear-gradient(rgb(0, 5, 27) 0%, rgba(70, 230, 255, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

/* Foto de fundo com degradê da esquerda (oculta) para direita (visível) */
.what-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/what-bg.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 45%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 45%, black 100%);
}

.what-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Coluna esquerda */
.what-section__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin-bottom: 24px;
}

.what-section__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Coluna direita: pillar cards */
.what-section__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: transform .2s, box-shadow .2s;
}
.pillar-card:hover {
  transform: translateX(4px);
  box-shadow: 0 0 32px rgba(70, 230, 255, 0.08);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(70, 230, 255, 0.08);
  border: 1px solid rgba(70, 230, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-card__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pillar-card__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .what-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* =====================================================
   FOR WHO
   ===================================================== */
.for-who {
  padding: 100px 0;
  background: linear-gradient(rgb(1, 4, 26) 0%, rgb(0, 5, 27) 100%);
  text-align: center;
}
.for-who .section-subtitle { margin-left: auto; margin-right: auto; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(70,230,255,0.12);
}
.card__body { padding: 24px; }
.card__title {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card__title strong { font-weight: 800; }
.card__text { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* =====================================================
   PRODUTOS / PARA QUEM É
   ===================================================== */
.products-section {
  padding: 100px 0;
  background: linear-gradient(rgb(0, 4, 22) 0%, rgb(0, 2, 18) 100%);
  text-align: center;
}

.products-section__title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.products-section__title strong { font-weight: 800; }

/* Linha ciano central abaixo do título */
.products-divider {
  width: 80px;
  height: 3px;
  background: var(--cyan-primary);
  border-radius: 4px;
  margin: 0 auto 64px;
}

/* Grid dos 3 cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card individual */
.product-card {
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(70, 230, 255, 0.13);
}

/* Traço ciano no topo de cada card */
.product-card__accent {
  position: absolute;
  top: 0;
  left: 28px;
  width: 44px;
  height: 3px;
  background: var(--cyan-primary);
  border-radius: 0 0 4px 4px;
  z-index: 2;
}

/* Imagem */
.product-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.04); }

/* Overlay com gradiente + título sobre a imagem */
.product-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,4,22,0) 35%,
    rgba(0,4,22,0.65) 60%,
    rgba(0,4,22,0.92) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
}
.product-card__img-title {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.25;
  text-align: center;
  width: 100%;
}
.product-card__img-title strong { font-weight: 800; display: block; }

/* Corpo do card (descrição) */
.product-card__body {
  padding: 20px 22px 28px;
}
.product-card__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Placeholder quando não há imagem */
.product-card__img-wrap .placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
}

@media (max-width: 860px) {
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .products-grid { max-width: 100%; }
}

/* =====================================================
   PROG-CARDS (Nossos Produtos — estilo phone card)
   ===================================================== */
.prog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.prog-card {
  background: #080813;
  border: 1.5px solid rgba(70, 230, 255, 0.12);
  border-radius: 22px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(70, 230, 255, 0.10);
  border-color: rgba(70, 230, 255, 0.28);
}
.prog-card:hover::before { opacity: 1; }

/* Header: logo + badge */
.prog-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.prog-card__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.prog-card__brand-lets {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
}
.prog-card__brand-grow {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 1px;
}
.prog-card__brand-sub {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.30);
  text-transform: uppercase;
  margin-top: 2px;
}

.prog-card__badge {
  background: rgba(70, 230, 255, 0.12);
  border: 1px solid rgba(70, 230, 255, 0.30);
  color: var(--cyan-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Body: title + description */
.prog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prog-card__title {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.1;
}
.prog-card__title strong {
  font-weight: 900;
  color: var(--text-white);
}

.prog-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.50);
}

/* Footer: icon button */
.prog-card__footer {}

.prog-card__icon-btn {
  width: 40px;
  height: 40px;
  background: rgba(70, 230, 255, 0.08);
  border: 1px solid rgba(70, 230, 255, 0.20);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.prog-card:hover .prog-card__icon-btn {
  background: rgba(70, 230, 255, 0.16);
  border-color: rgba(70, 230, 255, 0.40);
}

@media (max-width: 900px) {
  .prog-cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .prog-cards-grid { max-width: 100%; }
}

/* =====================================================
   MENTOR
   ===================================================== */
.mentor {
  padding: 100px 0;
  background: linear-gradient(rgb(0, 5, 27) 0%, var(--bg-deep) 100%);
}
.mentor__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mentor__photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.mentor__bio {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.mentor__stats {
  display: flex;
  gap: 36px;
  list-style: none;
}
.mentor__stats li { display: flex; flex-direction: column; }
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan-primary);
  line-height: 1.1;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* =====================================================
   BENEFITS
   ===================================================== */
.benefits {
  padding: 100px 0;
  background: linear-gradient(rgb(0, 5, 28) 0%, rgb(0, 1, 18) 100%);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .2s;
}
.benefit-item:hover { box-shadow: 0 0 40px rgba(70,230,255,0.08); }
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(70,230,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.benefit-text { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(rgb(1, 4, 26) 0%, var(--bg-deep) 100%);
  text-align: center;
}
.testimonials .section-subtitle { margin-left: auto; margin-right: auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  text-align: left;
}
.testimonial-card {
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-video { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 20px 20px 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 20px;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text-white); }
.testimonial-author span { font-size: 12.5px; color: var(--text-muted); }

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  padding: 100px 0;
  background-color: var(--bg-deep);
}
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 0 0 30px rgba(70,230,255,0.07); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-white);
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--cyan-primary); }
.faq-icon { flex-shrink: 0; transition: transform .25s; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 28px 22px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(70,230,255,0.08);
  padding-top: 16px;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(
    329deg,
    rgb(1, 4, 27) 56%,
    rgba(70, 230, 255, 0.04) 100%
  );
}
.pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pricing__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.pricing__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-offwhite);
}

.pricing__card {
  background: var(--surface-card);
  border: var(--border-card);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 0 80px rgba(70,230,255,0.08);
}
.pricing__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgb(0,4,28);
  background: linear-gradient(135deg, var(--cyan-btn-start), var(--cyan-btn-end));
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.pricing__label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing__currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 10px;
}
.pricing__amount {
  font-size: 72px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}
.pricing__cents {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 10px;
}
.pricing__installments {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing__installments strong { color: var(--cyan-primary); }
.pricing__security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}
.pricing__methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.pricing__methods span {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-link);
  border: 1px solid rgba(42,179,255,0.3);
  border-radius: 6px;
  padding: 4px 10px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-navy);
  border-top: 1px solid rgba(70,230,255,0.1);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__logo { height: 36px; opacity: .8; }
.footer__copy { font-size: 13px; color: var(--text-muted); }
.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__links a:hover { color: var(--cyan-primary); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
  .header__cta { display: none; }

  .hero__content { max-width: 100%; padding-top: 48px; }

  .mentor__inner { grid-template-columns: 1fr; gap: 40px; }
  .mentor__image-col { order: -1; }
  .mentor__stats { flex-wrap: wrap; gap: 24px; }

  .pricing__inner { grid-template-columns: 1fr; gap: 40px; }

  .benefits-grid { grid-template-columns: 1fr; }

  .cards-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .section-subtitle { font-size: 16px; }

  .pricing__amount { font-size: 56px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 26px; }
  .btn--lg { padding: 16px 24px; font-size: 15px; }
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .faq-answer { padding: 0 20px 18px; padding-top: 14px; }
}
