/* ======================================================================
   "מובילים באחריות" — Landing Page Styles
   Tokens & system per design spec §2
   ====================================================================== */

:root {
  /* Color */
  --paper:        #FBFCFE;
  --surface:      #FFFFFF;
  --mist:         #EEF3FA;
  --mist-deep:    #E3EBF6;
  --ink:          #0B1B34;
  --ink-muted:    #4A5C7A;
  --ink-soft:     #6C7E9C;
  --hairline:     rgba(11, 27, 52, 0.08);
  --hairline-strong: rgba(11, 27, 52, 0.14);
  --brand-700:    #0B5FFF;
  --brand-600:    #2E7BFF;
  --brand-500:    #5B9BFF;
  --brand-100:    #D5E4FF;
  --brand-50:     #EBF2FF;
  --brand-deep:   #073BB0;
  --gold:         #C8A24B;
  --gold-soft:    #E8D49B;
  --accent:       #FFC72C;   /* TMAT-style accent — CTAs, icon fills, highlights */
  --accent-dark:  #E6AF00;
  --accent-tint:  #FFF6DC;
  --success:      #1FA971;
  --danger:       #E5484D;
  --wa:           #25D366;
  --wa-dark:      #1FAD55;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 192px;

  /* Radius */
  --r-sm: 12px; --r-md: 18px; --r-lg: 24px;
  --r-xl: 32px; --r-2xl: 40px; --r-full: 9999px;

  /* Shadows */
  --shadow-rest:  0 1px 2px rgba(11,27,52,0.04), 0 12px 32px -12px rgba(11,27,52,0.08);
  --shadow-float: 0 2px 4px rgba(11,27,52,0.04), 0 24px 64px -20px rgba(11,27,52,0.12);
  --shadow-cta:   0 8px 24px -8px rgba(11,95,255,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  --inner-hi:     inset 0 1px 0 rgba(255,255,255,0.9);

  /* Motion */
  --t-micro:   180ms cubic-bezier(0.32, 0.72, 0, 1);
  --t-default: 420ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-macro:   700ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 820px;
  --nav-h: 72px;
}

/* ──────────────────────────── Reset / base ──────────────────────────── */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'Assistant', 'Heebo', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand-700); text-decoration: none; transition: color var(--t-micro); }
a:hover { color: var(--brand-deep); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* Focus rings — accessibility critical */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ──────────────────────────── Layout primitives ──────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-5); }
.container-narrow { max-width: var(--max-w-narrow); }
.section { padding: var(--s-10) 0; position: relative; }
.section-mist { background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 40%, var(--mist) 60%, var(--paper) 100%); }

@media (max-width: 768px) {
  .section { padding: var(--s-8) 0; }
}

/* Section heads */
.section-head { text-align: center; margin: 0 auto var(--s-8); max-width: 760px; }
.section-head .lead { color: var(--ink-muted); font-size: 19px; margin: var(--s-3) 0 0; }

/* ──────────────────────────── Typography ──────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-700);
  padding: 6px 14px;
  background: var(--brand-50);
  border-radius: var(--r-full);
  border: 1px solid var(--brand-100);
}
.eyebrow-light { color: var(--brand-100); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }

.eyebrow-rating {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; padding: 8px 16px; text-transform: none; letter-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-rest);
  color: var(--ink);
}
.eyebrow-rating .gold-star { color: var(--gold); font-size: 16px; line-height: 1; }

.hero-h1 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: var(--s-5) 0 var(--s-4);
  color: var(--ink);
}
.hero-h1 .h1-em {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.h2 {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: var(--s-4) 0 0;
  color: var(--ink);
}
.h2-em {
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.h3 {
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: var(--s-3) 0 var(--s-3);
  color: var(--ink);
}
.h3-light { color: #fff; }

/* ──────────────────────────── Flat card architecture (TMAT restyle) ────────────────
   .bezel/.bezel-inner kept as class names (JS/HTML contract) but restyled from the
   double-bezel look to flat white cards: hairline border, soft shadow, no frame. */
.bezel {
  background: transparent;
  padding: 0;
  border-radius: var(--r-lg);
  position: relative;
}
.bezel-inner {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-rest);
  padding: var(--s-6);
  position: relative;
  overflow: hidden;
}
.bezel-sm { padding: 0; border-radius: var(--r-md); }
.bezel-sm > .bezel-inner { border-radius: var(--r-md); padding: 10px 14px; }

/* ──────────────────────────── Buttons ──────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Assistant', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 20px 14px 8px;
  border-radius: var(--r-full);
  transition: transform var(--t-micro), box-shadow var(--t-default), background var(--t-micro);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.btn:active { transform: scale(0.985); }

.btn-arrow {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.18);
  transition: transform var(--t-default), background var(--t-micro);
}
.btn-arrow svg { width: 16px; height: 16px; }

.btn-primary {
  background: linear-gradient(180deg, var(--brand-600), var(--brand-700));
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: linear-gradient(180deg, var(--brand-700), var(--brand-deep)); color: #fff; }
.btn-primary:hover .btn-arrow { background: rgba(255,255,255,0.28); transform: translateX(2px) translateY(-1px) scale(1.05); }
/* RTL: arrow points right (to flow forward in RTL), but we keep visual direction via SVG */

.btn-wa {
  background: var(--wa);
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
}
.btn-wa svg { width: 22px; height: 22px; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 12px 22px;
  font-weight: 600;
}
.btn-ghost:hover { background: var(--mist); color: var(--ink); }

/* Accent (yellow) CTA — navy text only, never white-on-yellow (contrast) */
.btn-accent {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 8px 24px -10px rgba(230,175,0,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-accent:hover { background: var(--accent-dark); color: var(--ink); }
.btn-accent .btn-arrow { background: rgba(11,27,52,0.10); }
.btn-accent:hover .btn-arrow { background: rgba(11,27,52,0.16); transform: translateX(2px) translateY(-1px) scale(1.05); }

/* ──────────────────────────── Navigation ──────────────────────────── */
.nav-wrap {
  position: fixed;
  inset-block-start: var(--s-5);
  inset-inline: 0;
  z-index: 50;
  display: flex; justify-content: center;
  padding: 0 var(--s-4);
  pointer-events: none;
  transition: inset-block-start var(--t-default), background var(--t-default),
              box-shadow var(--t-default);
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: var(--s-6);
  padding: 10px 14px 10px 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--hairline);
  max-width: 100%;
  transition: border-radius var(--t-default), background var(--t-default),
              box-shadow var(--t-default), border-color var(--t-default),
              width var(--t-default), max-width var(--t-default);
}

/* Scrolled past the hero → glass pill docks into a TMAT-style solid white bar */
.nav-wrap.is-scrolled {
  inset-block-start: 0;
  padding: 0;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--hairline), 0 8px 24px -16px rgba(11,27,52,0.18);
}
.nav-wrap.is-scrolled .nav {
  width: 100%;
  max-width: var(--max-w);
  justify-content: space-between;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-color: transparent;
}

.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 800;
  font-family: 'Heebo', sans-serif;
  padding: 6px 12px;
}
.nav-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #fff;
}
.nav-mark svg { width: 22px; height: 22px; }
.nav-word { display: inline-flex; flex-direction: column; line-height: 1; letter-spacing: -0.01em; font-size: 15px; }
.nav-word span { font-weight: 500; color: var(--ink-muted); font-size: 11px; margin-top: 2px; letter-spacing: 0.04em; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--ink); font-weight: 500;
  padding: 10px 14px; border-radius: var(--r-full);
  font-size: 15px;
  transition: background var(--t-micro), color var(--t-micro);
}
.nav-links a:hover { background: var(--mist); color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-full);
  color: var(--ink);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--brand-700); }
.nav-phone:hover { color: var(--brand-700); background: var(--mist); }

.nav-btn { padding: 10px 14px 10px 6px; font-size: 14px; }
.nav-btn .btn-arrow { width: 30px; height: 30px; }
.nav-btn .btn-arrow svg { width: 14px; height: 14px; }

/* Mobile menu trigger */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: var(--mist);
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px;
  height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--t-default), opacity var(--t-micro), top var(--t-default), bottom var(--t-default);
}
.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { bottom: 17px; }
.menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { bottom: 21px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-phone span, .nav-btn span:first-child { display: none; }
  .nav-phone { padding: 10px; }
  .nav-btn { padding: 8px; }
  .nav-btn .btn-arrow { background: transparent; }
}
@media (max-width: 720px) {
  .nav-cta .nav-btn { display: none; }
  .nav-cta .nav-phone { display: none; }
  .menu-toggle { display: block; }
  .nav { padding: 8px 8px 8px 8px; gap: var(--s-3); }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(251,252,254,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-default);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu ul {
  display: flex; flex-direction: column; gap: var(--s-3);
  text-align: center;
  padding: 0 var(--s-5);
}
.mobile-menu ul li {
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-default), transform var(--t-macro);
  transition-delay: 0ms;
}
.mobile-menu.is-open ul li { opacity: 1; transform: none; transition-delay: var(--d); }
.mobile-menu ul a {
  font-family: 'Heebo', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--ink);
  padding: 10px 20px;
  display: block;
}
.mobile-menu ul .m-cta { color: var(--brand-700); }
.mobile-menu ul .m-phone { font-size: 22px; color: var(--ink-muted); }

/* ──────────────────────────── Hero — Cinematic Backdrop ──────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(640px, 56.25vw, 100svh);
  padding: calc(var(--nav-h) + 16px) 0 var(--s-7);
  display: flex; align-items: stretch;
  color: #fff;
  background: #0B1B34; /* dark fallback before video paints */
}

/* Layer 0: full-bleed video background */
.hero-bg-video {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: #0B1B34;
  will-change: transform; /* GSAP hero parallax layer */
}
.hero-bg-video video,
.hero-bg-video img,
.hero-bg-video noscript img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 30% 60%;   /* keep the truck (left-lower) in frame */
  display: block;
}

/* Layer 1: dark vignette gradient over video for content legibility */
.hero-mask {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    /* Focused darken now sits behind the right-aligned content, not the truck */
    radial-gradient(ellipse 55% 60% at 78% 48%, rgba(11,27,52,0.62) 0%, transparent 72%),
    /* Edge vignette */
    radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(11,27,52,0.30) 100%),
    /* Top→bottom legibility wash — lighten mid/bottom so the truck reads */
    linear-gradient(180deg,
      rgba(11,27,52,0.48) 0%,
      rgba(11,27,52,0.22) 35%,
      rgba(11,27,52,0.30) 70%,
      rgba(11,27,52,0.74) 100%
    );
}

/* Layer 2: content grid — content sits in upper portion of hero */
.hero-grid {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  gap: var(--s-5);
  align-items: stretch;
  width: 100%;
}

/* Centered header text — now WHITE on dark video */
.hero-head { text-align: center; max-width: 720px; margin: 0 auto; will-change: transform, opacity; /* GSAP hero parallax layer */ }
.hero-h1 {
  font-size: clamp(44px, 6.5vw, 92px);
  letter-spacing: -0.04em;
  margin: var(--s-4) 0 var(--s-3);
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.4);
}
.hero-h1 .h1-em {
  background: linear-gradient(135deg, #9DC1FF 0%, #5B9BFF 60%, #B8D3FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: none;
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 22px);
  color: rgba(255,255,255,0.88);
  margin: 0 0 var(--s-5);
  max-width: 680px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s-2) var(--s-5);
  margin: 0; padding: 0;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--brand-500); flex-shrink: 0; }

/* Eyebrow chip — glass variant for dark-video backdrop */
.eyebrow-onvideo {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22),
              0 8px 24px rgba(0,0,0,0.18);
}
.eyebrow-onvideo .gold-star { color: var(--gold); }

/* (Floating corner chips were removed — chip-* internal rules kept for calc-done state) */
.chip-inner { padding: 8px 14px; }
.chip-rating-row { display: flex; align-items: center; gap: 8px; }
.chip-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.chip-rating-row strong { font-family: 'Heebo'; font-size: 18px; }
.chip-source { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
.chip-source svg { width: 13px; height: 13px; }
.chip-inner-wa { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.live-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 0 4px rgba(31,169,113,0.18); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,169,113,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(31,169,113,0.05); }
}

/* ──────────────────────────── Hero Calculator (white card on dark video) ──────────────────────────── */
.calc {
  max-width: 580px;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06),
              0 32px 80px -16px rgba(0,0,0,0.45),
              0 12px 32px -8px rgba(0,0,0,0.35);
  border-radius: var(--r-2xl);
}
@media (max-width: 980px) {
  .calc { max-width: 100%; }
  .hero {
    padding: calc(var(--nav-h) + 8px) 0 var(--s-8);
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .hero-h1 { font-size: clamp(44px, 12vw, 72px); }
}
.calc-inner { padding: var(--s-6); }
@media (max-width: 480px) { .calc-inner { padding: var(--s-5); } }

.calc-head { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); margin-bottom: var(--s-5); }
.calc-head h3 { font-family: 'Heebo'; font-size: 16px; font-weight: 600; color: var(--ink); margin: 0; }
.calc-steps { display: flex; gap: 6px; }
.calc-steps li {
  width: 24px; height: 6px; border-radius: 3px;
  background: var(--mist-deep);
  transition: background var(--t-default), width var(--t-default);
}
.calc-steps li.is-active { background: linear-gradient(90deg, var(--brand-700), var(--brand-500)); width: 36px; }
.calc-steps li.is-done   { background: var(--brand-700); }
.calc-steps li span { display: none; }

.calc-stage { position: relative; min-height: 280px; }
.calc-step {
  border: 0; margin: 0; padding: 0;
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
  transition: opacity var(--t-default), transform var(--t-macro);
}
.calc-step.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.calc-step.is-exit-prev { transform: translateX(30px); }

.calc-q {
  font-family: 'Heebo';
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  display: block;
}

.calc-field { display: block; margin-bottom: var(--s-4); }
.calc-field > span {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: 16px;
  color: var(--ink);
  transition: border-color var(--t-micro), background var(--t-micro), box-shadow var(--t-micro);
}
.calc-field input::placeholder { color: var(--ink-soft); }
.calc-field input:focus, .calc-field select:focus {
  background: var(--surface);
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px var(--brand-50);
  outline: none;
}

.calc-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s-3); margin-bottom: var(--s-4); }
.calc-field-half { margin-bottom: 0; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 var(--s-4); }
.chip {
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: all var(--t-micro);
}
.chip:hover { border-color: var(--brand-500); color: var(--brand-700); background: var(--brand-50); }
.chip.is-on { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }

.seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  padding: 4px;
  background: var(--mist);
  border-radius: var(--r-md);
  gap: 4px;
}
.seg-wide { grid-template-columns: repeat(4, 1fr); }
.seg-btn {
  padding: 10px 12px;
  border-radius: calc(var(--r-md) - 4px);
  font-size: 14px; font-weight: 600;
  color: var(--ink-muted);
  background: transparent;
  transition: background var(--t-micro), color var(--t-micro), box-shadow var(--t-micro);
}
.seg-btn:hover { color: var(--ink); }
.seg-btn.is-on {
  background: var(--surface);
  color: var(--brand-700);
  box-shadow: var(--shadow-rest);
}

.calc-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.calc-back {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 16px 10px 12px;
  color: var(--ink-muted);
  font-weight: 600; font-size: 14px;
  border-radius: var(--r-full);
  transition: background var(--t-micro);
}
.calc-back:hover { background: var(--mist); }
.calc-back svg { width: 16px; height: 16px; transform: scaleX(-1); }

.calc-next { margin-inline-start: auto; }

.calc-micro {
  margin: var(--s-4) 0 0;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-soft);
}
.calc-micro svg { width: 14px; height: 14px; }

/* Done state */
.calc-done { text-align: center; padding: var(--s-5) 0; }
.calc-done-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  margin: 0 auto var(--s-4);
  color: var(--success);
}
.calc-done h4 { font-family: 'Heebo'; font-size: 22px; margin: 0 0 8px; color: var(--ink); }
.calc-done p { color: var(--ink-muted); margin: 0 0 var(--s-5); }
.calc-done-cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ──────────────────────────── Trust marquee — slim badge strip ──────────────────────────── */
.trust {
  background: var(--surface);
  padding: var(--s-4) 0;
  overflow: hidden;
  border-block-end: 1px solid var(--hairline);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 38s linear infinite;
}
.trust:hover .trust-track { animation-play-state: paused; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); } /* RTL friendly: marquee direction is consistent */
}
.trust-row {
  display: flex; gap: var(--s-4); align-items: center;
  padding-inline-end: var(--s-4);
  flex-shrink: 0;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  font-weight: 600; font-size: 13px;
  color: var(--ink-muted); white-space: nowrap;
}
.trust-i { font-size: 15px; line-height: 1; color: var(--brand-700); }
.trust-i.gold { color: var(--gold); }

/* ──────────────────────────── Services grid — TMAT tiles + line-art icons ──────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
}
.svc-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-rest);
  padding: var(--s-6);
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative;
  transition: transform var(--t-default), box-shadow var(--t-default), border-color var(--t-micro);
}
/* Row 2 (cards 4-5) centered under the row of 3 */
.svc-card:nth-child(4) { grid-column: 2 / span 2; }
.svc-card:nth-child(5) { grid-column: 4 / span 2; }

.svc-card::before {
  /* TMAT-style accent bar that slides in on hover */
  content: '';
  position: absolute; inset-block-start: 0; inset-inline: 0;
  height: 4px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--t-default);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); border-color: var(--brand-100); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
  width: 104px; height: 104px;
  margin-bottom: var(--s-4);
}
.svc-icon-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  /* Blends the illustration's near-white background into the white card */
  mix-blend-mode: multiply;
  will-change: transform;
}
.svc-card:hover .svc-icon-wrap { animation: svc-bounce 600ms cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes svc-bounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.svc-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 var(--s-2);
  color: var(--ink);
}
.svc-card p { color: var(--ink-muted); font-size: 15px; margin: 0 0 var(--s-4); }
.svc-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 15px;
  color: var(--brand-700);
  transition: color var(--t-micro), gap var(--t-micro);
}
.svc-link:hover { color: var(--brand-deep); gap: 10px; }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card,
  .svc-card:nth-child(4),
  .svc-card:nth-child(5) { grid-column: auto; }
  .svc-card:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card:nth-child(5) { grid-column: auto; }
}

/* ──────────────────────────── How it works ──────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 92px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-100), transparent);
  z-index: 0;
  /* GSAP draws this line from the right (RTL) by scrubbing --steps-line 0→1.
     Default 1 = fully drawn, so it stays visible if JS/motion is off. */
  transform: scaleX(var(--steps-line, 1));
  transform-origin: right center;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}
.step { position: relative; z-index: 1; }
.step-inner { padding: var(--s-6); text-align: start; height: 100%; }
.step-num {
  display: block;
  font-family: 'Heebo';
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  margin-bottom: var(--s-3);
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.step-inner p { color: var(--ink-muted); margin: 0; }

/* ──────────────────────────── Stats + Compare ──────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.stat-inner { text-align: center; padding: var(--s-6) var(--s-4); }
.stat-inner strong {
  display: block;
  font-family: 'Heebo';
  font-weight: 800;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.stat-inner strong span {
  color: var(--brand-700);
  font-size: 0.6em;
  margin-inline-start: 2px;
}
.stat-label { display: block; margin-top: var(--s-2); font-size: 14px; color: var(--ink-muted); font-weight: 500; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ──────────────────────────── Coverage band — nationwide map ──────────────────────────── */
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 980px) {
  .coverage-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .coverage-map { max-width: 320px; margin: 0 auto; }
}

.section-head-start { text-align: start; margin-inline: 0; margin-bottom: var(--s-6); }

.coverage-map {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-rest);
  padding: var(--s-4);
  overflow: hidden;
}
.map-img {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--r-lg);
  will-change: transform;
}

.map-label {
  position: absolute;
  transform: translate(50%, 0);
  font-family: 'Heebo', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  padding: 2px 10px;
  box-shadow: var(--shadow-rest);
  white-space: nowrap;
  pointer-events: none;
}
/* Positions match the pins in the generated israel-map.png (percent of the padded card) */
.map-label-haifa { right: calc(100% - 49%); top: 20%; }
.map-label-tlv   { right: calc(100% - 43%); top: 34%; }
.map-label-jlm   { right: calc(100% - 50%); top: 46%; }
.map-label-brsv  { right: calc(100% - 50%); top: 66%; }
.map-label-eilat { right: calc(100% - 46%); top: 86%; }

.coverage .stats {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: var(--s-6);
}
.coverage-cta { margin-top: 0; }

/* ──────────────────────────── Testimonials ──────────────────────────── */
.t-cascade {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
@media (max-width: 980px) { .t-cascade { grid-template-columns: 1fr; } }
/* Flat TMAT-style testimonial cards — rotation classes kept in HTML, neutralized here */
.t-card { transition: transform var(--t-default), box-shadow var(--t-default); }
.t-rot-1, .t-rot-2, .t-rot-0.t-elevate { transform: none; }
.t-card:hover { transform: translateY(-6px); z-index: 2; }
.t-card:hover .bezel-inner { box-shadow: var(--shadow-float); }

.t-inner { padding: var(--s-6); }
.t-inner header { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-3); }
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Heebo'; font-weight: 700; font-size: 20px;
  box-shadow: 0 0 0 3px var(--brand-50);
}
.t-inner header strong { display: block; font-family: 'Heebo'; font-size: 16px; }
.t-inner header span { font-size: 13px; color: var(--ink-muted); }
.t-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: var(--s-3); }
.t-inner blockquote {
  font-family: 'Heebo';
  font-size: 18px; line-height: 1.55;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  font-weight: 600;
}
.t-source { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-muted); font-weight: 500; }
.t-source svg { width: 14px; height: 14px; }

.t-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 768px) { .t-mini-grid { grid-template-columns: 1fr; } }
.t-mini-grid li {
  padding: var(--s-4);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-rest);
}
.t-mini-grid strong { font-family: 'Heebo'; font-size: 14px; display: block; margin-bottom: 4px; }
.t-mini-grid p { margin: 0 0 6px; font-size: 14px; color: var(--ink-muted); }
.t-mini-grid span { font-size: 12px; color: var(--gold); letter-spacing: 1px; }

/* ──────────────────────────── Checklist promo (Movetrac analog) ──────────────────────────── */
.checklist-promo {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.checklist-body { padding: var(--s-7); }
.checklist-body .eyebrow { margin-bottom: var(--s-2); }
.checklist-body p { color: var(--ink-muted); margin: 0 0 var(--s-5); }
.checklist-media { height: 100%; min-height: 260px; position: relative; overflow: hidden; }
.checklist-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 880px) {
  .checklist-promo { grid-template-columns: 1fr; }
  .checklist-media { min-height: 200px; order: -1; }
}

/* ──────────────────────────── Tips & guides cards ──────────────────────────── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 980px) { .tips-grid { grid-template-columns: 1fr; } }

.tips-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-rest);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-default), box-shadow var(--t-default);
}
.tips-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.tips-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.tips-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Hover zoom on `scale` so it composes with GSAP scroll-parallax `transform` */
  transition: scale 1s cubic-bezier(0.22,1,0.36,1);
}
.tips-card:hover .tips-media img { scale: 1.05; }
.tips-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; align-items: flex-start; }
.tips-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  border-radius: var(--r-full);
  padding: 3px 12px;
  margin-bottom: var(--s-3);
}
.tips-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700; font-size: 20px;
  line-height: 1.25;
  margin: 0 0 var(--s-2);
  color: var(--ink);
}
.tips-body p { color: var(--ink-muted); font-size: 15px; margin: 0 0 var(--s-4); }
.tips-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 15px;
  color: var(--brand-700);
  transition: color var(--t-micro), gap var(--t-micro);
}
.tips-link:hover { color: var(--brand-deep); gap: 10px; }

/* ──────────────────────────── Pre-footer double CTA ──────────────────────────── */
.prefooter {
  background:
    radial-gradient(90% 90% at 15% 0%, rgba(91,155,255,0.35) 0%, transparent 60%),
    linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-700) 60%, var(--brand-600) 100%);
  padding: var(--s-9) 0;
}
.prefooter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 880px) { .prefooter-grid { grid-template-columns: 1fr; } }
.prefooter-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  color: #fff;
  will-change: transform;
}
.prefooter-card h3 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 var(--s-2);
}
.prefooter-card p { color: rgba(255,255,255,0.82); margin: 0 0 var(--s-5); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 13px 22px;
  gap: 8px;
  font-weight: 700;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

/* ──────────────────────────── FAQ ──────────────────────────── */
.faq { display: flex; flex-direction: column; gap: var(--s-2); }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-micro), box-shadow var(--t-micro);
}
.faq-item:hover { border-color: var(--hairline-strong); }
.faq-item.is-open {
  border-color: var(--brand-100);
  box-shadow: var(--shadow-rest);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  font-family: 'Heebo'; font-weight: 600; font-size: 17px;
  color: var(--ink);
  text-align: start;
}
.faq-chev {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--mist);
  border-radius: var(--r-full);
  font-size: 18px; font-weight: 400;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: transform var(--t-default), background var(--t-micro), color var(--t-micro);
}
.faq-item.is-open .faq-chev {
  transform: rotate(45deg);
  background: var(--brand-700); color: #fff;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-default);
}
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p {
  padding: 0 var(--s-5) var(--s-5);
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ──────────────────────────── Quote band (light, TMAT-style) ──────────────────────────── */
.cta-band {
  position: relative;
  padding: var(--s-9) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--mist) 100%);
  border-block-end: 1px solid var(--hairline);
  overflow: hidden;
}
.cta-card { max-width: 760px; margin: 0 auto; }
.cta-card .cta-inner {
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-float);
  border-top: 4px solid var(--accent);
}
.cta-inner { padding: var(--s-7); text-align: center; }
.cta-inner .eyebrow { display: inline-block; margin-bottom: var(--s-3); }
.cta-inner p { color: var(--ink-muted); margin: var(--s-3) 0 var(--s-6); }

.cta-form { text-align: start; }
.cta-form .cta-field {
  display: block;
  margin-bottom: var(--s-3);
}
.cta-form .cta-field > span {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.cta-form input, .cta-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: 16px;
  transition: border-color var(--t-micro), background var(--t-micro), box-shadow var(--t-micro);
}
.cta-form input:focus, .cta-form select:focus {
  background: var(--surface);
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px var(--brand-50);
  outline: none;
}
@media (min-width: 600px) {
  .cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--s-3); }
  .cta-form .cta-actions, .cta-form .cta-micro { grid-column: 1 / -1; }
}

.cta-actions {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
  margin-top: var(--s-4);
}
.cta-actions .btn { flex: 1 1 200px; justify-content: center; }
.cta-micro {
  text-align: center;
  margin: var(--s-4) 0 0;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ──────────────────────────── Footer ──────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: var(--s-9) 0 var(--s-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-family: 'Heebo'; font-weight: 800; font-size: 18px;
  margin-bottom: var(--s-3);
}
.footer-brand p { margin: 0 0 var(--s-3); font-size: 14px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: #fff; }

.footer h4 {
  font-family: 'Heebo'; font-size: 14px; color: #fff;
  margin: 0 0 var(--s-3); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer ul a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-bottom small { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  transition: background var(--t-micro), color var(--t-micro), transform var(--t-micro);
}
.footer-social a:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* ──────────────────────────── Sticky stack ──────────────────────────── */
.sticky-stack {
  position: fixed;
  inset-block-end: var(--s-5);
  inset-inline-end: var(--s-5);
  z-index: 40;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-default), transform var(--t-default);
  pointer-events: none;
}
.sticky-stack.is-on { opacity: 1; transform: none; pointer-events: auto; }

.sticky-btn {
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
  box-shadow: 0 8px 24px -8px rgba(11,27,52,0.35);
  transition: transform var(--t-micro), box-shadow var(--t-default);
}
.sticky-btn:hover { transform: scale(1.06); color: #fff; }
.sticky-wa { background: var(--wa); }
.sticky-phone { background: var(--brand-700); }
.sticky-btn svg { width: 26px; height: 26px; }

.pulse-ring {
  position: absolute; inset: -4px; border-radius: var(--r-full);
  border: 2px solid var(--wa);
  opacity: 0;
  animation: ringpulse 2.6s cubic-bezier(0.22,1,0.36,1) infinite;
}
@keyframes ringpulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.sticky-tip {
  position: absolute;
  inset-inline-end: 100%;
  margin-inline-end: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: opacity var(--t-micro), transform var(--t-micro);
  pointer-events: none;
}
.sticky-btn:hover .sticky-tip { opacity: 1; transform: none; }

/* ──────────────────────────── Accessibility widget ──────────────────────────── */
.a11y-toggle {
  position: fixed;
  inset-block-start: calc(var(--s-5) + 112px);
  inset-inline-end: var(--s-5);
  inset-inline-start: auto;
  z-index: 48;
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--brand-700);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-cta);
  transition: transform var(--t-micro);
}
.a11y-toggle:hover { transform: scale(1.06); }
.a11y-toggle svg { width: 22px; height: 22px; }

.a11y-panel {
  position: fixed;
  inset-block-start: calc(var(--s-5) + 112px);
  inset-inline-end: calc(var(--s-5) + 60px);
  inset-inline-start: auto;
  z-index: 48;
  width: 280px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--hairline);
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: 8px;
}
.a11y-panel[hidden] { display: none; }
.a11y-panel h2 {
  font-family: 'Heebo'; font-size: 16px; margin: 0 0 8px;
  padding-bottom: 8px; border-bottom: 1px solid var(--hairline);
}
.a11y-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.a11y-btns { display: flex; gap: 4px; }
.a11y-btns button {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--mist); font-weight: 700;
}
.a11y-btns button:hover { background: var(--brand-50); color: var(--brand-700); }
.a11y-tog {
  text-align: start;
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: var(--mist);
  font-size: 14px; font-weight: 500;
  transition: background var(--t-micro);
}
.a11y-tog:hover { background: var(--brand-50); color: var(--brand-700); }
.a11y-tog[aria-pressed="true"] { background: var(--brand-700); color: #fff; }
.a11y-reset {
  padding: 8px 12px; font-size: 12px;
  color: var(--ink-muted); text-decoration: underline;
}
.a11y-foot { font-size: 11px; color: var(--ink-soft); margin: 6px 0 0; line-height: 1.5; }

/* A11y mode tweaks (toggled via body classes) */
body.a11y-contrast {
  --paper: #ffffff;
  --ink: #000000;
  --ink-muted: #000000;
  --brand-700: #003ec8;
  --hairline: rgba(0,0,0,0.4);
}
body.a11y-contrast .h2-em, body.a11y-contrast .hero-h1 .h1-em {
  -webkit-text-fill-color: var(--brand-700);
  color: var(--brand-700);
  background: none;
}
body.a11y-links a:not(.btn):not(.sticky-btn):not(.nav-logo):not(.footer-logo):not(.t-source):not(.svc-link):not(.tips-link) {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  font-weight: 700;
}
body.a11y-motion *, body.a11y-motion *::before, body.a11y-motion *::after {
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
body.a11y-readable { font-family: 'Assistant', sans-serif !important; letter-spacing: 0.02em; }

/* ──────────────────────────── Scroll reveals ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--rd, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  /* Hero video pauses via JS — visible first frame / poster remains as a static background */
  .reveal {
    transform: none; filter: none;
    transition: opacity 200ms ease;
  }
}

/* ──────────────────────────── Misc ──────────────────────────── */
::selection { background: var(--brand-700); color: #fff; }

/* ══════════════════════════════════════════════════════════════════
   Polish pass — components added per design review
   ══════════════════════════════════════════════════════════════════ */

/* Skip-to-content link — first focusable element */
.sr-skip {
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--brand-700);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform var(--t-micro);
}
.sr-skip:focus-visible {
  transform: translateY(0);
  color: #fff;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Footer contact rows — flex for icon + text */
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-row { display: inline-flex; align-items: center; gap: 8px; }
.footer-contact-row svg { width: 16px; height: 16px; color: rgba(255,255,255,0.55); flex-shrink: 0; }

/* Mobile-menu phone link — icon + text */
.mobile-menu ul .m-phone { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.mobile-menu ul .m-phone svg { width: 22px; height: 22px; }

/* Calc-done & calc-foot ghost button icon support */
.btn-ghost svg { color: var(--brand-700); flex-shrink: 0; }

/* Static footer text (e.g. license number, non-link) */
.footer-static { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ─── Calculator: validation error + fieldset reset ─── */
.calc-fieldset {
  border: 0; margin: 0; padding: 0;
  min-width: 0;
}
.calc-fieldset legend {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 8px;
  padding: 0;
}
.calc-field input.is-error {
  border-color: var(--danger) !important;
  background: #FEF2F2;
  box-shadow: 0 0 0 4px rgba(229,72,77,0.08) !important;
}
.calc-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--danger);
}

/* ─── Calc progress dots: enhanced fill animation ─── */
.calc-steps li {
  overflow: hidden;
  position: relative;
}
.calc-steps li.is-active::after,
.calc-steps li.is-done::after {
  content: '';
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  inset-inline-end: 100%;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
  animation: dot-fill var(--t-macro) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes dot-fill {
  to { inset-inline-end: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .calc-steps li.is-active::after, .calc-steps li.is-done::after { animation: none; inset-inline-end: 0; }
}

/* ─── Final CTA: success panel (replaces form after submit) ─── */
.cta-success {
  text-align: center;
  padding: var(--s-5) var(--s-2);
  animation: success-in 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-success:focus { outline: none; }
@keyframes success-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.cta-success-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  margin: 0 auto var(--s-4);
  color: var(--success);
}
.cta-success-mark svg { width: 72px; height: 72px; animation: mark-pop 500ms cubic-bezier(0.16, 1.5, 0.3, 1); }
@keyframes mark-pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cta-success h3 {
  font-family: 'Heebo'; font-size: 28px; font-weight: 800;
  color: var(--ink); margin: 0 0 var(--s-3);
}
.cta-success p { color: var(--ink-muted); margin: 0 0 var(--s-5); }
.cta-success-cta {
  display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap;
}

/* ─── Submit button: loading state with spinner ─── */
.btn[disabled], .btn.is-loading {
  cursor: not-allowed;
  opacity: 0.7;
}
.btn-spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
  margin-inline-start: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── CTA form: error state on phone input ─── */
.cta-form input.is-error {
  border-color: var(--danger) !important;
  background: #FEF2F2 !important;
  box-shadow: 0 0 0 4px rgba(229,72,77,0.08) !important;
}

/* ─── How-it-works: time-estimate chip per step ─── */
.step-time {
  display: inline-block;
  margin-bottom: var(--s-2);
  font-family: 'Assistant', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-700);
  padding: 4px 10px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-full);
}
