/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #041f3b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================== COLORS ===================== */
:root {
  --navy: #041f3b;
  --navy-light: #0a2d4d;
  --orange: #ff6800;
  --orange-dark: #e05a00;
  --amber: #ffb300;
  --teal: #81e6d9;
  --green: #81e6d9;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #cbd5e0;
  --text: #041f3b;
  --text-muted: #565A7C;
  --red: #e93d3d;
}

/* ===================== UTILITIES ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-teal { color: #81e6d9; }
.text-orange { color: #ff6800; }
.text-white { color: #ffffff; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
}
.btn-primary { background: #ff6800; color: #ffffff; box-shadow: 0 4px 14px rgba(255,104,0,0.4); }
.btn-primary:hover { background: #e05a00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,104,0,0.5); text-decoration: none; color: #fff; }
.btn-secondary { background: transparent; color: #ffffff; border: 2px solid #81e6d9; }
.btn-secondary:hover { background: #81e6d9; color: #041f3b; text-decoration: none; }
.btn-navy { background: #041f3b; color: #ffffff; }
.btn-navy:hover { background: #0a2d4d; transform: translateY(-2px); text-decoration: none; }
.btn-block { display: block; width: 100%; }
.btn-large { padding: 20px 40px; font-size: 1.1rem; }

/* ===================== NAV ===================== */
.main-nav { background: #ffffff; border-bottom: 1px solid #e2e8f0; padding: 0 20px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; height: 68px; gap: 32px; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; flex: 1; }
.nav-links > li > a { color: #041f3b; font-size: 0.9rem; font-weight: 600; padding: 8px 14px; border-radius: 6px; transition: all 0.15s; text-decoration: none; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: #ff6800; background: rgba(255,104,0,0.06); }
.nav-cart { color: #041f3b; padding: 8px; border-radius: 6px; display: flex; align-items: center; transition: color 0.15s; }
.nav-cart:hover { color: #ff6800; }

/* ===================== DROPDOWNS ===================== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 8px 14px; font-size: 0.9rem; font-weight: 600; color: #041f3b; border-radius: 6px; font-family: 'Inter', sans-serif; transition: all 0.15s; white-space: nowrap; }
.nav-dropdown-trigger:hover { color: #ff6800; background: rgba(255,104,0,0.06); }
.nav-dropdown.open .nav-dropdown-trigger { color: #ff6800; background: rgba(255,104,0,0.06); }
.caret { transition: transform 0.2s; }
.nav-dropdown.open .caret { transform: rotate(180deg); }

.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #ffffff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06); border: 1px solid #e2e8f0; padding: 20px; z-index: 200; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.ps-menu { min-width: 680px; }
.resources-menu { min-width: 480px; }

/* ===================== BRAND HERO (homepage + rbt-training) ===================== */
.hero-brand { background: linear-gradient(160deg, #041f3b 0%, #0a2d4d 60%, #0d3a5e 100%); color: #ffffff; padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero-brand::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,179,0,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-brand::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(129,230,217,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero-brand-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.hero-brand-badge { display: inline-block; background: rgba(255,104,0,0.15); border: 1px solid rgba(255,104,0,0.3); color: #ff6800; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; }
.hero-brand h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-brand-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.hero-brand-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== TRUST STRIP ===================== */
.trust-strip { background: #041f3b; padding: 20px 0; }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; }
.trust-icon { width: 20px; height: 20px; border-radius: 50%; background: #81e6d9; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: #041f3b; flex-shrink: 0; }

/* ===================== SERVICE CARDS ===================== */
.services-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .services-grid-4 { grid-template-columns: 1fr; } }
.service-card { background: linear-gradient(135deg, #FAA807 0%, #f77205 100%); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 28px; text-decoration: none; color: inherit; transition: all 0.2s; display: flex; flex-direction: column; position: relative; }
.service-card:hover { border-color: #81e6d9; box-shadow: 0 8px 24px rgba(129,230,217,0.15); transform: translateY(-2px); }
.service-card .service-title { color: #ffffff; }
.service-card .service-desc { color: rgba(255,255,255,0.9); }
.service-card .service-cta { color: #81e6d9; font-size: 0.85rem; font-weight: 700; }
.service-badge { position: absolute; top: 16px; right: 16px; padding: 4px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-new { background: rgba(255,104,0,0.1); color: #ff6800; }
.badge-soon { background: rgba(4,31,59,0.75); color: #ffffff; }
.service-title { font-size: 0.95rem; font-weight: 700; color: #041f3b; margin-bottom: 6px; line-height: 1.3; }
.service-sub { font-size: 0.75rem; color: #565A7C; margin-bottom: 10px; }
.service-desc { font-size: 0.875rem; color: #565A7C; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.service-cta { font-size: 0.85rem; font-weight: 700; color: #ff6800; margin-top: auto; }

/* ===================== MISSION ===================== */
.mission-block { max-width: 800px; margin: 0 auto; text-align: center; }
.mission-text { font-size: 1.1rem; color: #565A7C; line-height: 1.8; font-style: italic; }

/* Products/Services: 2 rows x 3 cols */
.dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.dropdown-item { display: flex; flex-direction: column; padding: 12px 14px; border-radius: 8px; text-decoration: none; transition: background 0.15s; }
.dropdown-item:hover { background: #f5f5f5; }
.dropdown-item-title { font-size: 0.85rem; font-weight: 700; color: #041f3b; line-height: 1.3; }
.dropdown-item-sub { font-size: 0.75rem; color: #565A7C; margin-top: 2px; }

/* Resources: single row */
.dropdown-row { display: flex; gap: 4px; }
.dropdown-row .dropdown-item { flex-direction: row; align-items: center; }
.dropdown-row .dropdown-item-title { font-size: 0.85rem; font-weight: 600; }

/* Mobile: hide desktop nav, show hamburger */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cart { display: none; }
  .main-nav { padding: 0 16px; }
  .nav-inner { height: 56px; }
}

/* ──── Hamburger button (mobile only) ──── */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #041f3b;
  border-radius: 6px;
  transition: color 0.15s;
}
.hamburger-btn:hover { color: #ff6800; }
@media (max-width: 768px) { .hamburger-btn { display: flex; align-items: center; } }

/* ──── Mobile menu overlay ──── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.mobile-menu-overlay.open { display: block; pointer-events: auto; }

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: 1000;
}
.mobile-menu-overlay.open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  pointer-events: auto;
}
.mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #041f3b;
  border-radius: 6px;
}
.mobile-menu-close:hover { color: #ff6800; }

/* ──── Mobile nav links ──── */
.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #041f3b;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.15s;
}
.mobile-nav-link:hover { color: #ff6800; }
.mobile-nav-link.sub {
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 32px;
  color: #565A7C;
}

/* ──── Mobile nav group (expandable) ──── */
.mobile-nav-group .mobile-nav-group-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #041f3b;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-group .mobile-nav-group-trigger:hover { color: #ff6800; }

.mobile-caret {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mobile-nav-group.open .mobile-caret { transform: rotate(180deg); }

/* ──── Mobile submenu ──── */
.mobile-nav-submenu {
  display: none;
  background: #f8f9fa;
}
.mobile-nav-group.open > .mobile-nav-submenu { display: block; }

/* ──── Body scroll lock ──── */
body.menu-open { overflow: hidden; }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(160deg, #041f3b 0%, #0a2d4d 60%, #0d3a5e 100%);
  color: #ffffff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,179,0,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(129,230,217,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hero-badge { display: inline-block; background: rgba(255,179,0,0.15); border: 1px solid rgba(255,179,0,0.3); color: #ffb300; padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .highlight { color: #81e6d9; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin-bottom: 32px; line-height: 1.7; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hero-meta-icon { width: 20px; height: 20px; border-radius: 50%; background: #81e6d9; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #041f3b; flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
.hero-price { font-size: 1rem; color: rgba(255,255,255,0.7); margin-top: 12px; }
.hero-price strong { color: #ffb300; font-size: 1.4rem; }
.hero-trust { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-trust strong { color: rgba(255,255,255,0.9); }

/* ===================== COUNTDOWN ===================== */
.countdown-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; margin-top: 0; }
.countdown-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.countdown-dates { display: flex; gap: 8px; margin-bottom: 16px; }
.countdown-unit { text-align: center; min-width: 64px; }
.countdown-num { font-size: 2rem; font-weight: 800; color: #ffb300; line-height: 1; }
.countdown-unit-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.countdown-sep { font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.2); line-height: 1; padding-top: 4px; }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; }
.section-navy { background: #041f3b; color: #ffffff; }
.section-light { background: #f5f5f5; }
.section-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #ff6800; margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: #565A7C; max-width: 600px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===================== PROBLEM CARDS ===================== */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
#about-problem-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
@media (max-width: 768px) { #about-problem-grid { grid-template-columns: 1fr; max-width: none; } }
.problem-card { background: #ffffff; border-radius: 12px; padding: 28px; border: 1px solid #cbd5e0; transition: transform 0.2s, box-shadow 0.2s; }
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(4,31,59,0.1); }
.problem-icon { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, rgba(255,104,0,0.1), rgba(255,179,0,0.1)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.problem-card p { font-size: 0.95rem; color: #565A7C; line-height: 1.6; }

/* ===================== OFFER / INCLUDES ===================== */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.offer-price-box { background: #041f3b; border-radius: 12px; padding: 28px; color: #ffffff; margin-bottom: 24px; }
.offer-price-box .label { font-size: 0.85rem; color: #81e6d9; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.offer-price-box .price { font-size: 2.5rem; font-weight: 800; }
.offer-price-box .note { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.offer-price-box .guarantee { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #81e6d9; }
.include-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.include-check { width: 24px; height: 24px; border-radius: 50%; background: #81e6d9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 0.75rem; color: #041f3b; }
.include-check.orange { background: #ff6800; color: #ffffff; }
.include-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.include-text span { font-size: 0.9rem; color: #565A7C; }

/* ===================== WEEKLY SCHEDULE ===================== */
.weeks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.week-card { background: #ffffff; border-radius: 12px; padding: 24px; border-left: 4px solid #ff6800; box-shadow: 0 2px 8px rgba(4,31,59,0.06); }
.week-num { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #ff6800; margin-bottom: 6px; }
.week-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.week-card p { font-size: 0.88rem; color: #565A7C; line-height: 1.6; }

/* ===================== INSTRUCTOR ===================== */
.instructor { padding: 80px 0; background: #041f3b; color: #ffffff; }
.instructor-inner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.instructor-photo { width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, #ff6800, #ffb300); display: flex; align-items: center; justify-content: center; font-size: 4rem; font-weight: 800; color: #ffffff; border: 4px solid #81e6d9; flex-shrink: 0; }
img.instructor-photo { object-fit: cover; background: none; font-size: 0; color: inherit; }

/* About page portrait frame — 4:5 to show more of the vertical source photo */
.instructor-photo-about { width: 320px; aspect-ratio: 4 / 5; height: auto; border-radius: 24px; object-fit: cover; object-position: center top; display: block; border: 4px solid #81e6d9; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
@media (max-width: 768px) { .instructor-photo-about { width: 260px; display: block; margin-inline: auto; } }

/* Homepage instructor photo — center on mobile only */
@media (max-width: 768px) {
  .instructor > .instructor-inner > img.instructor-photo {
    display: block;
    margin-inline: auto;
  }
}
.instructor-info h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.instructor-title { color: #81e6d9; font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.instructor-credentials { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 20px; }
.instructor-bio { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; }
.about-credentials { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 16px; }
@media (max-width: 768px) { .about-credentials { justify-content: center; } }
.credential-pill { background: rgba(129,230,217,0.1); border: 1px solid rgba(129,230,217,0.3); color: #81e6d9; padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }

/* ===================== COMPARISON TABLE ===================== */
.comp-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.comp-table th { padding: 14px 20px; text-align: left; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #565A7C; border-bottom: 2px solid #cbd5e0; }
.comp-table th:last-child { text-align: center; }
.comp-table td { padding: 16px 20px; font-size: 0.95rem; border-bottom: 1px solid #cbd5e0; vertical-align: middle; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table td:last-child { text-align: center; }
.comp-table .check { color: #81e6d9; font-size: 1.2rem; }
.comp-table .cross { color: #e93d3d; font-size: 1.2rem; }
.comp-table .highlight-row { background: rgba(255,104,0,0.04); }
.comp-table td:first-child { font-weight: 600; }

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.testimonial-card { background: #ffffff; border-radius: 12px; padding: 28px; border: 1px solid #cbd5e0; box-shadow: 0 2px 8px rgba(4,31,59,0.05); }
.testimonial-stars { color: #ffb300; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; color: #041f3b; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: #041f3b; }
.testimonial-role { font-size: 0.8rem; color: #565A7C; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #cbd5e0; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; font-size: 1.05rem; font-weight: 700; color: #041f3b; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: 'Inter', sans-serif; text-align: left; }
.faq-q-text { flex: 1; }
.faq-toggle { font-size: 1.5rem; color: #ff6800; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-question:hover { color: #ff6800; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer p { font-size: 0.95rem; color: #565A7C; line-height: 1.7; }

/* ===================== FINAL CTA ===================== */
.final-cta { padding: 100px 0; background: linear-gradient(160deg, #041f3b 0%, #0a2d4d 100%); color: #ffffff; text-align: center; }
.final-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.final-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.urgency { display: inline-block; background: rgba(255,104,0,0.15); border: 1px solid rgba(255,104,0,0.3); color: #ff6800; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; }
.cohort-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 32px; }
.cohort-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.85); }

/* ===================== FOOTER ===================== */
.footer { background: #041f3b; border-top: 1px solid rgba(255,255,255,0.08); padding: 40px 0 24px; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer a { color: #81e6d9; }
.footer a:hover { text-decoration: underline; }
.footer-logo { color: #ffffff; font-weight: 700; font-size: 1rem; }
.footer-logo span { color: #81e6d9; }

/* ===================== MISC ===================== */
.notice { background: #fffbeb; border: 1px solid #f59e0b; border-radius: 8px; padding: 16px; font-size: 0.9rem; color: #92400e; margin-top: 16px; }
.notice strong { color: #b45309; }
.ace-badge { border: 2px solid #81e6d9; border-radius: 8px; padding: 16px; background: rgba(129,230,217,0.05); }
.ace-badge strong { color: #81e6d9; font-size: 0.9rem; }
.ace-badge p { font-size: 0.8rem; color: #565A7C; margin-top: 4px; }

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; gap: 16px; align-items: flex-start; }
  .offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .instructor-inner { grid-template-columns: 1fr; text-align: center; }
  .comp-table { font-size: 0.85rem; }
  .comp-table th, .comp-table td { padding: 10px 12px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
