/* =========================================================
   Asistence Urban 24 — odtahová služba Pardubice
   Art direction: high-visibility night emergency
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #0C0D10;
  --bg-2:      #131519;
  --bg-3:      #1A1D23;
  --line:      #262a33;
  --line-2:    #333844;

  --accent:    #FF7A00;   /* výstražná oranžová */
  --accent-2:  #FFB800;   /* hi-vis žlutá */
  --accent-ink:#0C0D10;

  --white:     #FFFFFF;
  --text:      #E9EBF0;
  --muted:     #9AA0AC;
  --muted-2:   #6d7480;
  --ok:        #3ad06a;

  --ff-display: "Anton", "Archivo", system-ui, sans-serif;
  --ff-head:    "Archivo", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, sans-serif;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow:    0 20px 50px -20px rgba(0,0,0,.7);
  --shadow-accent: 0 16px 40px -12px rgba(255,122,0,.45);

  --maxw:      1200px;
  --gutter:    clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.05; font-family: var(--ff-head); font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: var(--accent-ink);
  padding: .7rem 1.1rem; border-radius: 8px; font-weight: 700; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 800; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}

/* ---------- Hazard stripe ---------- */
.hazard-strip {
  height: 6px;
  background: repeating-linear-gradient(45deg, var(--accent-2) 0 18px, #0c0d10 18px 36px);
}
.hazard-top { position: absolute; top: 0; left: 0; right: 0; z-index: 3; opacity: .9; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .85rem; --pad-x: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--ff-head); font-weight: 800; font-size: .98rem;
  letter-spacing: .01em;
  border: none; border-radius: 999px; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-align: center; white-space: nowrap;
}
.btn svg { flex: none; }
.btn-lg { --pad-y: 1.05rem; --pad-x: 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-call {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: var(--shadow-accent);
}
.btn-call:hover { background: #ff8c20; transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(255,122,0,.6); }
.btn-call:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 2px var(--line-2);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--accent); transform: translateY(-2px); }

/* ---------- Pulse dot (nonstop indicator) ---------- */
.pulse-dot {
  position: relative; display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ok); flex: none;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--ok); animation: pulse 1.8s ease-out infinite;
}
.pulse-dot--lg { width: 12px; height: 12px; }
@keyframes pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(3.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot::after { animation: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.8);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), #d65f00);
  color: var(--accent-ink);
  box-shadow: var(--shadow-accent);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--ff-head); font-weight: 900; font-size: 1.05rem; letter-spacing: -.01em; }
.brand-text em { font-style: normal; font-size: .72rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.main-nav { display: flex; gap: .35rem; align-items: center; }
.main-nav a {
  padding: .55rem .8rem; border-radius: 8px;
  font-weight: 600; font-size: .95rem; color: var(--text);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.main-nav a:hover { color: var(--accent-2); background: var(--bg-2); }

.header-call { margin-left: .4rem; flex-direction: column; gap: 0; --pad-y: .55rem; --pad-x: 1.15rem; line-height: 1.05; }
.header-call .header-call-label { font-size: .78rem; letter-spacing: .04em; }
.header-call .header-call-num { font-size: 1.02rem; font-weight: 900; letter-spacing: .01em; }
.header-call .pulse-dot { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--bg-2); cursor: pointer; padding: 0; place-content: center; align-items: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(92vh, 860px);
  display: flex; align-items: center;
  padding-block: clamp(4rem, 12vh, 8rem) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: #05060a url("https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1920&q=70") center/cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1000px 600px at 78% 30%, rgba(255,122,0,.16), transparent 60%),
    linear-gradient(180deg, rgba(12,13,16,.55) 0%, rgba(12,13,16,.82) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(12,13,16,.92) 0%, rgba(12,13,16,.45) 60%, rgba(12,13,16,.25) 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; width: 100%;
}

.status-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem .95rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-2);
  font-size: .85rem; font-weight: 600; color: var(--text);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 7.5vw, 5.6rem);
  line-height: 1.1; letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 1.1rem 0 1.2rem;
  text-wrap: balance;
}
.hero h1 .hl {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(255,122,0,.35);
}
.hero-sub {
  font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem);
  color: var(--text); max-width: 42ch; margin-bottom: 1.8rem;
}
.hero-sub strong { color: var(--accent-2); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: var(--muted); }
.hero-badges svg { width: 18px; height: 18px; fill: none; stroke: var(--accent-2); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Hero phone card (WOW) */
.hero-phone { position: relative; }
.phone-card {
  position: relative; z-index: 2;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  text-align: center;
}
.phone-card-top { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.phone-number {
  display: block;
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.9rem, 2.2rem + 1.5vw, 3rem);
  letter-spacing: -0.005em; color: var(--white);
  line-height: 1; margin-bottom: .7rem;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.phone-number:hover { color: var(--accent); }
.phone-card-sub { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; }
.phone-glow {
  position: absolute; inset: -30% -20% -40%; z-index: 1;
  background: radial-gradient(closest-side, rgba(255,122,0,.35), transparent 70%);
  filter: blur(20px);
}

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--line-2); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px; z-index: 4;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 3px; background: var(--accent); animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ---------- Promise band ---------- */
.promise {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding-block: clamp(2.2rem, 5vw, 3.5rem);
}
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); }
.promise-item svg { width: 34px; height: 34px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .7rem; }
.promise-item h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .3rem; }
.promise-item p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Section base ---------- */
.section { padding-block: var(--section-y); }
.section-head { max-width: 40rem; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head h2 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(1.9rem, 1.5rem + 2.2vw, 3.1rem);
  text-wrap: balance;
}
.section-lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.card {
  position: relative; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.6rem 1.7rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--accent), var(--accent-2));
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--bg-3); }
.card:hover::before { transform: scaleY(1); }
.card-num {
  position: absolute; top: 1.2rem; right: 1.3rem;
  font-family: var(--ff-display); font-size: 2.4rem; color: var(--line-2);
  line-height: 1; transition: color .3s var(--ease);
}
.card:hover .card-num { color: color-mix(in srgb, var(--accent) 50%, var(--line-2)); }
.card-icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,122,0,.12); margin-bottom: 1.1rem;
}
.card-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card--accent { background: linear-gradient(160deg, rgba(255,122,0,.14), var(--bg-2)); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.card--accent .card-icon { background: rgba(255,122,0,.2); }

/* ---------- Stats / counters ---------- */
.stats { position: relative; isolation: isolate; padding-block: clamp(3rem, 7vw, 5rem); overflow: hidden; }
.stats-bg {
  position: absolute; inset: 0; z-index: -2;
  background: #05060a url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=60") center/cover no-repeat;
  transform: scale(1.08); will-change: transform;
}
.stats-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,13,16,.9), rgba(12,13,16,.82)), radial-gradient(700px 400px at 20% 50%, rgba(255,122,0,.18), transparent 60%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2rem); text-align: center; }
.stat-num {
  display: block; font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.6rem, 2rem + 3vw, 4.2rem); line-height: 1; color: var(--accent-2);
  text-shadow: 0 0 40px rgba(255,184,0,.25);
}
.stat-label { display: block; margin-top: .4rem; color: var(--text); font-weight: 600; font-size: .98rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); counter-reset: step; }
.step { position: relative; padding-top: 1.4rem; }
.step + .step::before {
  content: ""; position: absolute; top: 32px; left: -1.05rem; width: 2.1rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
}
.step-num {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  font-family: var(--ff-display); font-size: 1.7rem; color: var(--accent-ink);
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: var(--shadow-accent); margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }
.step a { color: var(--accent-2); font-weight: 700; }
.step a:hover { text-decoration: underline; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-2); border-block: 1px solid var(--line); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.price-card {
  position: relative;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.price-card--featured {
  background: linear-gradient(165deg, rgba(255,122,0,.12), var(--bg));
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.price-flag {
  position: absolute; top: -12px; left: 1.6rem;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--ff-head); font-weight: 800; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
}
.price-head h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.price-head p { color: var(--muted); font-size: .92rem; margin: 0; }
.price-tag { margin-top: auto; font-family: var(--ff-display); font-size: clamp(2.2rem, 1.8rem + 2vw, 3rem); color: var(--white); line-height: 1; }
.price-tag .price-from { font-family: var(--ff-body); font-size: .85rem; color: var(--muted); font-weight: 600; vertical-align: middle; margin-right: .3rem; }
.price-tag .price-unit { font-family: var(--ff-body); font-size: 1rem; color: var(--accent-2); font-weight: 700; }
.price-note { text-align: center; color: var(--muted); margin: 2rem auto 0; max-width: 46rem; }
.price-note a { color: var(--accent-2); font-weight: 700; }
.price-note a:hover { text-decoration: underline; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 3/2; object-fit: cover; }
.about-badge {
  position: absolute; left: -8px; bottom: -18px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 14px; padding: .8rem 1.2rem; box-shadow: var(--shadow-accent);
  display: flex; flex-direction: column; line-height: 1.2;
}
.about-badge strong { font-family: var(--ff-head); font-weight: 900; font-size: 1.1rem; }
.about-badge span { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.about-copy p strong { color: var(--white); }
.about-list { margin: 1.3rem 0 1.8rem; display: grid; gap: .7rem; }
.about-list li { display: flex; align-items: center; gap: .7rem; font-weight: 600; }
.about-list svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--accent-2); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Coverage ---------- */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.coverage-copy p { color: var(--muted); }
.coverage-copy strong { color: var(--white); }
.coverage-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0; }
.coverage-tags li {
  padding: .45rem .9rem; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  font-size: .9rem; font-weight: 600; color: var(--text);
}
.coverage-tags li:nth-child(n+7) { border-color: var(--accent); color: var(--accent-2); }
.coverage-note { font-size: .98rem; }

.coverage-map { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1rem; box-shadow: var(--shadow); }
.map-svg { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.map-caption { text-align: center; color: var(--muted-2); font-size: .82rem; margin: .8rem 0 .2rem; }
.map-ring { animation: spin 40s linear infinite; transform-origin: 200px 166px; }
.map-pulse { animation: mapPulse 2.4s ease-out infinite; transform-origin: 200px 166px; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes mapPulse { 0% { r: 8; opacity: .8; } 100% { r: 34; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .map-ring, .map-pulse { animation: none; } }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.review {
  margin: 0; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.review:hover { transform: translateY(-5px); border-color: var(--line-2); }
.stars { color: var(--accent-2); font-size: 1.1rem; letter-spacing: .12em; }
.review blockquote { margin: 0; font-size: 1.02rem; color: var(--text); }
.review figcaption { display: flex; flex-direction: column; gap: .1rem; margin-top: auto; }
.review figcaption strong { font-family: var(--ff-head); font-weight: 800; }
.review figcaption span { color: var(--muted); font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-inner .section-head { margin-bottom: 0; position: sticky; top: 100px; }
.faq-inner .section-head a { color: var(--accent-2); font-weight: 700; }
.accordion { display: grid; gap: .8rem; }
.acc-item { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s var(--ease); }
.acc-item[open] { border-color: var(--line-2); }
.acc-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.3rem;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: "+"; font-family: var(--ff-body); font-weight: 400; font-size: 1.6rem; color: var(--accent);
  line-height: 1; transition: transform .3s var(--ease); flex: none;
}
.acc-item[open] summary::after { transform: rotate(45deg); }
.acc-item summary:hover { color: var(--accent-2); }
.acc-body { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.acc-body p { margin: 0; }
.acc-body a { color: var(--accent-2); font-weight: 700; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-phone {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--ff-display); font-size: clamp(1.7rem, 1.3rem + 2vw, 2.6rem);
  color: var(--white); margin: .6rem 0 1.6rem; transition: color .2s var(--ease);
}
.contact-phone:hover { color: var(--accent); }
.contact-details { display: grid; gap: .9rem; margin-bottom: 1.8rem; }
.contact-details li { display: flex; align-items: center; gap: .8rem; color: var(--text); }
.contact-details a:hover { color: var(--accent-2); }
.ci { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--bg-3); border: 1px solid var(--line-2); }
.ci svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); }
.map-embed iframe { display: block; filter: grayscale(.3) contrast(1.05); }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  position: relative;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.35rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--text); }
.field label span { color: var(--accent); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--white);
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: .8rem .95rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,122,0,.2); }
.field.invalid input, .field.invalid textarea { border-color: #ff5252; box-shadow: 0 0 0 3px rgba(255,82,82,.18); }
.field-error { display: none; color: #ff7676; font-size: .82rem; margin-top: .35rem; }
.field.invalid .field-error { display: block; }
.form-hint { font-size: .84rem; color: var(--muted); margin: 1rem 0 0; text-align: center; }
.form-hint a { color: var(--accent-2); font-weight: 700; }

.form-success {
  position: absolute; inset: 0; z-index: 5;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  text-align: center; padding: 2rem;
  animation: fadeIn .4s var(--ease);
}
.form-success[hidden] { display: none; }
.form-success strong { font-family: var(--ff-head); font-size: 1.5rem; }
.form-success span { color: var(--muted); max-width: 30ch; }
.form-success a { color: var(--accent-2); font-weight: 700; }
@keyframes fadeIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); }
.site-footer .hazard-strip { opacity: .55; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
}
.brand--footer { margin: 0 0 1rem; }
.footer-brand p { color: var(--muted); max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col li { color: var(--muted); font-size: .95rem; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  padding-block: 1.4rem; border-top: 1px solid var(--line);
  color: var(--muted-2); font-size: .85rem;
}
.footer-bottom a { color: var(--muted); font-weight: 600; }
.footer-bottom a:hover { color: var(--accent-2); }

/* ---------- Floating call button (mobile WOW) ---------- */
.floating-call {
  position: fixed; z-index: 90; right: 1rem; bottom: 1rem;
  display: none; align-items: center; gap: .6rem;
  padding: .95rem 1.3rem; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--ff-head); font-weight: 800; font-size: 1rem;
  box-shadow: 0 14px 34px -10px rgba(255,122,0,.7);
  animation: floatIn .4s var(--ease) both;
}
.floating-call .pulse-dot { position: absolute; top: 8px; right: 10px; width: 8px; height: 8px; }
@keyframes floatIn { from { transform: translateY(120%); } to { transform: translateY(0); } }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-bg, .stats-bg { transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .cards, .price-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .step + .step::before { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-inner .section-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* Mobile nav */
  .main-nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: .6rem var(--gutter) 1.2rem;
    transform: translateY(-120%); transition: transform .35s var(--ease);
    box-shadow: 0 30px 50px -20px rgba(0,0,0,.8);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { padding: .95rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-call { order: 3; }
  .header-call .header-call-label { display: none; }
  .header-call { flex-direction: row; gap: .5rem; }
  .header-call .header-call-num { font-size: .98rem; }
  .header-call .header-call-num::before { content: "Volat "; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-phone { max-width: 26rem; }
  .hero { min-height: auto; }

  .floating-call { display: inline-flex; }
}

@media (max-width: 620px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .cards, .price-grid, .review-grid, .steps { grid-template-columns: 1fr; }
  .about-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .header-call .header-call-num::before { content: ""; }
  .header-call { --pad-x: .9rem; }
  .floating-call-text { display: none; }
  .floating-call { padding: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
}

@media (max-width: 380px) {
  .brand-text em { display: none; }
  .header-call { display: none; }
}
