/* Latchfast — shared stylesheet. No-vibe: ruled grid, mono labels, numbered sections. */

:root {
  --bg: #050705;
  --bg-2: #000000;
  --panel: #0b1310;
  --accent: #0d9d5c;
  --accent-2: #2fe08a;
  --accent-soft: rgba(13, 157, 92, 0.16);
  --text: #ffffff;
  --muted: #9ba3a0;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 100% 0%, rgba(13,157,92,0.05) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(13,157,92,0.04) 0%, transparent 40%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.ruled { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }

.mono-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono-label .idx { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--pad-y) 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .2s ease, background .2s ease;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent) 70%);
  color: #04150a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 10px 28px -8px rgba(13,157,92,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 18px 36px -8px rgba(13,157,92,0.65); }

.btn-ghost { background: rgba(255,255,255,0.02); border-color: var(--line-strong); color: var(--text); box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.btn-sm { --pad-y: 9px; padding: 9px 16px; font-size: 0.88rem; }

/* ---------- Scroll progress + reveal-on-scroll ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0); transform-origin: left; will-change: transform;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 17, 23, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
nav.scrolled { box-shadow: 0 16px 32px -22px rgba(0,0,0,0.85); border-bottom-color: var(--line-strong); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo { font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 9px; }
.logo .amber { color: var(--accent); }
.logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  position: relative; font-size: 0.9rem; color: var(--muted); padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong); border-radius: 8px;
  width: 38px; height: 38px; align-items: center; justify-content: center; color: var(--text); cursor: pointer;
}
.mobile-links { display: none; }

/* ---------- Section frame ---------- */
section { border-bottom: 1px solid var(--line); scroll-margin-top: 66px; position: relative; }
.pad { padding: 92px 0; }
.pad-sm { padding: 56px 0; }

.sec-head { max-width: 640px; margin-bottom: 52px; position: relative; }
.sec-head .mono-label { display: block; margin-bottom: 18px; }
h1, h2, h3 { letter-spacing: -0.02em; font-family: var(--display); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; line-height: 1.1; }
.sec-head p { color: var(--muted); font-size: 1.06rem; margin-top: 16px; max-width: 540px; }

/* corner bracket detail, used on emphasised panels */
.bracket { position: relative; }
.bracket::before, .bracket::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--accent); opacity: 0.55; pointer-events: none;
}
.bracket::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.bracket::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  position: absolute; inset: 0;
  mask-image: radial-gradient(circle at 30% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 30% 0%, #000 0%, transparent 70%);
  opacity: 0.5; pointer-events: none;
}
.hero-glow {
  position: absolute; top: -260px; right: -160px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(13,157,92,0.28) 0%, transparent 62%);
  pointer-events: none; filter: blur(6px);
}
.hero-glow.mint {
  top: auto; bottom: -280px; left: -200px; right: auto;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(47,224,138,0.14) 0%, transparent 60%);
}
.hero-inner { position: relative; padding: 104px 0 96px; max-width: 880px; }
.hero-inner.sm { padding: 76px 0 64px; max-width: 760px; }
.hero-split { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: center; max-width: none; }
.hero-split .hero-copy { max-width: 620px; }

/* ---------- Phone mockup (hero visual) ---------- */
.phone-mock {
  position: relative; justify-self: end;
  width: 280px; border: 1px solid var(--line-strong); border-radius: 28px;
  background: linear-gradient(180deg, #0c1210, #060807);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset, 0 0 60px -10px rgba(13,157,92,0.18);
  padding: 20px 16px 26px;
}
.phone-mock .bar { width: 40px; height: 4px; border-radius: 2px; background: var(--line-strong); margin: 0 auto 18px; }
.phone-mock .msg {
  border-radius: 14px; padding: 12px 14px; font-size: 0.86rem; line-height: 1.4; margin-bottom: 10px;
  max-width: 90%;
}
.phone-mock .msg.in { background: var(--panel); border: 1px solid var(--line); color: var(--muted); }
.phone-mock .msg.out {
  background: linear-gradient(135deg, var(--accent-2), var(--accent) 75%);
  color: #04150a; margin-left: auto; font-weight: 500;
}
.phone-mock .stamp {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; color: var(--accent);
  display: flex; align-items: center; gap: 6px; margin: 14px 0 4px;
}
.phone-mock .stamp::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* plain stat line under the hero visual — no floating/rotated gimmicks */
.phone-foot {
  display: flex; justify-content: center; gap: 14px; margin-top: 18px;
  font-family: var(--mono); font-size: 0.82rem; color: var(--accent); font-weight: 600;
}
.phone-foot small { display: block; font-family: var(--mono); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.phone-foot .dotsep { color: var(--line-strong); font-weight: 400; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--muted);
  border: 1px solid var(--line-strong); border-radius: 6px; padding: 7px 13px; margin-bottom: 30px;
  background: rgba(255,255,255,0.02);
}
.badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,157,92,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(13,157,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,157,92,0); }
}
h1 { font-size: clamp(2.4rem, 5.8vw, 4.1rem); font-weight: 800; line-height: 1.05; }
h1 .amber {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.subhead { font-size: clamp(1.05rem, 1.8vw, 1.22rem); color: var(--muted); max-width: 580px; margin: 26px 0 38px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.reassure { margin-top: 22px; font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.reassure svg { flex-shrink: 0; color: var(--accent); }

/* ---------- Stat strip ---------- */
/* ---------- Sourced bar chart (how-it-works.html) ---------- */
.chart { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.chart-row { display: grid; grid-template-columns: 110px 1fr 140px; align-items: center; gap: 16px; }
.chart-label { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); }
.chart-track { height: 10px; background: var(--panel); border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.chart-bar {
  height: 100%; border-radius: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1s var(--ease);
}
.chart-bar.dim { background: linear-gradient(90deg, var(--accent), rgba(13,157,92,0.55)); }
.chart.in-view .chart-bar { transform: scaleX(1); }
.chart-val { font-family: var(--mono); font-size: 0.76rem; color: var(--accent); text-align: right; }

.stat-strip { background: var(--bg-2); }
.stat-strip .row {
  display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; padding: 34px 0;
}
.stat-strip .figure { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 700; color: var(--accent); font-feature-settings: "tnum"; }
.stat-strip .copy { color: var(--text); font-size: 1rem; max-width: 620px; }
.stat-strip .src { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--muted); display: block; margin-top: 4px; }

/* ---------- Card grid ---------- */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.cols.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols.cols-5 { grid-template-columns: repeat(5, 1fr); }
.cell { background: var(--bg); padding: 36px 32px; transition: background .3s var(--ease), box-shadow .3s var(--ease); position: relative; z-index: 1; }
.cell::after { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); opacity: 0; transition: opacity .3s var(--ease); }
.cell:hover { background: var(--panel); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.6); z-index: 2; }
.cell:hover::after { opacity: 0.9; }
.cell .ico {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 11px; color: var(--accent); margin-bottom: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cell:hover .ico { border-color: rgba(13,157,92,0.6); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset, 0 0 24px -6px rgba(13,157,92,0.5); }
.cell h3 { font-size: 1.14rem; font-weight: 600; margin-bottom: 10px; }
.cell p { color: var(--muted); font-size: 0.98rem; }
.cell .step-no { position: absolute; top: 28px; right: 30px; font-family: var(--mono); font-size: 0.78rem; color: var(--line-strong); letter-spacing: 0.1em; }
.cell.step .ico { color: var(--accent); font-family: var(--mono); font-weight: 600; font-size: 1rem; background: var(--accent-soft); border-color: transparent; }
.cell .meta {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.cell .meta .tick { color: var(--accent); }
.cell.link { cursor: pointer; }
.cell.link .cell-go {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); opacity: 0; transform: translateY(4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.cell.link .cell-go .arrow { transition: transform .25s var(--ease); }
.cell.link:hover .cell-go { opacity: 1; transform: translateY(0); color: var(--accent); }
.cell.link:hover .cell-go .arrow { transform: translateX(4px); }

/* ---------- Service quick-scan summary (top of services.html) ---------- */
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quick-card {
  display: block; border: 1px solid var(--line); border-radius: 14px; padding: 22px 22px 20px; background: var(--panel);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.quick-card:hover { border-color: rgba(13,157,92,0.5); transform: translateY(-3px); box-shadow: 0 24px 44px -28px rgba(0,0,0,0.7); }
.quick-card .n { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.1em; }
.quick-card h3 { font-size: 1.02rem; margin: 8px 0 6px; }
.quick-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Service section (services.html) ---------- */
.service {
  padding: 80px 0;
}
.service:nth-child(even) { background: var(--bg-2); }
.service-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 38px; }
.service-head .titles { max-width: 620px; }
.service-tag {
  display: inline-block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(13,157,92,0.35); background: var(--accent-soft);
  border-radius: 999px; padding: 5px 12px; margin-bottom: 16px;
}
.service h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.service .lede { color: var(--muted); font-size: 1.05rem; margin-top: 14px; max-width: 560px; }
.service-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; }
.service-block h4 {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.step-list { counter-reset: step; display: flex; flex-direction: column; gap: 20px; }
.step-list li { list-style: none; display: flex; gap: 16px; }
.step-list li::before {
  counter-increment: step; content: counter(step);
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.85rem; color: var(--accent);
}
.step-list li .txt p { color: var(--muted); font-size: 0.95rem; margin-top: 2px; }
.who-for { display: flex; flex-direction: column; gap: 12px; }
.who-for .chip {
  display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; background: var(--panel);
}
.who-for .chip svg { color: var(--accent); flex-shrink: 0; }
.service-cta { margin-top: 40px; }

/* ---------- How it works flow ---------- */
.flow { display: flex; flex-direction: column; }
.flow-step {
  display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 40px 0; border-bottom: 1px solid var(--line);
}
.flow-step:last-child { border-bottom: 0; }
.flow-step .marker { display: flex; flex-direction: column; align-items: center; }
.flow-step .marker .n {
  width: 52px; height: 52px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--accent-soft);
  color: var(--accent); font-family: var(--mono); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset, 0 10px 24px -12px rgba(13,157,92,0.35);
}
.flow-step .marker .stem { width: 1px; flex: 1; background: var(--line-strong); margin-top: 10px; }
.flow-step .body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.flow-step .body p { color: var(--muted); font-size: 1rem; max-width: 620px; }
.flow-step .optional { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-left: 10px; }

/* ---------- Founding client / testimonial placeholder ---------- */
.founding-box {
  border: 1px dashed var(--line-strong); border-radius: 18px; padding: 40px 36px; background: var(--panel);
  box-shadow: 0 30px 60px -32px rgba(0,0,0,0.7);
}
.founding-box h3 { font-size: 1.3rem; margin-bottom: 12px; }
.founding-box p { color: var(--muted); font-size: 1rem; max-width: 680px; }
.founding-perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.founding-perks .perk { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; }
.founding-perks .perk svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.quote-placeholder {
  border: 1px dashed var(--line-strong); border-radius: 16px; padding: 28px 26px; margin-top: 30px;
  display: flex; flex-direction: column; gap: 16px; max-width: 420px; opacity: 0.8;
}
.quote-placeholder .avatar-ph {
  width: 44px; height: 44px; border-radius: 50%; border: 1px dashed var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.7rem; font-family: var(--mono);
}
.quote-placeholder blockquote { color: var(--muted); font-style: italic; font-size: 0.95rem; }
.quote-placeholder .who { display: flex; align-items: center; gap: 12px; }
.quote-placeholder .name { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.quote-placeholder .role { font-size: 0.78rem; color: var(--muted); }

/* ---------- About story ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.story p + p { margin-top: 16px; }
.story p { color: var(--muted); font-size: 1.02rem; }
.story .lead-line { color: var(--text); font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-item { background: var(--bg); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; font-weight: 600; font-size: 1rem; color: var(--text);
  transition: background .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--panel); }
.faq-item summary .plus {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--accent); position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--accent); transition: transform .25s var(--ease);
}
.faq-item summary .plus::before { width: 10px; height: 1.5px; }
.faq-item summary .plus::after { width: 1.5px; height: 10px; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] summary { background: var(--panel); }
.faq-item .faq-a { padding: 0 26px 22px; color: var(--muted); font-size: 0.96rem; max-width: 640px; }

/* ---------- Booking ---------- */
.booking-reassure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin: 44px 0; }
.booking-reassure .r { background: var(--bg); padding: 26px 24px; }
.booking-reassure .r .ico { color: var(--accent); margin-bottom: 12px; }
.booking-reassure .r p { font-size: 0.92rem; color: var(--muted); }
.calendly-wrap { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--panel); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }

/* ---------- Final CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--bg-2); }
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 50% 130%, rgba(13,157,92,0.26) 0%, transparent 55%),
    radial-gradient(circle at 90% -10%, rgba(47,224,138,0.12) 0%, transparent 45%);
}
.cta-inner { position: relative; text-align: center; padding: 96px 0; }
.cta-inner h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin: 0 auto; max-width: 680px; }
.cta-inner p { color: var(--muted); font-size: 1.1rem; max-width: 540px; margin: 20px auto 36px; }
.cta-inner .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
footer { background: var(--bg-2); border-bottom: 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding: 44px 0; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; }
.footer-meta span, .footer-meta a { font-size: 0.88rem; color: var(--muted); }
.footer-meta a { position: relative; transition: color .2s ease; }
.footer-meta a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.footer-meta a:hover { color: var(--accent); }
.footer-meta a:hover::after { transform: scaleX(1); }
.footer-meta .dotsep { color: var(--line-strong); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-links.open {
    display: flex; flex-direction: column; gap: 2px; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .mobile-links a {
    position: relative; padding: 14px 28px; font-size: 0.98rem; color: var(--text);
    border-bottom: 1px solid var(--line); border-left: 2px solid transparent;
    transition: border-color .2s ease, background .2s ease, padding-left .2s ease;
  }
  .mobile-links a:last-child { border-bottom: 0; }
  .mobile-links a:active, .mobile-links a[aria-current="page"] {
    border-left-color: var(--accent); background: var(--accent-soft); padding-left: 34px;
  }
  .cols, .cols.cols-4, .cols.cols-5, .service-grid, .story-grid, .booking-reassure, .founding-perks, .quick-grid { grid-template-columns: 1fr; }
  .stat-strip .row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pad { padding: 68px 0; }
  .hero-inner { padding: 72px 0 64px; }
  .service { padding: 64px 0; }
  .flow-step { grid-template-columns: 52px 1fr; }
  .ruled { border-left: 0; border-right: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-split { grid-template-columns: 1fr; }
  .phone-mock { justify-self: start; margin-top: 36px; width: 240px; }
}
