/* ============================================
   PREP4SELL — SHARED STYLESHEET
   Brand: Navy #1B263B + Gold #D4A017 + Forest #355E3B
   Fonts: Montserrat (headings), Lato (body), Merriweather (accent)
============================================ */

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

:root {
  --navy: #1B263B;
  --navy-light: #253550;
  --navy-dark: #111a2a;
  --gold: #D4A017;
  --gold-hover: #e6b02e;
  --gold-dark: #b8890f;
  --forest: #355E3B;
  --forest-light: #4a7a52;
  --soft-white: #F5F6F5;
  --dark-text: #1B263B;
  --body-text: #2a3142;
  --light-text: #5a6275;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Merriweather', serif;

  --shadow-sm: 0 1px 3px rgba(27,38,59,0.08);
  --shadow-md: 0 4px 20px rgba(27,38,59,0.1);
  --shadow-lg: 0 12px 40px rgba(27,38,59,0.12);
  --shadow-gold: 0 4px 20px rgba(212,160,23,0.25);

  --radius: 6px;
  --radius-lg: 12px;

  --section-padding: 96px 0;
  --container-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--soft-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  line-height: 1.2;
}
h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }

p { font-size: 17px; line-height: 1.7; }

.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
  color: var(--light-text);
  max-width: 640px;
  line-height: 1.7;
}

.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

/* ============================================
   BUTTONS (min 48px tap target)
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  min-height: 48px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,160,23,0.35);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-sm { padding: 12px 22px; font-size: 14px; min-height: 44px; }
.btn-block { width: 100%; }

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.btn:hover svg { transform: translateX(3px); }

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 38, 59, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--gold); }

.nav-cta .btn { padding: 10px 22px; font-size: 14px; min-height: 40px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 11px;
  transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle span:nth-child(3) { top: 31px; }
.nav-toggle.open span:nth-child(1) { top: 24px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 24px; transform: rotate(-45deg); }

/* ============================================
   HERO (generic, used on home + secondary pages)
============================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 140px 0 96px;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(53,94,59,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.1) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.018) 80px,
    rgba(255,255,255,0.018) 81px
  );
}

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

.hero--full { min-height: 100vh; display: flex; align-items: center; }

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

.hero h1 { color: #fff; margin-bottom: 14px; }

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(19px, 2vw, 22px);
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-description {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

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

.hero-visual { display: flex; justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 440px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* Hero variant — short (secondary pages) */
.hero--short { padding: 136px 0 72px; }
.hero--short .hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; max-width: 820px; }
.hero--short .hero-description { max-width: 700px; }

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-price strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}
.hero-price span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   OFFERS (3-card grid)
============================================ */
.offers {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.offers-header {
  text-align: center;
  margin-bottom: 64px;
}
.offers-header .section-subtitle { margin: 16px auto 0; }

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

.offer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(27,38,59,0.08);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.offer-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.offer-card.featured:hover {
  box-shadow: 0 12px 40px rgba(212,160,23,0.3);
}

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
}

.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.offer-card--free .offer-icon { background: rgba(53,94,59,0.1); color: var(--forest); }
.offer-card--gold .offer-icon { background: rgba(212,160,23,0.12); color: var(--gold); }
.offer-card--navy .offer-icon { background: rgba(27,38,59,0.08); color: var(--navy); }

.offer-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}
.offer-price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--light-text);
}

.offer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--forest);
  margin: 10px 0 18px;
}

.offer-card h3 { margin-bottom: 14px; }

.offer-desc {
  font-size: 15px;
  color: var(--light-text);
  line-height: 1.65;
  margin-bottom: 18px;
}

.offer-list {
  list-style: none;
  margin: 0 0 28px;
  flex-grow: 1;
}
.offer-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.5;
}
.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23355E3B'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.offer-card .btn { width: 100%; margin-top: auto; }

/* ============================================
   HOW IT WORKS
============================================ */
.how {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 120px,
    rgba(255,255,255,0.012) 120px,
    rgba(255,255,255,0.012) 121px
  );
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.how-header h2 { color: #fff; }
.how-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 16px auto 0; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.how-step {
  text-align: center;
  padding: 32px 28px;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212,160,23,0.15);
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
}

.how-step h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

.how-step p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   FRAMEWORK (Core 5 + 2) — 7-tile grid
============================================ */
.framework {
  padding: var(--section-padding);
  background: #fff;
}
.framework-header {
  text-align: center;
  margin-bottom: 56px;
}
.framework-header .section-subtitle { margin: 16px auto 0; }

.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.framework-grid--overlay {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.framework-tile {
  background: var(--soft-white);
  border: 1px solid rgba(27,38,59,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all 0.3s ease;
  position: relative;
}
.framework-tile:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.framework-tile--overlay {
  background: linear-gradient(180deg, var(--soft-white) 0%, #fff 100%);
  border-left: 3px solid var(--forest);
}

.tile-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.tile-number--overlay { color: var(--forest); }

.framework-tile h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--navy);
}

.framework-tile p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
}

.framework-divider {
  text-align: center;
  margin: 48px 0 32px;
  position: relative;
}
.framework-divider::before,
.framework-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 80px);
  height: 1px;
  background: rgba(27,38,59,0.1);
}
.framework-divider::before { left: 0; }
.framework-divider::after { right: 0; }
.framework-divider span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  padding: 0 16px;
  background: #fff;
  position: relative;
  z-index: 1;
}

/* ============================================
   TRUST / SOCIAL PROOF
============================================ */
.trust {
  padding: var(--section-padding);
  background: var(--soft-white);
}
.trust-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.trust-header .section-subtitle { margin: 20px auto 0; }

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

.trust-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(27,38,59,0.06);
  border-top: 4px solid var(--gold);
}

.trust-card-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}

.trust-card-outcome {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}

.trust-card-detail {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.trust-card blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14.5px;
  color: var(--body-text);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid rgba(27,38,59,0.08);
}

.trust-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--light-text);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   FAQ
============================================ */
.faq {
  padding: var(--section-padding);
  background: #fff;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(27,38,59,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  gap: 20px;
  min-height: 48px;
}
.faq-question::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 640px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.75;
}
.faq-answer p + p { padding-top: 14px; }

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(53,94,59,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 0%, rgba(212,160,23,0.12) 0%, transparent 50%);
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 { color: #fff; margin-bottom: 18px; }
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-cta .hero-buttons { justify-content: center; }

/* ============================================
   CONTENT BLOCK (generic — About, Blueprint, Diagnostic body sections)
============================================ */
.content-section {
  padding: var(--section-padding);
  background: #fff;
}
.content-section--alt { background: var(--soft-white); }

.content-section h2 { margin-bottom: 18px; }
.content-section p { font-size: 17px; color: var(--body-text); line-height: 1.75; margin-bottom: 20px; }
.content-section p:last-child { margin-bottom: 0; }

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

.content-narrow {
  max-width: 820px;
  margin: 0 auto;
}

/* Checklist-style bullets */
.check-list {
  list-style: none;
  margin: 20px 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23D4A017'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.x-list {
  list-style: none;
  margin: 20px 0;
}
.x-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-size: 16px;
  color: var(--light-text);
  line-height: 1.6;
}
.x-list li::before {
  content: '\00D7';
  position: absolute;
  left: 4px;
  top: 6px;
  font-size: 22px;
  color: #c8554a;
  font-weight: 700;
  line-height: 1;
}

/* Sidebar card (deliverables) */
.sidebar-card {
  background: var(--soft-white);
  border: 1px solid rgba(27,38,59,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: sticky;
  top: 96px;
}
.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--navy);
}
.sidebar-card .btn { width: 100%; margin-top: 22px; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 24px 0;
}
.timeline-item {
  background: #fff;
  border: 1px solid rgba(27,38,59,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.timeline-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.timeline-item h4 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}
.timeline-item p {
  font-size: 14.5px;
  color: var(--light-text);
  line-height: 1.6;
}

/* Module grid (Blueprint) */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.module-card {
  background: #fff;
  border: 1px solid rgba(27,38,59,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.module-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.module-card .tile-number { margin-bottom: 8px; }
.module-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.module-card p { font-size: 14.5px; color: var(--light-text); line-height: 1.6; }

/* Includes list */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  margin: 24px 0;
}

/* Contact box */
.contact-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-top: 32px;
}
.contact-box h3 { color: #fff; margin-bottom: 12px; font-size: 22px; }
.contact-box p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
  font-size: 16px;
}
.contact-box .contact-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 48px 0 32px;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img { height: 32px; width: auto; opacity: 0.7; }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 28px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-stats { max-width: 560px; margin: 0 auto; }
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .framework-grid { grid-template-columns: repeat(3, 1fr); }
  .module-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  :root { --section-padding: 72px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px 20px 32px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.open .nav-cta { margin-top: 12px; border-bottom: none; }
  .nav-links.open .nav-cta .btn { width: 100%; }

  .hero { padding: 120px 0 64px; }
  .hero--full { min-height: auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 14px; }
  .stat-number { font-size: 26px; }

  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }

  .offers-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-step:not(:last-child)::after { display: none; }

  .framework-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 26px 22px; }
  .offer-card { padding: 32px 24px; }
  .contact-box { padding: 32px 24px; }
}
