/* ============================================
   THRESHOLD — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0A1628;
  --blue: #0066FF;
  --gold: #C9A84C;
  --off-white: #F5F5F0;
  --charcoal: #1C1C1E;
  --gray-dark: #141414;
  --gray-mid: #2A2A2A;
  --gray-light: #555555;
  --text: #F5F5F0;

  --font: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--charcoal);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.3;
}

p { line-height: 1.7; }

.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--gray-light); }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-sm { padding: 64px 0; }

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 245, 240, 0.7);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--off-white); }

.nav-cta {
  background: var(--blue);
  color: var(--off-white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: opacity var(--transition) !important;
}

.nav-cta:hover { opacity: 0.85; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(245,245,240,0.4);
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(245,245,240,0.4);
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.2s ease;
}

.lang-btn:hover { color: var(--off-white); }
.lang-btn.active { color: var(--gold); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--off-white);
}

.btn-primary:hover {
  background: #0052CC;
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: #B8923C;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(245, 245, 240, 0.3);
}

.btn-outline:hover {
  border-color: var(--off-white);
  background: rgba(245, 245, 240, 0.05);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 10px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { margin-bottom: 24px; }

.hero h1 span { color: var(--blue); }

.hero-sub {
  font-size: 18px;
  color: rgba(245, 245, 240, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}

.stat-card:hover { border-color: rgba(0, 102, 255, 0.3); }

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.4;
}

/* ============================================
   DIVIDER / MARQUEE
   ============================================ */

.divider-bar {
  background: var(--gray-dark);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}

.marquee {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.marquee span.highlight { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem { background: var(--charcoal); }

.section-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-header p {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(245, 245, 240, 0.65);
}

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

.card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(0, 102, 255, 0.25);
  transform: translateY(-4px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.card h3 { margin-bottom: 12px; font-size: 18px; }

.card p { font-size: 15px; color: rgba(245, 245, 240, 0.65); }

/* ============================================
   SOLUTION / PILLARS
   ============================================ */

.solution { background: var(--navy); }

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.pillar-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  border-bottom: 1px solid var(--gray-mid);
  transition: background var(--transition);
}

.pillar-item:last-child { border-bottom: none; }

.pillar-item:hover { background: rgba(255, 255, 255, 0.02); }

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
}

.pillar-name {
  font-size: 18px;
  font-weight: 700;
}

.pillar-desc {
  font-size: 14px;
  color: rgba(245, 245, 240, 0.6);
}

/* ============================================
   CREDENTIALS
   ============================================ */

.credentials { background: var(--charcoal); }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.credentials-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cred-card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px;
}

.cred-card.featured {
  border-color: var(--gold);
  grid-column: span 2;
  background: rgba(201, 168, 76, 0.05);
}

.cred-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.cred-label {
  font-size: 14px;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.4;
}

.credentials-text h2 { margin-bottom: 24px; }

.credentials-text p {
  color: rgba(245, 245, 240, 0.65);
  margin-bottom: 16px;
  font-size: 16px;
}

.achievement-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.achievement-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(245, 245, 240, 0.8);
}

.achievement-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works { background: var(--navy); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--blue), var(--gold));
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 24px;
}

.step h3 { margin-bottom: 12px; font-size: 20px; }

.step p { font-size: 15px; color: rgba(245, 245, 240, 0.6); }

/* ============================================
   PRICING
   ============================================ */

.pricing { background: var(--charcoal); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}

.price-card:hover { border-color: rgba(0, 102, 255, 0.3); }

.price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, var(--gray-dark) 100%);
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--off-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tag {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}

.price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--off-white);
  line-height: 1;
}

.price-amount span {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-light);
}

.price-free {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}

.price-features {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(245, 245, 240, 0.75);
}

.price-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card h3 { font-size: 20px; margin-bottom: 8px; }
.price-card .plan-desc { font-size: 14px; color: var(--gray-light); }

.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: var(--navy);
  text-align: center;
  padding: 120px 0;
}

.final-cta h2 { margin-bottom: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }

.final-cta p {
  font-size: 18px;
  color: rgba(245, 245, 240, 0.65);
  max-width: 500px;
  margin: 0 auto 40px;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.microcopy {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-dark);
  border-top: 1px solid var(--gray-mid);
  padding: 48px 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--off-white); }

.footer-copy {
  font-size: 13px;
  color: var(--gray-light);
}

/* ============================================
   SCORE PAGE
   ============================================ */

.score-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding-top: 100px;
  padding-bottom: 64px;
}

.score-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.score-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.score-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(245, 245, 240, 0.75);
}

.score-features li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
}

.score-visual {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  padding: 32px;
}

.pillar-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pillar-row-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.pillar-row-header span:last-child { color: var(--gray-light); }

.bar-track {
  height: 6px;
  background: var(--gray-mid);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(to right, var(--blue), var(--gold));
}

.score-embed-section {
  background: var(--charcoal);
  padding: 80px 0;
}

.embed-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  overflow: hidden;
}

.embed-header {
  padding: 28px 36px;
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.embed-body {
  padding: 36px;
  min-height: 600px;
}

.tally-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  gap: 16px;
}

.tally-placeholder p {
  color: var(--gray-light);
  font-size: 15px;
  max-width: 400px;
}

.tally-placeholder .step-badge {
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   RESULTADO PAGE
   ============================================ */

.resultado-hero {
  background: var(--navy);
  padding: 120px 0 80px;
  text-align: center;
}

.score-display {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}

.score-big {
  font-size: 96px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.score-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 8px;
}

.perfil-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 100px;
  margin-top: 16px;
}

.score-bar-track {
  width: 320px;
  max-width: 100%;
  height: 8px;
  background: var(--gray-mid);
  border-radius: 100px;
  margin: 20px auto 0;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--blue), var(--gold));
  border-radius: 100px;
  transition: width 1s ease;
}

.resultado-breakdown {
  background: var(--charcoal);
  padding: 80px 0;
}

.breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.breakdown-row {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  gap: 20px;
  align-items: center;
}

.breakdown-name {
  font-size: 14px;
  font-weight: 600;
}

.breakdown-track {
  height: 8px;
  background: var(--gray-mid);
  border-radius: 100px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  background: linear-gradient(to right, var(--blue), var(--gold));
  border-radius: 100px;
  transition: width 1s ease;
}

.breakdown-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}

.perfil-section {
  background: var(--navy);
  padding: 80px 0;
}

.perfil-content {
  max-width: 720px;
  margin: 0 auto;
}

.perfil-block { display: none; }
.perfil-block.active { display: block; }

.perfil-block h2 { margin-bottom: 24px; }

.perfil-block .gap-box {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
}

.perfil-block .gap-box p {
  font-size: 15px;
  color: rgba(245, 245, 240, 0.8);
}

.perfil-block .gap-box strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.resultado-cta {
  background: var(--charcoal);
  padding: 80px 0;
  text-align: center;
}

.resultado-cta h2 { margin-bottom: 16px; }
.resultado-cta p { color: var(--gray-light); margin-bottom: 36px; }

/* Lead capture form */
.lead-form {
  max-width: 480px;
  margin: 48px auto 0;
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}

.lead-form h3 { margin-bottom: 8px; font-size: 18px; }
.lead-form p { font-size: 14px; color: var(--gray-light); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(245, 245, 240, 0.8);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--charcoal);
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  color: var(--off-white);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group input::placeholder { color: var(--gray-light); }

.lead-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================
   PROGRAMA PAGE
   ============================================ */

.programa-hero {
  background: var(--navy);
  padding: 140px 0 80px;
}

.programa-hero h1 { margin-bottom: 20px; }

.programa-hero p {
  font-size: 18px;
  color: rgba(245, 245, 240, 0.65);
  max-width: 540px;
  margin-bottom: 36px;
}

.curriculum { background: var(--charcoal); }

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.curriculum-card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px;
}

.curriculum-card .pillar-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.curriculum-card h3 { margin-bottom: 12px; font-size: 20px; }

.curriculum-card p {
  font-size: 14px;
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 20px;
}

.curriculum-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.curriculum-card ul li {
  font-size: 14px;
  color: rgba(245, 245, 240, 0.7);
  display: flex;
  gap: 8px;
}

.curriculum-card ul li::before {
  content: '→';
  color: var(--blue);
  flex-shrink: 0;
}

.faq { background: var(--navy); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
  overflow: hidden;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(255, 255, 255, 0.02); }

.faq-icon {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: rgba(245, 245, 240, 0.65);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   PHOTO COMPONENTS
   ============================================ */

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.97) 0%, transparent 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 12px;
  color: rgba(245, 245, 240, 0.6);
  margin-top: 4px;
  line-height: 1.3;
}

/* Credentials photo */
.credentials-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.credentials-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.credentials-photo-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cred-stat {
  font-size: 14px;
  color: rgba(245, 245, 240, 0.75);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cred-stat span {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

/* Programa hero */
.programa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.programa-hero-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.programa-hero-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-photo { height: 360px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .credentials-photo img { height: 400px; }
  .programa-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .programa-hero-photo { order: -1; }
  .programa-hero-photo img { height: 320px; }
  .score-hero .container { grid-template-columns: 1fr; }
  .pillar-item { grid-template-columns: 40px 1fr; }
  .pillar-desc { display: none; }
  .breakdown-row { grid-template-columns: 160px 1fr 50px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .credentials-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .breakdown-row { grid-template-columns: 1fr; }
  .breakdown-name { font-size: 13px; }
  .footer .container { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}
