/* =========================================================
   VUČORA — glavna stylesheet datoteka
   Vučna služba i pomoć na cesti 24/7, Hrvatska
   ========================================================= */

:root {
  --bg: #15110f;
  --bg-alt: #1b1614;
  --bg-card: #1e1917;
  --bg-footer: #0f0c0b;
  --light: #f6f3ee;
  --muted: #a89e97;
  --muted-2: #8a8078;
  --muted-3: #7a716a;
  --muted-4: #5f5852;
  --text-2: #c9c1ba;
  --text-3: #b8afa8;
  --border: rgba(255,255,255,.09);
  --border-2: rgba(255,255,255,.12);
  --border-3: rgba(255,255,255,.16);
  --accent: #f0a03c;
  --accent-hover: #ffbc63;
  --accent-deep: #a0562b;
  --red: #d1462a;
  --red-hover: #e8553a;
  --green: #4d7a3f;
  --green-bg: #1e2a1c;
  --green-text: #a8d494;
  --font-heading: 'Archivo', Helvetica, Arial, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--light);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; font-weight: 800; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--bg); padding: 12px 18px; border-radius: 0 0 6px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

@keyframes vuc-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes vuc-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-about { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.container-faq { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--accent);
  margin-bottom: 12px; text-transform: uppercase;
}
.eyebrow-dark { color: var(--accent-deep); }

/* ---------- Top strip ---------- */
.topstrip {
  background: var(--red); color: #fff; font-size: 13px; letter-spacing: .04em;
  display: flex; justify-content: center; gap: 28px; padding: 9px 20px; flex-wrap: wrap;
  font-family: var(--font-mono); text-align: center;
}
.topstrip .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff; display: inline-block;
  animation: vuc-pulse 1.6s infinite; margin-right: 8px;
}
.topstrip .item { display: flex; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(21,17,15,.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.site-header .inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; background: var(--accent); display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 800; color: var(--bg); font-size: 22px; border-radius: 3px;
  flex-shrink: 0;
}
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 21px; letter-spacing: .02em; line-height: 1; color: var(--light); }
.brand-sub { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: .14em; }

.main-nav { display: flex; gap: 2px; flex-wrap: wrap; margin-left: auto; }
.main-nav a {
  background: none; border: 0; color: var(--light); padding: 9px 12px; cursor: pointer;
  font-size: 14px; font-weight: 500; border-radius: 4px; text-decoration: none; white-space: nowrap;
}
.main-nav a:hover, .main-nav a:focus-visible { background: rgba(255,255,255,.07); color: var(--accent); }
.main-nav a.active { color: var(--accent); background: rgba(240,160,60,.1); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-btn {
  position: relative; background: rgba(255,255,255,.06); border: 1px solid var(--border-3); color: var(--light);
  padding: 10px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 600; text-decoration: none;
  white-space: nowrap; display: inline-block;
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.phone-btn {
  background: var(--accent); color: var(--bg); padding: 11px 16px; border-radius: 4px; font-weight: 700;
  font-size: 14px; text-decoration: none; white-space: nowrap; display: inline-block;
}
.phone-btn:hover { background: var(--accent-hover); text-decoration: none; color: var(--bg); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-3); color: var(--light);
  border-radius: 4px; width: 42px; height: 40px; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 4px; font-weight: 700; font-size: 16px; padding: 15px 26px; border: 0;
  cursor: pointer; text-decoration: none; font-family: var(--font-body); line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-lg { font-size: 17px; padding: 17px 30px; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: var(--red-hover); color: #fff; }
.btn-outline { background: none; border: 1px solid var(--border-3); color: var(--light); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--bg); color: var(--light); }
.btn-dark:hover { background: #2c2421; color: var(--light); }
.btn-light { background: #fff; color: var(--bg); }
.btn-light:hover { background: var(--light); color: var(--bg); }
.btn-ghost { background: rgba(255,255,255,.07); border: 1px solid var(--border-3); color: var(--light); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 14px; font-size: 14px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Layout helpers ---------- */
main { flex: 1; }
.section { padding: 70px 24px; }
.section-tight { padding: 60px 24px 80px; }
.section-alt { background: var(--bg-alt); }
.section-cream { background: var(--light); color: var(--bg); }
.section-cream .eyebrow { color: var(--accent-deep); }
.section-cream h1, .section-cream h2, .section-cream h3 { color: var(--bg); }
.section-border-t { border-top: 1px solid var(--border); }
.section-border-b { border-bottom: 1px solid var(--border); }

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-hero { grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.grid-split { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-cart { grid-template-columns: 1.5fr 1fr; gap: 24px; }

.row-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.row-center { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mb-0 { margin-bottom: 0 !important; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 26px;
}
.card-alt { background: var(--bg-alt); }
.card-light { background: #fff; border: 1px solid #e2dbd1; color: var(--bg); }
.card-photo { overflow: hidden; display: flex; flex-direction: column; padding: 0; }
.card-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-photo .card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.stat-box { background: var(--bg-card); border: 1px solid var(--border); padding: 16px; border-radius: 5px; text-align: center; }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg,var(--bg-alt),var(--bg));
}
.hero-inner { padding: 76px 24px 84px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(240,160,60,.4); color: var(--accent);
  padding: 7px 13px; border-radius: 100px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  margin-bottom: 26px;
}
.hero h1 { font-size: 66px; line-height: .98; letter-spacing: -.02em; text-transform: uppercase; }
.hero h1 span { color: var(--accent); }
.hero p.lead { font-size: 19px; line-height: 1.6; color: var(--text-2); max-width: 560px; margin: 26px 0 34px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-checks { display: flex; gap: 34px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.hero-photo {
  aspect-ratio: 4/3; border: 1px solid var(--border-2); border-radius: 6px; overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 10px; }

/* Photo blocks used across pages */
.photo-box { border-radius: 6px; overflow: hidden; border: 1px solid var(--border-2); }
.photo-box img { width: 100%; height: 100%; object-fit: cover; }
.ar-4-3 { aspect-ratio: 4/3; }
.ar-16-9 { aspect-ratio: 16/9; }
.ar-16-10 { aspect-ratio: 16/10; }
.ar-16-8 { aspect-ratio: 16/8; }
.ar-1-1 { aspect-ratio: 1/1; }
.ar-21-9 { aspect-ratio: 21/9; }

/* ---------- Sections numbers/titles ---------- */
h2.section-title { font-size: 42px; text-transform: uppercase; letter-spacing: -.01em; }
h1.page-title { font-size: 52px; text-transform: uppercase; margin-bottom: 18px; }
p.page-lead { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 800px; margin-bottom: 44px; }

/* ---------- Steps (Kako radimo) ---------- */
.step { border-top: 3px solid var(--accent); padding: 22px 0 0; }
.step-num { font-family: var(--font-heading); font-weight: 800; font-size: 40px; color: #3a312c; }
.step h3 { font-size: 19px; margin: 6px 0 10px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- Calculator ---------- */
.calc-box { background: var(--bg); border: 1px solid var(--border-2); border-radius: 8px; padding: 30px; }
.calc-box.standalone { background: var(--bg-card); }
.calc-label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 7px; }
.calc-box select, .calc-box input[type="range"] { width: 100%; margin-bottom: 18px; }
.calc-box select {
  background: var(--bg-card); color: var(--light); border: 1px solid var(--border-3); padding: 12px; border-radius: 4px;
}
input[type="range"] { accent-color: var(--accent); }
.calc-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); margin-bottom: 10px; cursor: pointer; }
.calc-check input { accent-color: var(--accent); width: 17px; height: 17px; }
.calc-result {
  border-top: 1px dashed var(--border-3); padding-top: 20px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.calc-total-label { font-size: 13px; color: var(--muted); }
.calc-total { font-family: var(--font-heading); font-weight: 800; font-size: 38px; color: var(--accent); line-height: 1.1; }
.calc-vat { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }

/* ---------- Reviews ---------- */
.review-stars { color: var(--accent); font-size: 17px; letter-spacing: 2px; }
.review-text { font-size: 16px; line-height: 1.65; color: #3a332e; }
.review-author { font-family: var(--font-mono); font-size: 11px; color: #7a6f66; letter-spacing: .08em; margin-top: auto; }

/* ---------- Blog / posts ---------- */
.post-card { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 24px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--light); }
.post-card:hover { border-color: var(--accent); text-decoration: none; }
.post-meta { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: .1em; }
.post-card h3 { font-size: 20px; line-height: 1.25; color: var(--light); }
.post-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.post-more { color: var(--accent); font-weight: 600; font-size: 14px; margin-top: auto; }
.post-card.photo { padding: 0; overflow: hidden; }
.post-card.photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card.photo .post-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); padding: 56px 24px; }
.cta-band .inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-size: 38px; text-transform: uppercase; color: #fff; line-height: 1.05; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 17px; margin: 10px 0 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-footer); border-top: 1px solid var(--border); padding: 56px 24px 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-desc { color: var(--muted-2); font-size: 14px; line-height: 1.7; margin: 0 0 16px; max-width: 330px; }
.footer-phone { font-family: var(--font-heading); font-weight: 800; font-size: 22px; }
.footer-email { color: var(--muted-2); font-size: 14px; margin-top: 6px; }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--text-3); text-align: left; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; font-size: 13px; color: var(--muted-3); line-height: 1.7;
}
.footer-pay { display: flex; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: 11px; }
.footer-note { margin-top: 14px; font-size: 12px; color: var(--muted-4); line-height: 1.7; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80; max-width: 1080px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border-3); border-radius: 8px; padding: 22px;
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: vuc-in .3s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner .text { flex: 1; min-width: 280px; }
.cookie-banner h3 { font-size: 17px; margin-bottom: 6px; }
.cookie-banner p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; right: 22px; bottom: 100px; z-index: 70; background: var(--red); color: #fff;
  padding: 16px 22px; border-radius: 100px; font-weight: 700; font-size: 16px; text-decoration: none;
  box-shadow: 0 10px 34px rgba(209,70,42,.45);
}
.float-call:hover { background: var(--red-hover); color: #fff; text-decoration: none; }

/* ---------- Forms ---------- */
.form-field {
  background: var(--bg); border: 1px solid var(--border-3); color: var(--light); padding: 13px; border-radius: 4px;
  width: 100%;
}
.section-cream .form-field, .card-light .form-field { background: #fff; color: var(--bg); border-color: #d8d0c6; }
textarea.form-field { resize: vertical; }
.form-stack { display: flex; flex-direction: column; gap: 12px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-check input { accent-color: var(--accent); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.form-note { font-size: 12px; color: var(--muted-2); line-height: 1.6; }
.form-success { background: var(--green-bg); border: 1px solid var(--green); border-radius: 6px; padding: 22px; color: var(--green-text); font-size: 16px; line-height: 1.6; }
.form-success.big { padding: 40px; text-align: center; border-radius: 8px; }
.form-success.big h2 { font-size: 30px; text-transform: uppercase; margin-bottom: 12px; color: var(--green-text); }
.form-success.big p { color: var(--text-2); font-size: 17px; line-height: 1.7; margin: 0 0 22px; }
.form-error { background: #2a1c1c; border: 1px solid #7a3f3f; border-radius: 6px; padding: 18px; color: #e8a3a3; font-size: 15px; line-height: 1.6; margin-bottom: 16px; }

label.form-label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }

/* ---------- Pricing table ---------- */
.price-table { border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; margin-bottom: 40px; }
.price-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--bg-card); padding: 16px 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--muted);
}
.price-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 18px 22px; border-top: 1px solid var(--border);
  align-items: center; font-size: 16px;
}
.price-day { font-family: var(--font-heading); font-weight: 800; color: var(--accent); }
.price-night { font-family: var(--font-heading); font-weight: 800; color: var(--text-2); }

/* ---------- Product / fleet / region cards ---------- */
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: .1em; }
.product-body h3 { font-size: 16px; line-height: 1.3; }
.product-desc { color: var(--muted); font-size: 13px; line-height: 1.55; }
.product-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; }
.product-price { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--accent); }
.product-stock { font-family: var(--font-mono); font-size: 10px; color: #7f9a6e; }

.fleet-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.fleet-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fleet-body { padding: 22px; }
.fleet-body h3 { font-size: 20px; margin-bottom: 8px; }
.fleet-body p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0 0 14px; }
.fleet-spec { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: .08em; }

.region-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 20px; }
.region-card h3 { font-size: 18px; margin-bottom: 6px; }
.region-eta { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: .08em; margin-bottom: 8px; }
.region-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

.category-pill {
  background: rgba(255,255,255,.05); border: 1px solid var(--border-3); color: var(--light); padding: 10px 16px;
  border-radius: 100px; cursor: pointer; font-size: 14px; font-weight: 500; text-decoration: none; display: inline-block;
}
.category-pill:hover, .category-pill.active { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.category-pill.active { background: rgba(240,160,60,.18); }

/* ---------- Cart ---------- */
.cart-line { display: grid; grid-template-columns: 78px 1fr auto; gap: 16px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 16px; margin-bottom: 10px; }
.cart-line img { width: 78px; height: 78px; object-fit: cover; border-radius: 4px; }
.cart-line h3 { font-size: 16px; margin-bottom: 4px; }
.cart-line .sku { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 32px; height: 32px; background: rgba(255,255,255,.07); border: 1px solid var(--border-3); color: var(--light); border-radius: 4px; cursor: pointer; font-size: 16px; line-height: 1; }
.qty-btn:hover { border-color: var(--accent); }
.qty-num { min-width: 22px; text-align: center; font-family: var(--font-heading); font-weight: 800; }
.line-total { min-width: 78px; text-align: right; font-family: var(--font-heading); font-weight: 800; color: var(--accent); }
.remove-btn { background: none; border: 0; color: var(--muted-2); cursor: pointer; font-size: 18px; padding: 4px; }
.remove-btn:hover { color: var(--red); }

.summary-box { background: var(--bg-alt); border: 1px solid var(--border-2); border-radius: 8px; padding: 26px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--text-2); margin-bottom: 10px; }
.summary-row.vat { font-size: 13px; color: var(--muted-2); margin-bottom: 16px; }
.summary-total { border-top: 1px dashed var(--border-3); padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.summary-total .amount { font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--accent); }
.cart-empty { background: var(--bg-card); border: 1px dashed var(--border-3); border-radius: 8px; padding: 50px; text-align: center; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  width: 100%; background: none; border: 0; color: var(--light); padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; gap: 20px; align-items: center; font-size: 18px; font-weight: 600;
  font-family: var(--font-heading); list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .sign { color: var(--accent); font-size: 24px; flex-shrink: 0; }
.faq-item summary .sign::before { content: '+'; }
.faq-item[open] summary .sign::before { content: '\2212'; }
.faq-item .faq-a { color: var(--muted); font-size: 16px; line-height: 1.8; margin: 0; padding: 0 0 24px; max-width: 760px; }

/* ---------- Article / legal body blocks ---------- */
.doc-body h2 { font-size: 26px; text-transform: uppercase; margin: 34px 0 12px; }
.doc-body p { color: var(--text-2); font-size: 17px; line-height: 1.8; margin: 0 0 16px; }
.doc-body .li-row { display: flex; gap: 12px; margin-bottom: 10px; }
.doc-body .li-row .dash { color: var(--accent); font-weight: 800; }
.doc-body .li-row p { margin: 0; }
.legal-body h2 { font-size: 24px; text-transform: uppercase; margin: 32px 0 12px; }
.legal-body p { color: var(--text-3); font-size: 16px; line-height: 1.8; margin: 0 0 14px; }
.legal-body .li-row { display: flex; gap: 12px; margin-bottom: 8px; }
.legal-body .li-row .bullet { color: var(--accent); }
.legal-body .li-row p { margin: 0; color: var(--text-3); font-size: 16px; line-height: 1.7; }
.back-link { background: none; border: 0; color: var(--accent); cursor: pointer; padding: 0; margin-bottom: 22px; font-size: 14px; font-weight: 600; display: inline-block; }

.timeline-row { display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid var(--border); }
.timeline-year { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--accent); }
.timeline-row p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.cert-box { border: 1px dashed var(--border-3); padding: 20px; border-radius: 5px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); text-align: center; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 44px; }
.map-box {
  border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; position: relative;
}
.map-box img { width: 100%; height: 100%; object-fit: cover; }
.map-caption {
  position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(0deg, rgba(15,12,11,.9), transparent);
  color: var(--light); font-family: var(--font-mono); font-size: 12px; padding: 30px 20px 16px; letter-spacing: .05em;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--border); flex-direction: column; padding: 10px 16px; gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .nav-toggle { display: inline-flex; }
  .site-header .inner { flex-wrap: wrap; position: relative; }
  .header-actions { margin-left: auto; }

  .grid-hero { grid-template-columns: 1fr; gap: 34px; }
  .hero h1 { font-size: 46px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-split { grid-template-columns: 1fr; }
  .grid-cart { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  h1.page-title { font-size: 36px; }
  h2.section-title { font-size: 30px; }
  .hero h1 { font-size: 36px; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .price-head, .price-row { grid-template-columns: 1.6fr 1fr 1fr; padding: 14px; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .topstrip { gap: 12px; font-size: 11px; }
  .float-call { padding: 13px 18px; font-size: 14px; right: 14px; bottom: 90px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .container, .container-narrow, .container-article, .container-legal, .container-about, .container-faq { padding: 0 16px; }
}

/* Print */
@media print {
  .site-header, .site-footer, .cookie-banner, .float-call { display: none; }
}
