/* =================================================================
   ufuko — Roadside Assistance & Towing (Istanbul)
   Theme stylesheet
   Aesthetic: emergency-dispatch — deep navy + maroon depth, signal red
   action colour, clean white body. Bricolage Grotesque / Hanken Grotesk.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --red: #e11225;          /* primary action / emergency */
  --red-bright: #ff2a3a;   /* glow + highlights */
  --red-dark: #b70d1c;
  --maroon: #6b0a16;       /* bordo — depth accent */
  --maroon-soft: #8a1322;
  --navy: #0b1b3d;         /* Göktuğ-inspired deep navy */
  --navy-700: #122651;
  --navy-500: #1c3470;
  --wa: #25d366;           /* WhatsApp green (brand recognition) */
  --wa-deep: #119d6b;

  /* Neutrals */
  --white: #ffffff;
  --paper: #f7f5f3;        /* warm off-white */
  --paper-2: #efece8;
  --ink: #16130f;          /* near-black, warm */
  --muted: #5d574f;
  --line: #e7e2dc;
  --line-strong: #d8d1c8;

  /* Type */
  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;

  /* Radii + shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(16, 19, 31, .06);
  --shadow-md: 0 14px 40px -16px rgba(11, 27, 61, .28);
  --shadow-lg: 0 30px 70px -24px rgba(11, 27, 61, .42);
  --shadow-red: 0 18px 44px -14px rgba(225, 18, 37, .55);
  --shadow-wa: 0 16px 40px -14px rgba(18, 140, 107, .5);

  --container: 1200px;
  --bar-h: 44px;     /* emergency top bar height */
  --head-h: 74px;    /* sticky header height */

  /* hazard stripe accent */
  --hazard: repeating-linear-gradient(
    -45deg,
    var(--red) 0 14px,
    var(--navy) 14px 28px
  );
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--bar-h) + var(--head-h) + 14px);
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--red-dark); text-decoration: none; }
a:hover { color: var(--red); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--navy);
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); letter-spacing: -.01em; }
p { color: var(--muted); }
strong { color: var(--ink); font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--red);
}
.eyebrow--light { color: #ffb3bb; }
.eyebrow--light::before { background: var(--red-bright); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 58ch;
}
.section-head { max-width: 62ch; margin-bottom: clamp(34px, 4vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  color: #fff;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  background: var(--bg);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); color: #fff; }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--call {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: var(--shadow-red);
}
.btn--call:hover { box-shadow: 0 22px 52px -12px rgba(225, 18, 37, .7); }

.btn--wa {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-deep) 100%);
  box-shadow: var(--shadow-wa);
}
.btn--wa:hover { box-shadow: 0 22px 50px -12px rgba(18, 140, 107, .66); }

.btn--wa-ghost {
  background: #fff;
  color: var(--wa-deep);
  border: 2px solid rgba(18, 140, 107, .35);
}
.btn--wa-ghost:hover { color: var(--wa-deep); background: #f1fbf6; border-color: var(--wa); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line-strong);
}
.btn--ghost:hover { color: var(--navy); border-color: var(--navy); background: var(--paper); }

.btn--light {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { color: var(--red-dark); }

.btn--lg { padding: 18px 32px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* Pulse ring for the primary emergency action */
.pulse { position: relative; }
.pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid var(--red-bright);
  opacity: 0;
  animation: pulsering 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulsering {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Emergency top bar (sticky) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background:
    radial-gradient(120% 200% at 0% 0%, var(--maroon) 0%, transparent 55%),
    linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff;
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
  font-size: .9rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 7px;
}
.topbar__msg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  letter-spacing: .01em;
}
.topbar__msg .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #67ff9a;
  box-shadow: 0 0 0 0 rgba(103, 255, 154, .8);
  animation: live 2s infinite;
  flex: none;
}
@keyframes live {
  0%   { box-shadow: 0 0 0 0 rgba(103, 255, 154, .75); }
  70%  { box-shadow: 0 0 0 7px rgba(103, 255, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(103, 255, 154, 0); }
}
.topbar__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: .01em;
}
.topbar__call svg { width: 16px; height: 16px; }
.topbar__call:hover { color: #fff; opacity: .92; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky;
  top: var(--bar-h);
  z-index: 65;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.header.is-stuck { box-shadow: 0 10px 30px -18px rgba(11, 27, 61, .4); }
.header .container {
  height: var(--head-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--navy), var(--maroon));
  color: #fff;
  position: relative;
  overflow: hidden;
  flex: none;
  box-shadow: var(--shadow-md);
}
.brand__mark::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 6px;
  background: var(--hazard);
  background-size: 200% 100%;
}
.brand__mark svg { width: 24px; height: 24px; position: relative; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3px;
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--navy);
  font-weight: 600;
  font-size: .96rem;
  transition: background .18s ease, color .18s ease;
}
.nav__list a:hover { background: var(--paper); color: var(--red-dark); }

.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-left: 6px;
}
.lang a {
  padding: 7px 13px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.lang a.is-active { background: var(--navy); color: #fff; }
.lang a:not(.is-active):hover { background: var(--paper); color: var(--navy); }

.header__cta { margin-left: 8px; }
.header .btn { padding: 12px 20px; font-size: .95rem; }

/* mobile-drawer extras are hidden on desktop (shown inside the 920px breakpoint) */
.nav .m-extra { display: none; }

/* burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  margin-left: auto;
  position: relative;
}
.burger span,
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2.4px;
  background: var(--navy);
  border-radius: 3px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease;
}
.burger span::before { transform: translate(-50%, -7px); }
.burger span::after  { transform: translate(-50%, 5px); }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .burger span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(90% 80% at 78% 12%, rgba(225,18,37,.42) 0%, transparent 52%),
    radial-gradient(70% 70% at 8% 96%, rgba(28,52,112,.6) 0%, transparent 55%),
    linear-gradient(150deg, var(--navy) 0%, #0c1832 42%, var(--maroon) 120%);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {  /* faint map grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 85%);
  z-index: -1;
}
.hero::after {  /* hazard stripe along bottom */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 8px;
  background: var(--hazard);
  background-size: 56px 56px;
  z-index: 2;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px 8px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  font-weight: 700;
  font-size: .85rem;
  color: #eef1f7;
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #67ff9a; flex: none;
  animation: live 2s infinite;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: .98;
  margin-bottom: 22px;
}
.hero h1 .hl {
  color: transparent;
  background: linear-gradient(100deg, #ff5663, var(--red-bright) 60%, #ffd0d4);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__sub {
  color: #d7dced;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  max-width: 54ch;
  margin-bottom: 32px;
}
.hero__sub a { color: #ffd0d4; text-decoration: underline; text-underline-offset: 3px; }
.hero__sub a:hover { color: #fff; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 26px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: .92rem;
  color: #c6cde0;
}
.hero__meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 17px; height: 17px; color: #67ff9a; flex: none; }

/* hero figure */
.hero__media { position: relative; }
.hero__media .frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(1.4deg);
}
.hero__media .frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.hero__media .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,27,61,.35));
}
.hero__chip {
  position: absolute;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero__chip .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), var(--maroon));
  color: #fff; flex: none;
}
.hero__chip .ico svg { width: 20px; height: 20px; }
.hero__chip b { font-family: var(--font-display); font-size: 1.05rem; display: block; line-height: 1.1; }
.hero__chip span { font-size: .78rem; color: var(--muted); }
.hero__chip--eta { bottom: -22px; left: -20px; }
.hero__chip--rate { top: -22px; right: -14px; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--navy);
  color: #fff;
  position: relative;
  z-index: 3;
}
.trust .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding-block: 26px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 10px;
  font-weight: 600;
  font-size: .9rem;
  color: #e7eaf2;
}
.trust__item svg { width: 24px; height: 24px; color: var(--red-bright); flex: none; }
.trust__item span small { display: block; color: #9aa6c4; font-weight: 500; font-size: .76rem; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card__media { position: relative; overflow: hidden; }
.card__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__media img { transform: scale(1.05); }
.card__media::before {  /* top hazard accent on hover */
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: var(--hazard); background-size: 40px 40px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease; z-index: 2;
}
.card:hover .card__media::before { transform: scaleX(1); }
.card__tag {
  position: absolute; left: 12px; top: 12px;
  background: rgba(11,27,61,.78);
  color: #fff; font-weight: 700; font-size: .74rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(225,18,37,.12), rgba(107,10,22,.12));
  color: var(--red); margin-bottom: 14px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .96rem; margin-bottom: 16px; }
.card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; color: var(--red-dark); font-size: .92rem;
}
.card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card__link:hover { color: var(--red); }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- How it works ---------- */
.how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid var(--line);
}
.step__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  margin-bottom: 12px;
  display: block;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .97rem; }
.step__ico {
  position: absolute; top: 26px; right: 26px;
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
}
.step__ico svg { width: 21px; height: 21px; }

/* ---------- Coverage (split, dark) ---------- */
.coverage { background: var(--navy); color: #fff; overflow: hidden; }
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.coverage h2 { color: #fff; }
.coverage p { color: #c6cde0; }
.coverage .lead { color: #d7dced; }
.districts {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-top: 26px;
}
.districts li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  font-size: .88rem; font-weight: 600;
}
.districts li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-bright);
}
.coverage__media .frame {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.coverage__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.coverage__pin {
  position: absolute; left: 18px; bottom: 18px;
  background: #fff; color: var(--navy);
  border-radius: 12px; padding: 11px 15px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); font-weight: 700;
}
.coverage__pin svg { width: 22px; height: 22px; color: var(--red); }
.coverage__pin small { display: block; color: var(--muted); font-weight: 500; font-size: .76rem; }

/* ---------- Tourists / why-us ---------- */
.why { background: var(--paper); }
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: center;
}
.feature-list { display: grid; gap: 16px; margin-top: 8px; }
.feature {
  display: flex; gap: 15px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.feature__ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy), var(--navy-500));
  color: #fff;
}
.feature__ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { font-size: .94rem; margin: 0; }

.why__panel {
  background: linear-gradient(155deg, var(--navy), var(--maroon));
  color: #fff; border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why__panel::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,18,37,.5), transparent 70%);
}
.why__panel h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 10px; }
.why__panel p { color: #e7eaf2; position: relative; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; position: relative; }
.stat b {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem); display: block; line-height: 1;
  color: #fff;
}
.stat span { font-size: .86rem; color: #c6cde0; }
.why__panel .btn { margin-top: 26px; position: relative; }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 26px 24px;
  display: flex; flex-direction: column;
}
.review__stars { display: flex; gap: 2px; margin-bottom: 14px; color: #f5b301; }
.review__stars svg { width: 18px; height: 18px; }
.review p { color: var(--ink); font-size: 1.02rem; margin-bottom: 18px; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(140deg, var(--navy), var(--maroon));
}
.review__who b { color: var(--navy); font-family: var(--font-body); }
.review__who small { color: var(--muted); display: block; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.faq__aside .btn { margin-top: 20px; }
.faq__list { display: grid; gap: 12px; }
.qa {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.qa.is-open { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.qa__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.08rem; color: var(--navy);
}
.qa__q:hover { color: var(--red-dark); }
.qa__icon {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  display: grid; place-items: center;
  background: var(--paper); color: var(--red);
  position: relative; transition: background .2s ease, color .2s ease;
}
.qa.is-open .qa__icon { background: var(--red); color: #fff; }
.qa__icon::before, .qa__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.qa__icon::before { width: 13px; height: 2.4px; }
.qa__icon::after  { width: 2.4px; height: 13px; transition: transform .25s ease; }
.qa.is-open .qa__icon::after { transform: scaleY(0); }
.qa__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.qa__a-inner { padding: 0 22px 22px; color: var(--muted); }
.qa__a-inner a { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Final CTA ---------- */
.cta {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(80% 120% at 85% 10%, rgba(225,18,37,.5), transparent 55%),
    linear-gradient(135deg, var(--navy), var(--maroon));
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(100% 100% at 50% 50%, #000, transparent 80%);
}
.cta .container { position: relative; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 16px; }
.cta p { color: #e7eaf2; font-size: 1.12rem; max-width: 56ch; margin: 0 auto 30px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.cta__phone {
  margin-top: 24px; font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff;
  display: inline-flex; align-items: center; gap: 12px;
}
.cta__phone:hover { color: #ffd0d4; }
.cta__phone svg { width: 28px; height: 28px; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #081229, var(--navy));
  color: #c6cde0;
  padding-block: clamp(54px, 7vw, 84px) 0;
  position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--hazard); background-size: 56px 56px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer .brand__name { color: #fff; }
.footer__about { margin-top: 18px; max-width: 36ch; color: #aab4cf; }
.footer h4 {
  color: #fff; font-family: var(--font-display); font-size: 1.05rem;
  margin-bottom: 16px; letter-spacing: -.01em;
}
.footer ul { display: grid; gap: 10px; }
.footer ul a { color: #c6cde0; font-size: .95rem; }
.footer ul a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; }
.footer__contact svg { width: 19px; height: 19px; color: var(--red-bright); flex: none; margin-top: 2px; }
.footer__contact a { color: #fff; font-weight: 700; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: .85rem; color: #8e99b8;
}
.footer__bottom a { color: #aab4cf; }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Floating dock (desktop) ---------- */
.dock {
  position: fixed; right: 20px; bottom: 24px; z-index: 80;
  display: flex; flex-direction: column; gap: 13px;
}
.dock a {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-lg); position: relative;
  transition: transform .2s ease;
}
.dock a:hover { transform: scale(1.07); color: #fff; }
.dock a svg { width: 27px; height: 27px; }
.dock .d-call { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.dock .d-wa { background: linear-gradient(135deg, var(--wa), var(--wa-deep)); }
.dock .label {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-size: .8rem; font-weight: 700;
  padding: 7px 12px; border-radius: var(--r-pill); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
  box-shadow: var(--shadow-md);
}
.dock a:hover .label { opacity: 1; transform: translateY(-50%) translateX(-4px); }
.dock .d-call::after {  /* pulse */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--red-bright); animation: pulsering 2.4s ease-out infinite;
}

/* ---------- Mobile sticky action bar ---------- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: none;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -10px 30px -12px rgba(11,27,61,.35);
}
.mobilebar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 11px 6px 12px; color: #fff;
  font-weight: 800; font-size: .78rem; letter-spacing: .01em;
}
.mobilebar a svg { width: 21px; height: 21px; }
.mobilebar .m-call { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.mobilebar .m-chat { background: linear-gradient(135deg, var(--wa), var(--wa-deep)); }
.mobilebar .m-msg  { background: var(--navy); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }

/* skip link */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s ease;
}
.skip:focus { top: 12px; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
  .trust .container { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer__grid .footer__col--contact { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  :root { --head-h: 66px; }
  .nav, .header__cta, .lang { display: none; }
  .burger { display: block; }

  /* mobile drawer */
  .nav.is-mobile {
    display: block; position: fixed;
    top: calc(var(--bar-h) + var(--head-h));
    left: 0; right: 0; bottom: 0;
    background: #fff; padding: 22px clamp(18px, 5vw, 30px);
    transform: translateX(100%);
    transition: transform .3s ease; overflow-y: auto;
    z-index: 64; border-top: 1px solid var(--line);
  }
  body.nav-open .nav.is-mobile { transform: none; }
  .nav.is-mobile .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav.is-mobile .nav__list a { padding: 14px 12px; border-radius: 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav.is-mobile .m-extra { margin-top: 18px; display: grid; gap: 12px; }
  .nav.is-mobile .lang { display: inline-flex; width: max-content; }

  .hero__inner { grid-template-columns: 1fr; padding-block: 40px 64px; }
  .hero__media { order: -1; max-width: 520px; }
  .hero__chip--rate { top: -16px; right: 8px; }
  .hero__chip--eta { bottom: -16px; left: 8px; }

  .cards, .steps, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage__grid, .why__grid, .faq__grid { grid-template-columns: 1fr; }
  .coverage__media, .why__panel { order: 2; }

  .dock { display: none; }
  .mobilebar { display: grid; }
  body { padding-bottom: 64px; }  /* room for mobile bar */
  html { scroll-padding-top: calc(var(--bar-h) + var(--head-h) + 10px); }
}

@media (max-width: 600px) {
  .topbar { font-size: .82rem; }
  .topbar__msg span.full { display: none; }
  .cards, .steps, .review-grid { grid-template-columns: 1fr; }
  .trust .container { grid-template-columns: repeat(2, 1fr); }
  .hero__actions .btn { flex: 1 1 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__chip { padding: 10px 12px; }
  .hero__chip .ico { width: 32px; height: 32px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
