/* ==========================================================================
   LKB Domestic - site styles
   Theme: locked dark navy (brand navy tint) + brand red accent.
   Radius system: cards 20px, inputs 12px, buttons pill.
   ========================================================================== */

:root {
  --navy-950: #080c1c;
  --navy-900: #0d1330;
  --navy-800: #141d45;
  --navy-700: #1f2a8c;   /* brand navy */
  --navy-600: #2c3aa8;
  --red-600: #c9271f;
  --red-500: #e4322b;    /* brand red */
  --red-400: #ff5a4e;
  --ink: #f4f5fa;
  --ink-2: #c9cee3;
  --ink-3: #9aa2c4;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-2: rgba(255, 255, 255, 0.09);
  --shadow: 0 30px 80px -30px rgba(3, 6, 20, 0.9);
  --r-card: 20px;
  --r-input: 12px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-stencil: "Saira Stencil One", "Outfit", Impact, sans-serif;
  --nav-h: 72px;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--red-400); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--red-500); color: #fff; padding: 10px 16px; border-radius: 999px;
}
.skip-link:focus { top: 12px; }

.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }

/* Typography scale */
.h-display { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
.h-1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
.h-2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -0.03em; }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--ink-3); }
.accent { color: var(--red-400); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red-500); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem; line-height: 1;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease-out), background .25s, border-color .25s, box-shadow .25s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary { background: var(--red-500); color: #fff; box-shadow: 0 12px 30px -12px rgba(228, 50, 43, 0.7); }
.btn-primary:hover { background: var(--red-400); box-shadow: 0 16px 36px -12px rgba(228, 50, 43, 0.85); transform: translateY(-2px); }
.btn-ghost {
  background: var(--glass); color: var(--ink); border-color: var(--line-strong);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.btn-ghost:hover { background: var(--glass-2); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* Glass surface (frosted-glass approximation, solid fallback below) */
.glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)), var(--glass);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), var(--shadow);
  -webkit-backdrop-filter: blur(22px) saturate(160%); backdrop-filter: blur(22px) saturate(160%);
  border-radius: var(--r-card);
}
@media (prefers-reduced-transparency: reduce) {
  .glass, .btn-ghost, .nav { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(13, 19, 48, 0.96); }
}

/* Ambient background glow (fixed, cheap) */
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% -10%, rgba(31, 42, 140, 0.55), transparent 60%),
    radial-gradient(40% 40% at -10% 40%, rgba(228, 50, 43, 0.16), transparent 60%);
}
main, .nav, .footer, .sticky-call { position: relative; z-index: 1; }

/* ---------------- Navigation ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 12, 28, 0.72);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-word { font-family: var(--font-stencil); font-size: 1.35rem; letter-spacing: 0.02em; line-height: 1; display: flex; flex-direction: column; }
.brand-word .lkb { color: var(--red-400); font-size: 1.05em; }
.brand-word .dom { color: var(--ink); font-size: 0.7em; letter-spacing: 0.12em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 10px 14px; border-radius: 999px; font-weight: 500; color: var(--ink-2); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: var(--glass); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-weight: 700; color: var(--ink); padding: 10px 14px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--glass); color: var(--ink); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 49;
  background: rgba(8, 12, 28, 0.94); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 28px var(--gutter); display: none; flex-direction: column; gap: 6px;
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 18px; border-bottom: none; font-size: 1.05rem; }
@media (max-width: 1023px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { padding: 12px 18px; font-size: .95rem; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 24px) 0 clamp(48px, 8vh, 96px);
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: -12% 0 0 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 60%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,12,28,0.55) 0%, rgba(8,12,28,0.15) 35%, rgba(8,12,28,0.78) 85%, var(--navy-950) 100%),
    linear-gradient(90deg, rgba(8,12,28,0.72) 0%, rgba(8,12,28,0.25) 55%, rgba(8,12,28,0) 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: end; }
.hero-copy { max-width: 760px; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 22px; text-wrap: balance; }
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card { padding: 26px 28px; }
.hero-card .hero-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.hero-card ul { display: grid; gap: 10px; }
.hero-card li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: .98rem; }
.hero-card li svg { width: 20px; height: 20px; flex: none; color: var(--red-400); margin-top: 3px; }
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-media img { object-position: 68% 60%; }
}

/* Split-line reveal */
.split-line { display: block; overflow: hidden; }
.split-line > span { display: block; will-change: transform; }

/* ---------------- Sections ---------------- */
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; text-wrap: balance; }

/* Trust strip */
.trust {
  margin-top: -40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 8px; border-radius: var(--r-card);
}
.trust-item { padding: 22px 24px; display: grid; gap: 6px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: none; }
.trust-item strong { font-size: 1.05rem; }
.trust-item span { color: var(--ink-3); font-size: .92rem; }
@media (max-width: 1023px) { .trust { grid-template-columns: repeat(2, 1fr); } .trust-item:nth-child(3) { border-left: none; } }
@media (max-width: 560px) { .trust { grid-template-columns: 1fr; } .trust-item { border-left: none; border-top: 1px solid var(--line); } .trust-item:first-child { border-top: none; } }

/* Services bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; gap: 16px; }
.bento-cell {
  position: relative; overflow: hidden; border-radius: var(--r-card);
  border: 1px solid var(--line); background: var(--navy-900); isolation: isolate;
  display: flex; align-items: flex-end; color: var(--ink);
  transition: transform .5s var(--ease-out), border-color .3s;
}
.bento-cell:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.bento-cell img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; z-index: -2; will-change: transform; transition: transform 1s var(--ease-out); }
.bento-cell:hover img { transform: scale(1.04); }
.bento-cell::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,12,28,0) 30%, rgba(8,12,28,0.9) 100%);
}
.bento-body { padding: 24px; width: 100%; }
.bento-body h3 { font-size: 1.35rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.bento-body h3 svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.bento-cell:hover h3 svg { transform: translateX(4px); }
.bento-body p { color: var(--ink-2); font-size: .95rem; max-width: 46ch; }
.bento-price { position: absolute; top: 18px; right: 18px; padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: .85rem; }
.cell-a { grid-column: span 4; grid-row: span 2; }
.cell-b { grid-column: span 2; grid-row: span 2; }
.cell-c, .cell-d, .cell-e { grid-column: span 2; }
.cell-a .bento-body h3 { font-size: 1.8rem; }
@media (max-width: 1023px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
  .cell-a { grid-column: span 2; grid-row: span 1; }
  .cell-b { grid-column: span 1; grid-row: span 1; }
  .cell-c, .cell-d { grid-column: span 1; }
  .cell-e { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .bento-cell { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* How it works: sticky stack */
.steps { position: relative; }
.step {
  position: sticky; top: calc(var(--nav-h) + 16px);
  min-height: min(560px, calc(100dvh - var(--nav-h) - 32px));
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  overflow: hidden; margin-bottom: 24px; transform-origin: top center;
}
.step-media { position: relative; min-height: 320px; }
.step-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.step-copy { padding: clamp(28px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.step-num { font-family: var(--font-stencil); font-size: clamp(3rem, 7vw, 6rem); line-height: .9; color: var(--red-500); }
.step-copy h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.step-copy p { color: var(--ink-2); max-width: 46ch; font-size: 1.05rem; }
@media (max-width: 1023px) {
  /* Cards still stack and stick on tablets and phones, one column, each sliding over the last */
  .step { min-height: 0; grid-template-columns: 1fr; top: calc(var(--nav-h) + 10px); margin-bottom: 16px; }
  .step-media { min-height: 220px; }
}
@media (max-width: 767px) {
  .steps { padding-bottom: 8px; }
  .step-media { min-height: 200px; }
  .step-copy { padding: 22px 22px 26px; gap: 10px; }
  .step-num { font-size: 2.6rem; }
  .step-copy h3 { font-size: 1.45rem; }
  .step-copy p { font-size: .98rem; }
}

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-tile { padding: 28px; display: grid; gap: 8px; align-content: start; }
.price-tile .label { color: var(--ink-3); font-size: .92rem; font-weight: 600; letter-spacing: .02em; }
.price-tile .amount { font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-tile .amount small { font-size: .45em; font-weight: 600; color: var(--ink-2); margin-right: 4px; letter-spacing: 0; }
.price-tile p { color: var(--ink-2); font-size: .95rem; }
.price-note { margin-top: 24px; color: var(--ink-3); font-size: .95rem; max-width: 70ch; }
@media (max-width: 1023px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* Compare */
.compare { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); }
.compare-col { padding: clamp(28px, 4vw, 48px); }
.compare-col.them { background: rgba(255,255,255,0.03); }
.compare-col.us { background: linear-gradient(160deg, rgba(228,50,43,0.18), rgba(31,42,140,0.25)); }
.compare-col h3 { font-size: 1.4rem; margin-bottom: 20px; }
.compare-col li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); color: var(--ink-2); }
.compare-col li:first-child { border-top: none; }
.compare-col li svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.them li svg { color: var(--ink-3); }
.us li { color: var(--ink); }
.us li svg { color: var(--red-400); }
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

/* Areas */
.areas { position: relative; overflow: hidden; isolation: isolate; padding: clamp(80px, 12vw, 160px) 0; }
.areas-media { position: absolute; inset: -15% 0; z-index: -2; }
.areas-media img { width: 100%; height: 100%; object-fit: cover; }
.areas::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--navy-950) 0%, rgba(8,12,28,0.45) 30%, rgba(8,12,28,0.45) 70%, var(--navy-950) 100%); }
.areas-panel { padding: clamp(28px, 4vw, 48px); max-width: 640px; }
.areas-panel h2 { margin-bottom: 14px; }
.areas-panel p { color: var(--ink-2); margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(8,12,28,0.5); font-weight: 600; font-size: .92rem; }
.marquee { margin-top: clamp(40px, 6vw, 80px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 90s linear infinite; }
.marquee-track span { font-family: var(--font-stencil); font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: rgba(255,255,255,0.28); white-space: nowrap; }
.marquee-track span:nth-child(odd) { color: rgba(255,90,78,0.55); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Testimonial */
.quote-wrap { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 32px; align-items: center; }
.quote { margin: 0; min-width: 0; padding: clamp(32px, 5vw, 56px); }
.quote blockquote { margin: 0; font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 600; line-height: 1.35; letter-spacing: -0.015em; }
.quote figcaption { margin-top: 22px; color: var(--ink-3); display: flex; align-items: center; gap: 12px; }
.quote figcaption strong { color: var(--ink); }
.rating { display: inline-flex; gap: 3px; color: var(--red-400); }
.rating svg { width: 18px; height: 18px; }
.quote-side { display: grid; gap: 14px; min-width: 0; }
.quote-side .social { display: flex; margin-top: 14px; }
.quote-side .glass { padding: 24px; }
.quote-side .glass strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.quote-side .glass span { color: var(--ink-3); font-size: .92rem; }
@media (max-width: 900px) { .quote-wrap { grid-template-columns: minmax(0, 1fr); } }

/* FAQ */
.faq { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  font-weight: 700; font-size: 1.1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 22px; height: 22px; flex: none; color: var(--red-400); transition: transform .3s var(--ease-out); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .answer { padding: 0 0 22px; color: var(--ink-2); max-width: 62ch; }
@media (max-width: 900px) { .faq { grid-template-columns: minmax(0, 1fr); gap: 24px; } }

/* Quote / CTA */
.cta { position: relative; overflow: hidden; isolation: isolate; padding: clamp(80px, 10vw, 140px) 0; }
.cta-media { position: absolute; inset: -12% 0; z-index: -2; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--navy-950), rgba(8,12,28,0.55) 40%, rgba(8,12,28,0.7)); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; align-items: start; }
.cta-copy h2 { margin-bottom: 16px; }
.cta-copy .lead { margin-bottom: 28px; }
.cta-alt { display: grid; gap: 12px; }
.cta-alt a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(8,12,28,0.5); transition: border-color .2s, background .2s; }
.cta-alt a:hover { border-color: var(--line-strong); background: rgba(8,12,28,0.7); }
.cta-alt a svg { width: 22px; height: 22px; flex: none; color: var(--red-400); }
.cta-alt a span { display: block; color: var(--ink-3); font-size: .88rem; }
.cta-alt a strong { display: block; }
.form { padding: clamp(24px, 3.5vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--r-input);
  background: rgba(8,12,28,0.55); border: 1px solid var(--line-strong); color: var(--ink); font: inherit; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #8b93b8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red-400); box-shadow: 0 0 0 4px rgba(228,50,43,0.2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23c9cee3' stroke-width='2'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { color: #111; }
.field textarea { min-height: 120px; resize: vertical; }
.field .help { color: var(--ink-3); font-size: .85rem; }
.field .error { color: #ff8a80; font-size: .88rem; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #ff8a80; }
.field.is-invalid .error { display: block; }
.file-drop {
  display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px dashed var(--line-strong); border-radius: var(--r-input);
  background: rgba(8,12,28,0.4); cursor: pointer; color: var(--ink-2); transition: border-color .2s, background .2s;
}
.file-drop:hover { border-color: var(--red-400); background: rgba(8,12,28,0.6); }
.file-drop svg { width: 24px; height: 24px; color: var(--red-400); flex: none; }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 6px; }
.form-foot small { color: var(--ink-3); }
.form-status { grid-column: 1 / -1; padding: 16px 18px; border-radius: var(--r-input); display: none; }
.form-status.ok { display: block; background: rgba(46, 204, 113, 0.14); border: 1px solid rgba(46, 204, 113, 0.4); }
.form-status.err { display: block; background: rgba(228, 50, 43, 0.14); border: 1px solid rgba(228, 50, 43, 0.4); }
@media (max-width: 1023px) { .cta-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 48px; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer .footer-heading { margin: 0; font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.footer li { padding: 6px 0; color: var(--ink-2); }
.footer li a:hover { color: var(--ink); }
.footer-brand p { color: var(--ink-3); margin-top: 14px; max-width: 40ch; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--ink-3); font-size: .9rem; }
.social { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--ink); font-weight: 600; }
.social svg { width: 20px; height: 20px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Sticky mobile call bar */
.sticky-call {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 48;
  display: none; gap: 8px; padding: 8px; border-radius: 999px;
}
.sticky-call .btn { flex: 1; padding: 14px 16px; font-size: .95rem; }


/* Service page extras */
.page-hero { min-height: 72dvh; }
.page-hero .hero-grid { align-items: end; }
.content-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: start; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); margin-bottom: 16px; max-width: 65ch; }
.prose ul { display: grid; gap: 10px; margin: 0 0 20px; }
.prose li { display: flex; gap: 12px; color: var(--ink-2); }
.prose li::before { content: ""; width: 8px; height: 8px; margin-top: 10px; border-radius: 999px; background: var(--red-500); flex: none; }
.side-card { padding: 28px; position: sticky; top: calc(var(--nav-h) + 20px); display: grid; gap: 14px; }
.side-card h3 { font-size: 1.15rem; }
.side-card .amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.side-card .amount small { font-size: .45em; color: var(--ink-2); font-weight: 600; margin-right: 4px; }
.side-card p { color: var(--ink-2); font-size: .95rem; }
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related a { padding: 22px; display: grid; gap: 6px; transition: transform .4s var(--ease-out), border-color .3s; }
.related a:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.related strong { font-size: 1.1rem; }
.related span { color: var(--ink-3); font-size: .92rem; }
@media (max-width: 1023px) { .content-grid { grid-template-columns: 1fr; } .side-card { position: static; } }
@media (max-width: 700px) { .related { grid-template-columns: 1fr; } }

/* Reveal defaults (JS sets initial state; no-JS shows content) */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js.reduced-motion .reveal { opacity: 1; transform: none; }

/* ---------------- Mobile tuning (phones) ----------------
   Lighter blur and no parallax so low-end phones scroll at 60fps. Parallax is gated in site.js. */
@media (max-width: 767px) {
  .glass { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 18px 40px -24px rgba(3, 6, 20, 0.9); }
  .nav.is-scrolled { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
  .ambient { background: radial-gradient(70% 40% at 80% -10%, rgba(31, 42, 140, 0.5), transparent 60%); }
  .hero-media, .areas-media, .cta-media { inset: 0; }
  .bento-cell img { inset: 0; height: 100%; }
  .btn { min-height: 48px; }
  .nav-links a, .chip, .faq summary { min-height: 44px; }
  .section { padding: 64px 0; }
  .marquee-track { animation-duration: 70s; }
  .sticky-call { left: 10px; right: 10px; bottom: 10px; }
  .quote figcaption { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-copy .eyebrow { font-size: .7rem; }
}

/* ==========================================================================
   Interaction layer: hover, spotlight, tilt, text and image reveals
   Signature easing: cubic-bezier(0.4, 0, 0.2, 1). Quick 160ms / standard 360ms / slow 700ms.
   ========================================================================== */
:root { --ease-std: cubic-bezier(0.4, 0, 0.2, 1); --ease-back: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

/* Scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 60; background: var(--red-500); transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; box-shadow: 0 0 12px rgba(228,50,43,.6); }

/* Ambient life: two drifting blobs behind everything */
.ambient::before, .ambient::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; will-change: transform; }
.ambient::before { width: 60vw; height: 60vw; right: -20vw; top: -25vw; background: radial-gradient(circle, rgba(31,42,140,.55), transparent 65%); animation: drift-a 26s ease-in-out infinite alternate; }
.ambient::after { width: 40vw; height: 40vw; left: -18vw; top: 30vh; background: radial-gradient(circle, rgba(228,50,43,.22), transparent 65%); animation: drift-b 32s ease-in-out infinite alternate; }
@keyframes drift-a { to { transform: translate(-8vw, 10vh) scale(1.12); } }
@keyframes drift-b { to { transform: translate(10vw, -8vh) scale(0.92); } }
@media (max-width: 767px), (prefers-reduced-motion: reduce) { .ambient::before, .ambient::after { animation: none; } }

/* Spotlight: a soft light follows the cursor across glass surfaces */
.spot { --mx: 50%; --my: 50%; }
.spot::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .36s var(--ease-std);
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255,255,255,.10), transparent 55%); }
.spot:hover::before { opacity: 1; }
.spot-border::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; padding: 1px; opacity: 0; transition: opacity .36s var(--ease-std);
  background: radial-gradient(300px circle at var(--mx) var(--my), rgba(255,90,78,.7), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; }
.spot-border:hover::after { opacity: 1; }
.price-tile, .related a { position: relative; overflow: hidden; }
.price-tile { transition: transform .36s var(--ease-std), border-color .36s; }
.price-tile:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.price-tile:hover .amount { color: #fff; text-shadow: 0 0 24px rgba(255,90,78,.45); }
.price-tile .amount { transition: text-shadow .36s var(--ease-std); }

/* Buttons: shine sweep, press squash, magnetic pull (transform owned by JS when magnetic) */
.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; top: -40%; bottom: -40%; width: 40%; left: -60%; transform: skewX(-20deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transition: left .7s var(--ease-std); pointer-events: none; }
.btn:hover::after { left: 130%; }
.btn > * { position: relative; }
.btn.is-magnetic { transition-property: background, border-color, box-shadow; }
.btn.is-magnetic:hover { transform: none; }

/* Nav link underline slides in from the left */
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--red-400); border-radius: 2px; transform: scaleX(0); transform-origin: 0 50%; transition: transform .36s var(--ease-std); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { background: transparent; }

/* Hero: slow settle on the photo, glow ring on the primary CTA */
.js .hero-media img { transform: scale(1.08); }
.hero-actions .btn-primary { box-shadow: 0 12px 30px -12px rgba(228,50,43,.7), 0 0 0 0 rgba(228,50,43,.45); animation: cta-ring 2.8s var(--ease-std) 1.6s 3; }
@keyframes cta-ring { 0% { box-shadow: 0 12px 30px -12px rgba(228,50,43,.7), 0 0 0 0 rgba(228,50,43,.45); } 60% { box-shadow: 0 12px 30px -12px rgba(228,50,43,.7), 0 0 0 16px rgba(228,50,43,0); } 100% { box-shadow: 0 12px 30px -12px rgba(228,50,43,.7), 0 0 0 0 rgba(228,50,43,0); } }

/* Bento tiles: 3D tilt (JS), cursor light, image zoom, description slides up */
.bento { perspective: 1200px; }
.bento-cell { transform-style: preserve-3d; transition: border-color .36s; }
.bento-cell::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity .36s var(--ease-std);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.16), transparent 55%); }
.bento-cell:hover::before { opacity: 1; }
.bento-cell:hover img { transform: scale(1.07); }
.bento-body { position: relative; z-index: 1; }
.bento-body p { transition: transform .4s var(--ease-std), opacity .4s var(--ease-std); }
.bento-body h3 { transition: transform .4s var(--ease-std); }
@media (hover: hover) and (min-width: 1024px) {
  .bento-body p { opacity: 0; transform: translateY(10px); }
  .bento-body h3 { transform: translateY(12px); }
  .bento-cell:hover .bento-body p { opacity: 1; transform: translateY(0); }
  .bento-cell:hover .bento-body h3 { transform: translateY(0); }
}
.bento-price { transition: transform .36s var(--ease-std), background .36s; }
.bento-cell:hover .bento-price { transform: scale(1.06); background: rgba(228,50,43,.35); }

/* Word-by-word heading reveal */
.w-wrap { display: inline-block; }
.w-wrap > span { display: inline-block; will-change: transform, opacity; }



/* Compare: check marks draw in */
.compare-col li svg path { stroke-dasharray: 30; }
.js .compare-col li svg path { stroke-dashoffset: 30; }

/* Chips */
.chip { transition: transform .36s var(--ease-std), border-color .36s, background .36s, color .36s; }
.chip:hover { transform: translateY(-3px); border-color: var(--red-400); background: rgba(228,50,43,.18); }

/* Testimonial stars */
.js .rating svg { transform: scale(0); }

/* FAQ: animated open, plus icon spin, hover tint */
.faq .answer { overflow: hidden; }
.faq details[open] summary svg { transform: rotate(135deg); }

/* CTA alt links: icon nudges, background lifts */
.cta-alt a { transition: transform .36s var(--ease-std), border-color .2s, background .2s; }
.cta-alt a:hover { transform: translateX(6px); }

/* Form */
.field:focus-within label { color: var(--red-400); }
.field label { transition: color .2s; }

/* Related cards */
.related a { transition: transform .36s var(--ease-std), border-color .36s; }
.related a strong { transition: color .2s; }
.related a:hover strong { color: var(--red-400); }

/* Sticky call bar rises once the hero has passed */
.js .sticky-call { transform: translateY(140%); transition: transform .5s var(--ease-std); }
.js .sticky-call.is-visible { transform: none; }

/* Footer social */
.social svg { transition: transform .36s var(--ease-back); }
.social:hover svg { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .hero-actions .btn-primary { animation: none; }
  .js .hero-media img { transform: none; }
  .js .rating svg { transform: none; }
  .js .compare-col li svg path { stroke-dashoffset: 0; }
  .js .sticky-call { transform: none; }
  .btn::after { display: none; }
}
.bento-cell:focus-visible .bento-body p, .bento-cell:focus-visible .bento-body h3 { opacity: 1; transform: none; }

/* ==========================================================================
   Pass 3: richer UI, one distinct entrance per section
   ========================================================================== */

/* Film grain: fixed, cheap, adds texture to the flat navy */
.grain { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
main, .footer { z-index: 3; }
.nav { z-index: 50; }
.mobile-menu { z-index: 49; }
.sticky-call { z-index: 48; }
.progress { z-index: 60; }

/* Section hairlines so dark sections read as separate rooms */
.section-line { position: relative; }
.section-line::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18) 20%, rgba(255,90,78,.5) 50%, rgba(255,255,255,.18) 80%, transparent); transform: scaleX(0); transform-origin: 50% 50%; }
.section-line.is-in::before { animation: line-in 1.1s var(--ease-std) forwards; }
@keyframes line-in { to { transform: scaleX(1); } }

/* Hero: accent line, eyebrow rule draws in, arrow on primary CTA */
.hero h1 .accent-word { color: var(--red-400); }
.js .hero .eyebrow::before { transform: scaleX(0); transform-origin: 0 50%; animation: line-in .9s var(--ease-std) .4s forwards; }
.btn-arrow { transition: transform .36s var(--ease-std); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Stat strip */
.trust-item { grid-template-rows: auto auto auto; align-content: start; }
.trust-item .trust-num, .trust-item .trust-num span { color: var(--red-400); font-size: inherit; }
.trust-num { font-family: var(--font-stencil); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: .95; color: var(--red-400); letter-spacing: .02em; margin-bottom: 4px; }
.trust-item strong { font-size: 1.02rem; }
.js .trust-item { opacity: 0; transform: translateX(-24px); }

/* Service tiles: wipe up from the bottom edge (JS drives clip-path) */
.js .bento-cell { clip-path: inset(100% 0 0 0 round var(--r-card)); }
.js .bento-cell img { transform: scale(1.2); }

/* Manifesto: pinned statement, words brighten with scroll */
.manifesto { position: relative; padding: clamp(80px, 12vw, 160px) 0; min-height: 70dvh; display: flex; align-items: center; }
.manifesto-text { font-size: clamp(1.7rem, 3.6vw, 3.1rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.22; max-width: 22ch; text-wrap: pretty; }
.manifesto-text .mw { display: inline-block; color: #ffffff; opacity: .16; will-change: opacity; }
.manifesto-text .mw.hi { color: var(--red-400); }
@media (max-width: 1023px) { .manifesto { min-height: 0; } .manifesto-text { max-width: 24ch; } }

/* Pricing: tiles hinge in from the top edge */
.js .price-tile { opacity: 0; transform: perspective(900px) rotateX(-18deg) translateY(28px); transform-origin: 50% 0; }
.js .price-note { opacity: 0; }

/* Compare: the LKB column sweeps in, rows follow */
.compare-col.us { position: relative; overflow: hidden; }
.js .compare-col.us::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(228,50,43,0.18), rgba(31,42,140,0.25)); transform: scaleX(0); transform-origin: 0 50%; }
.js .compare-col.us { background: transparent; }
.compare-col.us > * { position: relative; }

/* Areas: chips pop, panel slides from the left */
.js .chip { opacity: 0; transform: scale(.6); }
.js .areas-panel { opacity: 0; transform: translateX(-32px); }

/* Testimonial: lines rise inside a mask, side cards slide from the right */
.js .quote-side .glass { opacity: 0; transform: translateX(28px); }
.quote blockquote .split-line > span { will-change: transform; }

/* FAQ rows slide from the left with their hairline drawing */
.js .faq-list details { opacity: 0; transform: translateX(-20px); }

/* CTA: copy from left, form from right, fields cascade */
.js .cta-copy { opacity: 0; transform: translateX(-24px); }
.js .form { opacity: 0; transform: translateY(32px); }
.js .form .field, .js .form .form-foot { opacity: 0; transform: translateY(14px); }

/* Footer columns cascade */
.js .footer-grid > div { opacity: 0; transform: translateY(18px); }

/* Steps: number and copy drift up as each card settles (light, the stack itself is the story) */
.js .step-copy > * { opacity: 0; transform: translateY(16px); }

@media (prefers-reduced-motion: reduce) {
  .js .trust-item, .js .bento-cell, .js .bento-cell img, .js .price-tile, .js .price-note, .js .chip, .js .areas-panel,
  .js .quote-side .glass, .js .faq-list details, .js .cta-copy, .js .form, .js .form .field, .js .form .form-foot,
  .js .footer-grid > div, .js .step-copy > * { opacity: 1; transform: none; clip-path: none; }
  .manifesto-text .mw { opacity: 1; }
  .js .compare-col.us::before { transform: none; }
  .section-line::before, .js .hero .eyebrow::before { transform: none; animation: none; }
}
.js .compare-col.us::before { transition: transform 1s var(--ease-std); }
.js .compare-col.us.is-in::before { transform: scaleX(1); }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.manifesto-media { margin: 0; padding: 10px; overflow: hidden; }
.manifesto-frame { overflow: hidden; border-radius: 14px; }
.manifesto-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; will-change: transform; }
.manifesto-media figcaption { padding: 14px 8px 6px; color: var(--ink-3); font-size: .9rem; }
.js .manifesto-media { opacity: 0; transform: translateY(40px) rotate(2deg); }
@media (max-width: 1023px) { .manifesto-grid { grid-template-columns: 1fr; } .manifesto-media { max-width: 520px; } }
@media (prefers-reduced-motion: reduce) { .js .manifesto-media { opacity: 1; transform: none; } }

/* ---------------- Device pass: phones and iPads ----------------
   Touch devices get the same story with cheaper effects. */
.btn, .chip, .nav-links a, .faq summary, .bento-cell, .cta-alt a, .related a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
@media (max-width: 1180px) { .nav-phone { display: none; } }
@media (max-width: 1023px) {
  .grain { opacity: .04; }
  .manifesto-text { font-size: clamp(1.6rem, 4.6vw, 2.6rem); }
  .manifesto-media { margin-top: 8px; }
  .trust-num { font-size: 2.4rem; }
}
@media (max-width: 767px) {
  .grain { display: none; }
  .ambient::before, .ambient::after { display: none; }
  .manifesto { padding: 64px 0; }
  .manifesto-text { max-width: none; font-size: clamp(1.5rem, 6.4vw, 2rem); }
  .manifesto-media { max-width: none; }
  .bento-cell { clip-path: none !important; }
  .js .bento-cell { opacity: 0; transform: translateY(24px); }
  .js .price-tile { transform: translateY(24px); }
  .hero .eyebrow { max-width: 90%; }
  .trust-item { padding: 18px 20px; }
}
@media (hover: none) {
  .bento-body p, .bento-body h3 { opacity: 1; transform: none; }
  .bento-cell:hover img { transform: none; }
  .btn::after { display: none; }
}

/* Footer credit */
.credit { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.credit > a:first-of-type { color: var(--ink-2); font-weight: 600; }
.credit > a:first-of-type:hover { color: var(--ink); }
.credit-btn { display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--ink); font-weight: 600; font-size: .85rem; transition: border-color .2s, background .2s, transform .36s var(--ease-std); }
.credit-btn:hover { border-color: var(--red-400); background: rgba(228,50,43,.16); transform: translateY(-2px); }

@media (max-width: 767px) {
  .bento-cell::after { background: linear-gradient(180deg, rgba(8,12,28,0) 15%, rgba(8,12,28,0.62) 50%, rgba(8,12,28,0.96) 100%); }
  .cell-a .bento-body h3 { font-size: 1.5rem; }
  .bento-body h3 { text-shadow: 0 2px 12px rgba(0,0,0,.5); }
  .bento-body p { text-shadow: 0 1px 8px rgba(0,0,0,.6); }
}

/* ---------------- Mobile nav rework ----------------
   Phones: call button in the top bar, message + quote in the bottom bar, close icon when the menu is open. */
.nav-call { display: none; width: 46px; height: 46px; border-radius: 999px; background: var(--red-500); color: #fff; align-items: center; justify-content: center; box-shadow: 0 10px 24px -12px rgba(228,50,43,.8); }
.nav-call svg { width: 22px; height: 22px; }
.nav-call:active { transform: scale(.96); }
.nav.menu-open { background: rgba(8, 12, 28, 0.96); border-bottom-color: var(--line); -webkit-backdrop-filter: none; backdrop-filter: none; }
.nav-toggle .ico-close { display: none; }
.nav-toggle.is-open .ico-open { display: none; }
.nav-toggle.is-open .ico-close { display: block; }
.mobile-menu { overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 48px; gap: 0; }
.mobile-menu a { font-size: 1.3rem; padding: 14px 0; }
.mobile-menu a.sub { font-size: 1rem; font-weight: 500; color: var(--ink-2); padding: 10px 0 10px 18px; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu .btn { margin-top: 22px; border-bottom: none; font-size: 1.05rem; padding: 16px 24px; }
.mobile-menu .btn-ghost { margin-top: 12px; }
.mobile-menu .btn svg { width: 20px; height: 20px; }
.js .mobile-menu > * { opacity: 0; transform: translateY(10px); }
.js .mobile-menu[data-open="true"] > * { opacity: 1; transform: none; }
@media (max-width: 1023px) {
  .nav-quote { display: none; }
  .nav-call { display: inline-flex; }
  .nav-cta { gap: 8px; }
}
.sticky-call .btn svg { width: 18px; height: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.field label .muted { font-weight: 400; font-size: .85em; }
@media (prefers-reduced-motion: reduce) { .js .mobile-menu > * { opacity: 1; transform: none; } }
.credit-text { color: var(--ink-3); }
.credit-text strong { color: var(--red-400); letter-spacing: .04em; }
.credit-btn { border-color: rgba(255,90,78,.5); }

/* ---------------- No form: Messenger CTA panel ----------------*/
.sticky-call { display: none !important; }
.cta-steps { padding: clamp(24px, 3.5vw, 36px); }
.cta-steps-title { font-size: 1.1rem; margin-bottom: 18px; }
.cta-steps ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.cta-steps li { display: flex; gap: 14px; align-items: flex-start; }
.cta-steps li strong { display: block; margin-bottom: 2px; }
.cta-steps li span:last-child { color: var(--ink-2); font-size: .95rem; }
.step-badge { flex: none; width: 34px; height: 34px; border-radius: 999px; background: var(--red-500); color: #fff; font-family: var(--font-stencil); font-size: 1.05rem; display: inline-flex; align-items: center; justify-content: center; }
.js .cta-steps { opacity: 0; transform: translateY(32px); }
.js .cta-steps li { opacity: 0; transform: translateX(14px); }
.side-card .btn { width: 100%; }
.side-card .btn + .btn { margin-top: -4px; }
@media (max-width: 1023px) { .cta-grid { gap: 28px; } }

/* ---------------- Mobile motion pass: livelier, still cheap ----------------
   Phones now get the tile wipe, alternating slide-ins, and photo drift. All transform/opacity/clip only. */
@media (max-width: 767px) {
  .bento-cell { clip-path: inset(100% 0 0 0 round var(--r-card)); }
  .js .bento-cell { opacity: 1; transform: none; }
  .js .compare-col.them { transform: translateX(-24px); opacity: 0; }
  .js .quote { opacity: 0; transform: translateY(24px) scale(.98); }
  .js .trust-item:nth-child(even) { transform: translateX(24px); }
  .step-num { display: inline-block; }
  .js .step .step-num { opacity: 0; transform: translateY(24px) scale(.8); }
  .js .step-media img { transform: scale(1.12); }
  .marquee-track span { font-size: 1.5rem; }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .bento-cell { clip-path: none; }
  .js .compare-col.them, .js .quote, .js .trust-item, .js .step .step-num, .js .step-media img { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .js .cta-steps, .js .cta-steps li { opacity: 1; transform: none; } }

/* ---------------- Brand colour pass: blue, red and white to match the Facebook page ----------------*/
:root { --blue-500: #2f46d8; --blue-400: #5b6cff; --blue-300: #8b97ff; --navy-950: #070b22; --navy-900: #0c1236; }
.brand-word .dom { color: var(--blue-300); }
.eyebrow::before { background: var(--blue-400); }
.hero-card li svg, .compare-col.us li svg { color: var(--blue-300); }
.btn-ghost { border-color: rgba(91,108,255,.45); }
.btn-ghost:hover { background: rgba(91,108,255,.16); border-color: var(--blue-400); }
.nav-call { background: var(--blue-500); box-shadow: 0 10px 24px -12px rgba(47,70,216,.9); }
.nav-links a::after { background: var(--blue-400); }
.chip:hover { border-color: var(--blue-400); background: rgba(91,108,255,.18); }
.step-badge { background: var(--blue-500); }
.marquee-track span:nth-child(odd) { color: rgba(139,151,255,.55); }
.section-line::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,.18) 20%, rgba(91,108,255,.6) 50%, rgba(255,255,255,.18) 80%, transparent); }
.footer .footer-heading { color: var(--blue-300); }
.faq summary svg { color: var(--blue-300); }
.quote-side .glass strong, .related a:hover strong { color: var(--blue-300); }
.ambient { background: radial-gradient(60% 50% at 85% -10%, rgba(47,70,216,.6), transparent 60%), radial-gradient(40% 40% at -10% 40%, rgba(228,50,43,.16), transparent 60%); }
.compare-col.us::before, .js .compare-col.us::before { background: linear-gradient(160deg, rgba(228,50,43,0.2), rgba(47,70,216,0.32)); }
.bento-cell:hover .bento-price { background: rgba(47,70,216,.4); }
:focus-visible { outline-color: var(--blue-400); }
.social:hover { color: var(--blue-300); }
.manifesto-media { border-color: rgba(91,108,255,.25); }

/* ---------------- Hero with a framed real photo (portrait phone shots) ----------------*/
.hero { align-items: center; padding-top: calc(var(--nav-h) + 40px); }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; filter: blur(34px) saturate(120%); opacity: .55; transform: scale(1.25); }
.hero-scrim { background: linear-gradient(180deg, rgba(7,11,34,.7) 0%, rgba(7,11,34,.35) 40%, rgba(7,11,34,.85) 90%, var(--navy-950) 100%), radial-gradient(60% 70% at 70% 45%, rgba(47,70,216,.25), transparent 70%); }
.hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: center; gap: clamp(28px, 5vw, 64px); }
.hero-side { display: grid; gap: 14px; }
.hero-photo { margin: 0; padding: 10px; overflow: hidden; border-radius: 24px; }
.hero-photo picture, .hero-photo img { display: block; width: 100%; border-radius: 16px; aspect-ratio: 1 / 1; object-fit: cover; }
.hero-photo figcaption { padding: 12px 6px 4px; color: var(--ink-2); font-size: .9rem; }
.hero-card { padding: 16px 20px; }
.hero-card ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-card li { font-size: .88rem; align-items: center; }
.hero-card .hero-card-title { margin-bottom: 10px; font-size: .95rem; }
.js .hero-photo { opacity: 0; transform: translateY(30px) rotate(1.5deg); }
.js .hero-media img { transform: scale(1.25); }
@media (max-width: 1023px) {
  .hero { min-height: 0; padding-bottom: 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { margin-top: 8px; }
  .hero-card { display: none; }
  .hero-photo picture, .hero-photo img { aspect-ratio: 1 / 1; }
}
@media (max-width: 767px) { .hero-backdrop { display: none; } .hero-photo { padding: 8px; border-radius: 20px; } }
@media (prefers-reduced-motion: reduce) { .js .hero-photo { opacity: 1; transform: none; } }

/* Four tiles: clean-outs large, dump runs tall, two supporting */
.cell-c, .cell-d { grid-column: span 3; }
@media (max-width: 1023px) { .cell-c, .cell-d { grid-column: span 1; } }
