/* ═══════════════════════════════════════
   ACADSORT — Global Stylesheet
   ═══════════════════════════════════════ */

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

:root {
  --ink: #1a1a2e;
  --ink-light: #3d3d5c;
  --ink-muted: #6b6b8a;
  --cream: #faf9f6;
  --cream-warm: #f5f0e8;
  --accent: #b5342b;
  --accent-light: #d94a40;
  --accent-glow: rgba(181, 52, 43, 0.07);
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.12);
  --white: #ffffff;
  --border: rgba(26, 26, 46, 0.08);
  --border-md: rgba(26, 26, 46, 0.12);
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.06);
  --shadow-md: 0 4px 24px rgba(26,26,46,0.08);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --max-w: 1180px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 34px; height: 34px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.95rem;
  font-family: var(--font-body);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > a, .nav-dropdown-trigger {
  font-size: 0.88rem; font-weight: 500; color: var(--ink-muted);
  transition: color 0.2s; letter-spacing: 0.01em;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.nav-links > a:hover, .nav-dropdown-trigger:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 100px;
  font-weight: 600 !important; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px 0; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink-light);
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--cream); color: var(--accent);
}

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  position: absolute; left: 5px; transition: 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 9px; }
.mobile-toggle span:nth-child(2) { top: 15px; }
.mobile-toggle span:nth-child(3) { top: 21px; }
.mobile-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px;
  height: 100vh; background: var(--white);
  z-index: 999; transition: right 0.35s ease;
  padding: 88px 24px 24px;
  box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-section { margin-bottom: 24px; }
.mobile-menu-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 12px;
}
.mobile-menu-section a {
  display: block; padding: 10px 0;
  font-size: 1rem; font-weight: 500; color: var(--ink-light);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-cta {
  display: block; text-align: center;
  background: var(--accent); color: white !important;
  padding: 14px 24px; border-radius: 100px;
  font-weight: 600; margin-top: 16px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 15px 30px; border-radius: 100px;
  font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(181,52,43,0.2);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181,52,43,0.28);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 15px 30px; border-radius: 100px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid var(--border-md); cursor: pointer;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--ink); background: var(--white); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 110px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 500px at 85% 20%, var(--gold-soft) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, var(--accent-glow) 0%, transparent 70%);
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-soft); border: 1px solid rgba(201,168,76,0.2);
  padding: 7px 18px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: #9a7d2e;
  margin-bottom: 24px; letter-spacing: 0.03em; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.18; color: var(--ink);
  margin-bottom: 20px; font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.08rem; color: var(--ink-muted);
  max-width: 520px; margin-bottom: 36px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 0.88rem; color: var(--ink-muted);
}
.hero-trust-item strong {
  font-size: 1.1rem; color: var(--ink); display: block;
  font-family: var(--font-display); font-weight: 700;
}
.hero-trust-divider {
  width: 1px; height: 32px; background: var(--border-md);
}

/* Hero stats card */
.hero-stats-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.stats-header {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 28px; color: var(--ink);
}
.stat-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-of-type { padding-top: 0; }
.stat-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; text-align: center; }
.stat-info { flex: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--ink); line-height: 1.1;
}
.stat-label { font-size: 0.82rem; color: var(--ink-muted); margin-top: 2px; }

/* ─── SECTION COMMONS ─── */
section { padding: 96px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.25; color: var(--ink);
  margin-bottom: 16px; font-weight: 700;
}
.section-desc {
  font-size: 1.02rem; color: var(--ink-muted);
  max-width: 560px; line-height: 1.8;
}

/* ─── PROGRAMS GRID ─── */
.programs { background: var(--white); }
.programs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.programs-grid .program-card:last-child {
  grid-column: 1 / -1;
}
.program-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s;
  position: relative;
  display: block;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(181,52,43,0.12);
}
.program-card-accent {
  height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.program-card:hover .program-card-accent { transform: scaleX(1); }
.program-card-content { padding: 36px 32px; }
.program-icon { font-size: 2rem; margin-bottom: 14px; }
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; margin-bottom: 10px; font-weight: 600;
}
.program-card p {
  font-size: 0.92rem; color: var(--ink-muted);
  line-height: 1.7; margin-bottom: 18px;
}
.program-highlights {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.program-stat {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; color: var(--ink-light);
}
.program-stat strong { color: var(--ink); }
.program-subjects {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.program-subjects span {
  background: rgba(181,52,43,0.06);
  color: var(--accent);
  padding: 3px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}
.program-link {
  font-size: 0.88rem; font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

/* ─── WHY SECTION ─── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--accent);
  opacity: 0.15; line-height: 1; margin-bottom: 14px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; margin-bottom: 10px; font-weight: 600;
}
.why-card p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7; }

/* ─── RESULTS BANNER ─── */
.results-banner {
  background: var(--ink); padding: 88px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.results-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(181,52,43,0.12), transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(201,168,76,0.08), transparent 55%);
}
.results-inner {
  max-width: 980px; margin: 0 auto; position: relative; z-index: 1;
}
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
  margin-bottom: 36px;
}
.result-item { text-align: center; }
.result-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.result-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  margin-top: 8px; line-height: 1.5;
}
.results-cta {
  display: inline-block;
  color: var(--gold); font-weight: 600; font-size: 0.95rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.results-cta:hover { border-color: var(--gold); }

/* ─── METHODOLOGY ─── */
.methodology { background: var(--white); }
.method-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.method-timeline::before {
  content: ''; position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--border);
}
.method-step { text-align: center; position: relative; }
.method-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.method-step-content { }
.method-icon-wrap { font-size: 1.8rem; margin-bottom: 12px; }
.method-step h3 {
  font-family: var(--font-display);
  font-size: 1.02rem; margin-bottom: 8px; font-weight: 600;
}
.method-step p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.7; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars {
  color: var(--gold); font-size: 0.85rem;
  margin-bottom: 14px; letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.92rem; color: var(--ink-light);
  line-height: 1.8; flex: 1; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; }
.testimonial-role { font-size: 0.78rem; color: var(--ink-muted); }

/* ─── FOUNDER ─── */
.founder { background: var(--white); }
.founder-card {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 48px; align-items: center;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
}
.founder-img-wrap { position: relative; }
.founder-img {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover;
}
.founder-img-fallback {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-glow), var(--gold-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem; color: var(--accent); font-weight: 700;
}
.founder-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; margin-bottom: 4px; font-weight: 700;
}
.founder-title {
  font-size: 0.9rem; color: var(--accent); font-weight: 600;
  margin-bottom: 18px;
}
.founder-info p {
  font-size: 0.95rem; color: var(--ink-muted);
  line-height: 1.8; margin-bottom: 12px; max-width: 560px;
}
.founder-creds {
  display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap;
}
.founder-cred {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500; color: var(--ink-light);
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
}
.founder-cred::before {
  content: '✓'; width: 18px; height: 18px;
  background: rgba(46,204,113,0.1); color: #2ecc71;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.65rem; flex-shrink: 0;
}

/* ─── FAQ ─── */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 22px 0;
  font-size: 1rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; line-height: 1.5;
}
.faq-toggle {
  font-size: 1.3rem; color: var(--ink-muted);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-answer p {
  font-size: 0.92rem; color: var(--ink-muted); line-height: 1.8;
}

/* ─── BOOKING ─── */
.booking { background: var(--white); }
.booking-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.booking-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.booking-left .section-title { margin-bottom: 16px; }
.booking-left p {
  font-size: 0.95rem; color: var(--ink-muted);
  line-height: 1.8; margin-bottom: 28px;
}
.booking-contact {
  display: flex; flex-direction: column; gap: 12px;
}
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #25D366; font-weight: 600; font-size: 0.92rem;
}
.phone-link {
  font-size: 0.92rem; color: var(--ink-muted); font-weight: 500;
}
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink-light);
}
.form-group input, .form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  font-size: 0.95rem; font-family: var(--font-body);
  background: var(--white);
  transition: border-color 0.2s;
  color: var(--ink);
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-group input::placeholder { color: var(--ink-muted); }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-success {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 12px; min-height: 300px;
}
.form-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(46,204,113,0.1); color: #2ecc71;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.form-success p { color: var(--ink-muted); font-size: 0.92rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.55);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 260px; }
.footer-links-group h4 {
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links-group a {
  display: block; font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0; transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 0.8rem;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 900; transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── SEGMENT PAGE HERO ─── */
.segment-hero {
  padding: 130px 24px 72px;
  position: relative; overflow: hidden;
}
.segment-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.segment-hero .section-label { margin-bottom: 12px; }
.segment-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; margin-bottom: 18px; font-weight: 700;
}
.segment-hero p {
  font-size: 1.05rem; color: var(--ink-muted);
  max-width: 640px; line-height: 1.8;
}

/* Segment results table */
.results-table-wrap {
  overflow-x: auto; margin-top: 32px;
}
.results-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.92rem;
}
.results-table th {
  text-align: left; padding: 14px 20px;
  background: var(--ink); color: var(--white);
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.results-table th:first-child { border-radius: var(--radius) 0 0 0; }
.results-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.results-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.results-table tr:nth-child(even) { background: rgba(0,0,0,0.015); }
.results-table .highlight-row { background: var(--accent-glow); }

/* Segment feature grid */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; margin-bottom: 8px; font-weight: 600;
}
.feature-card p {
  font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7;
}

/* Student achiever cards */
.achievers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 32px;
}
.achiever-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; align-items: flex-start; gap: 14px;
}
.achiever-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.achiever-info h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 3px; }
.achiever-info p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.5; }

/* Curriculum tags */
.curriculum-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.curriculum-tag {
  background: var(--white);
  border: 1px solid var(--border-md);
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600; color: var(--ink-light);
  transition: all 0.2s;
}
.curriculum-tag:hover {
  border-color: var(--accent); color: var(--accent);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; display: flex; justify-content: center; }
  .hero-stats-card { max-width: 400px; }
  .hero { text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .programs-grid { grid-template-columns: 1fr; }
  .programs-grid .program-card:last-child { grid-column: auto; }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .method-timeline { grid-template-columns: repeat(2, 1fr); }
  .method-timeline::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .founder-info p { margin: 0 auto 12px; }
  .founder-creds { justify-content: center; }
  .booking-card { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  section { padding: 64px 16px; }
  .hero { padding: 96px 16px 56px; min-height: auto; }
  .hero-trust-divider { display: none; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .method-timeline { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-num { font-size: 2.4rem; }
  .booking-card { padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .segment-hero { padding: 100px 16px 48px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
