/* ============================================================================
   SCROB SERVICES — Premium Design System
   Self-contained, no build step. Theme via the :root tokens below.
   (Productization: change the tokens in :root to re-skin for another client.)
   ========================================================================== */

/* ----------  Design Tokens  ---------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #07142b;
  --navy-800: #0b1f3a;
  --navy-700: #10294a;
  --navy-600: #1a3a6b;
  --navy-500: #244a85;

  --mint-500: #10b981;   /* fresh / clean accent */
  --mint-400: #34d399;
  --cyan-400: #38bdf8;

  --ink: #0d1b2a;
  --ink-soft: #44546a;
  --muted: #6b7a90;
  --line: #e6ecf4;
  --paper: #ffffff;
  --canvas: #f5f8fc;

  /* Signature gradients */
  --grad-brand: linear-gradient(135deg, #1a3a6b 0%, #10294a 55%, #07142b 100%);
  --grad-fresh: linear-gradient(120deg, #10b981 0%, #38bdf8 100%);
  --grad-glass: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));

  /* Typography */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  /* Shape & depth */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 4px 14px rgba(13,27,42,.06);
  --shadow-md: 0 10px 30px rgba(13,27,42,.10);
  --shadow-lg: 0 30px 60px -20px rgba(7,20,43,.35);
  --ring: 0 0 0 4px rgba(56,189,248,.18);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ----------  Reset  ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* ----------  Layout helpers  --------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-fresh); border-radius: 2px; }
.eyebrow--light { color: var(--mint-400); }

h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -.02em; font-weight: 700; color: var(--ink); }
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -.015em;
  line-height: 1.04;
}
.h-hero { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-sec  { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.lead   { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }
.section-head .h-sec { margin: 16px 0 14px; }

.gradient-text {
  background: var(--grad-fresh);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ----------  Buttons  ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-fresh); color: #04201a; box-shadow: 0 12px 28px -10px rgba(16,185,129,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(16,185,129,.75); }
.btn--dark { background: var(--navy-700); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--navy-600); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ----------  Navigation  -------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding: 12px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-sm); flex: none;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-size: 1.18rem; color: var(--ink); }
.brand__name small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .22em; color: var(--muted); }
.nav.on-dark:not(.scrolled) .brand__name { color: #fff; }
.nav.on-dark:not(.scrolled) .brand__name small { color: rgba(255,255,255,.65); }

.nav__menu { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 600; font-size: .96rem; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad-fresh); transition: width .25s; border-radius: 2px; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav.on-dark:not(.scrolled) .nav__links a { color: rgba(255,255,255,.8); }
.nav.on-dark:not(.scrolled) .nav__links a:hover { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.nav.on-dark:not(.scrolled) .nav__phone { color: #fff; }
.nav__phone svg { width: 18px; height: 18px; color: var(--mint-500); }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ----------  Hero  -------------------------------------------------------- */
.hero { position: relative; padding: clamp(140px, 18vh, 220px) 0 clamp(80px, 10vw, 130px); color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -3; background: var(--grad-brand); }
.hero__aurora { position: absolute; inset: -20% -10% auto; height: 120%; z-index: -2; filter: blur(60px); opacity: .9; }
.hero__aurora span { position: absolute; border-radius: 50%; }
.hero__aurora .b1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(16,185,129,.55), transparent 65%); top: -8%; left: -6%; animation: float1 16s ease-in-out infinite; }
.hero__aurora .b2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(56,189,248,.5), transparent 65%); top: 12%; right: -4%; animation: float2 18s ease-in-out infinite; }
.hero__aurora .b3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(36,74,133,.7), transparent 60%); bottom: -18%; left: 38%; animation: float1 22s ease-in-out infinite reverse; }
.hero__grid-overlay { position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%); }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px,30px); } }

.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-size: .85rem; font-weight: 600;
  backdrop-filter: blur(6px); margin-bottom: 26px;
}
.hero__pill b { background: var(--grad-fresh); color: #04201a; padding: 4px 10px; border-radius: 999px; font-size: .74rem; letter-spacing: .04em; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: transparent; background: var(--grad-fresh); -webkit-background-clip: text; background-clip: text; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.85); }
.hero__trust-item svg { width: 20px; height: 20px; color: var(--mint-400); flex: none; }
.hero__rating { display: flex; align-items: center; gap: 10px; }
.stars { color: #ffd166; letter-spacing: 2px; }

/* Hero visual / glass card stack */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(160deg,#1e4a86,#0b1f3a);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(7,20,43,.55)); }
.glass-card {
  position: absolute; padding: 16px 18px; border-radius: var(--r-md);
  background: var(--grad-glass); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px); box-shadow: var(--shadow-md); color: #fff;
}
.glass-card--stat { bottom: 26px; left: -26px; min-width: 190px; }
.glass-card--stat .num { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.glass-card--stat .lbl { font-size: .8rem; color: rgba(255,255,255,.78); margin-top: 4px; }
.glass-card--badge { top: 28px; right: -20px; display: flex; align-items: center; gap: 12px; }
.glass-card--badge .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-fresh); display: grid; place-items: center; color: #04201a; flex: none; }
.glass-card--badge .ic svg { width: 22px; height: 22px; }
.glass-card--badge small { display: block; font-size: .72rem; color: rgba(255,255,255,.7); }
.glass-card--badge strong { font-size: .95rem; }
@media (max-width: 560px) { .glass-card--stat { left: 8px; } .glass-card--badge { right: 8px; } }

/* ----------  Marquee / trust bar  ---------------------------------------- */
.trustbar { background: var(--paper); border-block: 1px solid var(--line); }
.trustbar__inner { display: flex; align-items: center; gap: clamp(28px, 5vw, 64px); padding: 26px 0; flex-wrap: wrap; justify-content: center; }
.trustbar__label { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.trustbar__items { display: flex; flex-wrap: wrap; gap: clamp(20px,4vw,48px); align-items: center; }
.trustbar__items span { font-weight: 700; color: var(--navy-600); opacity: .8; display: inline-flex; align-items: center; gap: 8px; }
.trustbar__items svg { width: 20px; height: 20px; color: var(--mint-500); }

/* ----------  Services  ---------------------------------------------------- */
.services__grid { grid-template-columns: repeat(3, 1fr); }
.svc {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc__media { aspect-ratio: 16/11; position: relative; overflow: hidden; background: var(--grad-brand); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc:hover .svc__media img { transform: scale(1.06); }
.svc__icon { position: absolute; left: 18px; bottom: -22px; width: 56px; height: 56px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; }
.svc__icon svg { width: 28px; height: 28px; color: var(--navy-600); }
.svc__body { padding: 36px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.svc__body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc__body p { color: var(--ink-soft); margin-bottom: 18px; }
.svc__list { display: grid; gap: 9px; margin-bottom: 22px; }
.svc__list li { display: flex; gap: 10px; font-size: .94rem; color: var(--ink-soft); }
.svc__list svg { width: 18px; height: 18px; color: var(--mint-500); flex: none; margin-top: 3px; }
.svc__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy-600); }
.svc__link svg { width: 18px; height: 18px; transition: transform .25s; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ----------  Feature / why us  ------------------------------------------- */
.why { background: var(--paper); }
.why__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.why__media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-lg); background: var(--grad-brand); }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.feat { display: grid; gap: 22px; }
.feat__item { display: flex; gap: 18px; padding: 18px; border-radius: var(--r-md); transition: background .25s, transform .25s; }
.feat__item:hover { background: var(--canvas); transform: translateX(4px); }
.feat__ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(160deg,#e9fbf3,#dff4ff); display: grid; place-items: center; flex: none; }
.feat__ic svg { width: 26px; height: 26px; color: var(--mint-500); }
.feat__item h4 { font-size: 1.12rem; margin-bottom: 4px; }
.feat__item p { color: var(--ink-soft); font-size: .96rem; }

/* ----------  Before / After  --------------------------------------------- */
.ba { background: var(--canvas); }
.ba__wrap { max-width: 980px; margin-inline: auto; }
.ba__compare {
  position: relative; aspect-ratio: 16/9; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: none; cursor: ew-resize; background:#0b1f3a;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__tag { position: absolute; top: 16px; padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; backdrop-filter: blur(6px); }
.ba__tag--before { left: 16px; background: rgba(7,20,43,.65); color: #fff; }
.ba__tag--after { right: 16px; background: var(--grad-fresh); color: #04201a; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 20px rgba(0,0,0,.4); }
.ba__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--navy-600); }
.ba__knob svg { width: 26px; height: 26px; }

/* ----------  Process steps  ---------------------------------------------- */
.process__grid { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding: 30px 24px; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step__n { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--navy-500); opacity: .55; margin-bottom: 14px; }
.step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .95rem; }
.step__ic { position: absolute; top: 26px; right: 24px; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(160deg,#e9fbf3,#dff4ff); display: grid; place-items: center; }
.step__ic svg { width: 20px; height: 20px; color: var(--mint-500); }

/* ----------  Stats band  -------------------------------------------------- */
.stats { background: var(--grad-brand); color: #fff; position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: radial-gradient(600px circle at 80% -10%, rgba(16,185,129,.25), transparent 60%); }
.stats__grid { grid-template-columns: repeat(4, 1fr); position: relative; }
.stat { text-align: center; padding: 12px; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; }
.stat__num em { font-style: normal; background: var(--grad-fresh); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__lbl { margin-top: 8px; color: rgba(255,255,255,.75); font-size: .95rem; }

/* ----------  Estimator (quote tool)  ------------------------------------- */
.estimator { background: var(--paper); }
.estimator__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px,5vw,64px); align-items: stretch; }
.estimator__intro .h-sec { margin: 16px 0 14px; }
.estimator__perks { display: grid; gap: 14px; margin-top: 26px; }
.estimator__perks li { display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--ink-soft); }
.estimator__perks svg { width: 22px; height: 22px; color: var(--mint-500); flex: none; }
.quote {
  background: var(--canvas); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.quote__steps { display: flex; gap: 8px; margin-bottom: 26px; }
.quote__dot { flex: 1; height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.quote__dot.active { background: var(--grad-fresh); }
.quote__panel { display: none; animation: fade .4s ease; }
.quote__panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quote h4 { font-size: 1.25rem; margin-bottom: 6px; }
.quote .q-help { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt {
  position: relative; border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 16px;
  background: #fff; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .15s; display: flex; gap: 12px; align-items: flex-start;
}
.opt:hover { border-color: var(--mint-400); transform: translateY(-2px); }
.opt input { position: absolute; opacity: 0; }
.opt input:checked + .opt__body { color: var(--navy-700); }
.opt:has(input:checked) { border-color: var(--mint-500); box-shadow: 0 0 0 3px rgba(16,185,129,.14); }
.opt__ic { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(160deg,#e9fbf3,#dff4ff); display: grid; place-items: center; flex: none; }
.opt__ic svg { width: 22px; height: 22px; color: var(--navy-600); }
.opt__body strong { display: block; font-size: .98rem; }
.opt__body span { font-size: .82rem; color: var(--muted); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--mint-500); box-shadow: 0 0 0 3px rgba(16,185,129,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.range-wrap { display: flex; align-items: center; gap: 16px; }
.range-wrap input[type=range] { flex: 1; accent-color: var(--mint-500); }
.range-val { font-weight: 800; font-family: var(--font-display); font-size: 1.3rem; min-width: 92px; text-align: right; color: var(--navy-700); }
.quote__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.estimate-box {
  margin-top: 4px; padding: 22px; border-radius: var(--r-md); background: var(--grad-brand); color: #fff; text-align: center;
}
.estimate-box small { color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }
.estimate-box .amount { font-family: var(--font-display); font-size: 2.4rem; margin: 6px 0; }
.estimate-box .amount em { font-style: normal; color: var(--mint-400); }
.estimate-box p { font-size: .82rem; color: rgba(255,255,255,.72); }
.quote__success { text-align: center; padding: 20px 0; }
.quote__success .ok { width: 72px; height: 72px; border-radius: 50%; background: var(--grad-fresh); display: grid; place-items: center; margin: 0 auto 18px; color: #04201a; }
.quote__success .ok svg { width: 38px; height: 38px; }
.quote__success h4 { font-size: 1.5rem; }

/* ----------  Testimonials  ----------------------------------------------- */
.testi__grid { grid-template-columns: repeat(3, 1fr); }
.tcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard .stars { font-size: 1.05rem; margin-bottom: 14px; }
.tcard p { color: var(--ink); font-size: 1.02rem; margin-bottom: 22px; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 14px; }
.tcard__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.tcard__who strong { display: block; font-size: .98rem; }
.tcard__who span { font-size: .85rem; color: var(--muted); }

/* ----------  Zones  ------------------------------------------------------- */
.zones { background: var(--paper); }
.zones__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,64px); align-items: center; }
.zones__list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.zones__list span { padding: 9px 16px; border-radius: 999px; background: var(--canvas); border: 1px solid var(--line); font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.zones__map { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; border: 1px solid var(--line); }
.zones__map iframe { width: 100%; height: 100%; border: 0; }

/* ----------  FAQ  --------------------------------------------------------- */
.faq__wrap { max-width: 820px; margin-inline: auto; }
.acc { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s; }
.acc[open] { box-shadow: var(--shadow-md); }
.acc summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 1.05rem; }
.acc summary::-webkit-details-marker { display: none; }
.acc__sign { width: 30px; height: 30px; border-radius: 9px; background: var(--canvas); display: grid; place-items: center; flex: none; transition: transform .3s, background .3s; color: var(--navy-600); }
.acc[open] .acc__sign { transform: rotate(45deg); background: var(--grad-fresh); color: #04201a; }
.acc__body { padding: 0 24px 24px; color: var(--ink-soft); }

/* ----------  CTA band  ---------------------------------------------------- */
.cta { padding: clamp(48px,7vw,90px) 0; }
.cta__card {
  background: var(--grad-brand); color: #fff; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 76px);
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta__card::before { content:""; position:absolute; inset:0; background: radial-gradient(500px circle at 15% 10%, rgba(16,185,129,.3), transparent 55%), radial-gradient(500px circle at 90% 90%, rgba(56,189,248,.25), transparent 55%); }
.cta__card > * { position: relative; }
.cta__card h2 { color: #fff; margin-bottom: 16px; }
.cta__card p { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----------  Footer  ------------------------------------------------------ */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer p { margin: 18px 0; font-size: .95rem; max-width: 280px; }
.footer h5 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: grid; gap: 12px; }
.footer__links a { font-size: .95rem; transition: color .2s; }
.footer__links a:hover { color: var(--mint-400); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .95rem; }
.footer__contact svg { width: 20px; height: 20px; color: var(--mint-400); flex: none; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: .85rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: .25s; }
.footer__social a:hover { background: var(--grad-fresh); color: #04201a; border-color: transparent; }
.footer__social svg { width: 18px; height: 18px; }

/* ----------  Floating actions  ------------------------------------------- */
.fab { position: fixed; right: 20px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .2s; }
.fab a:hover { transform: scale(1.08); }
.fab__wa { background: #25d366; color: #fff; }
.fab__call { background: var(--navy-700); color: #fff; }
.fab svg { width: 26px; height: 26px; }
.mobile-cta { display: none; }

/* ----------  Scroll reveal  ---------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ----------  Responsive  -------------------------------------------------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-top: 10px; }
  .why__inner, .estimator__inner, .zones__inner { grid-template-columns: 1fr; }
  .services__grid, .testi__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__menu { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 100px 32px 32px; transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow-lg); }
  body.menu-open .nav__menu { transform: none; }
  .nav__links { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav__links a { font-size: 1.1rem; color: var(--ink); }
  .nav__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .nav.on-dark:not(.scrolled) .nav__phone { color: var(--ink); }
  .burger { display: block; z-index: 101; }
  body.menu-open::after { content:""; position: fixed; inset: 0; background: rgba(7,20,43,.4); z-index: 99; }
  .services__grid, .testi__grid, .process__grid { grid-template-columns: 1fr; }
  .field-row, .opt-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .fab { bottom: 86px; }
  .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 88; padding: 10px 14px; gap: 10px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
  .mobile-cta .btn { flex: 1; padding: 13px; }
  body { padding-bottom: 68px; }
}
