/* =============================================
   PostExitWealth.io — Design System
   Brand: Navy #1D4F7C | Teal #1D9E75 | Coral #D85A30 | Gold #C8941A
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy:   #1D4F7C;
  --navy-dark: #163d61;
  --navy-light: #2a6099;
  --teal:   #1D9E75;
  --teal-dark: #167a5c;
  --coral:  #D85A30;
  --gold:   #C8941A;
  --light:  #F0F4F8;
  --bg:     #F9FAFB;
  --grey:   #6B7280;
  --grey-dark: #374151;
  --white:  #FFFFFF;
  --text:   #1a2332;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(29, 79, 124, 0.10);
  --shadow-lg: 0 8px 48px rgba(29, 79, 124, 0.16);

  --max-w: 1180px;
  --section-py: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--grey-dark);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--grey);
  font-size: 1.1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 158, 117, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b07e14;
  border-color: #b07e14;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 148, 26, 0.35);
}

.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(29,79,124,0.10);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--navy); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s, background 0.2s;
}
.nav.scrolled .nav-links a { color: var(--grey-dark); }
.nav-links a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav.scrolled .nav-links a:hover { background: var(--light); color: var(--navy); }

.nav-links .nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 6px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--teal-dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    gap: 4px;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--grey-dark) !important; padding: 12px 16px; }
  .nav-links a:hover { background: var(--light) !important; color: var(--navy) !important; }
  .nav-links .nav-cta { text-align: center; margin-left: 0; margin-top: 8px; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2d4a 0%, #1D4F7C 45%, #163d61 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/f61af8_e715c6fd115c428282e66e018068217f~mv2_d_3840_1870_s_2.jpg/v1/fill/w_1920,h_1200,al_c,q_85,enc_avif,quality_auto/f61af8_e715c6fd115c428282e66e018068217f~mv2_d_3840_1870_s_2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,45,74,0.3) 0%, rgba(15,45,74,0.7) 100%);
}

/* Decorative accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 140px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-style: italic;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 640px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.hero-trust-item svg { color: var(--gold); }

@media (max-width: 640px) {
  .hero-content { padding: 120px 0 100px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero::after { height: 48px; }
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--light);
  padding: 48px 0;
  border-bottom: 1px solid #e4eaf1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  divide: 1px solid #d0dae6;
}

.stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid #d0dae6;
}
.stat-item:last-child { border-right: none; }

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

.stat-label {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid #d0dae6; padding: 20px 24px; }
  .stat-item:last-child { border-bottom: none; }
}

/* ---- Why Section ---- */
.why-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #d0dae6;
  border: 2px solid #d0dae6;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: var(--white);
  padding: 40px 44px;
  transition: background 0.2s;
}
.why-card:hover { background: var(--bg); }

.why-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.why-card p { color: var(--grey); font-size: 0.95rem; margin: 0; line-height: 1.65; }

@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- Framework Section ---- */
.framework-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}

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

.framework-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.framework-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}

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

.framework-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(29, 79, 124, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.framework-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.framework-card p { font-size: 0.9rem; color: var(--grey); margin: 0; line-height: 1.65; }

@media (max-width: 900px) {
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .framework-grid { grid-template-columns: 1fr; }
}

/* ---- How It Works ---- */
.how-section {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.how-section .section-header h2,
.how-section .section-header p { color: rgba(255,255,255,0.9); }
.how-section .section-header p { color: rgba(255,255,255,0.6); }
.how-section .eyebrow { color: var(--teal); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(33.33% + 16px); right: calc(33.33% + 16px);
  height: 2px;
  background: rgba(255,255,255,0.12);
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
}

.step h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.62); font-size: 0.9rem; margin: 0; }

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
}

/* ---- Pricing Section ---- */
.pricing-section {
  padding: var(--section-py) 0;
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 840px;
  margin: 0 auto;
}

.pricing-card {
  border: 2px solid #e4eaf1;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  transition: box-shadow 0.2s;
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-type { color: var(--teal); }

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: inherit;
}
.pricing-card.featured h3 { color: var(--white); }

.pricing-price {
  margin: 20px 0 6px;
}

.pricing-price .amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-card.featured .pricing-price .amount { color: var(--white); }

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--grey);
  margin-left: 4px;
}
.pricing-card.featured .pricing-price .period { color: rgba(255,255,255,0.6); }

.pricing-desc {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }

.pricing-divider {
  border: none;
  border-top: 1px solid #e4eaf1;
  margin: 28px 0;
}
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.15); }

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--grey-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 28px; }
}

/* ---- Independent Callout ---- */
.independent-section {
  padding: 72px 0;
  background: var(--light);
}

.independent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.independent-do, .independent-dont {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.independent-dont {
  background: rgba(216,90,48,0.07);
  border: 1px solid rgba(216,90,48,0.2);
}
.independent-do {
  background: rgba(29,158,117,0.07);
  border: 1px solid rgba(29,158,117,0.2);
}

.ind-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.independent-dont .ind-label { color: var(--coral); }
.independent-do .ind-label { color: var(--teal); }

.ind-list {
  list-style: none;
}
.ind-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ind-list li:last-child { border-bottom: none; }

.independent-dont .ind-list li::before { content: '✗'; color: var(--coral); font-weight: 700; }
.independent-do .ind-list li::before { content: '✓'; color: var(--teal); font-weight: 700; }

@media (max-width: 700px) {
  .independent-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- About Section ---- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.about-profile {
  margin-top: 20px;
}

.about-name-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-name-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  padding: 0;
}

.about-linkedin {
  display: inline-flex;
  color: var(--navy);
  transition: opacity 0.2s;
}

.about-linkedin:hover {
  opacity: 0.7;
}

.about-languages {
  display: flex;
  gap: 8px;
}

.lang-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 6px 12px;
  background: var(--light);
  border-radius: 4px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 18px;
  color: var(--grey-dark);
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content strong {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- Social Proof ---- */
.proof-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}

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

.proof-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.proof-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.proof-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.proof-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.proof-author span {
  font-weight: 400;
  color: var(--grey);
  margin-left: 4px;
}

@media (max-width: 800px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 40px; font-size: 1.1rem; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- Footer ---- */
.footer {
  background: #0f1e2e;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

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

.footer-bottom p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.6;
}

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0f2d4a 0%, var(--navy) 60%, var(--navy-dark) 100%);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--teal); }

/* ---- About Page ---- */
.mission-section {
  padding: var(--section-py) 0;
}

.mission-content {
  max-width: 780px;
  margin: 0 auto;
}

.stat-callout {
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 28px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--grey-dark);
}

/* ---- The Guide Page ---- */
.guide-chapter-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e4eaf1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.guide-chapter {
  padding: 32px 36px;
  border-bottom: 1px solid #e4eaf1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.2s;
}
.guide-chapter:last-child { border-bottom: none; }
.guide-chapter:hover { background: var(--bg); }

.chapter-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(29, 79, 124, 0.15);
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
  margin-top: 4px;
}

.chapter-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.chapter-content p { font-size: 0.9rem; color: var(--grey); margin: 0; }

/* ---- Who Is This For ---- */
.for-not-for {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.for-card, .not-card {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.for-card {
  background: rgba(29,158,117,0.07);
  border: 1px solid rgba(29,158,117,0.2);
}

.not-card {
  background: rgba(216,90,48,0.07);
  border: 1px solid rgba(216,90,48,0.2);
}

.for-card h3 { color: var(--teal); }
.not-card h3 { color: var(--coral); }

.check-list { list-style: none; margin-top: 16px; }
.check-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.for-card .check-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.not-card .check-list li::before { content: '✗'; color: var(--coral); font-weight: 700; flex-shrink: 0; }

@media (max-width: 640px) {
  .for-not-for { grid-template-columns: 1fr; }
  .guide-chapter { flex-direction: column; gap: 8px; }
  .chapter-num { width: auto; }
}

/* ---- FAQ ---- */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #d0dae6;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .faq-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- Contact Form ---- */
.contact-section {
  padding: var(--section-py) 0;
}

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

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--grey); }
.contact-info .contact-detail {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info .contact-detail a {
  color: var(--teal);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border: 1px solid #e4eaf1;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d0dae6;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Book a Call ---- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking-detail {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.booking-detail h2 { margin-bottom: 8px; }
.booking-detail .pricing-price { margin: 16px 0; }
.booking-detail .pricing-price .amount { font-size: 2.4rem; }

.what-you-get { margin-top: 32px; }
.what-you-get h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }

.benefit-list { list-style: none; }
.benefit-list li {
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--grey-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

.booking-cta-box {
  background: var(--white);
  border: 2px solid #e4eaf1;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.booking-cta-box h3 { margin-bottom: 12px; }
.booking-cta-box p { color: var(--grey); margin-bottom: 32px; }
.booking-cta-box .btn { width: 100%; justify-content: center; margin-bottom: 16px; }

@media (max-width: 800px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ---- Divider accent ---- */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.text-center .accent-line { margin: 16px auto 24px; }

/* ---- Responsive tweaks ---- */
@media (max-width: 480px) {
  :root { --section-py: 64px; }
  .page-hero { padding: 130px 0 80px; }
  .pricing-card { padding: 32px 24px; }
  .framework-card { padding: 28px 24px; }
}

/* ---- Active nav link ---- */
.nav-links a[aria-current="page"] {
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ---- Inline form errors ---- */
.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--coral);
  margin-top: 6px;
  line-height: 1.4;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.12);
}
.form-group.has-error .field-error {
  display: block;
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 98;
  box-shadow: 0 4px 16px rgba(29, 79, 124, 0.28);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover { background: var(--teal); }
@media (max-width: 640px) {
  .back-to-top { bottom: 20px; right: 20px; }
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0f1e2e;
  border-bottom: 2px solid var(--teal);
  padding: 16px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.6;
}
.cookie-banner p a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--teal-dark); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-btn-decline:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
