/* Accessibility: skip link + visible focus */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: #0B1F3A; color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid #FF6B35; outline-offset: 2px; border-radius: 4px; }

:root {
  --navy: #0B1F3A;
  --navy-700: #122B4D;
  --navy-600: #1E3A5F;
  --accent: #FF6B35;
  --accent-dark: #E8531B;
  --accent-soft: #FFF1EB;
  --blue: #2B4FC9;
  --blue-dark: #2440A8;
  --blue-soft: #EEF2FE;
  --teal: #14B8A6;
  --ink: #0F172A;
  --slate: #475569;
  --muted: #64748B;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-navy-soft: #F4F7FB;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.16);
  --maxw: 1160px;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #CBD5E1; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-navy .eyebrow { color: #FF8C5F; }

.h-xl { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.h-md { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

.lead { font-size: 1.15rem; color: var(--slate); max-width: 56ch; }
.section-navy .lead { color: #94A3B8; }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(255, 107, 53, 0.35); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { border-color: #fff; }

/* Navbar */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 30px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--navy); }
.brand .logo { width: 34px; height: 34px; }
.brand span b { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--slate); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px; min-width: 280px; opacity: 0; visibility: hidden; transition: all .18s ease;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 11px 13px; border-radius: 9px; font-size: 14px; color: var(--slate); }
.dropdown a:hover { background: var(--bg-soft); color: var(--navy); }
.dropdown a b { display: block; color: var(--navy); font-size: 14px; }
.dropdown a small { color: var(--muted); font-weight: 500; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* Header phone (written-out, tappable, not buried in menu) */
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; stroke: var(--accent); }
.nav-phone:hover { color: var(--accent); }

/* Hero star rating trust element */
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-rating .stars { display: inline-flex; gap: 1px; }
.hero-rating .stars svg { width: 18px; height: 18px; }
.hero-rating .rtxt { font-size: 14px; color: #B6C2D4; font-family: var(--font-head); font-weight: 600; }
.hero-rating .rtxt b { color: #fff; }

/* Sticky mobile call/CTA bar */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(15,23,42,0.08);
  }
  .mobile-cta .btn { flex: 1; justify-content: center; padding: 13px 14px; font-size: 14px; }
  body { padding-bottom: 74px; }
  .nav-cta .btn-primary { display: none; }
}

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 96px 0 100px; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(255,107,53,0.20), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(20,184,166,0.14), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 3.7rem); }
.hero h1 b { color: var(--accent); }
.hero p { color: #B6C2D4; font-size: 1.2rem; margin: 20px 0 30px; max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .stat b { display: block; font-family: var(--font-head); font-size: 1.8rem; color: #fff; }
.hero-trust .stat span { font-size: 13px; color: #8FA0B6; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
  font-family: var(--font-head); color: #CBD5E1; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); padding: 7px 14px; border-radius: 999px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

/* Map grid visual */
.gridcard { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 22px; padding: 26px; box-shadow: var(--shadow-lg); }
.gridcard .gc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.gridcard .gc-top b { color: #fff; font-family: var(--font-head); font-size: 15px; }
.gridcard .gc-top span { font-size: 12px; color: #8FA0B6; }
.maps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.maps .cell {
  aspect-ratio: 1; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff;
}
.c1 { background: #16A34A; } .c2 { background: #4ADE80; color:#062e16;} .c3 { background: #FACC15; color:#3a2c00;} .c5 { background: #F87171; }
.gc-legend { display: flex; gap: 16px; margin-top: 18px; font-size: 12px; color: #8FA0B6; }
.gc-legend span { display: flex; align-items: center; gap: 6px; }
.gc-legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }

/* Logos strip */
.logos { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; }
.logos .lg { font-family: var(--font-head); font-weight: 700; color: #94A3B8; font-size: 1.05rem; letter-spacing: .02em; }

/* Cards / grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #CBD5E1; }
.card .ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); margin-bottom: 18px; }
.card .ico svg { width: 26px; height: 26px; stroke: var(--accent); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.97rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--accent); }

.feature-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-navy-soft); margin-bottom: 14px; }
.feature-ico svg { width: 23px; height: 23px; stroke: var(--navy); }

/* Section heading block */
.shead { max-width: 640px; margin-bottom: 48px; }
.shead.center { margin-left: auto; margin-right: auto; }

/* Check list */
.checks { list-style: none; display: grid; gap: 12px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; color: var(--slate); }
.checks li svg { flex: none; width: 21px; height: 21px; margin-top: 2px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; display: flex; flex-direction: column; }
.price.featured { border-color: var(--accent); box-shadow: 0 20px 50px rgba(255,107,53,0.16); position: relative; }
.price.featured::after { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 5px 16px; border-radius: 999px; }
.price .pname { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.price .pamt { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--navy); margin: 10px 0 2px; }
.price .pamt small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price .pfor { font-size: 13px; color: var(--muted); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.price .checks { margin-bottom: 26px; }
.price .checks li { font-size: 0.92rem; }
.price .btn { width: 100%; justify-content: center; margin-top: auto; }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 20px; }
.tl-item { position: relative; padding: 0 18px; }
.tl-item::before { content: ''; position: absolute; top: 11px; left: 0; right: 0; height: 2px; background: var(--navy-600); }
.tl-item:first-child::before { left: 50%; }
.tl-item:last-child::before { right: 50%; }
.tl-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); border: 4px solid var(--navy); position: relative; z-index: 1; margin: 0 auto 18px; }
.tl-item h4 { color: #fff; font-size: 1.05rem; text-align: center; }
.tl-item .yr { display: block; text-align: center; color: var(--accent); font-family: var(--font-head); font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.tl-item p { text-align: center; font-size: 0.9rem; color: #94A3B8; margin-top: 8px; }

/* Stats band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.statband .s b { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--navy); display: block; }
.statband .s span { color: var(--muted); font-size: 0.95rem; }
.section-navy .statband .s b { color: #fff; }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step .num { flex: none; counter-increment: step; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.step .num::before { content: counter(step); }
.step h4 { font-size: 1.1rem; margin-bottom: 5px; }
.step p { color: var(--slate); font-size: 0.97rem; }

/* FAQ */
.faq { display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; }
.faq summary { font-family: var(--font-head); font-weight: 700; color: var(--navy); padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); font-weight: 400; transition: .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--slate); padding: 0 0 20px; font-size: 0.97rem; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); border-radius: 24px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 0%, rgba(255,107,53,0.22), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #94A3B8; max-width: 50ch; margin: 14px auto 28px; }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); color: #fff; padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 360px at 85% 0%, rgba(255,107,53,0.18), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: #B6C2D4; margin: 18px 0 26px; max-width: 56ch; font-size: 1.12rem; }
.crumbs { font-size: 13px; color: #8FA0B6; margin-bottom: 16px; font-family: var(--font-head); font-weight: 600; }
.crumbs a:hover { color: #fff; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }

.imgcard { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px; padding: 30px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,53,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-info { display: grid; gap: 22px; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; }
.cinfo .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; }
.cinfo .ico svg { width: 22px; height: 22px; stroke: var(--accent); }
.cinfo b { font-family: var(--font-head); color: var(--navy); display: block; }
.cinfo a, .cinfo span { color: var(--slate); }
.form-note { margin-top: 6px; font-size: 13px; color: var(--muted); }
.form-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; padding: 16px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 18px; }

/* Nav: clean left-aligned layout — brand, menu beside it, CTA pinned right */
.brand { white-space: nowrap; flex: none; }
.nav-links { gap: 24px; margin-right: auto; margin-left: 14px; }
.nav-links a { white-space: nowrap; }
.nav-cta { flex: none; }

/* Founder / About Me */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.founder-photo { position: relative; }
.founder-photo .pic { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; background: linear-gradient(150deg, #1E3A5F, #0B1F3A); display: grid; place-items: center; }
.founder-photo .pic img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-photo .pic .silhouette { position: absolute; z-index: 0; width: 48%; opacity: 0.22; }
.founder-photo::before { content: ''; position: absolute; inset: -14px -14px auto auto; width: 70%; height: 70%; border-radius: 22px; background: radial-gradient(circle at 70% 30%, rgba(255,107,53,0.18), transparent 70%); z-index: -1; }
.founder-badge { position: absolute; left: 16px; bottom: 16px; z-index: 2; background: #fff; border-radius: 13px; padding: 11px 16px; box-shadow: var(--shadow); }
.founder-badge b { display: block; font-family: var(--font-head); color: var(--navy); font-size: 14px; line-height: 1.2; }
.founder-badge span { font-size: 12px; color: var(--muted); }
.founder-text p { color: var(--slate); margin-bottom: 14px; }
.founder-sign { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin: 20px 0 24px; }

/* Case studies (cards) */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cs-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s; position: relative; overflow: hidden; }
.cs-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent); }
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #CBD5E1; }
.cs-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 18px; }
.cs-ind { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .95rem; }
.cs-state { flex: none; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 999px; }
.cs-metric { font-family: var(--font-head); font-weight: 800; font-size: 2.7rem; color: var(--accent); line-height: 1; }
.cs-mlabel { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .95rem; margin: 6px 0 12px; }
.cs-card p { color: var(--slate); font-size: .92rem; }

/* Dashboard-style case study (case-studies page) */
.cs-feature { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 38px; box-shadow: var(--shadow); margin-bottom: 30px; }
.cs-fhead { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.cs-fhead .cs-ind { font-size: 1.35rem; }
.cs-feature .cs-state { align-self: center; }
.cs-feature > p.lead { margin-bottom: 8px; }
.stat-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0; }
.stat-tile { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.stat-tile .v { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--navy); line-height: 1; }
.stat-tile .v b { color: var(--accent); }
.stat-tile .l { font-size: 12px; color: var(--muted); margin-top: 7px; line-height: 1.35; }
.stat-tile .up { display: inline-block; font-size: 11px; font-weight: 700; color: #16A34A; background: #F0FDF4; padding: 2px 7px; border-radius: 6px; margin-top: 8px; }
.cs-pill-dark { display: flex; align-items: center; gap: 11px; background: var(--navy); color: #B6C2D4; border-radius: 13px; padding: 15px 20px; font-size: .95rem; margin-top: 6px; }
.cs-pill-dark b { color: #fff; }
.cs-pill-dark .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.ba-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 18px 0 0; }
.ba { border: 1px solid var(--line); border-radius: 12px; padding: 15px; }
.ba .ba-l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.ba .ba-v { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-top: 5px; font-size: 1.05rem; }
.ba .ba-v .from { color: #94A3B8; text-decoration: line-through; font-weight: 600; }
.ba .ba-v .to { color: #16A34A; }
.cs-note { background: var(--bg-soft); border-left: 4px solid var(--accent); border-radius: 0 10px 10px 0; padding: 14px 18px; margin-top: 22px; font-size: .9rem; color: var(--slate); }
.cs-did { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; margin-top: 20px; }

/* Footer */
.footer { background: var(--navy); color: #94A3B8; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p { font-size: 0.95rem; max-width: 34ch; }
.footer h5 { font-family: var(--font-head); color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 0.95rem; color: #94A3B8; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #64748B; }
.footer-bottom a { color: #94A3B8; }
.footer-bottom a:hover { color: #fff; }

/* Responsive */
/* Nav collapses to hamburger early (7 menu items + phone + CTA) */
@media (max-width: 1180px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; margin: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; align-items: flex-start; z-index: 60; }
  .nav-links.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 6px 0 6px 12px; min-width: auto; }
}
@media (max-width: 940px) {
  .hero-grid, .two-col, .contact-grid, .founder-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: 1fr; }
  .founder-grid { gap: 36px; }
  .founder-photo .pic { max-width: 380px; margin: 0 auto; }
  .price-grid, .timeline, .statband { grid-template-columns: 1fr; }
  .timeline { gap: 30px; }
  .tl-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .stat-tiles, .ba-row { grid-template-columns: repeat(2, 1fr); }
  .cs-did { grid-template-columns: 1fr; }
  .cs-feature { padding: 26px; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 38px 24px; }
  .maps { gap: 6px; }
}
