/* THE AMERICAN GIRL™ - DESIGN SYSTEM & STYLES */
:root {
  /* Brand Color Palette */
  --navy-dark: #0A1628;
  --navy-primary: #12233E;
  --navy-light: #1D3557;
  --navy-surface: #243E63;
  --cream-bg: #FAF8F5;
  --cream-card: #FFFFFF;
  --cream-dark: #F2EDE4;
  --beige-neutral: #E8E2D5;
  --coral-primary: #E64C42;
  --coral-hover: #D43F35;
  --coral-light: #FDEEEB;
  --gold-accent: #D4AF37;
  --gold-light: #FFF8E7;
  --blue-soft: #E9F2F9;
  --blue-accent: #3A86C8;
  --text-primary: #1E293B;
  --text-muted: #5A6A80;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  --border-subtle: #E2DBD0;
  --border-focus: #12233E;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 22, 40, 0.12);
  --shadow-coral: 0 8px 24px rgba(230, 76, 66, 0.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-primary);
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-cream {
  background-color: var(--cream-bg);
}

.section-warm {
  background-color: var(--cream-dark);
}

.section-navy {
  background-color: var(--navy-dark);
  color: var(--text-white);
}

.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
  color: var(--text-white);
}

.section-navy p {
  color: #B2C3D9;
}

/* Top Announcement Bar */
.top-bar {
  background: var(--navy-dark);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.top-bar .flag {
  font-size: 1rem;
}

.top-bar a {
  color: #FFB703;
  text-decoration: underline;
  font-weight: 700;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  border: 2px solid var(--gold-accent);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--navy-primary);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-primary);
  font-weight: 700;
}

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

.nav-item a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  transition: var(--transition);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-item a:hover {
  color: var(--coral-primary);
  background: rgba(18, 35, 62, 0.06);
  transform: translateY(-1px);
}

.nav-item.active a {
  color: var(--navy-primary);
  background: #EFEBE4;
  font-weight: 700;
}

.nav-item.active a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 800;
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral-primary) 0%, #F0584F 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  background: linear-gradient(135deg, var(--coral-hover) 0%, var(--coral-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 76, 66, 0.38);
}

.btn-navy {
  background: var(--navy-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--navy-surface);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-primary);
  border: 2px solid var(--navy-primary);
}

.btn-outline-navy:hover {
  background: var(--navy-primary);
  color: #FFFFFF;
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--navy-primary);
}

.btn-gold {
  background: linear-gradient(135deg, #E5B842 0%, #D4AF37 100%);
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F0C450 0%, #DFB73E 100%);
  transform: translateY(-2px);
}

/* Badge & Tag */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-gold {
  background: var(--gold-light);
  color: #8C6D1F;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.badge-coral {
  background: var(--coral-light);
  color: var(--coral-primary);
  border: 1px solid rgba(230, 76, 66, 0.3);
}

.badge-blue {
  background: var(--blue-soft);
  color: var(--navy-light);
  border: 1px solid rgba(29, 53, 87, 0.2);
}

.badge-navy {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-pretitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 80px 0;
  background: radial-gradient(circle at 80% 20%, rgba(233, 242, 249, 0.8) 0%, rgba(250, 248, 245, 1) 60%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--navy-primary);
}

.hero-headline .highlight-coral {
  color: var(--coral-primary);
}

.hero-subheadline {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 500;
}

.hero-secondary-line {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-wrap: wrap;
}

.hero-trust-bar span.dot {
  color: var(--coral-primary);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-floating-badge .avatar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-floating-badge .badge-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy-primary);
}

.hero-floating-badge .badge-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SECTION 2: THE PROBLEM */
.problem-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.problem-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--coral-primary);
}

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

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.problem-icon-cross {
  color: var(--coral-primary);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-solution-card {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.problem-solution-card h4 {
  color: #FFD166;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.problem-solution-card p {
  color: #D3E0EA;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* SECTION 3: SITUATION CARDS */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.situation-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.situation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}

.situation-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.situation-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.situation-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.situation-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral-primary);
  letter-spacing: 0.05em;
}

/* SECTION 4: BRAND DIFFERENTIATOR */
.diff-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.diff-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.diff-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.diff-copy-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-primary);
}

.diff-bullet span.dot-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral-primary);
}

.founder-signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-primary);
}

.founder-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SECTION 5: THE A.M.E.R.I.C.A.™ METHOD */
.method-timeline {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 44px;
}

/* Row 1: 4 cards (span 3 each = 12 cols) */
.method-timeline .method-card:nth-child(1),
.method-timeline .method-card:nth-child(2),
.method-timeline .method-card:nth-child(3),
.method-timeline .method-card:nth-child(4) {
  grid-column: span 3;
}

/* Row 2: 3 cards (span 4 each = 12 cols, perfectly balanced!) */
.method-timeline .method-card:nth-child(5),
.method-timeline .method-card:nth-child(6),
.method-timeline .method-card:nth-child(7) {
  grid-column: span 4;
}

.method-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.method-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.method-letter-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0A1628 0%, #1A3459 100%);
  color: #FFD166;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(10, 22, 40, 0.3);
  border: 2px solid #E6C875;
}

.method-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0F1E36 !important; /* Force visible crisp navy text */
  margin-bottom: 10px;
  line-height: 1.25;
}

.method-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569 !important; /* Force readable dark slate text */
  font-weight: 500;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .method-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .method-timeline .method-card:nth-child(1),
  .method-timeline .method-card:nth-child(2),
  .method-timeline .method-card:nth-child(3),
  .method-timeline .method-card:nth-child(4),
  .method-timeline .method-card:nth-child(5),
  .method-timeline .method-card:nth-child(6) {
    grid-column: span 1;
  }
  .method-timeline .method-card:nth-child(7) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .method-timeline {
    grid-template-columns: 1fr;
  }
  .method-timeline .method-card:nth-child(n) {
    grid-column: span 1;
  }
}

/* SECTION 6: FREE QUIZ PROMOTION CARD */
.quiz-promo-banner {
  background: linear-gradient(135deg, #0D1D35 0%, #172F54 50%, #203E6C 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.quiz-promo-banner::before {
  content: '🇺🇸';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 16rem;
  opacity: 0.06;
  pointer-events: none;
}

.quiz-promo-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.quiz-promo-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.quiz-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px 0;
}

.quiz-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #E2E8F0;
  font-weight: 600;
}

.quiz-bullet-item svg {
  color: #FFD166;
  flex-shrink: 0;
}

/* SECTION 7: FLAGSHIP PROGRAM */
.course-preview-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.course-header-bar {
  background: var(--navy-primary);
  color: #FFFFFF;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.course-body {
  padding: 40px;
}

.course-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--cream-bg);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.feature-check svg {
  color: #10B981;
  flex-shrink: 0;
}

/* SECTION 8: BEFORE AND AFTER */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.state-col {
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--border-subtle);
}

.state-before {
  background: #FFF5F5;
  border-color: #FED7D7;
}

.state-after {
  background: #F0FFF4;
  border-color: #C6F6D5;
}

.state-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.state-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.98rem;
  font-weight: 600;
}

.state-before .state-item {
  color: #9B2C2C;
}

.state-after .state-item {
  color: #22543D;
}

/* SECTION 9: CHOOSE HOW YOU WANT TO LEARN (4 OFFER CARDS) */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 36px 26px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}

.offer-card.featured-offer {
  border: 2px solid var(--coral-primary);
  box-shadow: var(--shadow-md);
}

.offer-badge {
  position: absolute;
  top: -12px;
  right: 20px;
}

.offer-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.offer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.offer-price-tag {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 16px;
}

.offer-price-tag span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.offer-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* SECTION 10: WORK SECTION */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.work-topics-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px 0;
}

.work-topic-badge {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SECTION 11: CULTURE */
.culture-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.culture-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.culture-question-btn {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.culture-answer {
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  border-top: 1px solid var(--cream-dark);
  display: block;
}

/* SECTION 12: BOOKS & RESOURCES */
.book-showcase-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.book-mockup-wrapper {
  text-align: center;
}

.book-mockup-wrapper img {
  max-height: 440px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* SECTION 13: MEET ERIN */
.about-erin-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

/* SECTION 14: EMAIL CAPTURE */
.email-capture-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  max-width: 900px;
  margin: 0 auto;
}

.email-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  margin-top: 24px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 3px rgba(18, 35, 62, 0.1);
}

/* FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.final-cta-section h2 {
  color: #FFFFFF;
  font-size: 2.8rem;
  max-width: 820px;
  margin: 0 auto 20px auto;
}

.final-cta-section p {
  color: #C3D5EC;
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

/* QUIZ ENGINE STYLES (Pages 2, 3, 4) */
.quiz-container-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  max-width: 820px;
  margin: 30px auto;
  position: relative;
}

.quiz-progress-track {
  width: 100%;
  height: 8px;
  background: var(--cream-dark);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 28px;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-light) 0%, var(--coral-primary) 100%);
  width: 10%;
  transition: width 0.3s ease;
}

.quiz-step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.quiz-situation-pill {
  background: var(--blue-soft);
  color: var(--navy-primary);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 4px solid var(--blue-accent);
}

.quiz-question-title {
  font-size: 1.45rem;
  margin-bottom: 24px;
  color: var(--navy-primary);
}

/* Audio Pronunciation Button */
.audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-bg);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-primary);
  cursor: pointer;
  margin-bottom: 24px;
  transition: var(--transition);
}

.audio-btn:hover {
  background: var(--blue-soft);
  border-color: var(--blue-accent);
}

.audio-btn svg {
  color: var(--coral-primary);
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.quiz-option-btn {
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  border: 2px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}

.quiz-option-btn:hover {
  border-color: var(--navy-light);
  background: #F8FAFC;
}

.quiz-option-btn.selected {
  border-color: var(--coral-primary);
  background: var(--coral-light);
  color: var(--navy-primary);
}

.quiz-option-letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy-primary);
  flex-shrink: 0;
}

.quiz-option-btn.selected .quiz-option-letter {
  background: var(--coral-primary);
  color: #FFFFFF;
}

/* QUIZ RESULTS PAGE */
.results-score-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 36px;
}

.score-circle-large {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 6px solid var(--gold-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.05);
}

.score-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
}

.score-denominator {
  font-size: 0.8rem;
  color: #A0B6D1;
  font-weight: 600;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.pillar-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.pillar-name-wrap {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar-bar-track {
  width: 100%;
  height: 6px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
}

.pillar-bar-fill {
  height: 100%;
  background: var(--coral-primary);
  border-radius: 4px;
}

/* STARTER PACK SALES & ORDER BUMP */
.starter-pack-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 2px solid var(--navy-primary);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  margin-top: 30px;
}

.starter-price-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: #FFF9E6;
  border: 1px dashed var(--gold-accent);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.starter-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.starter-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
}

/* ORDER BUMP SECTION (ClickFunnels style) */
.order-bump-box {
  background: #FFFBF0;
  border: 2px dashed #D4AF37;
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
  position: relative;
  transition: var(--transition);
}

.order-bump-box:hover {
  background: #FFF7DF;
}

.order-bump-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.order-bump-checkbox {
  width: 24px;
  height: 24px;
  accent-color: var(--coral-primary);
  margin-top: 2px;
  cursor: pointer;
}

.bump-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--coral-primary);
}

.bump-badge {
  background: var(--coral-primary);
  color: #FFFFFF;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  margin-left: 8px;
  text-transform: uppercase;
}

/* COURSE CURRICULUM ACCORDION (10 Modules) */
.module-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}

.module-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.module-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  background: #FDFDFD;
}

.module-header:hover {
  background: #F8FAFC;
}

.module-body {
  padding: 16px 20px 20px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--cream-dark);
}

/* CONVERSATION CLUB & MIAMI PAGES */
.club-schedule-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}

.schedule-row:last-child {
  border-bottom: none;
}

/* STICKY MOBILE CTA BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-inner {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-sticky-inner .btn {
  flex: 1;
  padding: 12px 14px;
  font-size: 0.85rem;
}

/* FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: #A0B3C9;
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #A0B3C9;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--cream-dark);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--coral-primary);
  color: #FFFFFF;
}

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-primary);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  font-weight: 600;
  font-size: 0.9rem;
  border-left: 4px solid var(--coral-primary);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* PAGE VIEWS MANAGEMENT */
.view-container {
  display: none;
}

.view-container.active-view {
  display: block;
}

/* RESPONSIVE BREAKPOINTS (Mobile-First Emphasis) */
@media (max-width: 992px) {
  .hero-grid,
  .diff-grid,
  .problem-grid,
  .work-grid,
  .book-showcase-grid,
  .about-erin-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0 60px 0;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-image-card img {
    height: 360px;
  }

  .problem-box {
    padding: 30px 20px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .quiz-bullets-grid,
  .work-topics-list,
  .email-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .modal-card {
    padding: 24px;
  }
}
