/* ============================================================
   AutoSales V2 — Frontend stylesheet
   Colors: #0B5FDE (primary) | #FF6711 (cta) | #F2F7FF (bg)
   Font: Figtree (Google Fonts)
   ============================================================ */

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

:root {
  --blue:    #0B5FDE;
  --blue-dk: #0849b0;
  --blue-lt: #d6e6ff;
  --orange:  #FF6711;
  --orange-dk: #e05500;
  --bg:      #F2F7FF;
  --white:   #ffffff;
  --gray-50: #f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-300:#cbd5e1;
  --gray-500:#64748b;
  --gray-700:#374151;
  --gray-900:#111827;
  --green:   #16a34a;
  --green-lt:#dcfce7;
  --red:     #dc2626;
  --red-lt:  #fee2e2;
  --radius:  8px;
  --radius-lg: 14px;
  --shadow:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --transition: 150ms ease;
  --max-w:   1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--gray-700); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  color: var(--white);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  font-size: 1.1rem;
  padding: 16px 32px;
}
.btn-green:hover {
  background: #15803d;
  border-color: #15803d;
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-sm {
  padding: 8px 16px;
  font-size: .875rem;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}
.btn-full { width: 100%; justify-content: center; }

/* ─── Site Header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo img, .site-logo svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-text {
  font-size: .95rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  max-width: 180px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
}
.site-nav a:hover { color: var(--blue); text-decoration: none; }
/* Force white on CTA button inside nav — overrides .site-nav a specificity */
.site-nav .nav-cta,
.site-nav .nav-cta:hover { color: var(--white); }
.nav-cta { margin-left: 4px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0849b0 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* Kenteken box */
.kenteken-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px 28px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin: 0 auto;
}
.kenteken-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 10px;
  text-align: left;
}
.kenteken-input-wrap {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  background: var(--white);
  margin-bottom: 14px;
  transition: border-color var(--transition);
}
.kenteken-input-wrap:focus-within {
  border-color: var(--blue);
}
.nl-flag-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  background: #003da5;
  padding: 0 8px;
  gap: 3px;
}
.nl-stars {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 2px;
}
.nl-stars span {
  display: block;
  width: 4px;
  height: 4px;
  background: #ffd700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.nl-text {
  font-size: 8px;
  font-weight: 800;
  color: white;
  letter-spacing: .5px;
}
.kenteken-field {
  flex: 1;
  background: #FFCF00;
  border: none;
  outline: none;
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  color: #1a1a1a;
  text-transform: uppercase;
  padding: 14px 12px;
  width: 100%;
}
.kenteken-field::placeholder { color: #888; opacity: .6; }

.hero-note {
  font-size: .78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 10px;
}

/* Stars rating */
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 0;
  flex-wrap: wrap;
}
.stars {
  display: flex;
  gap: 3px;
}
.stars svg { width: 20px; height: 20px; }
.star-full  { color: #FFCF00; }
.star-half  { color: #FFCF00; }
.star-empty { color: var(--gray-300); }
.rating-score {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-900);
}
.rating-text {
  font-size: .9rem;
  color: var(--gray-500);
}

/* ─── Section defaults ──────────────────────────────────────── */
.section {
  padding: 72px 0;
}
.section-bg {
  background: var(--bg);
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 10px; }
.section-title p  { color: var(--gray-500); max-width: 580px; margin: 0 auto; }

/* ─── 3 Steps ───────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.step-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p  { font-size: .9rem; color: var(--gray-500); }

/* ─── SEO Block ─────────────────────────────────────────────── */
.seo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.seo-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-block-img svg {
  width: 80px;
  height: 80px;
  color: var(--gray-300);
}
.seo-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seo-block-text h2 { margin-bottom: 16px; }
.seo-block-text p  { color: var(--gray-600, #4b5563); margin-bottom: 12px; }
.seo-block-text .btn { margin-top: 8px; }

/* ─── How it works ──────────────────────────────────────────── */
.howto-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.howto-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.howto-item:last-child { border-bottom: none; }
.howto-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.howto-check svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}
.howto-item-text {
  font-weight: 600;
  color: var(--gray-800, #1f2937);
  line-height: 1.4;
}
.howto-counter {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ─── Blog Cards ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-img-placeholder {
  width: 48px;
  height: 48px;
  color: var(--gray-300);
}
.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.blog-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-card-excerpt {
  font-size: .875rem;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  font-size: .875rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--gray-900);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--blue);
  transition: transform var(--transition);
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 20px;
  color: var(--gray-700);
  line-height: 1.7;
  font-size: .95rem;
}

/* ─── Rating Bar (below hero) ───────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--gray-700);
  font-weight: 600;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  font-size: .875rem;
  color: var(--gray-300);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .875rem;
  color: var(--gray-400, #9ca3af);
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--gray-400, #9ca3af);
}
.footer-bottom a {
  color: var(--gray-400, #9ca3af);
  font-size: .8rem;
}
.footer-bottom a:hover { color: var(--white); }

/* ─── Flash messages ────────────────────────────────────────── */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: .9rem;
}
.flash-success {
  background: var(--green-lt);
  color: #166534;
  border: 1px solid #bbf7d0;
}
.flash-error {
  background: var(--red-lt);
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ─── Form elements ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label .req { color: var(--blue); }
.form-control {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-control:focus {
  border-color: var(--blue);
}
.form-control:disabled,
.form-control[readonly] {
  background: var(--gray-100);
  color: var(--gray-500);
  cursor: not-allowed;
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
textarea.form-control {
  resize: vertical;
  min-height: 110px;
}
.form-hint {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 4px;
}
.form-error {
  font-size: .78rem;
  color: var(--red);
  margin-top: 4px;
  font-weight: 600;
}
.input-prefix-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.input-prefix-wrap:focus-within { border-color: var(--blue); }
.input-prefix {
  padding: 12px 12px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-weight: 700;
  font-size: .9rem;
  border-right: 2px solid var(--gray-200);
  white-space: nowrap;
}
.input-prefix-wrap .form-control {
  border: none;
  border-radius: 0;
}
.input-prefix-wrap .form-control:focus { box-shadow: none; }

/* Checkbox */
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Form grid */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* ─── Car registration form ─────────────────────────────────── */
.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.page-hero h1 { font-size: 1.6rem; }

.form-wizard {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 64px;
}

/* Step progress */
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--gray-400, #9ca3af);
  transition: all var(--transition);
  white-space: nowrap;
}
.wizard-step.active {
  background: var(--blue);
  color: var(--white);
}
.wizard-step.done {
  background: var(--green-lt);
  color: var(--green);
}
.wizard-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
}
.wizard-step.active .wizard-step-num {
  background: rgba(255,255,255,.25);
  color: white;
}
.wizard-step.done .wizard-step-num {
  background: var(--green);
  color: white;
}

/* Vehicle card */
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.vehicle-kenteken {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #ddd;
  flex-shrink: 0;
}
.vehicle-kenteken .nl-flag-block { padding: 6px 8px; }
.vehicle-kenteken-text {
  background: #FFCF00;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #1a1a1a;
  display: flex;
  align-items: center;
}
.vehicle-info h2 { font-size: 1.3rem; margin-bottom: 4px; }
.vehicle-info p { font-size: .875rem; color: var(--gray-500); }

/* Form sections */
.form-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.form-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-lt);
}

/* Options grid */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.options-col h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Step panels */
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

/* Photo upload placeholder */
.photo-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  background: var(--gray-50);
}
.photo-upload-area svg {
  width: 48px;
  height: 48px;
  color: var(--gray-300);
  margin: 0 auto 12px;
}
.photo-upload-area p {
  color: var(--gray-500);
  font-size: .9rem;
}

/* Terms */
.form-terms {
  font-size: .82rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 16px;
}
.form-terms a { color: var(--blue); }

/* ─── Thank you page ────────────────────────────────────────── */
.thankyou-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.thankyou-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.thankyou-icon {
  width: 64px;
  height: 64px;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green);
}
.thankyou-card h1 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.thankyou-card p {
  color: var(--gray-500);
  margin-bottom: 28px;
}
.thankyou-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.thankyou-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--gray-700);
}
.thankyou-list-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* ─── Blog pages ────────────────────────────────────────────── */
.blog-header {
  background: var(--bg);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
  text-align: center;
}
.blog-post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
.blog-post-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  aspect-ratio: 16/9;
  background: var(--gray-100);
}
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-meta {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.blog-post-content h2 { color: var(--gray-900); margin: 32px 0 12px; }
.blog-post-content h3 { color: var(--gray-900); margin: 24px 0 10px; }
.blog-post-content p  { margin-bottom: 16px; }
.blog-post-content ul,
.blog-post-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.blog-post-content ul li { margin-bottom: 6px; }

/* ─── Utility classes ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 24px 0;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px 20px;
    gap: 14px;
    z-index: 99;
  }
  .site-nav.open .nav-cta {
    margin-left: 0;
    align-self: flex-start;
  }
  .hamburger { display: flex; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .seo-block  { grid-template-columns: 1fr; gap: 32px; }
  .seo-block-img { order: -1; }
  .blog-grid  { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wizard-steps { gap: 4px; padding: 4px; }
  .wizard-step  { padding: 6px 12px; font-size: .78rem; }
  .vehicle-card { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 16px; justify-content: flex-start; }
  .form-section { padding: 20px 16px; }
  .hero { padding: 40px 0 52px; }
  .section { padding: 48px 0; }
  .thankyou-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .kenteken-box { padding: 20px 16px 24px; }
  .kenteken-field { font-size: 1.2rem; }
  .btn-green { font-size: 1rem; padding: 14px 24px; }
  .wizard-step span:not(.wizard-step-num) { display: none; }
}
