/* components.css — 2026-03-19 11:33 UTC — DO NOT EDIT */

/* ── topbar.css ── */
/* ============================================
   Top Bar — Contact info strip above navbar
   ============================================ */
.top-bar {
  background: var(--hlt-blue);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar a:hover { color: #fff; }
.top-bar svg { width: 14px; height: 14px; }

/* ── Language switcher dropdown (in navbar) ── */
.lang-switcher {
  position: relative;
}
.menu-item-lang { list-style: none; margin-left: -12px; }
/* Override .nav-links a styling inde i lang-switcher */
.menu-item-lang .lang-switcher__item {
  display: flex; padding: 8px 12px; font-size: 14px; background: none;
}
.menu-item-lang .lang-switcher__item:hover {
  background: rgba(0,59,92,0.06); color: var(--hlt-blue, #003B5C);
}
.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 6px;
  background: none;
  border: none;
  border-radius: var(--radius-sm, 6px);
  cursor: pointer;
  transition: background 0.2s;
  color: var(--hlt-gray-700, #374151);
}
.lang-flag-icon { font-size: 22px; line-height: 1; }
.lang-switcher__toggle:hover {
  background: rgba(0,0,0,0.04);
}
.lang-switcher__chevron { transition: transform 0.2s; }
.lang-switcher.is-open .lang-switcher__chevron { transform: rotate(180deg); }
.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm, 6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 140px;
  padding: 4px;
  z-index: 200;
}
.lang-switcher.is-open .lang-switcher__dropdown { display: block; }
.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--hlt-gray-700, #374151);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.15s;
}
.lang-switcher__item:hover {
  background: rgba(0,59,92,0.06);
  color: var(--hlt-blue, #003B5C);
}
.lang-switcher__label { white-space: nowrap; }

/* ── navbar.css ── */
/* ============================================
   Navbar
   ============================================ */
.navbar {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s, padding 0.3s, background 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-crop img { clip-path: inset(0 42% 0 0); }
.nav-aaa-badge { height: 36px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.nav-aaa-badge:hover { opacity: 1; }

/* Desktop menu */
.nav-menu { display: flex; align-items: center; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li { position: relative; list-style: none; }
.nav-links a {
  display: block; padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--hlt-gray-700); transition: color 0.2s;
  white-space: nowrap; text-decoration: none; background: transparent;
}
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--hlt-blue); }
.nav-links > li > a::before {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 2px; background: var(--hlt-blue); transform: scaleX(0); transition: transform 0.25s;
}
.nav-links > li > a:hover::before, .nav-links > li.current-menu-item > a::before { transform: scaleX(1); }
.nav-links > li.btn-cta > a::before { display: none; }
.nav-links .btn-cta > a {
  background: var(--hlt-red); color: #fff; font-weight: 600;
  padding: 8px 20px; border-radius: var(--radius-sm);
}
.nav-links .btn-cta > a:hover { background: var(--hlt-red-hover); color: #fff; }

/* Dropdown arrow */
.nav-links .menu-item-has-children > a::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px; vertical-align: middle; opacity: 0.5; transition: transform 0.2s, opacity 0.2s;
}
.nav-links .menu-item-has-children:hover > a::after { opacity: 0.8; transform: rotate(180deg); }

/* Desktop dropdown */
.nav-links .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 8px 0;
  min-width: 220px; list-style: none; z-index: 100; margin-top: 4px;
}
.nav-links .menu-item-has-children::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 8px; display: none;
}
.nav-links .menu-item-has-children:hover::after { display: block; }
.nav-links li:hover > .sub-menu { display: block; }
.nav-links .sub-menu a { padding: 10px 20px; font-size: 14px; }
.nav-links .sub-menu a:hover { background: var(--hlt-offwhite); color: var(--hlt-blue); }

/* Hamburger — hidden on desktop */
.menu-toggle {
  display: none; background: none; border: none;
  width: 44px; height: 44px; cursor: pointer;
  z-index: 100001; position: fixed; top: 16px; right: 16px;
  flex-direction: column; justify-content: center; align-items: center;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--hlt-gray-800);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle span + span { margin-top: 6px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Mobile overlay
   JS moves .nav-menu from navbar to body on mobile,
   escaping the sticky stacking context.
   ============================================ */
.nav-menu.is-mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 100000;
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 72px 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-menu.is-mobile-overlay.active {
  display: flex;
}
.nav-menu.is-mobile-overlay .nav-links {
  flex-direction: column;
  gap: 0; width: 100%; padding: 0;
  align-items: stretch;
}
.nav-menu.is-mobile-overlay .nav-links > li {
  border-bottom: 1px solid #f3f4f6;
}
.nav-menu.is-mobile-overlay .nav-links > li > a {
  font-size: 18px; font-weight: 700; padding: 14px 0;
  color: #111; white-space: normal;
}
.nav-menu.is-mobile-overlay .nav-links > li > a::before { display: none; }

/* Mobile dropdown arrow */
.nav-menu.is-mobile-overlay .menu-item-has-children > a::after {
  float: right; margin-top: 6px; transition: transform 0.3s;
}
.nav-menu.is-mobile-overlay .menu-item-has-children.mobile-open > a::after {
  transform: rotate(180deg);
}

/* Mobile submenus — slide open */
.nav-menu.is-mobile-overlay .sub-menu {
  position: static; display: block;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: none; border: none; background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  padding: 0 0 0 20px; margin: 0; min-width: 0;
}
.nav-menu.is-mobile-overlay .menu-item-has-children.mobile-open > .sub-menu {
  max-height: 500px;
}
.nav-menu.is-mobile-overlay .sub-menu a {
  font-size: 16px; color: #6b7280; padding: 10px 0;
}
.nav-menu.is-mobile-overlay .sub-menu a:hover {
  color: var(--hlt-blue); background: transparent;
}

/* Mobile CTA */
.nav-menu.is-mobile-overlay .btn-cta { margin-top: 16px; border-bottom: none; }
.nav-menu.is-mobile-overlay .btn-cta > a {
  background: var(--hlt-red); color: #fff !important;
  text-align: center; border-radius: 8px; padding: 14px 24px; font-size: 16px;
}

/* Desktop hover disabled on mobile overlay */
.nav-menu.is-mobile-overlay li:hover > .sub-menu { max-height: 0; }
.nav-menu.is-mobile-overlay .menu-item-has-children.mobile-open > .sub-menu { max-height: 500px; }
.nav-menu.is-mobile-overlay .menu-item-has-children::after { display: none; }


/* ── Responsive toggle ── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-aaa-badge { height: 28px; }
}

/* ── hero.css ── */
/* ============================================
   Hero — Front page + Subpage hero variants
   ============================================ */

/* ===== Front Page Hero — DARK cinematic with video/image ===== */
.hero {
  background: var(--brand-primary);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: clip;
  height: calc(100vh - var(--header-height, 100px));
  height: calc(100dvh - var(--header-height, 100px));
  min-height: 400px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,20,40,0.35) 0%,
    rgba(0,20,40,0.45) 40%,
    rgba(0,20,40,0.72) 100%
  );
}

/* Hero background video */
.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}
.hero .hero-bg-fallback {
  /* Vises bag video som fallback mens video loader */
  z-index: -1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: rgba(14,165,233,0.08);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hlt-red);
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 700px;
  color: #fff;
}
.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero .button-row { margin-bottom: 40px; }

/* Trust row (Bosch logo, reviews) */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-row img { height: 28px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); }

/* Stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.hero-stat .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ===== Subpage Hero ===== */
.page-hero-v2 {
  background: var(--brand-primary, #003b5c);
  color: #fff;
  padding: 60px 0 60px;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: clip;
  border-bottom: none;
}
.page-hero-v2 .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.page-hero-v2 .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,20,40,0.35) 0%,
    rgba(0,20,40,0.45) 40%,
    rgba(0,20,40,0.72) 100%
  );
}
.page-hero-v2::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  z-index: 1;
}
.page-hero-v2 .container { position: relative; z-index: 2; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }

.page-hero-v2 .section-label {
  color: var(--brand-cta);
  margin-bottom: 8px;
}
.page-hero-v2 h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-v2 p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════════
   COMPACT LIGHT HERO — Standardiseret lys hero til alle undersider
   Bruges af hero_page.php (både ACF block og legacy FC)
   ═══════════════════════════════════════════════════════ */

.hero-cl {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--hlt-gray-200, #e5e7eb);
}

/* Grid: tekst venstre, visuelt højre */
.hero-cl__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-cl__grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
}

/* Centreret variant (når ingen billede) */
.hero-cl--centered {
  text-align: center;
}
.hero-cl--centered .hero-cl__grid--single {
  margin: 0 auto;
}
.hero-cl--centered .hero-cl__ctas {
  justify-content: center;
}

/* Label over overskrift */
.hero-cl__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hlt-accent, #0EA5E9);
  margin-bottom: 10px;
}

/* Overskrift — altid 36px */
.hero-cl__h1 {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 10px;
}

/* Subtitle — altid 16px */
.hero-cl__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hlt-gray-600, #4b5563);
  margin: 0 0 24px;
  max-width: 520px;
}

/* CTA-knapper */
.hero-cl__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cl__btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--hlt-accent, #dc2626);
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 2px 8px rgba(220,38,38,0.18);
}
.hero-cl__btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}
.hero-cl__btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-700, #374151);
  background: transparent;
  border: 1.5px solid var(--hlt-gray-300, #d1d5db);
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s ease;
}
.hero-cl__btn-secondary:hover {
  border-color: var(--hlt-gray-400, #9ca3af);
  background: var(--hlt-gray-50, #f9fafb);
}

/* Visuelt element (foto/logo/ikon) */
.hero-cl__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-cl__visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Visual variant: Logo (bilmærke) */
.hero-cl__visual--logo {
  padding: 24px;
}
.hero-cl__visual--logo img {
  width: 160px;
  height: 160px;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* Visual variant: Icon (service kategori) */
.hero-cl__visual--icon {
  padding: 32px;
  background: var(--hlt-gray-50, #f9fafb);
  border-radius: 20px;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.hero-cl__visual--icon svg {
  width: 64px;
  height: 64px;
  color: var(--hlt-gray-400, #9ca3af);
  stroke-width: 1.2;
}

/* Expert card — bruges i hero af service + bilmærke */
.hero-cl__expert-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  max-width: 420px;
  margin-top: 20px;
}
.hero-cl__expert-photo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-cl__expert-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hlt-red, #E31E24);
}
.hero-cl__expert-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
}
.hero-cl__expert-meta {
  display: block;
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
}

/* Inline facts — en enkelt linje med pris/tid/garanti */
.hero-cl__facts-inline {
  font-size: 14px;
  color: var(--hlt-gray-400, #9CA3AF);
  margin: 0 0 20px;
}

/* Facts grid — kompakte nøgletal i en række */
.hero-cl__facts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-cl__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 18px;
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  min-width: 80px;
}
.hero-cl__fact-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  white-space: nowrap;
}
.hero-cl__fact-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--hlt-gray-500, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-cl__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-cl__visual {
    order: -1; /* Billede over tekst på mobil */
  }
  .hero-cl__visual img {
    max-height: 240px;
  }
  .hero-cl__visual--logo {
    order: 0; /* Logo stays below text on mobile */
  }
  .hero-cl__visual--icon {
    display: none; /* Hide decorative icon on tablet */
  }
}
@media (max-width: 640px) {
  .hero-cl {
    padding: 36px 0 28px;
  }
  .hero-cl__h1 {
    font-size: 28px;
  }
  .hero-cl__sub {
    font-size: 15px;
  }
  .hero-cl__ctas {
    flex-direction: column;
  }
  .hero-cl__btn-primary,
  .hero-cl__btn-secondary {
    justify-content: center;
    width: 100%;
  }
}

/* ===== Simple Page Hero (lyst tema — undersider, LEGACY) ===== */
.page-hero-simple {
  background: var(--hlt-offwhite, #F7F8FA);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--hlt-gray-200, #E5E7EB);
}
.page-hero-simple .breadcrumb {
  color: var(--hlt-gray-500, #6B7280);
}
.page-hero-simple .breadcrumb a {
  color: var(--hlt-blue, #003B5C);
}
.page-hero-simple .breadcrumb a:hover {
  color: var(--hlt-red, #E31E24);
}
.page-hero-simple .breadcrumb .current {
  color: var(--hlt-gray-500, #6B7280);
}
.page-hero-simple h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero-simple .hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--hlt-gray-600, #4B5563);
  max-width: 640px;
  margin: 0;
}

/* ===== Hero Responsive ===== */
@media (max-width: 960px) {
  .hero { height: calc(100vh - var(--header-height, 100px)); height: calc(100dvh - var(--header-height, 100px)); min-height: 400px; padding: 50px 0; }
  .hero h1 { font-size: 38px !important; }
  .page-hero-v2 h1 { font-size: 34px; }

  /* Collapse 2-column grid to single column on tablet */
  .hero .container,
  .page-hero-v2 .container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
@media (max-width: 640px) {
  .hero { height: calc(100vh - var(--header-height, 80px)); height: calc(100dvh - var(--header-height, 80px)); min-height: 360px; padding: 40px 0; }
  .hero h1 { font-size: 30px !important; }
  .page-hero-v2 { min-height: 280px; padding: 40px 0; }
  .page-hero-v2 h1 { font-size: 28px; }
  .glass-stats-number { font-size: 28px; }
  .glass-stats-cell { padding: 20px 16px; }
}

/* ── buttons.css ── */
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #E31E24 0%, #C91A1F 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 14px rgba(227,30,36,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #C91A1F 0%, #A81518 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227,30,36,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-secondary {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--neutral-50); border-color: var(--brand-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-outline:hover { background: var(--brand-primary); color: #fff; }
.btn-white { background: #fff; color: var(--brand-primary); font-weight: 700; }
.btn-white:hover {
  background: var(--neutral-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--neutral-700);
  border: 2px solid var(--neutral-300);
}
.btn-ghost:hover { border-color: var(--neutral-500); background: var(--neutral-50); }

/* ===== Dark hero context overrides ===== */
.hero .btn-ghost,
.hero-cinematic .btn-ghost,
.hero-split .btn-ghost,
.hero-brand .btn-ghost,
.hero-area .btn-ghost {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}
.hero .btn-ghost:hover,
.hero-cinematic .btn-ghost:hover,
.hero-split .btn-ghost:hover,
.hero-brand .btn-ghost:hover,
.hero-area .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.hero .btn-outline,
.hero-cinematic .btn-outline,
.hero-split .btn-outline,
.hero-brand .btn-outline,
.hero-area .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover,
.hero-cinematic .btn-outline:hover,
.hero-split .btn-outline:hover,
.hero-brand .btn-outline:hover,
.hero-area .btn-outline:hover {
  background: #fff;
  color: var(--brand-primary);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .btn { padding: 12px 20px; font-size: 15px; }
  .hero-cl__ctas,
  .context-cta-buttons { flex-direction: column; width: 100%; }
  .hero-cl__ctas .btn,
  .context-cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ── cards.css ── */
/* ===== CARDS GRID ===== */
.cards-grid { display: grid; gap: 24px; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  color: var(--hlt-gray-900);
  margin-bottom: 8px;
}
.card-body p { font-size: 14px; color: var(--hlt-gray-500); line-height: 1.6; margin-bottom: 12px; }
.card-link {
  font-size: 14px; font-weight: 600;
  color: var(--hlt-blue);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ===== IMAGE OVERLAY CARDS ===== */
.card.card-overlay {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.card-overlay-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card.card-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 30, 50, 0.85) 0%,
    rgba(0, 30, 50, 0.4) 50%,
    rgba(0, 30, 50, 0.15) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}
.card.card-overlay:hover .card-overlay-bg {
  transform: scale(1.08);
}
.card.card-overlay:hover::after {
  background: linear-gradient(
    0deg,
    rgba(0, 30, 50, 0.9) 0%,
    rgba(0, 30, 50, 0.35) 50%,
    rgba(0, 30, 50, 0.1) 100%
  );
}
.card.card-overlay:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 30, 50, 0.35);
}
.card-overlay-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  width: 100%;
}
.card-overlay-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.card-overlay-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 10px;
}
.card-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.3s, gap 0.3s;
}
.card.card-overlay:hover .card-overlay-link {
  opacity: 1;
  gap: 10px;
}

/* ===== SERVICE WHEEL v1 (legacy — replaced by inline sw2 styles) ===== */
/* Kept as comments for /v1 page backward compat */
/*
  Responsive size table (6 items):
  ──────────────────────────────────────────────────────
  Breakpoint       Wheel    Circle  Orbit   SVG-line-r
  >1200  (xl)      1080px   300px   400px   250
  ≤1200  (lg)       820px   200px   290px   190
  ≤960   (md)       620px   150px   220px   145
  ≤640   (sm)       grid    100px   —       —
  ──────────────────────────────────────────────────────
*/

/* Ambient background glow — depth layer behind the wheel */
.service-wheel {
  position: relative;
  width: 1080px;
  height: 1080px;
  margin: 0 auto;
  max-width: 100vw;
}
/* Radial ambient glow behind the wheel for depth perception */
.service-wheel::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(10, 111, 168, 0.07) 0%, rgba(10, 111, 168, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: swAmbientPulse 6s ease-in-out infinite;
}
@keyframes swAmbientPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* ── Connecting lines — luminous energy paths ── */
.sw-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.sw-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke 0.5s ease, stroke-width 0.5s ease, filter 0.5s ease, stroke-dashoffset 0s;
  filter: drop-shadow(0 0 4px rgba(10,111,168,0.15));
  stroke-linecap: round;
}
.sw-visible .sw-line {
  animation: swLineIn 1s ease-out forwards;
  animation-delay: calc(0.2s + var(--line-i, 0) * 0.1s);
}
@keyframes swLineIn {
  to { stroke-dashoffset: 0; }
}
/* Energy pulse along lines — luminous travelling dot */
.sw-line-pulse {
  stroke-dasharray: 30 270;
  stroke-dashoffset: 300;
  opacity: 0;
  transition: opacity 0.5s;
  filter: drop-shadow(0 0 3px rgba(10,111,168,0.4));
  stroke-linecap: round;
}
.sw-visible .sw-line-pulse {
  opacity: 0.7;
  animation: swLinePulse 2.5s ease-in-out infinite;
  animation-delay: calc(var(--line-i, 0) * 0.4s);
}
@keyframes swLinePulse {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 0; }
}

/* ── Center hub — Glassmorphism / Frosted Glass ── */
.sw-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(30px) saturate(2);
  -webkit-backdrop-filter: blur(30px) saturate(2);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 12px 50px rgba(0, 30, 50, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 80px rgba(10, 111, 168, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 30, 50, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  overflow: visible;
  opacity: 0;
  filter: blur(4px);
  transition: box-shadow 0.5s ease;
}
.sw-visible .sw-center {
  animation: swCenterIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}
@keyframes swCenterIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translate(-50%, -50%) scale(1);
  }
}
.sw-center-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 1;
}
.sw-center-emoji {
  font-size: 42px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 30, 50, 0.15));
}
.sw-center-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--hlt-gray-600, #4b5563);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Double outer ring on center — smooth rotating gradient */
.sw-center::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)) padding-box,
    conic-gradient(from 0deg, rgba(10, 111, 168, 0.3), rgba(0, 59, 92, 0.08), rgba(227, 30, 36, 0.15), rgba(10, 111, 168, 0.3)) border-box;
  animation: swCenterRing 12s linear infinite;
  z-index: -1;
}
.sw-center::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(10, 111, 168, 0.06);
  animation: swCenterRing 25s linear infinite reverse;
  z-index: -1;
}
@keyframes swCenterRing {
  to { transform: rotate(360deg); }
}

/* Hover content in center — image reveal */
.sw-center-hover {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sw-center-hover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.1) contrast(1.05);
}
.sw-center-hover::after { display: none; }
.sw-center-hover-content { display: none; }

/* ── Orbital items — 300px circles, orbit 400px ── */
.sw-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  margin-left: -160px;
  margin-top: -160px;
  transform: rotate(var(--angle)) translateY(-400px) rotate(calc(-1 * var(--angle)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  z-index: 1;
  perspective: 1200px;
}

/* ── Entrance animation ── */
.sw-item {
  opacity: 0;
  animation: none;
  filter: blur(6px);
}
.sw-visible .sw-item {
  animation: swItemIn 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.1s);
}
@keyframes swItemIn {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: rotate(var(--angle)) translateY(0px) rotate(calc(-1 * var(--angle))) scale(0.5);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: rotate(var(--angle)) translateY(-400px) rotate(calc(-1 * var(--angle))) scale(1);
  }
}

/* ── Idle floating ── */
.sw-visible .sw-item {
  --float-y: 6px;
  --float-dur: 4s;
}
.sw-visible .sw-item:nth-child(odd) { --float-dur: 4.4s; --float-y: 7px; }
.sw-visible .sw-item:nth-child(3n) { --float-dur: 5s; --float-y: 5px; }

@keyframes swFloat {
  0%, 100% { margin-top: calc(-160px); }
  50% { margin-top: calc(-160px - var(--float-y)); }
}
.sw-visible .sw-item.sw-entered {
  opacity: 1;
  filter: none;
  transform: rotate(var(--angle)) translateY(-400px) rotate(calc(-1 * var(--angle)));
  animation: swFloat var(--float-dur) ease-in-out infinite;
}

/* ── 3D coin-flip container — 300px ── */
.sw-item-flipper {
  width: 300px;
  height: 300px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-radius: 50%;
}

/* ── Glow ring around each orbital — gradient border ── */
.sw-item-flipper::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0)) padding-box,
    conic-gradient(
      from calc(var(--i, 0) * 60deg),
      rgba(10, 111, 168, 0.25),
      rgba(10, 111, 168, 0.05),
      rgba(0, 59, 92, 0.15),
      rgba(10, 111, 168, 0.25)
    ) border-box;
  box-shadow:
    0 0 20px rgba(10, 111, 168, 0.1),
    0 0 40px rgba(10, 111, 168, 0.04);
  animation: swRingSpin 10s linear infinite;
  animation-delay: calc(var(--i, 0) * -1.5s);
  opacity: 0.8;
  transition: opacity 0.4s ease, box-shadow 0.5s ease;
  z-index: -1;
  backface-visibility: hidden;
}
/* Second outer ring — faint orbit trail */
.sw-item-flipper::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(10, 111, 168, 0.06);
  animation: swRingSpin 18s linear infinite reverse;
  animation-delay: calc(var(--i, 0) * -3s);
  opacity: 0.5;
  z-index: -2;
  backface-visibility: hidden;
  transition: opacity 0.4s ease, border-color 0.4s ease;
}
@keyframes swRingSpin {
  to { transform: rotate(360deg); }
}

/* ── Front face (image) — glass border ── */
.sw-item-front {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 12px 40px rgba(0, 30, 50, 0.15),
    0 4px 12px rgba(0, 30, 50, 0.08),
    0 0 0 1px rgba(10, 111, 168, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: border-color 0.4s ease, box-shadow 0.5s ease, transform 0.4s ease;
}
.sw-item-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

/* ── Back face — mesh gradient + noise ── */
.sw-item-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(10, 111, 168, 0.9), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(227, 30, 36, 0.15), transparent 50%),
    linear-gradient(160deg, #002a42 0%, #003B5C 40%, #0a5a8a 100%);
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 12px 40px rgba(0, 30, 50, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
/* Noise texture on back face — subtle grain via repeating-gradient */
.sw-item-back::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 17% 32%, rgba(255,255,255,0.03) 0px, transparent 1px, transparent 3px),
    repeating-radial-gradient(circle at 83% 67%, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 4px),
    repeating-radial-gradient(circle at 50% 50%, rgba(0,0,0,0.02) 0px, transparent 1px, transparent 2px);
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.sw-item-back-emoji {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.sw-item-back-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
.sw-item-back-text {
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.85;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.sw-item-back-cta {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: border-color 0.3s, letter-spacing 0.3s;
  position: relative;
}
.sw-item-back-cta:hover {
  border-color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* Coin flip is handled in the hover state section above (rotateY + scale) */

.sw-item-emoji {
  font-size: 20px;
  vertical-align: -2px;
  margin-right: 2px;
}
.sw-item-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hlt-gray-700, #374151);
  text-align: center;
  white-space: nowrap;
  transition: color 0.4s ease, transform 0.4s ease, text-shadow 0.4s ease;
  letter-spacing: -0.01em;
}

/* ── Hover state — scale lift + luminance bleed ── */
.sw-item:hover,
.sw-item.active {
  z-index: 5;
}
.sw-item:hover .sw-item-flipper,
.sw-item.active .sw-item-flipper {
  transform: rotateY(180deg) scale(1.06);
}
.sw-item:hover .sw-item-front,
.sw-item.active .sw-item-front {
  border-color: rgba(227, 30, 36, 0.5);
  box-shadow:
    0 16px 60px rgba(227, 30, 36, 0.18),
    0 0 0 2px rgba(227, 30, 36, 0.15),
    0 0 80px rgba(227, 30, 36, 0.1),
    0 0 140px rgba(227, 30, 36, 0.04),
    inset 0 0 30px rgba(227, 30, 36, 0.04);
}
.sw-item:hover .sw-item-front img,
.sw-item.active .sw-item-front img {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.15);
}
.sw-item:hover .sw-item-flipper::before,
.sw-item.active .sw-item-flipper::before {
  opacity: 1;
  background:
    linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0)) padding-box,
    conic-gradient(
      from calc(var(--i, 0) * 60deg),
      rgba(227, 30, 36, 0.4),
      rgba(227, 30, 36, 0.08),
      rgba(10, 111, 168, 0.15),
      rgba(227, 30, 36, 0.4)
    ) border-box;
  box-shadow:
    0 0 30px rgba(227, 30, 36, 0.15),
    0 0 60px rgba(227, 30, 36, 0.06);
}
.sw-item:hover .sw-item-flipper::after,
.sw-item.active .sw-item-flipper::after {
  border-color: rgba(227, 30, 36, 0.12);
  opacity: 0.8;
}
.sw-item:hover .sw-item-label,
.sw-item.active .sw-item-label {
  color: var(--hlt-red, #E31E24);
  text-shadow: 0 0 20px rgba(227, 30, 36, 0.15);
  transform: translateY(-3px);
}

/* ── Dim non-active items — blur + desaturate ── */
.service-wheel:has(.sw-item.active) .sw-item:not(.active) {
  opacity: 0.35;
  filter: blur(1.5px) saturate(0.6);
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.service-wheel:has(.sw-item.active) .sw-item.active {
  opacity: 1;
  filter: none;
}

/* Glow on center when item hovered */
.service-wheel:has(.sw-item.active) .sw-center {
  box-shadow:
    0 8px 40px rgba(0, 30, 50, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 60px rgba(227, 30, 36, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ===== Responsive wheel ===== */

/* Large tablets / narrow desktops — 200px circles */
@media (max-width: 1200px) {
  .service-wheel { width: 820px; height: 820px; }
  .service-wheel::before { width: 700px; height: 700px; }
  .sw-item {
    width: 220px;
    margin-left: -110px;
    margin-top: -110px;
  }
  .sw-visible .sw-item {
    animation-name: swItemInLg;
  }
  @keyframes swItemInLg {
    0% {
      opacity: 0; filter: blur(6px);
      transform: rotate(var(--angle)) translateY(0px) rotate(calc(-1 * var(--angle))) scale(0.5);
    }
    100% {
      opacity: 1; filter: blur(0px);
      transform: rotate(var(--angle)) translateY(-290px) rotate(calc(-1 * var(--angle))) scale(1);
    }
  }
  @keyframes swFloatLg {
    0%, 100% { margin-top: calc(-110px); }
    50% { margin-top: calc(-110px - var(--float-y)); }
  }
  .sw-visible .sw-item.sw-entered {
    opacity: 1; filter: none;
    transform: rotate(var(--angle)) translateY(-290px) rotate(calc(-1 * var(--angle)));
    animation: swFloatLg var(--float-dur) ease-in-out infinite;
  }
  .sw-item-flipper { width: 200px; height: 200px; }
  .sw-item-back { padding: 24px 18px; }
  .sw-item-back-title { font-size: 16px; }
  .sw-item-back-text { font-size: 11px; -webkit-line-clamp: 3; }
  .sw-item-back-cta { font-size: 12px; }
  .sw-item-label { font-size: 15px; }
  .sw-center { width: 190px; height: 190px; }
}

/* Tablets — 150px circles */
@media (max-width: 960px) {
  .service-wheel { width: 620px; height: 620px; }
  .service-wheel::before { width: 520px; height: 520px; }
  .sw-item {
    width: 170px;
    margin-left: -85px;
    margin-top: -85px;
  }
  .sw-visible .sw-item {
    animation-name: swItemInMd;
  }
  @keyframes swItemInMd {
    0% {
      opacity: 0; filter: blur(6px);
      transform: rotate(var(--angle)) translateY(0px) rotate(calc(-1 * var(--angle))) scale(0.5);
    }
    100% {
      opacity: 1; filter: blur(0px);
      transform: rotate(var(--angle)) translateY(-220px) rotate(calc(-1 * var(--angle))) scale(1);
    }
  }
  @keyframes swFloatMd {
    0%, 100% { margin-top: calc(-85px); }
    50% { margin-top: calc(-85px - var(--float-y)); }
  }
  .sw-visible .sw-item.sw-entered {
    opacity: 1; filter: none;
    transform: rotate(var(--angle)) translateY(-220px) rotate(calc(-1 * var(--angle)));
    animation: swFloatMd var(--float-dur) ease-in-out infinite;
  }
  .sw-item-flipper { width: 150px; height: 150px; }
  .sw-item-back { padding: 18px 14px; }
  .sw-item-back-title { font-size: 14px; }
  .sw-item-back-text { font-size: 10px; -webkit-line-clamp: 2; }
  .sw-item-back-cta { font-size: 11px; }
  .sw-item-label { font-size: 13px; }
  .sw-center { width: 150px; height: 150px; }
}

/* Mobile: fallback to grid — 100px circles */
@media (max-width: 640px) {
  .service-wheel {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
    justify-items: center;
  }
  .sw-lines, .sw-center { display: none; }
  .service-wheel::before { display: none; }
  .sw-item {
    position: static;
    transform: none !important;
    margin: 0;
    width: auto;
    opacity: 1 !important;
    animation: none !important;
    filter: none !important;
    perspective: none;
  }
  .sw-item-flipper { width: 100px; height: 100px; }
  .sw-item-flipper::before { display: none; }
  .sw-item-back { padding: 12px 8px; }
  .sw-item-back-title { font-size: 12px; margin-bottom: 2px; }
  .sw-item-back-text { display: none; }
  .sw-item-back-cta { font-size: 10px; }
  .sw-item-label { font-size: 13px; }
  .service-wheel:has(.sw-item.active) .sw-item:not(.active) { opacity: 1; filter: none; }
}

/* ===== FEATURE ICONS (legacy — bruges stadig i andre blokke) ===== */
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: none;
}
.feature-icon .hlt-emoji { font-size: 36px; line-height: 1; }
.feature-icon.red { background: none; }


/* ===================================================
   FEATURE CARDS — Premium redesign
   Floating cards med animated gradient icons, glow,
   og accent-linje. Bruges af feature_icons blokken.
   =================================================== */

.feature-section {
  padding: 48px 0 56px;
  position: relative;
}

/* Grid */
.feature-grid {
  display: grid;
  gap: 20px;
}
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Kort */
.feature-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.03);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,0,0,0.08);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.1),
    0 4px 12px rgba(0,0,0,0.04);
}

/* Ikon-container */
.feature-card-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

/* Animated glow ring bag ikonet */
.feature-card-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--icon-from), var(--icon-to));
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}
.feature-card:hover .feature-card-icon-ring {
  opacity: 0.35;
}

/* Selve ikon-boksen */
.feature-card-icon-inner {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--icon-from), var(--icon-to));
  box-shadow:
    0 4px 14px var(--icon-glow),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.feature-card-icon-inner svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.feature-card:hover .feature-card-icon-inner {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 8px 24px var(--icon-glow),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Titel */
.feature-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900);
  line-height: 1.35;
  margin-bottom: 6px;
}

/* Beskrivelse */
.feature-card-text {
  font-size: 14px;
  color: var(--hlt-gray-500);
  line-height: 1.55;
  margin: 0;
}

/* Gradient accent-linje i bunden af kortet */
.feature-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--icon-from), var(--icon-to));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.feature-card:hover .feature-card-accent {
  opacity: 1;
}


/* ===== CAR CARDS ===== */
.car-card { transition: transform 0.3s, box-shadow 0.3s; }
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.car-card .car-card-img img { transition: transform 0.4s ease; }
.car-card:hover .car-card-img img { transform: scale(1.05); }
.car-list-item { transition: background 0.2s, transform 0.2s; }
.car-list-item:hover { background: var(--hlt-offwhite); transform: translateX(4px); }

/* ===== SALGSAFDELING TABS ===== */
.salg-tab-btn { outline: none; }
.salg-tab-btn:hover { opacity: 0.85; }
.salg-tab-btn.active span { background: rgba(255,255,255,0.25) !important; color: #fff !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .car-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .car-list { grid-template-columns: 1fr !important; }
  .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .car-grid { grid-template-columns: 1fr !important; }
  .cards-grid.cols-3 { grid-template-columns: 1fr; }
  .cards-grid.cols-2 { grid-template-columns: 1fr; }
  .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .feature-grid.cols-2 { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 20px 24px; }
  .feature-card-icon-inner { width: 64px; height: 64px; border-radius: 16px; }
  .feature-card-icon { width: 64px; height: 64px; }
  .salg-tab-nav { flex-direction: column !important; align-items: stretch !important; }
  .salg-tab-btn { width: 100%; text-align: center; }
}

/* ── glass.css ── */
/* ============================================
   LIQUID GLASS EFFECTS — Apple visionOS-inspired
   Uses SVG feTurbulence noise + layered pseudo-elements
   for realistic frosted glass with grain texture.
   ============================================ */

/* ── Base Glass (lyse overflader) ── */
.glass {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.08);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.08);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.03);
  position: relative;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0) 40%
  );
  pointer-events: none;
}

/* ── Dark Glass — LIQUID GLASS (3-layer system) ──
   Layer 1 (element): backdrop-filter blur + white tint
   Layer 2 (::before): noise/grain texture via SVG filter
   Layer 3 (::after via .glass-refract): refractive border glow
   ── */
/* "Fine Frost" — clean, transparent, you see through it.
   The glass is defined by its EDGES and subtle blur, not fill. */
.glass-dark {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid var(--neutral-200, #E5E7EB);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0,0,0,0.08));
  position: relative;
  transition: box-shadow 0.4s ease;
}

/* Specular highlight — shifts with scroll via CSS custom property */
.glass-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    var(--glass-highlight-angle, 180deg),
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.03) 30%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 1;
  transition: background 0.4s ease;
}

/* Hide noise overlay — keep element for future use */
.glass-noise {
  display: none;
}

/* ── Glass Card (interactive cards med hover) ── */
.glass-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(30px) saturate(1.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.06),
    0 1px 4px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(0,0,0,0.02);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
  opacity: 0.6;
}
.glass-card:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.65);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.12),
    0 4px 12px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.03);
}
.glass-card:hover::before {
  opacity: 1;
}

/* ── Glass Pill (badges, tags) ── */
.glass-pill {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}
/* Glass pill inside dark heroes */
.hero .glass-pill,
.hero-cinematic .glass-pill,
.hero-split .glass-pill,
.hero-brand .glass-pill,
.hero-area .glass-pill {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
}

/* ── Glass Input (form elements) ── */
.glass-input {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.04),
    0 1px 2px rgba(0,0,0,0.02);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.glass-input:focus {
  border-color: var(--hlt-accent);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.04),
    0 0 0 3px rgba(14,165,233,0.15);
  outline: none;
}

/* ── Floating Action Buttons (contact FAB) ── */
.floating-contact a {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ── Glass Stats Panel — original horizontal 3-col design + shimmer ── */
.glass-stats-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--neutral-200) 0%,
    var(--neutral-100) 40%,
    var(--neutral-200) 100%
  );
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Animated shimmer sweep across border */
.glass-stats-shimmer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.2) 45%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.2) 55%,
    transparent 70%
  );
  background-size: 250% 100%;
  animation: glass-shimmer 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes glass-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Inner glass surface */
.glass-stats-inner {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
}

/* Specular highlight on inner surface */
.glass-stats-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.02) 40%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 3;
}

/* Horizontal row of stats */
.glass-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .glass-stats-row {
    grid-template-columns: 1fr;
  }
  .glass-stats-cell--border {
    border-right: none;
    border-bottom: 1px solid var(--neutral-200);
  }
  .glass-stats-cell { padding: 20px 16px; }
}

/* Individual cell */
.glass-stats-cell {
  padding: 28px 24px;
  text-align: center;
}
.glass-stats-cell--border {
  border-right: 1px solid var(--neutral-200);
}

/* Number */
.glass-stats-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Label */
.glass-stats-label {
  font-size: 14px;
  color: var(--neutral-500);
  margin-top: 6px;
  line-height: 1.3;
}

/* ── Glass Stats inside DARK front-page hero ── */
.hero .glass-stats-panel {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.04) 60%,
    rgba(255,255,255,0.2) 100%
  );
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero .glass-stats-inner {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
}
.hero .glass-stats-cell--border {
  border-right-color: var(--neutral-200);
}
.hero .glass-stats-number {
  color: var(--neutral-900);
}
.hero .glass-stats-label {
  color: var(--neutral-500);
}

/* ── Glass Stats inside DARK landing-page heroes ── */
.hero-cinematic .glass-stats-panel,
.hero-split .glass-stats-panel,
.hero-brand .glass-stats-panel,
.hero-area .glass-stats-panel {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.04) 60%,
    rgba(255,255,255,0.2) 100%
  );
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-cinematic .glass-stats-inner,
.hero-split .glass-stats-inner,
.hero-brand .glass-stats-inner,
.hero-area .glass-stats-inner {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
}

/* ── Section-alt glass overlay ── */
.section-alt {
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  top: 0; right: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(14,165,233,0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Liquid glass nav effect ── */
.navbar {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* ── Refractive edge lines (iOS/visionOS-style) ── */
.glass-refract {
  position: relative;
}
.glass-refract::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.8) 0%,
    rgba(255,255,255,0.25) 20%,
    rgba(255,255,255,0.05) 45%,
    rgba(255,255,255,0.05) 55%,
    rgba(255,255,255,0.25) 80%,
    rgba(255,255,255,0.6) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* ── sections.css ── */
/* ============================================
   Section-specific styles
   CTA, Bosch bar, Team, Timeline, Process, Forms
   ============================================ */

/* ===== CTA Section — lyst tema ===== */
.section-light.cta-footer-section {
  background: var(--hlt-offwhite, #F7F8FA);
  padding: 56px 0;
  border-top: 1px solid var(--hlt-gray-200, #E5E7EB);
}
.cta-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section-light h2 {
  color: var(--hlt-gray-900, #111827);
  font-size: 36px;
}
.cta-section-light .cta-description,
.cta-section-light p {
  color: var(--hlt-gray-500, #6B7280);
  font-size: 17px;
  margin-bottom: 32px;
}
.cta-description {
  font-size: 17px;
  margin-bottom: 32px;
}
.cta-description p {
  margin: 0 0 6px;
  color: inherit;
  font-size: inherit;
}
.cta-description p:last-child {
  margin-top: 12px;
  font-weight: 600;
  color: var(--hlt-gray-700, #374151);
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: #0EA5E9;
  color: #fff;
  border: 2px solid #0EA5E9;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(14,165,233,0.25);
}
.cta-btn-primary:hover {
  background: #0284C7;
  border-color: #0284C7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,165,233,0.35);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  color: var(--hlt-gray-700, #374151);
  border: 2px solid var(--hlt-gray-200, #E5E7EB);
  transition: all 0.2s;
}
.cta-btn-secondary:hover {
  border-color: var(--hlt-gray-400, #9CA3AF);
  background: var(--hlt-offwhite, #F7F8FA);
  transform: translateY(-1px);
}
.cta-footnote {
  font-size: 13px;
  color: var(--hlt-gray-500, #6B7280);
  margin-top: 16px;
}

/* ===== CTA Footer Banner ===== */
.cta-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-footer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--neutral-white, #fff);
  border: 1px solid var(--neutral-200, #E5E7EB);
  border-radius: var(--radius-md);
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.cta-footer-card:hover {
  background: var(--neutral-50, #F9FAFB);
  box-shadow: var(--shadow-md);
}
.cta-footer-card .card-icon {
  width: 48px; height: 48px;
  background: rgba(14,165,233,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-footer-card .card-icon svg { width: 22px; height: 22px; color: var(--hlt-accent); }
.cta-footer-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-900, #111827);
  margin-bottom: 2px;
}
.cta-footer-card p {
  font-size: 14px;
  color: var(--neutral-500, #6B7280);
  margin: 0;
}

/* ===== Bosch Car Service Bar ===== */
.bosch-bar {
  background: var(--hlt-gray-50);
  border: 1px solid var(--hlt-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.bosch-bar img { height: 48px; width: auto; flex-shrink: 0; }
.bosch-bar-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hlt-gray-900);
  margin-bottom: 4px;
}
.bosch-bar-content p {
  font-size: 14px;
  color: var(--hlt-gray-500);
  margin: 0;
}

/* ===== Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 32px 24px;
}
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--hlt-gray-100);
}
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hlt-gray-900);
  margin-bottom: 4px;
}
.team-role {
  display: inline-block;
  font-size: 13px;
  color: var(--hlt-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.team-card p {
  font-size: 14px;
  color: var(--hlt-gray-500);
  margin-bottom: 12px;
}
.team-contact {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
}
.team-contact a {
  color: var(--hlt-gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.team-contact a:hover { color: var(--hlt-blue); }
.team-contact svg { width: 14px; height: 14px; }

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: var(--hlt-gray-200);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -48px; top: 4px;
  width: 32px; height: 32px;
  background: var(--hlt-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--hlt-gray-900);
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 15px;
  color: var(--hlt-gray-600);
  line-height: 1.7;
}

/* ===== Process Steps ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hlt-blue), var(--hlt-blue-light));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hlt-gray-900);
  margin-bottom: 4px;
}
.step-content p {
  font-size: 15px;
  color: var(--hlt-gray-600);
  line-height: 1.6;
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hlt-gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--hlt-gray-800);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #0EA5E9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Page Context CTA (afsluttende kontekst-CTA per side) ===== */
.page-context-cta {
  text-align: center;
  margin-top: 24px;
  padding: 40px 32px;
  border-top: 1px solid var(--hlt-gray-100, #F3F4F6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.page-context-cta h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 12px;
}
.page-context-cta p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hlt-gray-600, #4B5563);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.context-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== CTA Footer Responsive ===== */
@media (max-width: 640px) {
  .cta-footer-grid { grid-template-columns: 1fr; }
  .bosch-bar { flex-direction: column; text-align: center; padding: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; align-items: center; text-align: center; }
  .page-context-cta { padding: 40px 16px; }
  .page-context-cta h3 { font-size: 22px; }
}

/* ── bilsalg.css ── */
/* ═══════════════════════════════════════════════
   Bilsalg — Kompakt Page Header
   Erstatter den store page-hero-v2 med en slank bar
   ═══════════════════════════════════════════════ */

.bilsalg-page-header {
  background: var(--hlt-gray-50, #f9fafb);
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
  padding: 20px 0 24px;
}

.bilsalg-page-header .bil-breadcrumb-nav {
  margin-bottom: 12px;
}

.bilsalg-page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bilsalg-page-title {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--hlt-blue, #003b5c);
  line-height: 1.2;
  margin: 0;
}

.bilsalg-page-subtitle {
  font-size: 15px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 4px 0 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .bilsalg-page-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .bilsalg-page-title {
    font-size: 22px;
  }
}

/* ═══════════════════════════════════════════════
   Bilsalg — Split Screen Layout
   Privat (venstre) | Erhverv (højre)
   ═══════════════════════════════════════════════ */

.bilsalg-section {
  padding: 80px 0;
}

/* ─── Split Layout ─── */
.bilsalg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* ─── Column ─── */
.bilsalg-column {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hlt-gray-100);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.bilsalg-column-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--hlt-gray-100);
}

.bilsalg-column-icon {
  width: 48px;
  height: 48px;
  background: var(--hlt-blue);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bilsalg-column-icon--erhverv {
  background: var(--hlt-red);
}

.bilsalg-column-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--hlt-gray-900);
  margin: 0;
  line-height: 1.2;
}

.bilsalg-column-subtitle {
  font-size: 14px;
  color: var(--hlt-gray-500);
  margin: 2px 0 0;
}

.bilsalg-count {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--hlt-blue);
  background: rgba(0, 59, 92, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bilsalg-count--erhverv {
  color: var(--hlt-red);
  background: rgba(227, 30, 36, 0.08);
}

/* ─── Car Grid inside columns ─── */
.bilsalg-car-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
}

/* ─── Car Card (vertikalt layout) ─── */
.bilsalg-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--hlt-gray-100);
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.bilsalg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.bilsalg-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--hlt-gray-50);
}

.bilsalg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.bilsalg-card:hover .bilsalg-card-img img {
  transform: scale(1.03);
}

.bilsalg-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hlt-gray-300);
}

.bilsalg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.bilsalg-badge--new {
  background: #22c55e;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(34,197,94,.35);
  letter-spacing: 0.04em;
}

.bilsalg-badge--featured {
  background: var(--hlt-red);
  color: #fff;
}

.bilsalg-badge--category {
  top: auto;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bilsalg-badge--privat {
  background: var(--brand-primary, #003B5C);
  color: #fff;
}

.bilsalg-badge--erhverv {
  background: var(--brand-cta, #E31E24);
  color: #fff;
}

.bilsalg-img-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

/* Card body */
.bilsalg-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bilsalg-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--hlt-gray-900, #1e293b);
  margin: 0;
  line-height: 1.2;
}

.bilsalg-card-variant {
  font-size: 13px;
  color: var(--hlt-gray-500);
  margin: 3px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bilsalg-card-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--hlt-dark, #1e293b);
  margin-top: 12px;
}

.bilsalg-card-leasing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: #16a34a;
  background: rgba(34,197,94,.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 6px;
}

/* Specs row — minimal dot-separated */
.bilsalg-card-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hlt-gray-100);
}

.bilsalg-spec {
  font-size: 13px;
  color: var(--hlt-gray-500);
  line-height: 1;
}

.bilsalg-spec + .bilsalg-spec::before {
  content: "·";
  margin: 0 8px;
  color: var(--hlt-gray-300);
  font-weight: 700;
}

.bilsalg-spec--new {
  color: #059669;
  font-weight: 600;
}

/* CTA pill inside specs row */
.bilsalg-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--hlt-blue, #003b5c);
  border-radius: 6px;
  white-space: nowrap;
  transition: all .25s ease;
}
.bilsalg-card-cta svg {
  transition: transform .25s ease;
}
.bilsalg-card:hover .bilsalg-card-cta {
  background: var(--hlt-red, #e31e24);
}
.bilsalg-card:hover .bilsalg-card-cta svg {
  transform: translateX(3px);
}

/* ─── See All Button ─── */
.bilsalg-see-all {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hlt-gray-100);
}

.bilsalg-see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── Empty state ─── */
.bilsalg-empty {
  text-align: center;
  padding: 48px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bilsalg-empty-icon {
  width: 72px;
  height: 72px;
  background: var(--hlt-offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hlt-gray-400);
  margin-bottom: 16px;
}

.bilsalg-empty p {
  font-size: 15px;
  color: var(--hlt-gray-500);
  margin-bottom: 20px;
}

/* ─── Biludlejning banner ─── */
.bilsalg-udlejning {
  margin-bottom: 48px;
}

.bilsalg-udlejning-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--hlt-offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hlt-gray-100);
}

.bilsalg-udlejning h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.bilsalg-udlejning p {
  font-size: 14px;
  color: var(--hlt-gray-600);
  margin: 0;
  max-width: 540px;
}

/* ─── Contact CTA ─── */
.bilsalg-contact-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--hlt-gray-100);
}

.bilsalg-contact-cta h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bilsalg-contact-cta p {
  font-size: 15px;
  color: var(--hlt-gray-600);
  margin-bottom: 24px;
}

.bilsalg-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══ Responsive ═══ */

@media (max-width: 1024px) {
  .bilsalg-split {
    gap: 24px;
  }

  .bilsalg-column {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .bilsalg-split {
    grid-template-columns: 1fr;
  }

  .bilsalg-column {
    padding: 20px;
  }

  .bilsalg-udlejning-inner {
    flex-direction: column;
    text-align: center;
  }

  .bilsalg-udlejning p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .bilsalg-column-header {
    flex-wrap: wrap;
  }

  .bilsalg-count {
    margin-left: 0;
  }
}

/* ═══════════════════════════════════════════════
   Bil Detalje / Produktside
   ═══════════════════════════════════════════════ */

/* ─── Sticky Action Bar ─── */
.bil-action-bar {
  background: var(--hlt-gray-50, #f9fafb);
  padding: 14px 0;
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
  transition: box-shadow .25s ease, padding .25s ease;
  z-index: 90;
}

.bil-action-bar--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 10px 0;
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
}

.bil-action-bar-inner {
  position: relative;
}

/* Breadcrumb — visible by default, hidden when sticky */
.bil-action-breadcrumb {
  transition: opacity .2s ease;
}
.bil-action-bar--sticky .bil-action-breadcrumb {
  display: none;
}

/* Sticky content — hidden by default, visible when sticky */
.bil-action-sticky-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.bil-action-bar--sticky .bil-action-sticky-content {
  display: flex;
}

.bil-action-info {
  display: flex;
  align-items: baseline;
  gap: 16px;
  min-width: 0;
}

.bil-action-title {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bil-action-price {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--hlt-accent, #dc2626);
  white-space: nowrap;
}

.bil-action-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.bil-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  white-space: nowrap;
}

/* ─── Pill-style breadcrumb ─── */
.bil-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bil-crumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hlt-gray-500, #6b7280);
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 20px;
  text-decoration: none;
  transition: all .2s ease;
  line-height: 1;
}

.bil-crumb-pill:hover {
  color: var(--hlt-blue, #003b5c);
  border-color: var(--hlt-blue, #003b5c);
  background: rgba(0, 59, 92, 0.04);
}

.bil-crumb-pill svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.bil-crumb-pill:hover svg {
  opacity: 0.8;
}

.bil-crumb-chevron {
  color: var(--hlt-gray-300, #d1d5db);
  flex-shrink: 0;
}

.bil-crumb-current {
  font-size: 13px;
  font-weight: 600;
  color: var(--hlt-dark, #1e293b);
  padding: 5px 0;
}

/* Spacer inserted by JS to prevent content jump when bar becomes fixed */
.bil-action-bar-spacer {
  height: 0;
  transition: height .15s ease;
}

@media (max-width: 640px) {
  .bil-action-info {
    flex-direction: column;
    gap: 2px;
  }
  .bil-action-title {
    font-size: 14px;
  }
  .bil-action-price {
    font-size: 15px;
  }
  .bil-action-buttons {
    flex-direction: column;
    gap: 6px;
  }
  .bil-action-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* ─── Hero grid: galleri + sidebar ─── */
.bil-detail-hero {
  padding: 40px 0;
  background: #fff;
}

.bil-detail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* ─── Galleri ─── */
.bil-gallery-main {
  position: relative;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  background: var(--hlt-gray-50, #f9fafb);
  aspect-ratio: 4/3;
}

.bil-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bil-gallery-main--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--hlt-gray-300, #d1d5db);
}
.bil-gallery-main--empty p {
  font-size: 14px;
  color: var(--hlt-gray-400, #9ca3af);
}

.bil-gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.bil-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.bil-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color .2s;
}
.bil-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bil-thumb--active,
.bil-thumb:hover {
  border-color: var(--hlt-accent, #dc2626);
}

.bil-thumb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 54px;
  border-radius: 8px;
  background: var(--hlt-gray-100, #f3f4f6);
  color: var(--hlt-gray-500, #6b7280);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.bil-thumb-more:hover {
  background: var(--hlt-gray-200, #e5e7eb);
}

/* ─── Gallery Arrows ─── */
.bil-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  color: var(--hlt-gray-800, #1e293b);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s, background .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.bil-gallery-main:hover .bil-gallery-arrow {
  opacity: 1;
}
.bil-gallery-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.bil-gallery-arrow--prev { left: 12px; }
.bil-gallery-arrow--next { right: 12px; }

/* ─── Gallery bottom bar (counter + fullscreen) ─── */
.bil-gallery-bottom {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}
.bil-gallery-bottom .bil-gallery-counter {
  position: static;
  pointer-events: auto;
}
.bil-gallery-fullscreen-btn {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: rgba(0,0,0,.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.bil-gallery-fullscreen-btn:hover {
  background: rgba(0,0,0,.85);
}

/* ─── Fullscreen Lightbox ─── */
.bil-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.bil-lightbox--open {
  opacity: 1;
  visibility: visible;
}
.bil-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}
.bil-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.bil-lightbox-close:hover {
  background: rgba(255,255,255,.25);
}
.bil-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.bil-lightbox-arrow:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-50%) scale(1.08);
}
.bil-lightbox-arrow--prev { left: 20px; }
.bil-lightbox-arrow--next { right: 20px; }
.bil-lightbox-img-wrap {
  position: relative;
  z-index: 2;
  width: 92vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bil-lightbox-img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 90vh;
  min-width: min(92vw, 1200px);
  object-fit: contain;
  user-select: none;
}
.bil-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ─── Description Module (under gallery) ─── */
.bil-description-module {
  margin-top: 24px;
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: var(--radius-lg, 12px);
  padding: 24px 28px;
}
.bil-description-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hlt-blue, #003b5c);
}
.bil-description-header h3 {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.bil-description-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hlt-gray-600, #4b5563);
}
.bil-description-body p {
  margin: 0 0 12px;
}
.bil-description-body p:last-child {
  margin-bottom: 0;
}
.bil-description-body--clamped {
  max-height: 140px;
  overflow: hidden;
  position: relative;
}
.bil-description-body--clamped::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--hlt-gray-50, #f9fafb));
  pointer-events: none;
}
.bil-description-body--expanded {
  max-height: none;
}
.bil-description-body--expanded::after {
  display: none;
}
.bil-description-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 6px 16px;
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 8px;
  background: #fff;
  color: var(--hlt-blue, #003b5c);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.bil-description-toggle:hover {
  border-color: var(--hlt-blue, #003b5c);
  background: rgba(0,59,92,.04);
}
.bil-description-toggle--expanded svg {
  transform: rotate(180deg);
}

/* ─── Sidebar ─── */
.bil-detail-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: var(--radius-lg, 12px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bil-detail-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--hlt-accent, #dc2626);
}

.bil-detail-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 4px 0 0;
  color: var(--hlt-dark, #1e293b);
}

.bil-detail-variant {
  font-size: 15px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 4px 0 0;
}

/* Price */
.bil-detail-price-block {
  padding: 20px 0;
  border-top: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
}

.bil-detail-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--hlt-accent, #dc2626);
}

.bil-detail-new-price {
  display: block;
  font-size: 13px;
  color: var(--hlt-gray-400, #9ca3af);
  margin-top: 2px;
}

.bil-detail-leasing {
  margin-top: 12px;
  background: var(--hlt-gray-50, #f9fafb);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.bil-leasing-label {
  font-size: 12px;
  color: var(--hlt-gray-500, #6b7280);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .03em;
  width: 100%;
}

.bil-leasing-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
}

.bil-leasing-meta {
  font-size: 13px;
  color: var(--hlt-gray-400, #9ca3af);
}

/* Key specs grid */
.bil-key-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hlt-gray-100, #f3f4f6);
  border-radius: 8px;
  overflow: hidden;
}

.bil-key-spec {
  background: #fff;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bil-key-spec:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.bil-key-spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--hlt-gray-400, #9ca3af);
}

.bil-key-spec-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--hlt-dark, #1e293b);
}

/* CTA buttons */
.bil-detail-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bil-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

/* Contact person row (sidebar) */
.bil-detail-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bil-contact-person-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
}

.bil-contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  flex-shrink: 0;
}

.bil-contact-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
  margin: 0;
  line-height: 1.2;
}

.bil-contact-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--hlt-gray-500, #6b7280);
  margin: 2px 0 0;
}

/* Contact avatar in bottom CTA */
.bil-contact-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  flex-shrink: 0;
}

/* Taxes */
.bil-taxes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--hlt-gray-400, #9ca3af);
}

/* ─── Tabs ─── */
.bil-detail-content {
  padding: 0 0 60px;
  background: var(--hlt-gray-50, #f9fafb);
}

.bil-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--hlt-gray-100, #f3f4f6);
  padding-top: 32px;
  margin-bottom: 32px;
}

.bil-tab {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--hlt-gray-400, #9ca3af);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}

.bil-tab:hover {
  color: var(--hlt-dark, #1e293b);
}

.bil-tab--active {
  color: var(--hlt-accent, #dc2626);
  border-bottom-color: var(--hlt-accent, #dc2626);
}

.bil-tab-content {
  display: none;
}

.bil-tab-content--active {
  display: block;
}

/* Specs grid */
.bil-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bil-spec-group {
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  padding: 24px;
}

.bil-spec-group-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
}

.bil-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bil-spec-list dt {
  padding: 8px 0;
  font-size: 14px;
  color: var(--hlt-gray-500, #6b7280);
  border-bottom: 1px solid var(--hlt-gray-50, #f9fafb);
}

.bil-spec-list dd {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-dark, #1e293b);
  text-align: right;
  border-bottom: 1px solid var(--hlt-gray-50, #f9fafb);
  margin: 0;
}

/* Equipment grid */
.bil-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bil-equipment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  font-size: 14px;
  color: var(--hlt-dark, #1e293b);
}

.bil-empty-state {
  text-align: center;
  padding: 48px 0;
  font-size: 15px;
  color: var(--hlt-gray-400, #9ca3af);
}

/* Description */
.bil-description {
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  padding: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hlt-dark, #1e293b);
}

/* ─── Contact CTA ─── */
.bil-contact-section {
  padding: 0 0 80px;
  background: var(--hlt-gray-50, #f9fafb);
}

.bil-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  gap: 32px;
}

.bil-contact-info h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
  margin-bottom: 6px;
}

.bil-contact-info p {
  font-size: 15px;
  color: var(--hlt-gray-500, #6b7280);
}

.bil-contact-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .bil-detail-grid {
    grid-template-columns: 1fr;
  }

  .bil-detail-sidebar {
    position: static;
  }

  .bil-specs-grid {
    grid-template-columns: 1fr;
  }

  .bil-equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bil-detail-hero {
    padding: 24px 0;
  }

  .bil-detail-sidebar {
    padding: 20px;
  }

  .bil-detail-title {
    font-size: 20px;
  }

  .bil-detail-price {
    font-size: 24px;
  }

  .bil-key-specs {
    grid-template-columns: 1fr 1fr;
  }

  .bil-tabs {
    overflow-x: auto;
  }

  .bil-tab {
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .bil-equipment-grid {
    grid-template-columns: 1fr;
  }

  .bil-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .bil-contact-actions {
    flex-direction: column;
    width: 100%;
  }

  /* Gallery arrows always visible on mobile (no hover) */
  .bil-gallery-arrow {
    opacity: 1;
    width: 36px;
    height: 36px;
  }
  .bil-gallery-arrow--prev { left: 8px; }
  .bil-gallery-arrow--next { right: 8px; }

  /* Lightbox mobile */
  .bil-lightbox-arrow {
    width: 40px;
    height: 40px;
  }
  .bil-lightbox-arrow--prev { left: 8px; }
  .bil-lightbox-arrow--next { right: 8px; }

  /* Description module */
  .bil-description-module {
    padding: 20px;
  }

  /* Contact modal mobile */
  .bil-contact-modal-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 16px 16px 0 0;
    max-height: 90vh;
    align-self: flex-end;
  }
  .bil-form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   Kontaktformular Modal
   ═══════════════════════════════════════════════ */

.bil-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.bil-contact-modal--open {
  opacity: 1;
  visibility: visible;
}
.bil-contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.bil-contact-modal-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px 40px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  transform: translateY(20px);
  transition: transform .3s ease;
}
.bil-contact-modal--open .bil-contact-modal-content {
  transform: translateY(0);
}
.bil-contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--hlt-gray-50, #f9fafb);
  color: var(--hlt-gray-500, #6b7280);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.bil-contact-modal-close:hover {
  background: var(--hlt-gray-100, #f3f4f6);
  color: var(--hlt-gray-900, #1e293b);
}

/* Modal header with Jeppe */
.bil-contact-modal-header {
  margin-bottom: 28px;
}
.bil-contact-modal-person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bil-contact-modal-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--hlt-gray-100, #f3f4f6);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.bil-contact-modal-header h2 {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--hlt-dark, #1e293b);
  margin: 0;
  line-height: 1.2;
}
.bil-contact-modal-car {
  font-size: 15px;
  font-weight: 600;
  color: var(--hlt-blue, #003b5c);
  margin: 2px 0 0;
}
.bil-contact-modal-role {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}

/* Form styles */
.bil-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bil-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bil-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bil-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hlt-gray-700, #374151);
}
.bil-form-required {
  color: var(--hlt-accent, #dc2626);
}
.bil-form-group input,
.bil-form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--hlt-dark, #1e293b);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.bil-form-group input:focus,
.bil-form-group textarea:focus {
  border-color: var(--hlt-blue, #003b5c);
  box-shadow: 0 0 0 3px rgba(0,59,92,.1);
}
.bil-form-group input::placeholder,
.bil-form-group textarea::placeholder {
  color: var(--hlt-gray-400, #9ca3af);
}
.bil-form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.bil-form-actions {
  margin-top: 4px;
}
.bil-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
}
.bil-form-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* Feedback messages */
.bil-form-feedback {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.bil-form-feedback--success {
  background: rgba(34,197,94,.08);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,.2);
}
.bil-form-feedback--error {
  background: rgba(220,38,38,.06);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,.15);
}

/* Spinner animation */
.bil-spinner {
  animation: bil-spin .8s linear infinite;
}
@keyframes bil-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── bilmaerke-pages.css ── */
/* BILMÆRKE — Modern Expert-Driven Layout */

/* Hero now uses global .hero-cl from hero.css */

/* Context pill (same pattern as workshop) */
.bm-ctx {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.bm-ctx.bm-ctx--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.bm-ctx__pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06), inset 0 1px 1px rgba(255,255,255,0.6);
}
.bm-ctx__emoji { font-size: 18px; line-height: 1; flex-shrink: 0; }
.bm-ctx__label { font-size: 12px; color: var(--hlt-gray-500, #6B7280); white-space: nowrap; }
.bm-ctx__label strong { color: var(--hlt-gray-900, #111827); font-weight: 700; }
.bm-ctx__divider { width: 1px; height: 16px; background: rgba(0,0,0,0.1); flex-shrink: 0; }
.bm-ctx__link {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  text-decoration: none; color: var(--hlt-gray-400, #9CA3AF); transition: all 0.2s; white-space: nowrap;
}
.bm-ctx__link:hover { color: var(--hlt-gray-700, #374151); background: rgba(0,0,0,0.04); }
.bm-ctx__link--active { color: #fff; background: var(--hlt-gray-900, #111827); }

/* Buttons */
.bm-btn-primary {
  display: inline-block; padding: 13px 26px; border-radius: 12px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  background: var(--hlt-red, #E31E24); color: #fff;
  box-shadow: 0 2px 12px rgba(227,30,36,0.25);
  transition: all 0.2s ease;
}
.bm-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(227,30,36,0.35);
}
.bm-btn--full { display: block; text-align: center; width: 100%; }
.bm-btn--lg { padding: 16px 32px; font-size: 16px; }
.bm-btn-ghost {
  padding: 13px 18px; font-weight: 600; font-size: 14px;
  text-decoration: none; color: var(--hlt-gray-600, #4B5563);
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 12px;
  transition: all 0.2s;
  margin-top: 8px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}
.bm-btn-ghost:hover {
  color: var(--hlt-red, #E31E24);
  border-color: var(--hlt-red, #E31E24);
}

/* Content grid (main + sidebar) */
.bm-content {
  padding: 24px 0 48px;
}
.bm-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.bm-main > div + div,
.bm-main > div + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.bm-main h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 20px;
}
.bm-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--hlt-gray-600, #4b5563);
}
.bm-intro p { margin: 0 0 16px; }

/* Common issues */
.bm-issues__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bm-issue-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.bm-issue-card:hover {
  border-color: var(--hlt-gray-200, #e5e7eb);
}
.bm-issue-card__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.bm-issue-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 4px;
}
.bm-issue-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}

/* Prices — dot leader rows */
.bm-prices__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bm-price-row {
  display: flex;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.bm-price-row:last-child { border-bottom: none; }
.bm-price-row__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-gray-800, #1f2937);
  white-space: nowrap;
}
.bm-price-row__dots {
  flex: 1;
  margin: 0 8px;
  border-bottom: 2px dotted var(--hlt-gray-200, #e5e7eb);
  min-width: 20px;
  position: relative;
  top: -4px;
}
.bm-price-row__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  white-space: nowrap;
}
.bm-prices__note {
  font-size: 12px;
  color: var(--hlt-gray-400, #9CA3AF);
  margin: 12px 0 0;
  font-style: italic;
}

/* USPs */
.bm-usps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bm-usp {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--hlt-gray-50, #f9fafb);
  border-radius: 12px;
}
.bm-usp__emoji {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.bm-usp h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 4px;
}
.bm-usp p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}

/* Sidebar */
.bm-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}
.bm-sidebar__contact {
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.bm-sidebar__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--hlt-gray-100, #f3f4f6);
  display: block;
  margin: 0 auto 10px;
}
.bm-sidebar__contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hlt-gray-400, #9CA3AF);
  margin-bottom: 4px;
}
.bm-sidebar__contact-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
}
.bm-sidebar__contact-role {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  margin-bottom: 16px;
}
.bm-sidebar__trust {
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.bm-sidebar__trust img {
  max-width: 120px;
  display: block;
  margin: 0 auto 12px;
}
.bm-sidebar__trust p {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
  line-height: 1.5;
}

/* FAQ */
.bm-faq {
  padding: 48px 0;
  background: var(--hlt-gray-50, #f9fafb);
}
.bm-faq h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  text-align: center;
  margin: 0 0 24px;
}
.bm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bm-faq__item {
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bm-faq__item[open] {
  border-color: var(--hlt-gray-200, #e5e7eb);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.bm-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--hlt-gray-900, #111827);
  list-style: none;
}
.bm-faq__question::-webkit-details-marker { display: none; }
.bm-faq__question::marker { content: ''; }
.bm-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--hlt-gray-400, #9ca3af);
}
.bm-faq__item[open] .bm-faq__chevron {
  transform: rotate(180deg);
  color: var(--hlt-red, #E31E24);
}
.bm-faq__answer {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--hlt-gray-600, #4b5563);
}

/* Related services — internal links */
.bm-related-services h2 { margin-bottom: 8px; }
.bm-related-services > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0 0 20px;
}
.bm-related-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bm-related-service-link {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.bm-related-service-link:hover {
  border-color: var(--hlt-red, #E31E24);
  background: #fff;
  box-shadow: 0 2px 12px rgba(227,30,36,0.08);
}
.bm-related-service-link__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.bm-related-service-link strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 2px;
}
.bm-related-service-link span {
  font-size: 12px;
  color: var(--hlt-gray-500, #6b7280);
  line-height: 1.4;
}
.bm-related-service-link:hover strong {
  color: var(--hlt-red, #E31E24);
}

/* Responsive */
@media (max-width: 1024px) {
  .bm-grid {
    grid-template-columns: 1fr;
  }
  .bm-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .bm-usps__grid { grid-template-columns: 1fr; }
  .bm-related-services__grid { grid-template-columns: 1fr; }
  .bm-sidebar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .bm-faq__question { padding: 14px 16px; font-size: 14px; }
  .bm-faq__answer { padding: 0 16px 16px; }
  .bm-ctx { bottom: 16px; }
  .bm-ctx__label { display: none; }
  .bm-ctx__divider { display: none; }
  .bm-ctx__pill { padding: 6px 8px; gap: 4px; }
}

/* ── Uddybende tekst-modul (bm-extra-text) — lige inden FAQ ── */
.bm-extra-text {
  padding: 48px 0 56px;
}
.bm-extra-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
  margin: 0 0 20px;
  line-height: 1.3;
}
.bm-extra-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--hlt-gray-600, #475569);
  margin: 0 0 16px;
}
.bm-extra-text p:last-child {
  margin-bottom: 0;
}

/* ── service-pages.css ── */
/**
 * Service Pages — shared styles for page-service.php & page-service-vehicle.php
 * Extracted from inline <style> blocks to improve cacheability and reduce page weight.
 */

/* Hero emoji icon — no box, just big emoji */
.hero-cl__visual--emoji {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.hero-cl__emoji {
  font-size: 96px;
  line-height: 1;
}

/* Content grid (main + sidebar) */
.sv-content {
  padding: 48px 0 64px;
}
.sv-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.sv-main > div + div {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.sv-main h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 20px;
}

/* Answer box */
.sv-answer__text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--hlt-gray-600, #4b5563);
}
.sv-answer__text p { margin: 0 0 16px; }

/* WP content block */
.sv-content-block {
  font-size: 16px;
  line-height: 1.9;
  color: var(--hlt-gray-600, #4b5563);
}
.sv-content-block h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 48px 0 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--hlt-gray-100, #f3f4f6);
}
.sv-content-block h2:first-child { margin-top: 0; }
.sv-content-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 36px 0 12px;
}
.sv-content-block h3:first-child { margin-top: 0; }
.sv-content-block p { margin: 0 0 18px; }
.sv-content-block ul,
.sv-content-block ol {
  margin: 0 0 20px;
  padding-left: 20px;
}
.sv-content-block li { margin-bottom: 8px; }

/* Callout inside content */
.sv-main .callout {
  margin-bottom: 0;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hlt-gray-700, #374151);
}
.sv-main .callout--info {
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
}
.sv-main .callout--tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.sv-main .callout-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

/* Vehicle features list (vehicle sub-pages) */
.sv-features__list {
  font-size: 15px;
  line-height: 1.8;
  color: var(--hlt-gray-600, #4b5563);
}
.sv-features__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-features__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--hlt-gray-50, #f9fafb);
  border-radius: 10px;
  font-size: 14px;
}
.sv-features__list li::before {
  content: '\2713';
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

/* Sidebar */
.sv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}

/* Sidebar Contact Card */
.sv-sidebar__contact {
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 16px;
}
.sv-sidebar__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--hlt-gray-100, #f3f4f6);
  display: block;
  margin: 0 auto 10px;
}
.sv-sidebar__contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hlt-gray-400, #9CA3AF);
  margin-bottom: 4px;
}
.sv-sidebar__contact-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
}
.sv-sidebar__contact-role {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  margin-bottom: 16px;
}

/* Sidebar Specialist Sub-card */
.sv-sidebar__specialist {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  margin-bottom: 16px;
}
.sv-sidebar__spec-photo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.sv-sidebar__spec-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hlt-red, #E31E24);
  display: block;
}
.sv-sidebar__spec-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  display: block;
}
.sv-sidebar__spec-role {
  font-size: 12px;
  color: var(--hlt-gray-500, #6b7280);
  display: block;
}

/* Sidebar Trust Badge */
.sv-sidebar__trust {
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.sv-sidebar__trust img {
  max-width: 120px;
  display: block;
  margin: 0 auto 12px;
}
.sv-sidebar__trust p {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
  line-height: 1.5;
}

/* Buttons */
.sv-btn-primary {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background: var(--hlt-red, #E31E24);
  color: #fff;
  box-shadow: 0 2px 12px rgba(227,30,36,0.25);
  transition: all 0.2s ease;
}
.sv-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(227,30,36,0.35);
  color: #fff;
}
.sv-btn--full {
  display: block;
  text-align: center;
  width: 100%;
}
.sv-btn-ghost {
  padding: 13px 18px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--hlt-gray-600, #4B5563);
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 12px;
  transition: all 0.2s;
  margin-top: 8px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}
.sv-btn-ghost:hover {
  color: var(--hlt-red, #E31E24);
  border-color: var(--hlt-red, #E31E24);
}

/* CTA ghost button — visible border */
.cta-bottom .btn-ghost,
.cta-inline .btn-ghost,
.btn-row .btn-ghost {
  border: 2px solid var(--hlt-gray-300, #d1d5db);
  border-radius: 12px;
  padding: 13px 26px;
  font-weight: 700;
  background: transparent;
  transition: all 0.2s;
}
.cta-bottom .btn-ghost:hover,
.cta-inline .btn-ghost:hover,
.btn-row .btn-ghost:hover {
  border-color: var(--hlt-red, #E31E24);
  color: var(--hlt-red, #E31E24);
  background: rgba(227,30,36,0.04);
}

/* Expert attribution (answer sections) */
.sv-expert-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.sv-expert-byline img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.sv-expert-byline span {
  font-size: 12px;
  color: var(--hlt-gray-500, #6b7280);
}
.sv-expert-byline strong {
  color: var(--hlt-gray-700, #374151);
}

/* Contact modal (shared with bilmærke) */
.bm-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.bm-contact-modal--open { opacity: 1; visibility: visible; }
.bm-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.bm-contact-modal__content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px 40px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  transform: translateY(20px);
  transition: transform .3s ease;
}
.bm-contact-modal--open .bm-contact-modal__content { transform: translateY(0); }
.bm-contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--hlt-gray-50, #f9fafb);
  color: var(--hlt-gray-500, #6b7280);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.bm-contact-modal__close:hover {
  background: var(--hlt-gray-100, #f3f4f6);
  color: var(--hlt-gray-900, #1e293b);
}
.bm-contact-modal__header { margin-bottom: 28px; }
.bm-contact-modal__person { display: flex; align-items: center; gap: 16px; }
.bm-contact-modal__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--hlt-gray-100, #f3f4f6);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.bm-contact-modal__header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0;
  line-height: 1.2;
}
.bm-contact-modal__brand {
  font-size: 15px;
  font-weight: 600;
  color: var(--hlt-red, #E31E24);
  margin: 2px 0 0;
}
.bm-contact-modal__role {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}
.bm-contact-form { display: flex; flex-direction: column; gap: 18px; }
.bm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bm-form-group { display: flex; flex-direction: column; gap: 6px; }
.bm-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hlt-gray-700, #374151);
}
.bm-form-required { color: var(--hlt-red, #E31E24); }
.bm-form-group input,
.bm-form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--hlt-gray-900, #111827);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.bm-form-group input:focus,
.bm-form-group textarea:focus {
  border-color: var(--hlt-red, #E31E24);
  box-shadow: 0 0 0 3px rgba(227,30,36,.1);
}
.bm-form-group input::placeholder,
.bm-form-group textarea::placeholder {
  color: var(--hlt-gray-400, #9ca3af);
}
.bm-form-group textarea { resize: vertical; min-height: 100px; }
.bm-form-actions { margin-top: 4px; }
.bm-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  background: var(--hlt-red, #E31E24);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(227,30,36,0.25);
  transition: all 0.2s;
}
.bm-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(227,30,36,0.35);
}
.bm-form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.bm-form-feedback {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.bm-form-feedback--success {
  background: rgba(34,197,94,.08);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,.2);
}
.bm-form-feedback--error {
  background: rgba(220,38,38,.06);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,.15);
}
.bm-spinner { animation: bm-spin .8s linear infinite; }
@keyframes bm-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* (Vehicle switcher removed — vehicle routing handled via bilmærke pages) */

/* Utility classes */
.hero-cl__sub--tight { margin-bottom: 16px; }
.btn--mt-sm { margin-top: 8px; }
.sv-inline-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; vertical-align: middle; margin-right: 6px; }
.sv-inline-avatar--sm { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; vertical-align: middle; margin-right: 4px; }
.sv-btn-ghost--sm { margin-top: 8px; font-size: 13px; }

/* Responsive */
@media (max-width: 1024px) {
  .sv-grid { grid-template-columns: 1fr; }
  .sv-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .sv-sidebar__contact { padding: 20px; }
  .sv-sidebar { grid-template-columns: 1fr; }
  .sv-btn-primary { font-size: 14px; padding: 12px 20px; }
}
@media (max-width: 640px) {
  .bm-contact-modal__content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 16px 16px 0 0;
    max-height: 90vh;
    align-self: flex-end;
    padding: 28px 20px 32px;
  }
  .bm-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
}

/* ── overview-pages.css ── */
/* Shared: Trust bar, CTA bottom */
.so-trust { padding: 24px 0; }
.so-trust__bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--hlt-gray-600, #4b5563);
}
.so-cta { padding: 48px 0; }
.so-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 16px;
}
.so-cta__inner h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 4px;
}
.so-cta__inner p {
  font-size: 14px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}
.so-cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.so-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--hlt-red, #E31E24);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(227,30,36,0.25);
  transition: all 0.2s;
}
.so-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(227,30,36,0.35);
}
.so-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--hlt-gray-600, #4b5563);
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s;
}
.so-btn-ghost:hover {
  color: var(--hlt-red, #E31E24);
  border-color: var(--hlt-red, #E31E24);
}

/* Services Overview (so-) */
.so-grid-section { padding: 32px 0 48px; }
.so-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.so-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.so-card:hover {
  border-color: var(--hlt-gray-200, #e5e7eb);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.so-card__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.so-card__body { flex: 1; min-width: 0; }
.so-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 4px;
}
.so-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}
.so-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.so-card__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--hlt-accent, #0EA5E9);
  white-space: nowrap;
}
.so-card__footer svg {
  color: var(--hlt-gray-300, #d1d5db);
  transition: color 0.2s;
}
.so-card:hover .so-card__footer svg { color: var(--hlt-red, #E31E24); }

/* Brands Overview (bo-) */
.bo-group { padding: 32px 0; }
.bo-group + .bo-group { padding-top: 0; }
.bo-group__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hlt-gray-100, #f3f4f6);
}
.bo-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.bo-brand-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.bo-brand-card:hover {
  border-color: var(--hlt-gray-200, #e5e7eb);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.bo-brand-card__code {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5e7eb;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #374151;
  flex-shrink: 0;
  transition: all 0.25s ease;
  line-height: 1;
}
.bo-brand-card:hover .bo-brand-card__code {
  background: var(--hlt-red, #E31E24);
  color: #fff;
}
.bo-brand-card__info { flex: 1; min-width: 0; }
.bo-brand-card__info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
}
.bo-brand-card__info span {
  font-size: 12px;
  color: var(--hlt-gray-400, #9ca3af);
}
.bo-brand-card svg {
  color: var(--hlt-gray-300, #d1d5db);
  flex-shrink: 0;
  transition: color 0.2s;
}
.bo-brand-card:hover svg { color: var(--hlt-red, #E31E24); }
.bo-brand-card:hover strong { color: var(--hlt-red, #E31E24); }

/* Elbil Service (ev-) */
.ev-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  text-align: center;
  margin: 0 0 8px;
}
.ev-section-desc {
  font-size: 14px;
  color: var(--hlt-gray-500, #6b7280);
  text-align: center;
  margin: 0 0 28px;
}
.ev-services { padding: 40px 0; }
.ev-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ev-service-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.ev-service-card:hover { border-color: var(--hlt-gray-200, #e5e7eb); }
.ev-service-card__icon { font-size: 24px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ev-service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 6px;
}
.ev-service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--hlt-gray-600, #4b5563);
  margin: 0 0 8px;
}
.ev-service-card__includes {
  font-size: 12px;
  color: var(--hlt-gray-400, #9ca3af);
  font-style: italic;
}
.ev-usps { padding: 40px 0; background: var(--hlt-gray-50, #f9fafb); }
.ev-usps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.ev-usp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.ev-usp__icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.ev-usp h3 { font-size: 14px; font-weight: 700; color: var(--hlt-gray-900, #111827); margin: 0 0 4px; }
.ev-usp p { font-size: 13px; line-height: 1.5; color: var(--hlt-gray-500, #6b7280); margin: 0; }

.ev-faq { padding: 48px 0; }
.ev-faq__list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.ev-faq__item {
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ev-faq__item[open] { border-color: var(--hlt-gray-200, #e5e7eb); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.ev-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--hlt-gray-900, #111827);
  list-style: none;
}
.ev-faq__question::-webkit-details-marker { display: none; }
.ev-faq__question::marker { content: ''; }
.ev-faq__chevron { flex-shrink: 0; transition: transform 0.25s; color: var(--hlt-gray-400, #9ca3af); }
.ev-faq__item[open] .ev-faq__chevron { transform: rotate(180deg); color: var(--hlt-red, #E31E24); }
.ev-faq__answer { padding: 0 20px 18px; font-size: 14px; line-height: 1.7; color: var(--hlt-gray-600, #4b5563); }

/* ═══ Cross-link sektioner (so-xlinks) ═══ */
.so-xlinks {
  padding: 48px 0 40px;
  border-top: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.so-xlinks--alt {
  background: var(--hlt-gray-50, #f9fafb);
}
.so-xlinks__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 6px;
}
.so-xlinks__desc {
  font-size: 15px;
  color: var(--hlt-gray-600, #4b5563);
  margin: 0 0 24px;
  line-height: 1.5;
}
.so-xlinks__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.so-xlink-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-gray-700, #374151);
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.so-xlinks--alt .so-xlink-chip {
  background: #fff;
}
.so-xlink-chip:hover {
  border-color: #0EA5E9;
  color: #0EA5E9;
  box-shadow: 0 2px 8px rgba(14,165,233,0.10);
  transform: translateY(-1px);
}
.so-xlink-chip__icon {
  font-size: 18px;
  flex-shrink: 0;
}
.so-xlink-chip--brand {
  padding: 10px 20px;
}
.so-xlinks__more {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #0EA5E9;
  text-decoration: none;
  transition: color 0.2s;
}
.so-xlinks__more:hover {
  color: #0284c7;
}

/* ═══ Elbil Specialist (ev-page--specialist) ═══ */

/* Hero price badge */
.hero-cl__price-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding: 8px 18px;
  background: var(--hlt-gray-50, #f9fafb);
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 10px;
  font-size: 15px;
  color: var(--hlt-gray-700, #374151);
}
.hero-cl__price-badge strong {
  color: var(--hlt-red, #E31E24);
  font-weight: 800;
}

/* Intro */
.ev-intro { padding: 40px 0 0; }
.ev-intro__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--hlt-gray-600, #4b5563);
  margin: 0;
}

/* Savings highlight */
.ev-savings { padding: 32px 0; }
.ev-savings__box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 14px;
}
.ev-savings__icon { font-size: 32px; flex-shrink: 0; }
.ev-savings__text {
  font-size: 15px;
  line-height: 1.7;
  color: #065f46;
  margin: 0;
  font-weight: 500;
}

/* Benefits grid */
.ev-benefits { padding: 40px 0; }
.ev-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.ev-benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ev-benefit-card:hover {
  border-color: var(--hlt-gray-200, #e5e7eb);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ev-benefit-card__icon { font-size: 24px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ev-benefit-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 4px;
}
.ev-benefit-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}

/* Process steps */
.ev-process { padding: 48px 0; background: var(--hlt-gray-50, #f9fafb); }
.ev-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.ev-process__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
.ev-process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--hlt-gray-200, #e5e7eb);
}
.ev-process__number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hlt-red, #E31E24);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ev-process__content { flex: 1; padding-top: 6px; }
.ev-process__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 4px;
}
.ev-process__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}

/* Pricing comparison table */
.ev-pricing { padding: 48px 0; }
.ev-pricing__table {
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
}
.ev-pricing__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--hlt-gray-50, #f9fafb);
  border-bottom: 2px solid var(--hlt-gray-200, #e5e7eb);
}
.ev-pricing__header .ev-pricing__col {
  font-size: 13px;
  font-weight: 700;
  color: var(--hlt-gray-600, #4b5563);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 20px;
}
.ev-pricing__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
  transition: background 0.15s;
}
.ev-pricing__row:last-child { border-bottom: none; }
.ev-pricing__row:hover { background: var(--hlt-gray-50, #f9fafb); }
.ev-pricing__col { padding: 14px 20px; font-size: 14px; }
.ev-pricing__col--name { font-weight: 600; color: var(--hlt-gray-900, #111827); }
.ev-pricing__col--us { color: var(--hlt-gray-900, #111827); }
.ev-pricing__col--dealer { color: var(--hlt-gray-400, #9ca3af); }
.ev-pricing__price-us {
  font-weight: 700;
  color: #059669;
}
.ev-pricing__price-dealer del {
  font-weight: 400;
  color: var(--hlt-gray-400, #9ca3af);
}
.ev-pricing__savings {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 6px;
}

/* Related services */
.ev-related { padding: 48px 0; background: var(--hlt-gray-50, #f9fafb); }
.ev-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.ev-related__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 12px;
  transition: all 0.2s;
}
.ev-related__card:hover {
  border-color: var(--hlt-gray-200, #e5e7eb);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}
.ev-related__icon { font-size: 22px; flex-shrink: 0; }
.ev-related__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  text-decoration: none;
  transition: color 0.2s;
}
.ev-related__link:hover { color: var(--hlt-red, #E31E24); }
.ev-related__link svg { color: var(--hlt-gray-300, #d1d5db); transition: color 0.2s; }
.ev-related__card:hover .ev-related__link svg { color: var(--hlt-red, #E31E24); }

/* Expert card */
.ev-expert { padding: 48px 0; }
.ev-expert__card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 16px;
  margin-top: 24px;
}
.ev-expert__photo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--hlt-gray-100, #f3f4f6);
}
.ev-expert__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ev-expert__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 2px;
}
.ev-expert__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--hlt-red, #E31E24);
  margin: 0 0 8px;
}
.ev-expert__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}

/* Hub specialty cards */
.ev-specialties { padding: 48px 0; background: var(--hlt-gray-50, #f9fafb); }
.ev-specialties__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.ev-specialty-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.ev-specialty-card:hover {
  border-color: var(--hlt-gray-200, #e5e7eb);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.ev-specialty-card__icon { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ev-specialty-card__body { flex: 1; min-width: 0; }
.ev-specialty-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 4px;
}
.ev-specialty-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0 0 10px;
}
.ev-specialty-card__savings {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 8px;
}
.ev-specialty-card__arrow {
  color: var(--hlt-gray-300, #d1d5db);
  flex-shrink: 0;
  align-self: center;
  transition: color 0.2s;
}
.ev-specialty-card:hover .ev-specialty-card__arrow { color: var(--hlt-red, #E31E24); }

/* ═══ EV Hub: Featured battery card ═══ */
.ev-featured { padding: 32px 0 0; }
.ev-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.ev-featured__content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ev-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary, #0056b3);
  background: var(--hlt-gray-50, #f0f4ff);
  padding: 6px 14px;
  border-radius: 8px;
  width: fit-content;
}
.ev-featured__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0;
  line-height: 1.3;
}
.ev-featured__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hlt-gray-600, #4b5563);
  margin: 0;
}
.ev-featured__desc strong {
  color: var(--hlt-gray-900, #111827);
}
/* savings callout removed — replaced by .ev-featured__note */
.ev-featured__savings { display: none; }
.ev-featured__note {
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-gray-600, #4b5563);
  margin: 0;
}
.ev-featured__facts {
  background: var(--hlt-gray-50, #f9fafb);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  border-left: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.ev-featured__fact strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 2px;
}
.ev-featured__fact span {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  line-height: 1.4;
}

/* Force 3-column grid variant */
.so-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (max-width: 768px) {
  .ev-featured__card { grid-template-columns: 1fr; }
  .ev-featured__facts { border-left: none; border-top: 1px solid var(--hlt-gray-100, #f3f4f6); }
  .ev-featured__content { padding: 28px 24px; }
  .ev-featured__facts { padding: 24px; }
  .ev-featured__title { font-size: 20px; }
  .so-card-grid--3 { grid-template-columns: 1fr; }
  .so-card-grid { grid-template-columns: 1fr; }
  .bo-brand-grid { grid-template-columns: 1fr; }
  .ev-services__grid { grid-template-columns: 1fr; }
  .ev-usps__grid { grid-template-columns: 1fr; }
  .ev-benefits__grid { grid-template-columns: 1fr; }
  .ev-specialties__grid { grid-template-columns: 1fr; }
  .ev-related__grid { grid-template-columns: 1fr; }
  .ev-pricing__header,
  .ev-pricing__row { grid-template-columns: 1fr; }
  .ev-pricing__header .ev-pricing__col:not(:first-child),
  .ev-pricing__row .ev-pricing__col:not(:first-child) { padding-top: 0; }
  .ev-pricing__col--us::before { content: 'HLT: '; font-weight: 600; }
  .ev-pricing__col--dealer::before { content: 'Forhandler: '; font-weight: 600; }
  .ev-expert__card { flex-direction: column; text-align: center; }
  .so-cta__inner { flex-direction: column; text-align: center; }
  .so-cta__actions { justify-content: center; }
}
@media (max-width: 640px) {
  .so-trust__bar { gap: 16px; font-size: 12px; }
  .ev-faq__question { padding: 14px 16px; font-size: 14px; }
  .ev-faq__answer { padding: 0 16px 16px; }
}

/* ── kontakt.css ── */
/* ═══ Kontaktside — Ren & enkel ═══ */

/* Åbningstider strip — ren horisontalt bånd */
.kt-hours-strip {
  background: var(--hlt-gray-50, #f9fafb);
  border-bottom: 1px solid var(--hlt-gray-100, #f3f4f6);
  padding: 14px 0;
}
.kt-hours-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--hlt-gray-600, #4b5563);
  font-size: 14px;
}
.kt-hours-inner svg {
  color: var(--hlt-accent, #dc2626);
  flex-shrink: 0;
}
.kt-hours-label {
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
}
.kt-hours-item {
  padding-left: 12px;
  border-left: 1px solid var(--hlt-gray-200, #e5e7eb);
}
.kt-hours-item:first-of-type {
  padding-left: 0;
  border-left: none;
}

/* ── Hovedsektion: formular + kort ── */
.kt-main {
  padding: 48px 0 64px;
}
.kt-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Formularkort */
.kt-form-card {
  background: #fff;
  border-radius: var(--radius-lg, 14px);
  padding: 36px 40px 40px;
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.kt-form-header {
  margin-bottom: 28px;
}
.kt-form-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--hlt-dark, #1e293b);
  margin: 0 0 6px;
}
.kt-form-header p {
  font-size: 15px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
}

/* Formular */
.kt-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.kt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kt-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kt-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hlt-gray-700, #374151);
}
.kt-form-required {
  color: var(--hlt-accent, #dc2626);
}
.kt-form-group input,
.kt-form-group textarea,
.kt-form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--hlt-dark, #1e293b);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.kt-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.kt-form-group input:focus,
.kt-form-group textarea:focus,
.kt-form-group select:focus {
  border-color: var(--hlt-blue, #003b5c);
  box-shadow: 0 0 0 3px rgba(0,59,92,.1);
}
.kt-form-group input::placeholder,
.kt-form-group textarea::placeholder {
  color: var(--hlt-gray-400, #9ca3af);
}
.kt-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
/* ── GDPR checkbox (alle kontaktformularer) ── */
.kt-form-gdpr,
.bil-form-gdpr,
.sk-form-gdpr,
.bm-form-gdpr {
  margin-top: 4px;
}

.kt-gdpr-label,
.bil-gdpr-label,
.sk-gdpr-label,
.bm-gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.5;
}

.kt-gdpr-label input[type="checkbox"],
.bil-gdpr-label input[type="checkbox"],
.sk-gdpr-label input[type="checkbox"],
.bm-gdpr-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--hlt-blue, #003b5c);
}

.kt-gdpr-label span,
.bil-gdpr-label span,
.sk-gdpr-label span,
.bm-gdpr-label span {
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
}

.kt-gdpr-label span a,
.bil-gdpr-label span a,
.sk-gdpr-label span a,
.bm-gdpr-label span a {
  color: var(--hlt-blue, #003b5c);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kt-form-actions {
  margin-top: 4px;
}
.kt-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.kt-form-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* Spinner */
@keyframes kt-spin {
  to { transform: rotate(360deg); }
}
.kt-spinner {
  animation: kt-spin .8s linear infinite;
}

/* Feedback messages */
.kt-form-feedback {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.kt-form-feedback--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.kt-form-feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── Kort (map) ── */
.kt-map-card {
  background: #fff;
  border-radius: var(--radius-lg, 14px);
  border: 1px solid var(--hlt-gray-100, #f3f4f6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.kt-map-embed {
  flex: 1;
  min-height: 320px;
}
.kt-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.kt-map-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--hlt-gray-100, #f3f4f6);
}
.kt-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-accent, #dc2626);
  text-decoration: none;
  transition: gap .25s ease;
}
.kt-map-link:hover {
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .kt-hours-inner {
    font-size: 13px;
    gap: 8px;
  }
  .kt-main-grid {
    grid-template-columns: 1fr;
  }
  .kt-form-card {
    padding: 28px 24px 32px;
  }
  .kt-form-row {
    grid-template-columns: 1fr;
  }
  .kt-map-embed {
    height: 280px;
  }
}

/* ── job.css ── */
/* ============================================
   Job hos HLT — Karriereside komponenter
   ============================================ */

/* ===== Fordele-grid ===== */
.job-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.job-benefit-card {
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.job-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 59, 92, 0.06);
  margin-bottom: 20px;
}

.job-benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 10px;
}

.job-benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hlt-gray-600, #4B5563);
  margin: 0;
}

/* ===== Ledige stillinger ===== */
.job-positions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.job-position-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: 16px;
  padding: 28px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-position-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.job-position-info {
  flex: 1;
}

.job-position-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 6px;
  line-height: 1.3;
}

.job-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--hlt-gray-500, #6B7280);
}

.job-position-card .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .job-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-position-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  .job-position-card .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── mod-holdet.css ── */
/* ══════════════════════════════════════════════
   Mød holdet — Team page styles
   ══════════════════════════════════════════════ */

/* Sections */
.mt-section { padding: 48px 0 24px; }
.mt-section--first { padding-top: 56px; }
.mt-section:nth-child(even) { background: var(--hlt-gray-50, #F9FAFB); }

/* Department header */
.mt-dept-header {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 32px; padding-bottom: 14px;
  border-bottom: 2px solid var(--hlt-gray-100, #f3f4f6);
}
.mt-dept-title {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 26px; font-weight: 800;
  color: var(--hlt-gray-900, #111827);
  margin: 0; letter-spacing: -0.02em;
}
.mt-dept-count {
  font-size: 14px; font-weight: 500;
  color: var(--hlt-gray-400, #9CA3AF);
}

/* ── Detailed grid (Kontor & Salg) ── */
.mt-grid--detailed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.mt-card--detailed {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.mt-card--detailed:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border-color: var(--hlt-gray-300, #D1D5DB);
}

/* Photo */
.mt-card__photo-wrap {
  flex-shrink: 0;
  width: 110px; height: 110px;
  border-radius: 50%; overflow: hidden;
  background: var(--hlt-gray-100, #f3f4f6);
}
.mt-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mt-card__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

/* Info */
.mt-card__info { flex: 1; min-width: 0; }
.mt-card__name {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 16px; font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin: 0 0 2px; line-height: 1.3;
}
.mt-card__role {
  font-size: 13px; font-weight: 500;
  color: var(--hlt-red, #E31E24);
  margin: 0 0 10px; line-height: 1.4;
}
.mt-card__contact {
  display: flex; flex-direction: column; gap: 4px;
}
.mt-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--hlt-gray-600, #4B5563);
  text-decoration: none; transition: color 0.2s;
}
.mt-card__link:hover { color: var(--hlt-red, #E31E24); }
.mt-card__link svg { flex-shrink: 0; opacity: 0.5; }

/* ── Compact grid (Værksted, Klargøring, Transport) ── */
.mt-grid--compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}
.mt-card--compact {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
}
.mt-card__avatar {
  width: 120px; height: 120px;
  border-radius: 50%; overflow: hidden;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  background: var(--hlt-gray-100, #f3f4f6);
}
.mt-card__avatar--placeholder {
  display: flex; align-items: center; justify-content: center;
}
.mt-card__compact-name {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 14px; font-weight: 600;
  color: var(--hlt-gray-800, #1F2937);
  line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mt-grid--detailed {
    grid-template-columns: 1fr;
  }
  .mt-grid--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .mt-card__avatar { width: 100px; height: 100px; }
  .mt-dept-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .mt-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
  .mt-card__avatar { width: 88px; height: 88px; }
}

/* ── reparationer.css ── */
/* ============================================
   Reparationer — Page-specific styles
   Overview grid, symptom cards, related cards,
   breadcrumb, category badge
   ============================================ */

/* ===== Breadcrumb ===== */
.rep-breadcrumb {
  padding: 16px 0 0;
  background: #fff;
}
.breadcrumb-nav {
  font-size: 13px;
  color: var(--hlt-gray-500, #6B7280);
}
.breadcrumb-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.breadcrumb-list li::after {
  content: '›';
  margin-left: 6px;
  color: var(--hlt-gray-300, #D1D5DB);
}
.breadcrumb-list li:last-child::after {
  display: none;
}
.breadcrumb-list a {
  color: var(--hlt-gray-500, #6B7280);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover {
  color: var(--hlt-blue, #0EA5E9);
}

/* ===== Category Badge ===== */
.rep-category-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ===== Symptom Cards (detail page) ===== */
.rep-symptomer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.rep-symptom-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: var(--radius-md, 12px);
  transition: box-shadow 0.2s, transform 0.15s;
}
.rep-symptom-card:hover {
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  transform: translateY(-2px);
}
.rep-symptom-emoji {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}
.rep-symptom-card h3 {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 4px;
}
.rep-symptom-card p {
  font-size: 14px;
  color: var(--hlt-gray-600, #4B5563);
  line-height: 1.5;
  margin: 0;
}

/* ===== Related Cards (detail page) ===== */
.rep-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.rep-related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: var(--radius-md, 12px);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s;
}
.rep-related-card:hover {
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  transform: translateY(-2px);
}
.rep-related-emoji {
  font-size: 28px;
  flex-shrink: 0;
}
.rep-related-card h3 {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 2px;
}
.rep-related-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-accent, #0EA5E9);
}

/* ===== Overview Page ===== */
.rep-overview-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.rep-overview-emoji {
  font-size: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}
.rep-overview-header h2 {
  margin-bottom: 4px;
}
.rep-overview-desc {
  font-size: 15px;
  color: var(--hlt-gray-600, #4B5563);
  margin: 0;
}
.rep-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rep-overview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: var(--radius-md, 12px);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
}
.rep-overview-card:hover {
  box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
  transform: translateY(-2px);
  border-color: var(--hlt-gray-300, #D1D5DB);
}
.rep-overview-card-emoji {
  font-size: 32px;
  flex-shrink: 0;
}
.rep-overview-card-body {
  flex: 1;
  min-width: 0;
}
.rep-overview-card h3 {
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 4px;
}
.rep-overview-card p {
  font-size: 13px;
  color: var(--hlt-gray-500, #6B7280);
  line-height: 1.5;
  margin: 0;
}
.rep-overview-card-arrow {
  font-size: 20px;
  color: var(--hlt-gray-400, #9CA3AF);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.rep-overview-card:hover .rep-overview-card-arrow {
  color: var(--hlt-accent, #0EA5E9);
  transform: translateX(3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .rep-symptomer-grid,
  .rep-related-grid,
  .rep-overview-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .rep-overview-header {
    flex-direction: column;
    gap: 8px;
  }
  .rep-overview-card {
    padding: 16px;
  }
  .rep-symptom-card {
    padding: 20px;
  }
}

/* ── timeline.css ── */
/* ============================================
   Vertikal tidslinje — HLT Historie
   Alternerende venstre/højre layout
   ============================================ */

.hlt-timeline {
  position: relative;
  padding: 0;
  max-width: 960px;
  margin: 0 auto;
}

/* Vertikal linje i midten */
.hlt-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--hlt-blue, #003B5C) 0%,
    var(--hlt-blue, #003B5C) 80%,
    var(--hlt-gray-200, #E5E7EB) 100%
  );
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Hvert tidslinje-item */
.tl-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  width: 100%;
}
.tl-item:last-child {
  margin-bottom: 0;
}

/* Marker (cirkel med år) */
.tl-marker {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  z-index: 2;
}
.tl-year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hlt-blue, #003B5C);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 59, 92, 0.2);
}

/* Indholdskortet */
.tl-content {
  width: calc(50% - 56px);
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tl-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Pil mod linjen */
.tl-content::after {
  content: '';
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  transform: rotate(45deg);
}

/* Venstre-placerede items: kort til venstre */
.tl-left .tl-content {
  margin-right: auto;
}
.tl-left .tl-content::after {
  right: -8px;
  border-left: none;
  border-bottom: none;
}

/* Højre-placerede items: kort til højre */
.tl-right .tl-content {
  margin-left: auto;
}
.tl-right .tl-content::after {
  left: -8px;
  border-right: none;
  border-top: none;
}

/* Badge (milepæl-type) */
.tl-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hlt-red, #E31E24);
  background: rgba(227, 30, 36, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Titel */
.tl-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--hlt-gray-900, #111827);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Brødtekst */
.tl-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hlt-gray-600, #4B5563);
  margin: 0;
}

/* Billeder i tidslinje-kort */
.tl-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.tl-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ===== content-two-col utility ===== */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  /* Mobil: tidslinje i venstre side */
  .hlt-timeline::before {
    left: 24px;
  }

  .tl-marker {
    left: 24px;
  }

  .tl-year {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }

  .tl-item {
    margin-bottom: 32px;
  }

  .tl-content {
    width: calc(100% - 72px);
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .tl-content::after {
    left: -8px !important;
    right: auto !important;
    border-right: none !important;
    border-top: none !important;
    border-left: 1px solid var(--hlt-gray-200, #E5E7EB) !important;
    border-bottom: 1px solid var(--hlt-gray-200, #E5E7EB) !important;
  }

  .content-two-col {
    grid-template-columns: 1fr;
  }

  .page-hero-simple h1 {
    font-size: 30px;
  }
}

/* ── footer.css ── */
/* ============================================
   Footer — lyst tema (mockup 1)
   ============================================ */
.site-footer {
  background: #fff;
  color: #374151;
  padding: 56px 0 24px;
  border-top: 1px solid var(--hlt-gray-200, #E5E7EB);
}

/* Compact 3-col layout */
.footer-compact {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 24px;
}
.footer-compact p { font-size: 14px; line-height: 1.7; }
.footer-info-col strong {
  color: var(--hlt-gray-900, #111827);
  font-size: 14px;
}

/* Certifications wrapper */
.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

/* ── Bosch Car Service — hero badge (lyst tema) ── */
.footer-bosch-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--hlt-offwhite, #F7F8FA);
  border: 1px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: 12px;
  padding: 16px 20px;
}
.footer-bosch-shield {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-bosch-info {
  display: flex;
  flex-direction: column;
}
.footer-bosch-brand {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--hlt-blue, #003B5C);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
}
.footer-bosch-carservice {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--hlt-red, #E31E24);
  letter-spacing: 0.5px;
  margin-top: 1px;
}
.footer-bosch-auth {
  font-size: 12px;
  color: var(--hlt-gray-500, #6B7280);
  margin-top: 6px;
}

/* ── AAA + Eurogarant badges side-by-side ── */
.footer-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.footer-eurogarant-badge {
  width: 56px;
  height: 56px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

/* ── Smaller cert badges (IVECO etc.) — lyst tema ── */
.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-cert-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.footer-cert-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer-cert-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--hlt-blue, #003B5C);
  letter-spacing: 0.2px;
}
.footer-cert-sub {
  font-size: 12px;
  color: var(--hlt-gray-500, #6B7280);
}

/* ── AAA — centreret i åbningstider-kolonnen ── */
.footer-aaa-centered {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.footer-aaa-link {
  display: inline-block;
  text-decoration: none;
}
.footer-aaa-badge {
  height: 52px;
  width: auto;
  transition: opacity 0.2s ease;
}
.footer-aaa-link:hover .footer-aaa-badge {
  opacity: 0.8;
}

/* Footer description */
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hlt-gray-500, #6B7280);
  margin: 0;
}

/* Footer social */
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  color: var(--hlt-gray-500, #6B7280);
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--hlt-blue, #003B5C); }

/* Footer links */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: #4B5563;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--hlt-blue, #003B5C); }

/* Footer column headings */
.footer-info-col h4,
.footer-compact h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hlt-blue, #003B5C);
  margin-bottom: 12px;
}

/* Footer hours */
.footer-hours {
  font-size: 14px;
  line-height: 1.8;
  color: #4B5563;
}
.footer-hours strong {
  color: var(--hlt-gray-900, #111827);
}

/* Footer contact list (p-based) */
.footer-contact-list p {
  font-size: 14px;
  margin: 0 0 8px;
  color: #4B5563;
}
.footer-contact-list p strong {
  color: var(--hlt-gray-900, #111827);
}
.footer-contact-list a {
  color: var(--hlt-blue, #003B5C);
  transition: color 0.2s;
}
.footer-contact-list a:hover {
  color: #002A45;
}
.footer-directions-link {
  color: var(--hlt-blue, #003B5C) !important;
  text-decoration: underline;
}
.footer-phone-link {
  color: var(--hlt-red, #E31E24) !important;
  font-weight: 700;
}
.footer-holiday-note {
  display: block;
  font-size: 12px;
  color: #9CA3AF;
  font-style: italic;
  margin-top: 4px;
}

/* CVR + copyright — bundlinje */
.footer-legal {
  font-size: 12px !important;
  color: #9CA3AF !important;
  margin-top: 8px !important;
  padding-top: 8px;
  border-top: 1px solid var(--hlt-gray-200, #E5E7EB);
}

/* Footer bottom bar */
.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--hlt-gray-200, #E5E7EB);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9CA3AF;
}

/* ===== Floating Contact Buttons ===== */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
  transition: opacity 0.3s, transform 0.3s;
}
.floating-contact.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.floating-btn:hover { transform: scale(1.05); }
.floating-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.floating-label { display: inline; }
.floating-btn.map   { background: var(--hlt-blue); }
.floating-btn.phone { background: var(--hlt-red); }
.floating-btn.email { background: var(--hlt-red); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .footer-compact {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .floating-contact {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .floating-label { display: none; }
  .floating-btn { padding: 12px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .site-footer { padding: 40px 0 20px; }
  .footer-bosch-hero { flex-direction: column; text-align: center; padding: 16px; }
  .footer-bosch-shield { width: 56px; height: 56px; }
}

/* ── animations.css ── */
/* ===== ANIMATIONS ===== */

/* Keyframes */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); }  to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn    { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse      { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes float      { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes growLine   { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ===== Immediate animations (no scroll trigger) ===== */
.animate-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-up.animated { animation: none; opacity: 1; }
.animate-in { animation: fadeIn 0.6s ease-out both; }

/* Delay utilities */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== Scroll-triggered animations (start hidden, reveal on intersection) ===== */
.animate-fade-up,
.animate-fade-in,
.animate-slide-left,
.animate-slide-right,
.animate-scale-in {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.animate-fade-up    { transform: translateY(40px); }
.animate-slide-left { transform: translateX(-50px); }
.animate-slide-right { transform: translateX(50px); }
.animate-scale-in   { transform: scale(0.88); }

/* Stagger delay classes for children */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Revealed state */
.animate-fade-up.animated,
.animate-fade-in.animated,
.animate-slide-left.animated,
.animate-slide-right.animated,
.animate-scale-in.animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ===== Timeline specific animations ===== */
.tl-item.animate-slide-left  { transform: translateX(-60px); }
.tl-item.animate-slide-right { transform: translateX(60px); }
.tl-item.animate-slide-left.animated,
.tl-item.animate-slide-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Timeline year marker pop-in */
.tl-marker {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s ease;
}
.tl-item:not(.animated) .tl-marker {
  transform: scale(0);
  opacity: 0;
}
.tl-item.animated .tl-marker {
  transform: scale(1);
  opacity: 1;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-fade-in,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale-in,
  .animate-up {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .tl-item:not(.animated) .tl-marker {
    transform: none;
    opacity: 1;
  }
}
