/* Gyors Autómentő — fő stíluslap */

:root {
  --bg: #101215;
  --bg-alt: #16181b;
  --bg-alt2: #0c0e10;
  --border: #2c3037;
  --border-soft: #24272c;
  --border-input: #33373d;
  --border-btn: #45484e;
  --accent: #f5b301;
  --accent-hover: #ffd25e;
  --text: #f2f0ed;
  --text-soft: #cfcdc9;
  --text-muted: #a9a8a4;
  --text-mute2: #8e9096;
  --text-mute3: #7d7f85;
  --text-mute4: #6f7278;
  --ink: #16181b;
  --radius: 4px;
  --radius-lg: 6px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 17px;
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; margin: 0; }
p { text-wrap: pretty; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }
button { cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }
@keyframes stripeMove { from { background-position: 0 0; } to { background-position: 56px 0; } }

/* ---------- Top announcement bar ---------- */
.top-bar {
  background: var(--accent);
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 20px;
  text-align: center;
}
.top-bar .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink); display: inline-block;
  animation: pulseDot 1.4s infinite; flex-shrink: 0;
}
.top-bar a { color: var(--ink); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 18, 21, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px; background: var(--accent);
  display: grid; place-items: center;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  flex-shrink: 0;
}
.logo-mark span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 24px; color: var(--ink); }
.logo-text { line-height: 1.05; }
.logo-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: .02em; color: var(--text); }
.logo-sub { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute2); }

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 8px 11px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  color: var(--text-soft);
}
.main-nav a:hover, .main-nav a.active { background: #1c1f23; color: var(--accent); }

.cart-link {
  position: relative; padding: 9px 14px; border: 1px solid var(--border-input);
  border-radius: var(--radius); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 8px; color: var(--text); white-space: nowrap;
}
.cart-link:hover { border-color: var(--accent); color: var(--accent); }
.cart-badge {
  background: var(--accent); color: var(--ink); min-width: 22px; height: 22px;
  border-radius: 11px; display: grid; place-items: center; font-size: 13px;
  font-weight: 700; padding: 0 6px;
}

.btn-call {
  background: var(--accent); color: var(--ink); padding: 11px 18px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px;
  letter-spacing: .04em; white-space: nowrap;
}
.btn-call:hover { color: var(--ink); background: var(--accent-hover); }

.nav-toggle {
  display: none; margin-left: auto; background: transparent; border: 1px solid var(--border-input);
  border-radius: var(--radius); color: var(--text); width: 42px; height: 42px;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--text); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block; cursor: pointer; background: var(--accent); color: var(--ink);
  padding: 14px 26px; border: none; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: .04em;
  text-align: center;
}
.btn-primary:hover { background: var(--accent-hover); color: var(--ink); }
.btn-outline {
  display: inline-block; cursor: pointer; background: transparent; color: var(--text);
  border: 1px solid var(--border-btn); padding: 14px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; text-align: center;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; border-bottom: 1px solid var(--border-soft); overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, #16181b 0 28px, #131518 28px 56px);
  animation: stripeMove 3s linear infinite; opacity: .8;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 78% 20%, rgba(245, 179, 1, .16), transparent 70%);
}
.hero-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 84px 24px 76px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--accent);
  color: var(--accent); padding: 6px 13px; border-radius: 999px; font-size: 13px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 68px;
  line-height: .98; letter-spacing: -.01em; margin: 22px 0 18px; text-transform: uppercase;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-lead { font-size: 19px; color: var(--text-muted); max-width: 560px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 38px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 14px; color: var(--text-mute2); }

.callback-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 26px; }
.callback-card h2 { font-size: 26px; text-transform: uppercase; letter-spacing: .02em; }
.callback-card > p { font-size: 14px; color: var(--text-mute2); margin: 6px 0 18px; }

/* ---------- Form fields ---------- */
.field, .form-grid input[type=text], .form-grid input[type=email], .form-grid input[type=tel],
input.field, select.field, textarea.field {
  background: var(--bg); border: 1px solid var(--border-input); color: var(--text);
  padding: 13px 14px; border-radius: var(--radius); font-size: 16px; width: 100%;
}
.field:focus, input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-stack { display: grid; gap: 11px; }
.form-hint { font-size: 12px; color: var(--text-mute3); }
.form-hint a { text-decoration: underline; }
.form-msg { font-size: 13px; color: var(--accent); min-height: 1.2em; }
.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mute2); cursor: pointer; }
.check-row input { accent-color: var(--accent); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

/* ---------- Trust bar ---------- */
.trust-bar { border-bottom: 1px solid var(--border-soft); background: var(--bg-alt); }
.trust-grid { max-width: var(--maxw); margin: 0 auto; padding: 26px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-bar-mark { width: 8px; height: 34px; background: var(--accent); flex-shrink: 0; }
.trust-title { font-weight: 700; }
.trust-text { font-size: 14px; color: var(--text-mute2); }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 76px 24px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section-alt > .section { padding: 70px 24px; }
.eyebrow { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.section-title { font-size: 46px; margin: 8px 0 34px; text-transform: uppercase; }
.page-title { font-size: 56px; margin: 0 0 10px; text-transform: uppercase; }
.page-lead { font-size: 18px; color: var(--text-muted); max-width: 780px; margin: 0 0 40px; }
.sub-title { font-size: 36px; margin: 0 0 18px; text-transform: uppercase; }

.page-main { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 90px; }
.page-main-narrow { max-width: 900px; margin: 0 auto; padding: 60px 24px 90px; }
.page-main-legal { max-width: 1000px; margin: 0 auto; padding: 60px 24px 90px; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px;
}

/* service cards (home) */
.service-card { display: flex; flex-direction: column; gap: 9px; }
.service-card:hover { border-color: var(--accent); background: #1a1d21; }
.service-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 600; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; }
.service-title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; }
.service-text { font-size: 15px; color: var(--text-muted); }
.service-price { margin-top: auto; padding-top: 12px; font-size: 14px; font-weight: 600; color: var(--accent); }

/* steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { border-top: 3px solid var(--accent); padding-top: 16px; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 700; color: #2f333a; }
.step-title { font-weight: 700; margin-bottom: 6px; }
.step-text { font-size: 15px; color: var(--text-muted); }

/* webshop promo (home) */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.promo-text p { font-size: 17px; color: var(--text-muted); margin: 0 0 22px; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.featured-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 16px; }
.thumb { height: 92px; border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; background: #1e2126; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured-name { font-weight: 600; font-size: 15px; line-height: 1.3; }
.featured-price { color: var(--accent); font-weight: 700; margin-top: 6px; }

/* reviews */
.review-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; background: var(--bg); }
.review-stars { color: var(--accent); letter-spacing: .2em; font-size: 15px; }
.review-text { font-size: 16px; color: var(--text-soft); margin: 12px 0 16px; }
.review-name { font-weight: 700; font-size: 15px; }
.review-meta { font-size: 13px; color: var(--text-mute2); }

/* cta banner */
.cta-banner {
  border: 1px solid var(--accent); border-radius: var(--radius-lg); padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  background: linear-gradient(90deg, rgba(245, 179, 1, .1), transparent);
}
.cta-banner h2 { font-size: 40px; margin: 0 0 8px; text-transform: uppercase; }
.cta-banner p { margin: 0; color: var(--text-soft); font-size: 17px; }
.cta-banner .btn-call { padding: 18px 34px; font-size: 26px; }

/* ---------- Services page ---------- */
.service-rows { display: grid; gap: 16px; }
.service-row {
  border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 28px; display: grid; grid-template-columns: 240px 1fr 200px; gap: 26px; align-items: start;
}
.service-row .service-tag { font-size: 14px; }
.service-row .service-title { font-size: 30px; line-height: 1.1; margin-top: 4px; }
.service-row .service-long { font-size: 16px; color: var(--text-muted); }
.service-row .service-side { text-align: right; }
.service-row .service-price { font-size: 24px; }
.service-row .btn-outline { margin-top: 10px; padding: 9px 16px; font-size: 14px; }

/* ---------- Prices page ---------- */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 46px; }
.calc-card { border: 1px solid var(--accent); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 28px; }
.calc-card h2, .rates-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 700; text-transform: uppercase; margin-bottom: 18px; }
.rates-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 28px; }
.calc-field label { display: block; font-size: 14px; color: var(--text-mute2); margin-bottom: 6px; }
.calc-field input[type=range] { width: 100%; accent-color: var(--accent); }
.calc-checks { display: flex; gap: 22px; flex-wrap: wrap; }
.calc-total-row { border-top: 1px dashed var(--border-input); padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; }
.calc-total-row span:first-child { font-size: 15px; color: var(--text-mute2); }
.calc-total { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 700; color: var(--accent); }
.calc-note { font-size: 13px; color: var(--text-mute3); }
.price-list { display: grid; gap: 0; }
.price-row { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--border-soft); }
.price-row span:first-child { font-size: 16px; color: var(--text-soft); }
.price-row span:last-child { font-weight: 700; white-space: nowrap; }
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fee-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; background: var(--bg-alt); }
.fee-label { font-weight: 700; margin-bottom: 6px; }
.fee-note { font-size: 14px; color: var(--text-mute2); margin-bottom: 10px; }
.fee-value { color: var(--accent); font-weight: 700; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; }

/* ---------- Coverage page ---------- */
.regions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 46px; }
.region-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 18px; }
.region-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; }
.region-time { font-size: 14px; color: var(--text-mute2); margin-top: 4px; }
.highways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.highway-card { border-left: 4px solid var(--accent); background: var(--bg-alt); padding: 18px 20px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.highway-name { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; }
.highway-text { font-size: 15px; color: var(--text-muted); margin-top: 4px; }

/* ---------- Shop page ---------- */
.category-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.category-pill {
  cursor: pointer; padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border-input); color: var(--text-soft); background: transparent;
}
.category-pill.active { border-color: var(--accent); color: var(--ink); background: var(--accent); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; }
.product-thumb { height: 150px; border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; background: #1e2126; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.product-name { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; line-height: 1.15; margin: 4px 0 8px; }
.product-desc { font-size: 14px; color: var(--text-mute2); margin-bottom: 14px; }
.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--accent); }
.product-stock { font-size: 12px; color: var(--text-mute4); }
.btn-add {
  cursor: pointer; background: var(--accent); color: var(--ink); padding: 11px 16px; border: none;
  border-radius: var(--radius); font-weight: 700; font-size: 14px; white-space: nowrap;
}
.btn-add:hover { background: var(--accent-hover); }
.shop-info { margin-top: 40px; border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shop-info-title { font-weight: 700; margin-bottom: 4px; }
.shop-info-text { font-size: 14px; color: var(--text-mute2); }

/* ---------- Cart page ---------- */
.cart-empty { border: 1px dashed var(--border-input); border-radius: var(--radius-lg); padding: 60px; text-align: center; }
.cart-empty p { font-size: 19px; color: var(--text-muted); margin-bottom: 18px; }
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
.cart-lines { display: grid; gap: 12px; }
.cart-line {
  border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 18px;
  display: grid; grid-template-columns: 80px 1fr auto auto; gap: 18px; align-items: center;
}
.cart-thumb { height: 62px; border-radius: var(--radius); overflow: hidden; background: #1e2126; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-name { font-weight: 700; font-size: 17px; }
.cart-unit { font-size: 14px; color: var(--text-mute2); }
.qty-control { display: flex; align-items: center; gap: 4px; }
.qty-btn { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--border-input); border-radius: var(--radius); font-weight: 700; background: transparent; color: var(--text); }
.qty-val { width: 40px; text-align: center; font-weight: 700; }
.cart-line-total { text-align: right; min-width: 120px; }
.cart-line-price { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; color: var(--accent); }
.cart-remove { cursor: pointer; font-size: 13px; color: var(--text-mute2); text-decoration: underline; background: none; border: none; }
.cart-summary { border: 1px solid var(--accent); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 24px; display: grid; gap: 12px; }
.summary-title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; }
.summary-row { display: flex; justify-content: space-between; }
.summary-row span:first-child { color: var(--text-muted); }
.summary-row span:last-child { font-weight: 700; }
.summary-total { border-top: 1px dashed var(--border-input); padding-top: 12px; display: flex; justify-content: space-between; align-items: baseline; }
.summary-total span:first-child { color: var(--text-muted); }
.summary-total span:last-child { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 700; color: var(--accent); }

/* ---------- Blog page ---------- */
.articles { display: grid; gap: 20px; }
.article { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 30px; display: grid; grid-template-columns: 300px 1fr; gap: 30px; }
.article-thumb { height: 150px; border-radius: var(--radius); overflow: hidden; background: #1e2126; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { font-size: 13px; color: var(--text-mute2); margin-top: 10px; }
.article-title { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; margin: 0 0 12px; line-height: 1.1; }
.article-lead { font-size: 16px; color: var(--text-muted); margin: 0 0 14px; }
.article-points { display: grid; gap: 7px; list-style: none; padding: 0; margin: 0; }
.article-points li { display: flex; gap: 10px; font-size: 15px; color: var(--text-soft); }
.article-points li::before { content: '▸'; color: var(--accent); font-weight: 700; }

/* ---------- FAQ page ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px;
  align-items: center; font-family: 'Barlow Condensed', sans-serif; font-size: 23px; font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #1a1d21; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 24px; font-weight: 700; font-family: 'Barlow Condensed', sans-serif; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 24px 22px; font-size: 16px; color: var(--text-muted); }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; margin-bottom: 56px; }
.about-text { font-size: 17px; color: var(--text-soft); display: grid; gap: 16px; }
.about-text p { margin: 0; }
.about-side { display: grid; gap: 14px; align-content: start; }
.about-photo { height: 220px; border-radius: var(--radius-lg); overflow: hidden; background: #1e2126; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 20px; display: grid; gap: 12px; }
.about-stat-row { display: flex; justify-content: space-between; }
.about-stat-row span:first-child { color: var(--text-mute2); }
.about-stat-row span:last-child { font-weight: 700; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fleet-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 20px; }
.fleet-thumb { height: 110px; border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; background: #1e2126; }
.fleet-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fleet-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; }
.fleet-text { font-size: 14px; color: var(--text-mute2); margin-top: 4px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-col { display: grid; gap: 16px; align-content: start; }
.contact-phone-card { border: 1px solid var(--accent); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 26px; }
.contact-phone-card .eyebrow { letter-spacing: .16em; font-size: 13px; }
.contact-phone-card .phone-big { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 700; margin: 6px 0 4px; }
.contact-phone-card .note { color: var(--text-mute2); font-size: 15px; }
.contact-info-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 26px; display: grid; gap: 14px; }
.info-row { display: flex; justify-content: space-between; gap: 20px; }
.info-row span:first-child { color: var(--text-mute2); }
.info-row span:last-child { font-weight: 600; text-align: right; }
.contact-map { height: 230px; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: #1e2126; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-map-label {
  position: absolute; left: 14px; bottom: 14px; background: rgba(16, 18, 21, .82);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; font-size: 13px; color: var(--text-soft);
}
.contact-form-card { border: 1px solid var(--border); background: var(--bg-alt); border-radius: var(--radius-lg); padding: 26px; }
.contact-form-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; text-transform: uppercase; margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: var(--text-mute2); margin: 0 0 18px; }

/* ---------- Legal pages ---------- */
.legal-updated { font-size: 14px; color: var(--text-mute3); margin-bottom: 34px; }
.legal-blocks { display: grid; gap: 26px; }
.legal-block h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 27px; font-weight: 700; margin: 0 0 10px; color: var(--accent); }
.legal-block p { margin: 0 0 10px; font-size: 16px; color: var(--text-soft); }
.legal-block p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); background: var(--bg-alt2); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 24px; }
.footer-brand p { font-size: 15px; color: var(--text-mute2); margin: 10px 0 16px; }
.footer-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; }
.footer-addr { font-size: 14px; color: var(--text-mute2); margin-top: 12px; }
.footer-col-title { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { font-size: 15px; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }
.payment-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.payment-badges span { border: 1px solid var(--border); border-radius: var(--radius); padding: 7px 11px; font-size: 12px; color: var(--text-muted); }
.footer-fine { font-size: 13px; color: var(--text-mute3); }
.footer-bottom { border-top: 1px solid #1c1f23; }
.footer-bottom-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-mute4); }
.cookie-settings-link { cursor: pointer; text-decoration: underline; background: none; border: none; color: var(--text-mute4); font-size: 13px; font-family: inherit; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90;
  display: flex; justify-content: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1000px; width: 100%; background: var(--bg-alt); border: 1px solid var(--accent);
  border-radius: var(--radius-lg); padding: 22px 26px; display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center; box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
}
.cookie-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; }
.cookie-banner p { font-size: 14px; color: var(--text-muted); margin-top: 5px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn-outline, .cookie-actions .btn-primary { padding: 12px 18px; font-size: 14px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--ink);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 var(--radius) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 52px; }
  .grid-3, .grid-4, .steps-grid, .regions-grid, .highways-grid, .fleet-grid, .product-grid,
  .shop-info, .promo-grid, .trust-grid, .about-grid, .contact-grid, .calc-grid, .fees-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
  .service-row .service-side { text-align: left; }
  .cart-grid { grid-template-columns: 1fr; }
  .article { grid-template-columns: 1fr; }
  .main-nav { display: none; width: 100%; order: 3; flex-direction: column; gap: 2px; margin-left: 0; }
  .main-nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .main-nav a { padding: 12px 8px; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-title { font-size: 40px; }
  .page-title { font-size: 40px; }
  .section-title { font-size: 34px; }
  .grid-3, .grid-4, .steps-grid, .regions-grid, .highways-grid, .fleet-grid, .product-grid,
  .shop-info, .promo-grid, .trust-grid, .about-grid, .contact-grid, .calc-grid, .fees-grid, .featured-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 60px 1fr; grid-template-areas: "thumb name" "thumb qty" "thumb total"; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .header-inner { gap: 12px; }
  .logo-sub { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
  .btn-call { font-size: 15px; padding: 10px 14px; }
}
