/* ============================================================
   CENTRAL COAST VALUE NETWORK — LANDING PAGE STYLES
   Brand Colors:
   Navy Blue:    #1A3064
   Forest Green: #198A46
   Ocean Blue:   #154990
   Gold/Orange:  #F6A52E
   ============================================================ */

:root {
  --navy:       #1A3064;
  --green:      #198A46;
  --ocean:      #154990;
  --gold:       #F6A52E;
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --light-gray: #EEF1F6;
  --mid-gray:   #6B7280;
  --dark-gray:  #374151;
  --text:       #1F2937;
  --border:     #E5E7EB;
  --shadow:     0 4px 24px rgba(26, 48, 100, 0.10);
  --shadow-lg:  0 12px 48px rgba(26, 48, 100, 0.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.25s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--dark-gray); }

.section-tag {
  display: inline-block;
  background: rgba(25, 138, 70, 0.12);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag-light {
  background: rgba(246, 165, 46, 0.15);
  color: #B87A00;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--mid-gray);
  margin-top: 16px;
  line-height: 1.8;
}

.accent-text { color: var(--green); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  gap: 8px;
}

.btn-large { padding: 16px 36px; font-size: 1rem; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(25, 138, 70, 0.3);
}
.btn-primary:hover {
  background: #147a3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 138, 70, 0.4);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 48, 100, 0.25);
}
.btn-secondary:hover {
  background: #142650;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline-small:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-primary-small {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--green);
  color: var(--white);
  transition: var(--transition);
}
.btn-primary-small:hover {
  background: #147a3c;
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(26,48,100,0.12);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: var(--transition);
}

.nav-links li a:hover { color: var(--navy); background: var(--light-gray); }

.nav-links .nav-cta {
  color: var(--green) !important;
  font-weight: 700 !important;
}

.nav-links .nav-btn {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
}
.nav-links .nav-btn:hover {
  background: #142650 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-bg.png') center center / cover no-repeat;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 48, 100, 0.88) 0%,
    rgba(21, 73, 144, 0.80) 50%,
    rgba(25, 138, 70, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-logos {
  margin-bottom: 32px;
}

.hero-logo-main {
  height: 70px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  max-width: 160px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
}

/* ============================================================
   WHY CLEARPATH
   ============================================================ */
.why-clearpath {
  padding: 100px 0;
  background: var(--white);
}

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.pillar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar-featured {
  background: var(--navy);
  border-color: var(--navy);
}

.pillar-featured h3,
.pillar-featured p {
  color: var(--white);
}

.pillar-featured p { color: rgba(255,255,255,0.85); }

.pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.pillar-icon svg { width: 100%; height: 100%; }

.pillar-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.pillar-card p { font-size: 0.95rem; line-height: 1.75; }

/* Four Cs */
.four-cs {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}

.four-cs-title {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--navy);
}

.four-cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cs-letter {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.cs-item h4 { font-size: 1rem; color: var(--navy); }
.cs-item p { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.5; }

/* ============================================================
   THE OFFER
   ============================================================ */
.the-offer {
  padding: 100px 0;
  background: linear-gradient(160deg, #0D1F3C 0%, #1A3064 60%, #154990 100%);
  color: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.offer-content h2 { color: var(--white); }

.clearpath-logo-wrapper {
  margin: 20px 0 28px;
}

.clearpath-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.offer-description {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.offer-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(25, 138, 70, 0.3);
  border: 1px solid rgba(25, 138, 70, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #6EE7A0;
  margin-top: 2px;
}

.feature-bonus {
  background: rgba(246, 165, 46, 0.2);
  border-color: rgba(246, 165, 46, 0.4);
  color: var(--gold);
}

.offer-features strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.offer-features span {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.offer-ideal {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.offer-ideal h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ideal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ideal-tags span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Timeline Card */
.timeline-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 100px;
}

.timeline-card h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

.step-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  margin-top: 2px;
}

.step-dot-1 { background: var(--gold); }
.step-dot-2 { background: var(--green); }
.step-dot-3 { background: #5B9CF6; }
.step-dot-4 { background: rgba(255,255,255,0.4); }

.step-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.step-content strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.step-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================================
   MEET THE NETWORK
   ============================================================ */
.meet-network {
  padding: 100px 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card-featured {
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(26,48,100,0.18);
}

.team-photo-wrapper {
  height: 280px;
  overflow: hidden;
  background: var(--light-gray);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--ocean));
}

.photo-initials {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.team-info {
  padding: 28px;
}

.team-company-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.team-company {
  color: var(--mid-gray);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

/* Special Advisor */
.special-advisor {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  margin-bottom: 32px;
}

.advisor-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.advisor-content {
  display: flex;
  gap: 28px;
  align-items: center;
}

.advisor-photo-placeholder {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #E8920A);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisor-photo-placeholder .photo-initials {
  font-size: 1.5rem;
  color: var(--white);
}

.advisor-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.advisor-info .team-company { margin-bottom: 8px; }
.advisor-info p { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.7; }

.network-note {
  text-align: center;
  padding: 24px;
  background: rgba(25,138,70,0.06);
  border-radius: var(--radius);
  border: 1px dashed rgba(25,138,70,0.3);
}

.network-note p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================================
   READINESS QUIZ
   ============================================================ */
.quiz-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.quiz-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.quiz-step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-step-header {
  background: var(--navy);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 36px 40px;
  color: var(--white);
  margin-bottom: 0;
}

.quiz-step-tag {
  display: inline-block;
  background: rgba(246,165,46,0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.quiz-step-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.quiz-step-header p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.quiz-scoring-guide {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.quiz-scoring-guide span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

/* Profile Form */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
  border-top: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  background: var(--white);
  padding: 0 40px 32px;
  border: 1px solid var(--border);
  border-top: none;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,48,100,0.08);
}

.form-group textarea { resize: vertical; }

/* Quiz Questions */
.quiz-questions {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 8px 40px 32px;
}

.quiz-question {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.quiz-question:last-child { border-bottom: none; }

.red-flag-question {
  background: rgba(220, 38, 38, 0.03);
  margin: 0 -40px;
  padding: 28px 40px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.red-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.question-text {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.6;
}

.score-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.score-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  color: var(--dark-gray);
  flex: 1;
  min-width: 140px;
}

.score-option:hover {
  border-color: var(--navy);
  background: rgba(26,48,100,0.04);
}

.score-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
}

.score-option:has(input:checked) {
  border-color: var(--green);
  background: rgba(25,138,70,0.08);
  color: var(--navy);
  font-weight: 600;
}

/* Quiz Navigation */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  gap: 16px;
}

.quiz-nav .btn-outline {
  color: var(--mid-gray);
  border-color: var(--border);
}
.quiz-nav .btn-outline:hover {
  color: var(--navy);
  border-color: var(--navy);
  background: rgba(26,48,100,0.05);
}

/* Progress Bar */
.quiz-progress {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--mid-gray);
  white-space: nowrap;
  font-weight: 500;
}

/* Quiz Results */
.quiz-results {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.results-header {
  padding: 48px 48px 36px;
  text-align: center;
}

.results-score-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 6px solid;
}

.score-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.score-total {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

.results-band {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.results-interpretation {
  color: var(--mid-gray);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.results-sections {
  padding: 0 48px 48px;
}

.results-section-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.section-score-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.section-score-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.section-score-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.results-red-flags {
  background: rgba(220,38,38,0.05);
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.results-red-flags h4 {
  color: #DC2626;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.results-red-flags ul {
  list-style: disc;
  padding-left: 20px;
}

.results-red-flags li {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.results-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FAQs
   ============================================================ */
.faqs {
  padding: 100px 0;
  background: var(--white);
}

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

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

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

.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--off-white); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  min-width: 24px;
  text-align: center;
  transition: var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  background: var(--off-white);
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-section {
  padding: 100px 0;
  background: var(--off-white);
}

.events-placeholder {
  display: flex;
  justify-content: center;
}

.event-card-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 560px;
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.event-card-placeholder h3 { margin-bottom: 12px; }
.event-card-placeholder p {
  color: var(--mid-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #0D1F3C 0%, #1A3064 100%);
  color: var(--white);
}

.footer-cta-content { max-width: 1000px; margin: 0 auto; }

.footer-cta-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-cta-logos img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-cta h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.footer-cta > .container > .footer-cta-content > p,
.footer-cta p {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.footer-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-wrapper h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.contact-form .form-group:last-child { margin-bottom: 0; }

.contact-form label {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
  background: rgba(255,255,255,0.12);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

.form-note a { color: var(--gold); text-decoration: underline; }

.contact-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.contact-success h4 { color: var(--white); margin-bottom: 8px; }
.contact-success p { color: rgba(255,255,255,0.75); }

/* CTA Link Cards */
.footer-cta-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.cta-link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--transition);
}

.cta-link-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateX(4px);
}

.cta-link-icon {
  font-size: 1.8rem;
  min-width: 40px;
  text-align: center;
}

.cta-link-card strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cta-link-card span {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #0A1628;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.footer-email a {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-links h4,
.footer-advisors h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-advisors ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer-advisors li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .three-pillars { grid-template-columns: 1fr; }
  .four-cs-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-card { position: static; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 24px; }
  .stat-divider { width: 60px; height: 1px; }

  .team-grid { grid-template-columns: 1fr; }
  .advisor-content { flex-direction: column; text-align: center; }

  .profile-grid { grid-template-columns: 1fr; padding: 24px; }
  .form-group.full-width { padding: 0 24px 24px; }
  .quiz-questions { padding: 8px 24px 24px; }
  .quiz-nav { padding: 20px 24px; flex-direction: column; }
  .quiz-step-header { padding: 28px 24px; }
  .score-options { flex-direction: column; }
  .score-option { min-width: unset; }

  .results-sections { padding: 0 24px 32px; }
  .results-header { padding: 36px 24px 24px; }
  .results-section-scores { grid-template-columns: repeat(2, 1fr); }
  .results-ctas { flex-direction: column; }

  .four-cs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-cta-logos { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .four-cs-grid { grid-template-columns: 1fr; }
  .results-section-scores { grid-template-columns: 1fr 1fr; }
}
