/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Instrument+Serif:ital@0;1&display=swap');
/* ============================================================
   CSS CUSTOM PROPERTIES — NEVER CHANGE THESE VALUES
   ============================================================ */
:root {
  --green-50:   #E1F5EE;
  --green-100:  #9FE1CB;
  --green-200:  #5DCAA5;
  --green-400:  #1D9E75;
  --green-600:  #0F6E56;
  --green-800:  #085041;
  --navy:       #0B1D33;
  --navy-light: #1A2D47;
  --deep-navy:  #042C53;
  --text:       #1E293B;
  --text-mid:   #475569;
  --text-light: #94A3B8;
  --bg:         #FAFCFB;
  --card:       #FFFFFF;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}
/* ============================================================
   RESET AND BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 252, 251, 0.92);
  border-bottom: 1px solid rgba(15, 110, 86, 0.08);
}

/* Footer navs must NOT inherit the fixed positioning above */
footer nav {
  position: static;
  z-index: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: none;
  border-bottom: none;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Desktop nav links ──────────────────────────────────── */

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--green-600);
}

/* ── Hamburger button — hidden on desktop ───────────────── */

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ── Mobile breakpoint ──────────────────────────────────── */

@media (max-width: 900px) {

  /* Show hamburger, hide desktop links */
  .nav-hamburger {
    display: flex;
  }

  /* Mobile menu: hidden by default, fullwidth dropdown when .open */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 1.25rem;
    background: rgba(250, 252, 251, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(15, 110, 86, 0.1);
    box-shadow: 0 8px 32px rgba(11, 29, 51, 0.12);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  /* Stack links vertically */
  .nav-links a:not(.btn) {
    display: block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
    border-bottom: 1px solid rgba(15, 110, 86, 0.06);
    text-decoration: none;
  }

  .nav-links a:not(.btn):last-of-type {
    border-bottom: none;
  }

  .nav-links a.nav-active {
    color: var(--green-600);
    background: rgba(225, 245, 238, 0.5);
  }

  /* Book a Call button spans full width on mobile */
  .nav-links .btn {
    display: block;
    margin: 1rem 2rem 0;
    text-align: center;
    border-radius: 8px;
  }

  /* Animated hamburger → X when open */
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

}
/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.5rem; border-radius: 8px;
  font-size: .875rem; font-weight: 600; text-decoration: none;
  transition: all .25s ease; border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary { background: var(--green-600); color: #fff; }
.btn-primary:hover {
  background: var(--green-800); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15,110,86,.25);
}
.btn-outline { border: 1.5px solid var(--green-200); color: var(--green-600); background: transparent; }
.btn-outline:hover { background: var(--green-50); border-color: var(--green-400); }
.btn-white { background: #fff; color: var(--green-600); border: none; }
.btn-white:hover { background: var(--green-50); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn-lg { padding: .875rem 2rem; font-size: 1rem; }
/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
  padding: 10rem 2rem 7rem; text-align: center;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem);
  color: #fff; line-height: 1.1; margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--green-200); font-style: italic; }
.hero-sub { font-size: 1.125rem; color: var(--text-light); max-width: 560px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.orb { position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none; }
.orb-1 { width: 350px; height: 350px; background: radial-gradient(circle, var(--green-400), var(--green-600)); opacity: .45; top: -80px; right: -60px; }
.orb-2 { width: 250px; height: 250px; background: radial-gradient(circle, var(--green-200), var(--green-400)); opacity: .35; bottom: 20px; right: 120px; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--green-100), var(--green-200)); opacity: .15; top: 40px; right: 260px; }
/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--navy); padding: 4rem 2rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,3.5rem); color: var(--green-200); line-height: 1; }
.stat-label { font-size: .875rem; color: var(--text-light); margin-top: .5rem; }
@media (max-width: 768px) { .stats-inner { grid-template-columns: repeat(2,1fr); } }
/* ============================================================
   SECTION LAYOUT
   ============================================================ */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-600); margin-bottom: .75rem;
}
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.5rem); color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-size: 1.0625rem; color: var(--text-mid); max-width: 600px; line-height: 1.7; }
/* ============================================================
   SERVICE / CONSULTING CARDS
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.card {
  background: var(--card); border-radius: 16px;
  border: 1.5px solid rgba(15,110,86,.08);
  padding: 2rem; transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(15,110,86,.12); }
.card-icon { width: 48px; height: 48px; background: var(--green-50); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon svg { width: 24px; height: 24px; stroke: var(--green-600); fill: none; }
.card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.card p { font-size: .9375rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.card-link { font-size: .875rem; font-weight: 600; color: var(--green-600); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.card-link:hover { gap: .6rem; }
/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.how-card {
  background: var(--card); border-radius: 16px; padding: 2rem;
  border: 1.5px solid rgba(15,110,86,.08);
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s;
}
.how-card.visible { opacity: 1; transform: translateY(0); }
.how-card:hover { box-shadow: 0 8px 32px rgba(15,110,86,.1); }
.how-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--green-100); line-height: 1; margin-bottom: .75rem; }
.how-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.how-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
.how-card:nth-child(1) { transition-delay: 0s; }
.how-card:nth-child(2) { transition-delay: .15s; }
.how-card:nth-child(3) { transition-delay: .3s; }
.how-card:nth-child(4) { transition-delay: .45s; }
/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%); padding: 5rem 2rem; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-band p { font-size: 1.0625rem; color: var(--text-light); max-width: 500px; margin: 0 auto 2rem; }
/* ============================================================
   SERVICE / CONSULTING PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
  padding: 9rem 2rem 5rem;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.breadcrumb a { font-size: .8125rem; color: var(--green-200); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { font-size: .8125rem; color: var(--text-light); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.page-hero-sub { font-size: 1.0625rem; color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
/* ============================================================
   SERVICE PAGE CONTENT
   ============================================================ */
.service-body { max-width: 860px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.service-body h2 { font-family: var(--font-display); font-size: 1.625rem; color: var(--navy); margin: 2.5rem 0 .75rem; }
.service-body h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin: 1.75rem 0 .5rem; }
.service-body p { color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; font-size: 1.0125rem; }
.service-body ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.service-body ul li { padding: .5rem 0 .5rem 1.5rem; position: relative; color: var(--text-mid); font-size: 1.0125rem; line-height: 1.65; }
.service-body ul li::before { content: ''; position: absolute; left: 0; top: .85rem; width: 8px; height: 8px; background: var(--green-400); border-radius: 50%; }
/* ============================================================
   CALLOUT BOXES
   ============================================================ */
.callout {
  border-left: 4px solid var(--green-400);
  background: var(--green-50);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}
.callout p { color: var(--text); font-weight: 500; margin: 0; }
/* ============================================================
   STAT STRIP (article body dark card)
   ============================================================ */
.stat-strip {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  background: var(--navy); border-radius: 16px; padding: 2rem; margin: 2.5rem 0;
}
.strip-stat { text-align: center; }
.strip-num { font-family: var(--font-display); font-size: 2.25rem; color: var(--green-200); line-height: 1; }
.strip-label { font-size: .8125rem; color: var(--text-light); margin-top: .4rem; }
@media (max-width: 600px) { .stat-strip { grid-template-columns: 1fr; } }
/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { margin-top: 3rem; }
.faq-section h2 { font-family: var(--font-display); font-size: 1.625rem; color: var(--navy); margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid rgba(15,110,86,.1); padding: 1.25rem 0; }
.faq-question { font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::after { content: '+'; font-size: 1.25rem; color: var(--green-600); font-weight: 300; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '-'; }
.faq-answer { display: none; padding-top: .75rem; color: var(--text-mid); line-height: 1.7; font-size: .9375rem; }
.faq-item.open .faq-answer { display: block; }
/* ============================================================
   INLINE CTA BOX
   ============================================================ */
.inline-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
  border-radius: 16px; padding: 2.5rem 2rem; margin: 3rem 0; text-align: center;
}
.inline-cta h3 { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: .75rem; }
.inline-cta p { color: var(--text-light); margin-bottom: 1.5rem; }
/* ============================================================
   RELATED CONTENT GRID
   ============================================================ */
.related-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(15,110,86,.1); }
.related-section h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.related-card { background: var(--card); border-radius: 12px; padding: 1.5rem; border: 1.5px solid rgba(15,110,86,.08); text-decoration: none; transition: transform .2s, box-shadow .2s; display: block; }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(15,110,86,.1); }
.related-card-tag { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-600); margin-bottom: .5rem; }
.related-card h3 { font-size: .9375rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
/* ============================================================
   BLOG POST HERO
   ============================================================ */
.post-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
  padding: 10rem 2rem 5rem;
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-hero-tag { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-200); margin-bottom: 1rem; }
.post-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
.post-hero-lead { font-size: 1.125rem; color: var(--text-light); line-height: 1.7; margin-bottom: 2rem; }
.post-hero-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green-600); display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 700; color: #fff; }
.author-name { font-size: .9375rem; font-weight: 600; color: #fff; }
.author-date { font-size: .8125rem; color: var(--text-light); }
/* ============================================================
   BLOG ARTICLE BODY
   ============================================================ */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.back-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 600; color: var(--green-600);
  text-decoration: none; margin-bottom: 2.5rem; transition: gap .2s;
}
.back-link:hover { gap: .7rem; }
.article-body h2 { font-family: var(--font-display); font-size: 1.625rem; color: var(--navy); margin: 2.5rem 0 .75rem; }
.article-body h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin: 1.75rem 0 .5rem; }
.article-body p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.125rem; font-size: 1.0125rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { color: var(--text-mid); line-height: 1.7; margin-bottom: .5rem; font-size: 1.0125rem; }
.article-body a { color: var(--green-600); text-decoration: underline; text-underline-offset: 2px; }
/* ============================================================
   AUTHOR BIO
   ============================================================ */
.author-bio {
  margin-top: 4rem; padding: 2rem; background: var(--green-50);
  border-radius: 16px; display: flex; gap: 1.5rem; align-items: flex-start;
}
.author-bio-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--green-600); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-bio-name { font-size: 1rem; font-weight: 700; color: var(--navy); }
.author-bio-title { font-size: .875rem; color: var(--green-600); margin-bottom: .5rem; }
.author-bio-text { font-size: .9375rem; color: var(--text-mid); line-height: 1.65; }
/* ============================================================
   BLOG INDEX CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 2rem; }
.blog-card {
  background: var(--card); border-radius: 16px;
  border: 1.5px solid rgba(15,110,86,.08);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  text-decoration: none; display: block; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(15,110,86,.12); }
.blog-card-icon { height: 180px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { font-size: .8125rem; color: var(--text-light); margin-bottom: .5rem; }
.blog-card h2 { font-size: 1.0625rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: .75rem; }
.blog-card-excerpt { font-size: .9375rem; color: var(--text-mid); line-height: 1.6; }
/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy); color: var(--text-light); }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 3.5rem 2rem 2.5rem; max-width: 1200px; margin: 0 auto;
  gap: 3rem; flex-wrap: wrap;
}
.footer-brand p { font-size: .875rem; color: var(--text-light); max-width: 260px; margin-top: .75rem; line-height: 1.65; }
.footer-nav h4 { font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-nav a { font-size: .875rem; color: var(--text-light); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 2rem; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .8rem; }
.footer-tagline { font-size: .8rem; opacity: .6; }
@media (max-width: 640px) {
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%); padding: 10rem 2rem 6rem; }
.about-hero-inner { max-width: 760px; margin: 0 auto; }
.about-body { max-width: 860px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.about-body h2 { font-family: var(--font-display); font-size: 1.625rem; color: var(--navy); margin: 2.5rem 0 .75rem; }
.about-body p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.125rem; font-size: 1.0125rem; }
.founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; margin: 3rem 0; }
.founder-card { background: var(--card); border-radius: 16px; padding: 2rem; border: 1.5px solid rgba(15,110,86,.08); }
.founder-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--green-600); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.founder-name { font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.founder-title { font-size: .875rem; color: var(--green-600); margin-bottom: .75rem; }
.founder-bio { font-size: .9375rem; color: var(--text-mid); line-height: 1.65; }
/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.comparison-table th { background: var(--navy); color: #fff; padding: .875rem 1.25rem; text-align: left; font-size: .875rem; font-weight: 600; }
.comparison-table td { padding: .875rem 1.25rem; border-bottom: 1px solid rgba(15,110,86,.08); font-size: .9375rem; color: var(--text-mid); }
.comparison-table tr:nth-child(even) td { background: var(--green-50); }
.comparison-table .check { color: var(--green-600); font-weight: 700; }
.comparison-table .cross { color: var(--text-light); }
/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.mt-lg { margin-top: 3rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
