/* =============================================
   SKROT-DIN-BIL – MAIN STYLESHEET
   ============================================= */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:          #fd3e04;
  --red-dark:     #d93203;
  --red-light:    #fff4f1;
  --charcoal:     #0D1B2A;
  --charcoal-2:   #162535;
  --charcoal-3:   #1E3347;
  --gray-bg:      #F4F6F5;
  --gray-line:    #E2E8E4;
  --white:        #FFFFFF;
  --text:         #0D1B2A;
  --text-muted:   #5C6E70;
  --gold:         #F5C518;
  --green:        #fd3e04;
  --font:         'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06), 0 2px 12px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10), 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.14), 0 16px 64px rgba(0,0,0,.10);
  --transition:   200ms ease;
  --max-w:        1160px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
button { font-family: var(--font); }

/* ── UTILITY ── */
.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 88px; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover  { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-primary.btn-full  { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--gray-line);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 var(--gray-line), 0 2px 16px rgba(0,0,0,.06);
}

.header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 85px;
  width: auto;
  display: block;
}

.header-nav { flex: 1; }
.nav-list {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}
.nav-list a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover { color: var(--red); background: var(--gray-bg); }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-hours {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
}

.btn-header {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-header:hover { background: var(--red-dark); }
.btn-header-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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 {
  background: linear-gradient(to bottom, #ffffff 0%, #fd6030 100%);
  color: var(--text);
  padding: 80px 24px 160px;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,.10);
  border: 1px solid rgba(22,163,74,.25);
  color: var(--red-dark);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.6); }
  50%       { box-shadow: 0 0 0 5px rgba(22,163,74,0); }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  background: linear-gradient(135deg, #fd3e04, #d93203);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
}

/* ── PLATE WIZARD ── */
.plate-wizard {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 560px;
}

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Plate input */
.plate-lookup-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.plate-input-wrap {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #cc0000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: fit-content;
}

.plate-flag {
  background: #003399;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 10px;
  min-height: 56px;
  flex-shrink: 0;
}

.plate-flag .lp-stars {
  width: 30px;
  height: 30px;
}

.plate-dk {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: Arial, sans-serif;
}

.plate-input {
  border: none;
  outline: none;
  font-size: 1.45rem;
  font-weight: 700;
  padding: 0 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  min-height: 56px;
  font-family: Arial, sans-serif;
  width: 150px;
  min-width: 0;
  background: #fff;
}
.plate-input::placeholder {
  color: #bbb;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.btn-plate-lookup {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0 32px;
  min-height: 56px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.btn-plate-lookup:hover { background: var(--red-dark); }
.btn-plate-lookup:disabled { opacity: .6; cursor: not-allowed; }

.plate-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 10px;
}

.plate-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #7a9aaa;
}
.plate-skip-link { color: #7a9aaa; text-decoration: underline; transition: color var(--transition); }
.plate-skip-link:hover { color: var(--red); }

/* Spinner */
.btn-spinner { display: flex; align-items: center; }
.spinner-svg {
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Car card */
.car-card {
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 16px;
}

.car-card-plate {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text);
  font-family: 'Courier New', monospace;
  border-bottom: 1px solid var(--gray-line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.car-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.car-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.car-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.car-detail strong { font-size: 0.95rem; color: var(--text); }

.car-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff4f1;
  border: 1px solid #ffd5c8;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
}

.license-plate {
  display: flex;
  align-items: stretch;
  border: 2px solid #cc0000;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
}

.lp-eu {
  background: #003399;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 5px;
  gap: 2px;
  min-width: 32px;
}

.lp-stars {
  width: 30px;
  height: 30px;
}

.lp-dk {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: Arial, sans-serif;
}

.lp-number {
  display: flex;
  align-items: center;
  padding: 5px 18px 5px 12px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #888;
  background: #fff;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}

.car-summary-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.car-summary-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-summary-meta {
  font-size: 0.82rem;
  color: #6b7280;
}

.wizard-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

/* Contact form in wizard */
.contact-form .form-group,
.direct-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.contact-form label,
.direct-contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea,
.direct-contact-form input,
.direct-contact-form textarea {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.direct-contact-form input:focus,
.direct-contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.direct-contact-form input::placeholder,
.direct-contact-form textarea::placeholder { color: #b0b8b4; }
.contact-form textarea,
.direct-contact-form textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-privacy a { color: var(--red); text-decoration: underline; }
.form-privacy a:hover { color: var(--red-dark); }

.form-error   { color: #ff6b6b; font-size: 0.85rem; margin-top: 10px; }
.form-success { color: #5dca7f; font-size: 0.85rem; margin-top: 10px; }
.form-disclaimer { color: rgba(255,255,255,.55); font-size: 0.78rem; margin-top: 10px; font-style: italic; }
.thanks-content .form-disclaimer { color: rgba(0,0,0,.45); }

/* Radio option buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}

.radio-option:hover {
  border-color: var(--red);
  background: var(--red-light);
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.radio-option:has(input:checked) {
  border-color: var(--red);
  background: var(--red-light);
  box-shadow: 0 0 0 3px rgba(22,163,74,.10);
}

/* Thanks screen */
.thanks-content {
  text-align: center;
  padding: 20px 0;
}
.thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.thanks-icon svg { width: 100%; height: 100%; }
.thanks-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.thanks-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.thanks-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero trust */
.hero-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.trust-stars .star { color: var(--gold); font-size: 1.1rem; }

/* Hero visual (stat cards) */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── HOW SECTION ── */
.how-section { background: var(--gray-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-number {
  position: absolute;
  top: -1px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.step-icon { font-size: 2.4rem; margin: 20px 0 16px; color: var(--red); }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}
.stars-large { color: var(--gold); font-size: 1.5rem; letter-spacing: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
}

.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }

.review-card blockquote {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span   { color: var(--text-muted); font-size: 0.8rem; }

/* ── WHY SECTION ── */
.why-section {
  background: var(--red-light);
  color: var(--text);
}
.why-section .section-title { color: var(--text); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-item:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.why-check { color: var(--red); font-size: 1.1rem; font-weight: 900; flex-shrink: 0; margin-top: 1px; }

.why-cta { text-align: center; }

/* ── COMPARISON ── */
.comparison-section { background: var(--gray-bg); }

.table-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}

.comparison-table thead tr {
  background: var(--charcoal);
  color: var(--white);
}
.comparison-table thead th {
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.comparison-table thead .highlight-col { background: var(--red); }

.comparison-table tbody tr:nth-child(even) { background: #fafafa; }
.comparison-table tbody td {
  padding: 15px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid #eee;
}

.highlight-col { background: #fd3e04 !important;
color: #ffff !important; }
.td-neutral    { color: var(--text-muted); }
.td-good       { color: var(--red); font-weight: 700; }

/* ── ENV SECTION ── */
.env-section {
  background: linear-gradient(140deg, #d93203 0%, #fd3e04 60%, #b22b02 100%);
  color: var(--white);
}
.env-section .section-title { color: var(--white); }

.env-big {
  text-align: center;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.env-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.env-card {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.env-card:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.env-icon  { font-size: 2.4rem; margin-bottom: 14px; color: var(--white); }
.env-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.env-card p  { font-size: 0.85rem; color: rgba(255,255,255,.8); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--red);
  transition: transform 300ms ease;
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}
.faq-answer.is-open { max-height: 400px; }

.faq-answer-inner {
  padding-bottom: 20px;
}
.faq-answer-inner p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── GUIDE ── */
.guide-section { background: var(--gray-bg); }

.guide-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 0;
}

.guide-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-line);
}

.guide-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.guide-step p { font-size: 0.85rem; color: var(--text); font-weight: 500; line-height: 1.5; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role    { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 18px; }

.btn-phone {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-phone:hover { background: var(--red-dark); }

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--gray-bg);
  color: var(--text);
}
.contact-section .section-title { color: var(--text); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { font-size: 1.2rem; margin-bottom: 24px; color: var(--text); }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.contact-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.contact-list a   { color: var(--text-muted); transition: color var(--transition); }
.contact-list a:hover { color: var(--red); }

/* ── FOOTER ── */
.site-footer {
  background: #111111;
  color: #9aa8b2;
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #222;
  margin-bottom: 0;
}

.footer-logo-link { display: block; margin-bottom: 16px; }
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-desc { font-size: 0.85rem; line-height: 1.75; color: #7a8e99; max-width: 260px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li { font-size: 0.85rem; color: #7a8e99; display: flex; flex-direction: column; gap: 2px; }
.footer-col ul a { color: #7a8e99; transition: color var(--transition); text-decoration: none; }
.footer-col ul a:hover { color: var(--red); }

.footer-day { font-weight: 600; color: #bcc8d0; }
.footer-time { color: #7a8e99; }
.footer-label { font-weight: 600; color: #bcc8d0; }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #4a5e6a;
  padding: 20px 0;
  margin-top: 0;
}
.footer-bottom a { color: #4a5e6a; transition: color var(--transition); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── PAGE CONTENT ── */
.page-content {
  padding: 80px 0;
  min-height: 60vh;
}
.page-header { margin-bottom: 40px; }
.page-title { font-size: 2rem; font-weight: 800; }
.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.entry-content h2, .entry-content h3 { margin: 28px 0 12px; }
.entry-content p  { margin-bottom: 16px; }
.entry-content ul { margin: 0 0 16px 24px; }
.entry-content a  { color: var(--red); text-decoration: underline; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 100ms; }
.reveal:nth-child(3) { transition-delay: 200ms; }
.reveal:nth-child(4) { transition-delay: 300ms; }

/* ── OM OS ── */
.om-os-section { background: var(--white); }

.om-os-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.om-os-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.om-os-stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.om-os-stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.04em;
}

.om-os-stat-suffix {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--red);
}

.om-os-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.om-os-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.om-os-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.om-os-feature {
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.om-os-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.om-os-feature-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--red);
  display: block;
}

.om-os-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.om-os-feature p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.om-os-cta {
  text-align: center;
  margin-top: 8px;
}

.om-os-why {
  background: var(--bg-subtle, #f8f9fa);
  border-radius: var(--radius);
  padding: 40px 40px 36px;
}

.om-os-why-header {
  margin-bottom: 20px;
}

.om-os-why-small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.om-os-why-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0;
}

.om-os-why > p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .om-os-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .om-os-features { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .om-os-why { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .om-os-stats { grid-template-columns: repeat(2, 1fr); padding: 28px 0; }
}

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0 100px;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-kicker {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.legal-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0;
}

.legal-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin: 36px 0 12px;
}

.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}

.legal-body p { margin-bottom: 16px; }

.legal-body ul {
  margin: 0 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-body a { color: var(--red); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { flex-direction: row; justify-content: center; }
  .hero-stat-card { flex: 1; max-width: 180px; }
  .env-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .steps-grid   { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .why-grid     { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .header-nav   { display: none; }
  .header-hours { display: none; }
  .header-right { gap: 12px; }
  .nav-toggle   { display: flex; }

  .header-nav.is-open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-line);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding: 16px 24px;
    z-index: 190;
  }
  .header-nav.is-open .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-nav.is-open .btn-header-mobile {
    display: inline-block;
    margin: 12px 0 4px;
  }
  .header-inner { position: relative; padding: 0 16px; }
  .logo-img { height: 70px; }
}

@media (max-width: 640px) {
  .section { padding-block: 64px; }
  .plate-wizard { padding: 24px 20px; }

  /* Plate lookup trin 1 */
  .plate-lookup-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .plate-input-wrap { width: 100%; }
  .plate-input { width: auto; flex: 1; text-align: center; min-height: 52px; font-size: 1.4rem; }
  .btn-plate-lookup { min-height: 50px; justify-content: center; flex: none; }

  /* Bil-resumé trin 2 */
  .car-summary { flex-direction: column; align-items: flex-start; gap: 10px; }
  .license-plate { align-self: stretch; width: 100%; }
  .lp-number { font-size: 1.2rem; padding: 4px 12px 4px 8px; flex: 1; justify-content: center; }
  .car-summary-name { font-size: 0.95rem; white-space: normal; }

  .car-card-details { grid-template-columns: 1fr; }
  .wizard-actions { flex-direction: column-reverse; }
  .wizard-actions button { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: 1fr 1fr; }
  .hero-visual { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .thanks-actions { flex-direction: column; }
  .thanks-actions a { width: 100%; justify-content: center; text-align: center; }
}

@media (max-width: 400px) {
  .guide-steps { grid-template-columns: 1fr; }
}


/* -- COOKIE POPUP -- */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.16);
  padding: 24px 24px 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  animation: cookieSlideIn .35s ease;
}

.cookie-popup[hidden] { display: none; }

@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-icon { line-height: 0; }

.cookie-text {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.55;
  margin: 0;
}

.cookie-read-more {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: underline;
}

.cookie-read-more:hover { color: #fd3e04; }

.cookie-accept {
  width: 100%;
  background: #fd3e04;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.cookie-accept:hover { background: #d93203; }

@media (max-width: 400px) {
  .cookie-popup {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 12px;
  }
}

@keyframes cookieSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(20px); }
}
