/* Mobil Maják — brand tokens (modrá primárka, červená akcent) */
:root {
  --blue: #2962FF;
  --blue-deep: #1A4FCC;
  --blue-soft: #EAF0FF;
  --blue-ink: #0F2E78;
  --red: #E4002B;
  --red-deep: #B8001F;
  --yellow: #F7C948;

  --navy: #0E1F3A;
  --navy-700: #1A2B47;
  --navy-500: #4A5871;
  --navy-300: #8A93A6;
  --navy-100: #D9DEEA;

  --ink: #0A1024;
  --white: #FFFFFF;
  --paper: #FFFFFF;
  --paper-2: #F6F8FC;
  --bone: #EEF2FA;
  --line: #E5E9F2;
  --line-soft: #EFF2F8;

  /* Service / utility colors (third-party brand or signal — kept distinct from brand palette) */
  --wa: #25D366;            /* WhatsApp green */
  --wa-deep: #1DAB52;
  --star: #F5B400;           /* Google rating star */
  --success: #22C55E;        /* live / online dot */
  --success-deep: #16A34A;   /* "Otevřeno" text */
  --calc-grad-from: #F2F6FF;
  --calc-grad-to: #E6EDFF;
  --calc-grad-border: #CDD9FF;

  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; text-align: left; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
input, select, textarea { font: inherit; color: inherit; border: 0; background: transparent; outline: none; }
input::placeholder { color: var(--navy-500); opacity: 1; }
input[type="search"] { appearance: none; -webkit-appearance: none; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }

/* Visually hidden — for screen-reader-only labels */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Focus — only visible on keyboard focus, never on mouse-press */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.tab:focus-visible,
.calc-option:focus-visible,
.branch-row:focus-visible,
.card-cta:focus-visible,
.subnav button:focus-visible {
  outline-offset: 3px;
}

/* Long-content guards — protect grid/flex children from blowing out their tracks */
.section-head h2,
.killer h2,
.final-cta h2,
.calc h2,
.guarantees h2,
.branches h2,
.testimonials h2,
.repair-wall h2 { overflow-wrap: anywhere; }
.repair-card .repair-row,
.path-list-row,
.testi-meta,
.branch-row,
.calc-option { min-width: 0; }
.repair-card .repair-row .k,
.path-list-row .k,
.calc-option .label,
.testi-meta .name,
.testi-meta .sub,
.branch-row .br-addr,
.branch-row .br-city { min-width: 0; overflow-wrap: anywhere; }
.testi-meta .name,
.branch-row .br-city,
.flagship-name,
.calc-card .device { overflow-wrap: anywhere; }

/* Reduced-motion guard — disable decorative animation for vestibular safety */
@media (prefers-reduced-motion: reduce) {
  .bob,
  .marquee { animation: none; }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Type helpers */
.h-display { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; line-height: 0.95; }
.h-display-2 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; }
.h-serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; line-height: 0.98; letter-spacing: -0.01em; }
.body { font-family: var(--sans); font-weight: 400; line-height: 1.5; color: var(--navy-500); }
.eyebrow {
  font-family: var(--sans); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 12px; color: var(--blue);
}
.kbd {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--navy-300);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s cubic-bezier(.2, .8, .2, 1),
              background .15s ease, border-color .15s ease, color .15s ease,
              box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn-primary { background: var(--blue); color: var(--paper); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-secondary { background: var(--navy); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy-100); }
.btn-ghost:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn-lg { font-size: 17px; padding: 18px 28px; }
.btn-sm { font-size: 14px; padding: 10px 18px; }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-deep); }
/* Outlined WhatsApp variant for hero CTAs where the primary action is blue */
.btn-ghost-wa { background: transparent; color: #1A6E3B; border: 1.5px solid var(--wa); }
.btn-ghost-wa:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

/* Card */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }

/* Section anchor target — keeps content from being flush with viewport top after in-page nav */
section[id], [id="repair-wall"], [id="calc"], [id="pobocky"] { scroll-margin-top: 24px; }

/* Trust pill */
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 13px; color: var(--navy);
}

/* Soft hover lift */
.lift { transition: transform .2s ease, box-shadow .2s ease; }
.lift:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -16px rgba(14, 31, 58, 0.18); }

/* Star */
.star { color: var(--star); letter-spacing: 1px; }

/* Mascot bob */
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.bob { animation: bob 4.5s ease-in-out infinite; }

/* Marquee */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee {
  display: flex; gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-wrap {
  background: var(--navy); color: #fff;
  padding: 22px 0; overflow: hidden; position: relative;
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
}
/* Pause marquee on hover/focus so users can read brand names */
.marquee-wrap:hover .marquee,
.marquee-wrap:focus-within .marquee { animation-play-state: paused; }
/* Soft fade-out at marquee edges */
.marquee-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.marquee-item { display: flex; align-items: center; gap: 48px; }
.marquee-item span.brand-name { font-size: 24px; font-family: var(--display); font-weight: 600; opacity: 0.92; white-space: nowrap; }
.marquee-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* Brand wordmark — "MOBIL MAJÁK" with red dot tittle over Á */
.brand-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800;
  letter-spacing: -0.01em; color: var(--ink);
  white-space: nowrap;
}
.brand-mark > span:first-child { white-space: nowrap; }
.brand-mark .dot-A { position: relative; display: inline-block; }
.brand-mark .dot-A::after {
  content: ''; position: absolute;
  width: 0.28em; height: 0.28em; border-radius: 50%;
  background: var(--red); top: -0.42em; left: 50%; transform: translateX(-50%);
}
.brand-mark .servis-pill {
  font-size: 0.42em; padding: 0.18em 0.45em; border-radius: 4px;
  background: var(--red); color: #fff; font-weight: 700;
  letter-spacing: 0.08em; line-height: 1;
}

/* Dot pulse — signals "live / open / in progress" */
.dot-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--success); border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 22%, transparent);
}

/* Divider */
.divider { width: 1px; height: 32px; background: var(--line); }

/* Layout helpers — page is a non-constraining wrapper so band sections (marquee, killer, final CTA, footer) span the full viewport. Inner content keeps its proportions via grid fractions and section padding. */
.page { width: 100%; max-width: 1920px; margin: 0 auto; background: var(--paper); position: relative; overflow-x: clip; }
body { overflow-x: clip; }

/* ─────────── Navigation ─────────── */
.nav {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 22px 64px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.nav-search {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--line);
  max-width: 520px; justify-self: center; width: 100%;
  color: var(--navy-500); font-size: 14px;
}
.nav-search input { flex: 1; min-width: 0; font-size: 14px; }
.nav-search input::placeholder { color: var(--navy-500); }
.nav-search:focus-within { border-color: var(--blue); }
.nav-search .kbd-pill {
  margin-left: auto; font-family: var(--mono);
  font-size: 11px; padding: 2px 6px; border-radius: 4px;
  background: var(--paper); color: var(--navy-300);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); }
.nav-phone strong { font-weight: 600; }
.nav-vsep { width: 1px; height: 22px; background: var(--line); }
.nav-status { font-size: 13px; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.subnav {
  display: flex; gap: 28px; padding: 14px 64px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.subnav a {
  color: var(--navy-500); font-weight: 500;
  border-bottom: 2px solid transparent; padding-bottom: 4px;
  white-space: nowrap;
}
.subnav a:hover { color: var(--ink); }
.subnav a.active,
.subnav a[aria-current="page"] { color: var(--blue); font-weight: 600; border-bottom-color: var(--blue); }

/* ─────────── Hero ─────────── */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; padding: 64px 64px 80px;
  background: var(--paper);
}
.hero h1 { font-size: 84px; margin: 0; color: var(--ink); }
.hero h1 .h-serif-it { font-size: 92px; color: var(--blue); }
.hero p.lead { font-size: 19px; color: var(--navy-500); max-width: 520px; margin-top: 26px; line-height: 1.45; }
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 36px;
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-chip { display: flex; align-items: center; gap: 10px; }
.trust-chip .k { font-size: 22px; font-family: var(--display); font-weight: 700; color: var(--navy); }
.trust-chip .v { font-size: 12px; color: var(--navy-500); line-height: 1.2; max-width: 110px; }
.rating-block .stars-row { display: flex; align-items: center; gap: 6px; }
.rating-block .stars-row strong { font-family: var(--display); font-size: 18px; }
.rating-block .stars-sub { font-size: 12px; color: var(--navy-500); margin-top: 2px; }

.hero-img-wrap { position: relative; }
.hero-img-bg {
  position: absolute; inset: 0;
  background: var(--blue);
  border-radius: 24px 24px 0 0;
  transform: translate(8px, 12px);
}
.hero-img-slot {
  position: relative;
  width: 100%; height: 696px; margin: 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0E1F3A 0%, #1A2B47 100%);
}
.hero-img-slot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.hero-live-badge {
  position: absolute; top: 28px; left: 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px; padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--navy);
}
.hero-live-badge .live-dot {
  width: 8px; height: 8px; background: var(--success);
  border-radius: 50%; box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 22%, transparent);
}
.hero-quote {
  position: absolute; bottom: 32px; right: -20px; width: 232px;
  background: var(--white); border-radius: 16px; padding: 18px;
  box-shadow: 0 20px 50px -20px rgba(14, 31, 58, 0.35);
  border: 1px solid var(--line);
}
.hero-quote .eyebrow-2 { font-size: 11px; color: var(--navy-500); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-quote .price-row { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.hero-quote .price-row .from { font-size: 11px; color: var(--navy-500); }
.hero-quote .price-row .price { font-size: 30px; font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; }
.hero-quote .quote-meta { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 12px; color: var(--navy); }
.hero-mascot {
  position: absolute; bottom: -8px; left: -38px;
  width: 148px;
}

/* ─────────── Repair Wall ─────────── */
.repair-wall { padding: 120px 64px; background: var(--paper); }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px; gap: 32px;
}
.section-head h2 { font-size: 64px; margin: 0; color: var(--ink); max-width: 720px; }
.section-head h2 .h-serif-it { font-size: 72px; color: var(--blue); }
.section-head .head-meta { font-size: 14px; color: var(--navy-500); max-width: 320px; text-align: right; }

.tab-row { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; align-items: center; }
.tab {
  padding: 10px 18px; border-radius: 999px;
  background: transparent; color: var(--navy);
  border: 1px solid var(--line);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; line-height: 1;
  white-space: nowrap;
}
.tab[aria-selected="true"],
.tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.tab .count {
  font-size: 11px; padding: 2px 7px; border-radius: 999px;
  background: var(--paper-2); color: var(--navy-500);
}
.tab.active .count { background: rgba(255, 255, 255, 0.15); color: #fff; }
.tab-search {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: 14px; color: var(--navy-500);
  margin-left: auto;
  min-width: 220px;
}
.tab-search input { flex: 1; min-width: 0; font-size: 14px; }
.tab-search:focus-within { border-color: var(--blue); }

.repair-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.repair-card { padding: 22px; position: relative; }
.repair-card.feature { background: var(--ink); color: #fff; border: none; }
.repair-card .card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.repair-card .card-head h3 { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; line-height: 0.95; font-size: 22px; color: var(--ink); margin: 0; }
.repair-card.feature .card-head h3 { color: #fff; }
.repair-card .card-sub { font-size: 12px; color: var(--navy-500); margin-top: 2px; }
.repair-card.feature .card-sub { color: rgba(255, 255, 255, 0.6); }
.repair-card .nej-badge {
  padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 600;
  background: var(--red); color: #fff;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.repair-card .repair-list { display: grid; gap: 8px; }
.repair-card .repair-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 13px;
  border-top: 1px dashed var(--line-soft);
}
.repair-card .repair-row:first-child { border-top: none; }
.repair-card.feature .repair-row { border-top-color: rgba(255, 255, 255, 0.12); }
.repair-card .repair-row .k { color: var(--navy-500); }
.repair-card.feature .repair-row .k { color: rgba(255, 255, 255, 0.85); }
.repair-card .repair-row .v { font-weight: 600; color: var(--ink); }
.repair-card.feature .repair-row .v { color: #fff; }
.repair-card .card-cta {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px; font-weight: 600;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border-bottom: 0; border-left: 0; border-right: 0;
  text-align: left; min-height: 32px;
}
.repair-card .card-cta:hover { color: var(--blue-deep); }
.repair-card.feature .card-cta { color: #fff; border-top-color: rgba(255, 255, 255, 0.12); }
.repair-card.feature .card-cta:hover { color: rgba(255, 255, 255, 0.85); }

.repair-banner {
  margin-top: 28px; padding: 24px 28px;
  background: var(--navy); color: #fff;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.repair-banner .b-eye { font-size: 14px; opacity: 0.7; margin-bottom: 4px; }
.repair-banner .b-headline { font-family: var(--display); font-size: 22px; font-weight: 600; }
.repair-banner .b-ctas { display: flex; gap: 10px; flex-shrink: 0; }
.btn-on-dark {
  background: rgba(255, 255, 255, 0.1); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, 0.18); }

/* ─────────── Killer statement ─────────── */
.killer {
  padding: 140px 64px; background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.killer-mascot {
  position: absolute; right: -120px; top: -40px;
  opacity: 0.06; pointer-events: none;
  width: 620px;
}
.killer h2 {
  font-family: var(--display); font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 124px; line-height: 0.92;
  margin: 0; max-width: 1180px;
  position: relative;
}
.killer h2 .h-serif-it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--blue); letter-spacing: -0.02em;
}
.killer-eye { color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; position: relative; }
.killer-stats {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 56px;
  max-width: 1180px; position: relative;
}
.killer-stat { border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 22px; }
.killer-stat .n {
  font-family: var(--display); font-weight: 700;
  font-size: 56px; letter-spacing: -0.02em;
}
.killer-stat .t {
  font-size: 16px; color: rgba(255, 255, 255, 0.7);
  margin-top: 6px; max-width: 280px;
}

/* ─────────── Calculator ─────────── */
.calc { padding: 120px 64px; background: var(--paper); }
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.calc h2 { font-size: 64px; margin: 0; color: var(--ink); }
.calc h2 .h-serif-it { color: var(--blue); }
.calc-lead { font-size: 18px; color: var(--navy-500); margin-top: 20px; max-width: 480px; line-height: 1.5; }
.calc-checks { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.calc-check { display: flex; gap: 12px; }
.calc-check svg { flex-shrink: 0; margin-top: 2px; }
.calc-check .ck-t { font-size: 15px; font-weight: 600; color: var(--ink); }
.calc-check .ck-s { font-size: 13px; color: var(--navy-500); margin-top: 2px; }

.calc-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 60px -30px rgba(14, 31, 58, 0.25);
}
.calc-card-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.calc-pips { display: flex; gap: 4px; }
.pip { width: 28px; height: 4px; border-radius: 2px; background: var(--line); }
.pip.filled { background: var(--blue); }

.calc-card .device { font-size: 26px; color: var(--ink); margin-bottom: 4px; }
.calc-card .change { font-size: 13px; color: var(--navy-500); margin-bottom: 22px; }
.calc-card .change a { color: var(--blue); }

.calc-card .field-label {
  font-size: 12px; font-weight: 600; color: var(--navy-500);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.calc-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.calc-options .field-label { grid-column: 1 / -1; }
.calc-option {
  padding: 14px 16px; border-radius: 12px;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.calc-option:hover { border-color: var(--navy-100); }
.calc-option[aria-pressed="true"],
.calc-option.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.calc-option .label { font-size: 14px; font-weight: 500; }
.calc-option .price { font-size: 13px; opacity: 0.7; white-space: nowrap; }
.calc-option[aria-pressed="true"] .price,
.calc-option.selected .price { opacity: 1; }

.calc-result {
  margin-top: 22px; padding: 20px 22px;
  background: linear-gradient(180deg, var(--calc-grad-from) 0%, var(--calc-grad-to) 100%);
  border-radius: 14px; border: 1px solid var(--calc-grad-border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.calc-result .res-label {
  font-size: 12px; color: var(--navy-500);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.calc-result .res-price { display: flex; align-items: baseline; gap: 8px; }
.calc-result .res-price .from { font-size: 14px; color: var(--navy-500); }
.calc-result .res-price .big { font-size: 40px; color: var(--ink); }
.calc-result .res-meta { font-size: 12px; color: var(--navy-500); margin-top: 4px; }
.calc-result .res-meta strong { color: var(--ink); }

/* ─────────── Two Paths ─────────── */
.paths { padding: 120px 64px; background: var(--bone); }
.paths .section-head h2 .h-serif-it { color: var(--blue); }
.paths-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px;
}
.path-card {
  border-radius: 24px; padding: 36px;
  position: relative;
}
.path-card.featured {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(14, 31, 58, 0.25);
}
.path-card.secondary {
  background: transparent;
  border: 1.5px dashed var(--navy-100);
}
.path-badge {
  position: absolute; top: 24px; right: 24px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: var(--blue); color: #fff;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.path-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.path-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
}
.path-icon.primary { background: var(--blue-soft); color: var(--blue); }
.path-icon.alt { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.path-card h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; margin: 0; }
.path-card.featured h3 { font-size: 38px; }
.path-card.secondary h3 { font-size: 30px; color: var(--ink); }
.path-card p { font-size: 16px; color: var(--navy-500); margin-top: 10px; max-width: 520px; line-height: 1.5; }
.path-card.secondary p { font-size: 15px; }

.path-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 28px;
}
.path-stat { padding: 16px; background: var(--paper-2); border-radius: 12px; }
.path-stat .k { font-size: 14px; font-weight: 600; color: var(--ink); }
.path-stat .v { font-size: 12px; color: var(--navy-500); margin-top: 4px; }

.path-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
  gap: 16px;
}
.path-footer .pf-lbl { font-size: 13px; color: var(--navy-500); }
.path-footer .pf-val { font-size: 16px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.path-footer .pf-val .open { color: var(--navy-500); font-weight: 400; }

.path-list {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.path-list-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.path-list-row .k { color: var(--navy-500); }
.path-list-row .v { font-weight: 600; color: var(--ink); }

/* ─────────── Guarantees ─────────── */
.guarantees { padding: 120px 64px; background: var(--paper); }
.guarantees h2 { font-size: 64px; margin: 0; color: var(--ink); max-width: 900px; }
.guarantees h2 .h-serif-it { color: var(--blue); }
.guarantees-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px;
}
.guarantee-card { padding: 28px; }
.guarantee-card .ic { color: var(--blue); margin-bottom: 22px; }
.guarantee-card .k { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; font-size: 36px; color: var(--ink); }
.guarantee-card .t { font-size: 14px; font-weight: 600; color: var(--navy); margin-top: 4px; }
.guarantee-card .s { font-size: 13px; color: var(--navy-500); margin-top: 12px; line-height: 1.5; }

/* ─────────── Testimonials ─────────── */
.testimonials { padding: 120px 64px; background: var(--bone); }
.testimonials .section-head h2 { font-size: 64px; }
.testimonials .section-head h2 .h-serif-it { color: var(--blue); }
.google-card {
  padding: 16px 22px; background: var(--white); border-radius: 16px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
}
.google-card .rate-row { display: flex; align-items: center; gap: 6px; }
.google-card .rate { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; font-size: 26px; }
.google-card .sub { font-size: 12px; color: var(--navy-500); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testi-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.testi-card .quote { font-size: 17px; line-height: 1.5; color: var(--ink); margin: 16px 0 24px; }
.testi-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 14px;
}
.testi-meta .name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-meta .sub { font-size: 12px; color: var(--navy-500); }
.testi-meta .date { font-size: 11px; color: var(--navy-300); }
.testi-foot { display: flex; justify-content: center; margin-top: 32px; }

/* ─────────── Branches ─────────── */
.branches { padding: 120px 64px; background: var(--paper); }
.branches-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: start;
}
.branches h2 { font-size: 56px; margin: 0; color: var(--ink); }
.branches h2 .h-serif-it { color: var(--blue); }

.flagship {
  margin-top: 32px;
  background: var(--ink); color: #fff;
  border-radius: 18px; overflow: hidden;
}
.flagship-photo {
  display: block; width: 100%; height: 240px;
  background: linear-gradient(135deg, var(--navy-700) 0%, #0F2440 60%, var(--navy) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.4); font-size: 13px;
  text-align: center;
  padding: 16px;
}
.flagship-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(41, 98, 255, 0.15), transparent 50%);
}
.flagship-body { padding: 28px; }
.flagship-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.flagship-badge {
  padding: 4px 10px; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 6px;
}
.flagship-status { font-size: 13px; color: rgba(255, 255, 255, 0.7); }
.flagship-name { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; font-size: 32px; }
.flagship-addr { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-top: 6px; }
.flagship-mini {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.flagship-mini .lbl { font-size: 11px; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.flagship-mini .v { font-size: 18px; font-weight: 600; margin-top: 4px; }

.branch-other-lbl {
  font-size: 13px; color: var(--navy-500);
  margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
}
.branch-list { display: flex; flex-direction: column; gap: 12px; }
.branch-row {
  padding: 22px;
  display: flex; align-items: center; gap: 20px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
}
.branch-row .br-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
}
.branch-row .br-body { flex: 1; }
.branch-row .br-city { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 20px; color: var(--ink); }
.branch-row .br-addr { font-size: 13px; color: var(--navy-500); margin-top: 2px; }
.branch-row .br-meta { text-align: right; }
.branch-row .br-meta .hrs { font-size: 13px; font-weight: 600; color: var(--ink); }
.branch-row .br-meta .state { font-size: 11px; margin-top: 2px; }
.branch-row .br-meta .state.open { color: var(--success-deep); }
.branch-row .br-meta .state.closed { color: var(--navy-300); }
.branch-row .br-arrow { color: var(--navy-300); font-size: 18px; }

.branch-stats { margin-top: 24px; display: flex; gap: 16px; }
.branch-stat { flex: 1; padding: 20px 22px; border-radius: 14px; }
.branch-stat.dark { background: var(--ink); color: #fff; }
.branch-stat.light { background: var(--white); border: 1px solid var(--line); }
.branch-stat .k { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; font-size: 30px; }
.branch-stat.light .k { color: var(--ink); }
.branch-stat .v { font-size: 12px; margin-top: 4px; }
.branch-stat.dark .v { color: rgba(255, 255, 255, 0.7); }
.branch-stat.light .v { color: var(--navy-500); }

/* ─────────── Final CTA ─────────── */
.final-cta {
  padding: 140px 64px 120px;
  background: var(--blue); color: #fff;
  position: relative; overflow: hidden;
}
.final-cta-mascot {
  position: absolute; right: 60px; bottom: -20px;
  width: 260px;
}
.final-cta .inner { max-width: 980px; position: relative; }
.final-cta .eyebrow { color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; }
.final-cta h2 {
  font-family: var(--display); font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 100px; line-height: 0.94; margin: 0;
}
.final-cta h2 .it {
  font-family: var(--serif); font-style: italic; font-weight: 400;
}
.final-cta-ctas { display: flex; gap: 12px; margin-top: 44px; flex-wrap: wrap; }
.btn-white { background: var(--paper); color: var(--blue); }
.btn-white:hover { background: var(--bone); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

.final-cta-links {
  display: flex; gap: 36px; margin-top: 36px;
  font-size: 14px; color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
}
.final-cta-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

/* ─────────── Footer ─────────── */
.footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.75);
  padding: 72px 64px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer .brand-mark { color: #fff; }
.footer p.intro { font-size: 14px; margin-top: 18px; line-height: 1.5; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-chip {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 600;
}
.footer-col .h { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col .list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap; gap: 12px;
}

/* ─────────── Floating WA ─────────── */
.float-wa {
  position: fixed; right: 28px; bottom: 28px; z-index: 50;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-wa .tip {
  background: var(--white); border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 20px 40px -16px rgba(14, 31, 58, 0.35);
  border: 1px solid var(--line);
  font-size: 13px; color: var(--ink); max-width: 240px;
}
.float-wa .tip .who { font-weight: 600; margin-bottom: 2px; }
.float-wa .tip .what { color: var(--navy-500); }
.float-wa-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 20px 40px -16px color-mix(in srgb, var(--wa) 55%, transparent);
  transition: background .2s ease, transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease;
}
.float-wa-btn:hover {
  background: var(--wa-deep);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -16px color-mix(in srgb, var(--wa) 65%, transparent);
}
.float-wa-btn:active { transform: translateY(0); }
/* Gentle pulse on the float button — draws the eye, low impact */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 20px 40px -16px color-mix(in srgb, var(--wa) 55%, transparent), 0 0 0 0 color-mix(in srgb, var(--wa) 50%, transparent); }
  50% { box-shadow: 0 20px 40px -16px color-mix(in srgb, var(--wa) 55%, transparent), 0 0 0 14px color-mix(in srgb, var(--wa) 0%, transparent); }
}
@media (prefers-reduced-motion: no-preference) {
  .float-wa-btn { animation: wa-pulse 3.6s ease-in-out infinite; }
}

/* ─────────── Brand pills (used in marquee variant) ─────────── */
.brand-pill {
  padding: 6px 12px; font-size: 13px; font-weight: 500; color: var(--navy);
  background: var(--paper-2); border-radius: 999px;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 64px; }
  .hero h1 .h-serif-it { font-size: 70px; }
  .hero-img-slot { height: 480px; }
  .hero-quote { right: 16px; }
  .calc-grid { grid-template-columns: 1fr; gap: 40px; }
  .paths-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .repair-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .killer h2 { font-size: 80px; }
  .final-cta h2 { font-size: 64px; }
  .section-head { flex-direction: column; align-items: start; }
  .section-head h2 { font-size: 48px; }
  .section-head h2 .h-serif-it { font-size: 54px; }
  .section-head .head-meta { text-align: left; }
}

@media (max-width: 900px) {
  /* Touch-target floor: any interactive control should be ≥44×44 on touch. */
  .btn { min-height: 44px; padding: 12px 20px; }
  .btn-lg { min-height: 52px; padding: 16px 24px; }
  .tab { min-height: 44px; padding: 12px 20px; }
  .subnav a { padding: 10px 0; }
  .subnav { gap: 20px; }
  .footer-col .list a { padding: 6px 0; display: inline-block; }
  .branch-row { padding: 18px; }
  .nav { padding: 18px 24px; }
  .nav-phone strong { font-size: 13px; }
  .hero-trust { gap: 24px; }
  .hero-trust .divider { display: none; }
  .float-wa .tip { max-width: 200px; font-size: 12px; }
}

@media (max-width: 720px) {
  .nav { grid-template-columns: auto 1fr; padding: 16px 20px; gap: 16px; }
  .nav-search { display: none; }
  .nav-right { gap: 12px; }
  .nav-right .nav-status, .nav-right .nav-vsep, .nav-right .nav-phone strong { display: none; }
  .subnav { padding: 12px 20px; overflow-x: auto; gap: 18px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .subnav::-webkit-scrollbar { display: none; }
  .hero { padding: 32px 20px 48px; gap: 32px; }
  .hero h1 { font-size: 44px; }
  .hero h1 .h-serif-it { font-size: 48px; }
  .hero-ctas { gap: 8px; }
  .hero-img-slot { height: 360px; }
  .hero-quote { right: 0; bottom: 16px; width: 200px; padding: 14px; }
  .hero-quote .price-row .price { font-size: 24px; }
  .hero-live-badge { top: 16px; left: 16px; font-size: 11px; }
  .hero-mascot { left: -16px; width: 92px; height: auto; }
  .repair-wall, .calc, .paths, .guarantees, .testimonials, .branches, .killer { padding: 64px 20px; }
  .final-cta { padding: 80px 20px; }
  .repair-grid { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .calc-card { padding: 22px; }
  .calc-options { grid-template-columns: 1fr; }
  .calc-result { flex-direction: column; align-items: stretch; gap: 16px; }
  .calc-result .btn { width: 100%; justify-content: center; }
  .path-card { padding: 24px; }
  .path-badge { position: static; display: inline-flex; margin-bottom: 16px; }
  .path-stats { grid-template-columns: 1fr; }
  .path-footer { flex-direction: column; align-items: start; gap: 16px; }
  .path-footer .btn { width: 100%; justify-content: center; }
  .branch-stats { flex-direction: column; }
  .footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: start; gap: 8px; }
  .killer { padding: 80px 20px; }
  .killer h2 { font-size: 48px; }
  .killer-stats { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  .killer-mascot { right: -160px; top: -20px; width: 380px; }
  .final-cta h2 { font-size: 48px; }
  .final-cta-mascot { right: -40px; width: 180px; }
  .final-cta-links { gap: 16px; }
  .section-head h2 { font-size: 36px; }
  .section-head h2 .h-serif-it { font-size: 40px; }
  .repair-banner { flex-direction: column; align-items: start; gap: 16px; }
  .repair-banner .b-ctas { width: 100%; flex-wrap: wrap; }
  .repair-banner .btn { flex: 1; justify-content: center; min-width: 0; }
  .testi-meta { flex-wrap: wrap; }
  .testi-meta .date { width: 100%; padding-top: 6px; }
  .google-card { width: 100%; }
  .float-wa { right: 16px; bottom: 16px; }
  .float-wa .tip { display: none; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 36px; }
  .hero h1 .h-serif-it { font-size: 40px; }
  .section-head h2 { font-size: 30px; }
  .section-head h2 .h-serif-it { font-size: 34px; }
  .killer h2 { font-size: 40px; }
  .final-cta h2 { font-size: 40px; }
}
