/* ═══════════════════════════════════════════════════════
   GUTACHTENfit — Dark Premium + Spotlight Cursor v2
   Refined: spacing, hierarchy, cursor, logo, cards
   ═══════════════════════════════════════════════════════ */

/* ── TRUST BADGES STRIP ── */
.trust-badges {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-badges__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  background: rgba(37,99,235,0.06);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.3s, background 0.3s;
}
.trust-badge:hover {
  border-color: rgba(37,99,235,0.5);
  background: rgba(37,99,235,0.12);
}
.trust-badge i {
  font-size: 16px;
  color: #3b82f6;
}
@media (max-width: 640px) {
  .trust-badges__grid { gap: 0.6rem; }
  .trust-badge { font-size: 0.78rem; padding: 0.4rem 0.8rem; }
  .trust-badge i { font-size: 14px; }
}

html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; background: #0a0f1a; color: #c8cdd6; cursor: none; }
a, button, input, textarea, select { cursor: none; }
::selection { background: rgba(37,99,235,0.3); }

/* Global dark overrides for base elements */
table th { background: rgba(37,99,235,0.08); color: #fff; }
table td { border-bottom-color: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); }
table tr:hover td { background: rgba(37,99,235,0.04); }
h1, h2, h3, h4, h5, h6 { color: #fff; }
.text-center h2 { color: #fff; }


/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; background: #060a12; z-index: 99999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 32px;
  transition: opacity 1.2s ease, visibility 1.2s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__logo {
  width: 280px;
  animation: logoPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes logoPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.96); filter: drop-shadow(0 0 0px rgba(37,99,235,0)); }
  50% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 30px rgba(37,99,235,0.45)); }
}

/* Dissolve out: logo scales up and fades */
.loader.done .loader__logo {
  animation: logoDissolve 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes logoDissolve {
  0% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 30px rgba(37,99,235,0.45)) blur(0); }
  40% { opacity: 0.9; transform: scale(1.15); filter: drop-shadow(0 0 50px rgba(37,99,235,0.5)) blur(0); }
  100% { opacity: 0; transform: scale(2); filter: drop-shadow(0 0 60px rgba(37,99,235,0)) blur(8px); }
}

.loader__bar { width: 200px; height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.loader__bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #2563eb, #60a5fa); border-radius: 2px; transition: width 0.3s; }

/* ══════════════════════════════════
   CURSOR — Enhanced Spotlight v2
   ══════════════════════════════════ */
.cursor-dot {
  position: fixed; width: 6px; height: 6px; background: #fff;
  border-radius: 50%; pointer-events: none; z-index: 100001;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width 0.35s cubic-bezier(.16,1,.3,1), height 0.35s cubic-bezier(.16,1,.3,1),
              opacity 0.3s, background 0.3s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed; width: 44px; height: 44px;
  border-radius: 50%; pointer-events: none; z-index: 100000;
  transform: translate(-50%,-50%);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  transition: width 0.5s cubic-bezier(.16,1,.3,1), height 0.5s cubic-bezier(.16,1,.3,1),
              border-color 0.4s, background 0.4s, opacity 0.3s, border-width 0.3s;
  will-change: left, top;
}

/* Hover on interactive elements: ring shrinks + fills */
body.cursor-hover .cursor-dot { width: 0; height: 0; opacity: 0; }
body.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  border-color: rgba(37,99,235,0.5);
  background: rgba(37,99,235,0.06);
  border-width: 2px;
}

/* Lens on images/videos */
body.cursor-lens .cursor-dot { width: 0; height: 0; opacity: 0; }
body.cursor-lens .cursor-ring {
  width: 200px; height: 200px;
  border-color: rgba(255,255,255,0.15);
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
  backdrop-filter: contrast(1.15) saturate(1.3) brightness(1.2);
  -webkit-backdrop-filter: contrast(1.15) saturate(1.3) brightness(1.2);
}

/* Text cursor: crosshair dot */
body.cursor-text .cursor-dot { width: 2px; height: 24px; border-radius: 1px; background: #60a5fa; }
body.cursor-text .cursor-ring { width: 0; height: 0; opacity: 0; }

/* Click feedback */
body.cursor-click .cursor-ring { width: 30px; height: 30px; border-color: rgba(37,99,235,0.8); }

/* Images start slightly muted, cursor reveals */
.showcase__img-wrap img,
.split__img img,
.rev-showcase img {
  filter: brightness(0.82) saturate(0.8);
  transition: filter 0.6s ease;
}
.showcase__img-wrap:hover img,
.split__img:hover img,
.rev-showcase:hover img {
  filter: brightness(0.88) saturate(0.85);
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6, #60a5fa); z-index: 10001;
  border-radius: 0 1px 1px 0;
}

/* ══════════════════════════════════
   HEADER — Ultra Premium
   ══════════════════════════════════ */
.header {
  position: fixed !important; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent !important; border-bottom: none !important;
  box-shadow: none !important; backdrop-filter: none !important;
  transition: all 0.5s cubic-bezier(.16,1,.3,1); padding: 0 !important;
}
.header.is-scrolled {
  background: rgba(6,9,20,0.65) !important;
  backdrop-filter: blur(48px) saturate(1.8) brightness(0.92) !important;
  -webkit-backdrop-filter: blur(48px) saturate(1.8) brightness(0.92) !important;
  box-shadow:
    inset 0 -1px 0 rgba(255,255,255,0.05),
    0 1px 3px rgba(0,0,0,0.2),
    0 12px 48px rgba(0,0,0,0.35) !important;
}

/* Animated gradient top line */
.header::before {
  content: ''; position: absolute; bottom: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(37,99,235,0.4) 20%, rgba(96,165,250,0.5) 50%, rgba(37,99,235,0.4) 80%, transparent 100%);
  opacity: 0; transition: opacity 0.5s;
}
.header.is-scrolled::before { opacity: 1; }

.header__inner {
  min-height: 72px; display: flex; align-items: center;
  transition: min-height 0.5s cubic-bezier(.16,1,.3,1);
}
.header.is-scrolled .header__inner { min-height: 58px; }

/* Logo */
.header__logo { display: flex; align-items: center; position: relative; }
.header__logo img {
  width: 170px !important; height: auto !important;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  filter: drop-shadow(0 0 20px rgba(37,99,235,0.08));
}
.header.is-scrolled .header__logo img { width: 145px !important; }
.header__logo:hover img {
  filter: drop-shadow(0 0 28px rgba(37,99,235,0.2));
}

/* ── Navigation ── */
.header__nav {
  display: flex; gap: 2px; align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 4px 6px;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.header.is-scrolled .header__nav {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.header__nav > a,
.header__nav > .nav-dropdown > .nav-dropdown__trigger {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.01em;
  text-transform: none;
  padding: 8px 14px; border-radius: 10px;
  transition: all 0.25s cubic-bezier(.16,1,.3,1);
  position: relative; white-space: nowrap;
  color: rgba(255,255,255,0.55) !important;
}
.header__nav > a:hover,
.nav-dropdown:hover > .nav-dropdown__trigger {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}

/* Active page */
.header__nav > a.active {
  color: #fff !important;
  background: rgba(37,99,235,0.12) !important;
}

/* Reset old underline from style.css */
.header__nav a::after,
.header__nav .nav-dropdown__trigger::after { display: none !important; }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.nav-dropdown__trigger i.ph-caret-down {
  font-size: 10px;
  transition: transform 0.3s cubic-bezier(.16,1,.3,1);
  color: rgba(255,255,255,0.25);
}
.nav-dropdown:hover .nav-dropdown__trigger i.ph-caret-down {
  transform: rotate(180deg); color: rgba(255,255,255,0.5);
}

/* Invisible bridge so mouse can travel from trigger to menu */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
  display: none;
}
.nav-dropdown:hover::after { display: block; }

.nav-dropdown__menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: rgba(12,16,32,0.92);
  backdrop-filter: blur(48px) saturate(1.6);
  -webkit-backdrop-filter: blur(48px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 6px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 0.5px rgba(255,255,255,0.04);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease,
              transform 0.2s ease,
              visibility 0.2s;
  pointer-events: none;
}
/* Arrow */
.nav-dropdown__menu::before {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(12,16,32,0.92);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-left: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px 0 0 0;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Staggered item reveal */
.nav-dropdown__menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  color: rgba(255,255,255,0.65) !important; font-size: 0.84rem; font-weight: 500;
  transition: all 0.2s ease;
  text-transform: none !important; letter-spacing: 0 !important;
  opacity: 0; transform: translateY(4px);
  animation: none;
}
.nav-dropdown:hover .nav-dropdown__menu a {
  opacity: 1; transform: translateY(0);
}
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(1) { transition-delay: 0.02s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(2) { transition-delay: 0.04s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(3) { transition-delay: 0.06s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(4) { transition-delay: 0.08s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(5) { transition-delay: 0.10s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(6) { transition-delay: 0.12s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(7) { transition-delay: 0.14s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(8) { transition-delay: 0.16s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(9) { transition-delay: 0.18s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(10) { transition-delay: 0.20s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(11) { transition-delay: 0.22s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(12) { transition-delay: 0.24s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(13) { transition-delay: 0.26s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(14) { transition-delay: 0.28s; }
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(15) { transition-delay: 0.30s; }

.nav-dropdown__menu a:hover {
  color: #fff !important;
  background: rgba(37,99,235,0.12) !important;
}
.nav-dropdown__menu a i {
  font-size: 16px; color: rgba(96,165,250,0.7);
  transition: all 0.2s;
}
.nav-dropdown__menu a:hover i { color: #93bbfc; }
.nav-dropdown__menu a::after { display: none !important; }
.nav-dropdown__divider {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin: 3px 10px;
}

/* ── CTA area ── */
.header__cta { display: flex; align-items: center; gap: 10px; }
.header--light .header__phone,
.header.is-scrolled .header__phone {
  color: rgba(255,255,255,0.5) !important; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.25s;
}
.header--light .header__phone:hover,
.header.is-scrolled .header__phone:hover { color: #fff !important; }
.header__phone i { transition: transform 0.25s; }
.header__phone:hover i { transform: rotate(-12deg) scale(1.1); }

/* ── CTA Button ── */
.header--light .btn--primary,
.header.is-scrolled .btn--primary {
  position: relative; overflow: hidden;
  background: #2563eb !important;
  color: #fff !important; border: none !important;
  box-shadow: 0 2px 12px rgba(37,99,235,0.3);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.01em; text-transform: none;
  padding: 9px 20px; border-radius: 10px;
  transition: all 0.25s ease;
}
.header--light .btn--primary:hover,
.header.is-scrolled .btn--primary:hover {
  background: #1d4ed8 !important;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  transform: translateY(-1px);
}
/* Shimmer sweep */
.header--light .btn--primary::after,
.header.is-scrolled .btn--primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s;
}
.header--light .btn--primary:hover::after,
.header.is-scrolled .btn--primary:hover::after { left: 100%; }

/* ── Menu toggle ── */
.menu-toggle {
  width: 28px; height: 20px; position: relative;
}
.menu-toggle span {
  background: #fff !important; position: absolute; left: 0; height: 2px; border-radius: 1px;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.menu-toggle span:nth-child(1) { top: 2px; width: 32px; }
.menu-toggle span:nth-child(2) { top: 11px; width: 24px; }
.menu-toggle span:nth-child(3) { top: 20px; width: 28px; }
.menu-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); width: 28px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); width: 28px; }

/* ── Pulse dot in CTA ── */
.btn__pulse {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #34d399; margin-right: 8px;
  box-shadow: 0 0 8px rgba(52,211,153,0.6);
  animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero-cinema {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden; background: #060a12;
}
.hero-cinema__media { position: absolute; inset: 0; z-index: 0; }
.hero-cinema__media video,
.hero-cinema__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08);
  transition: opacity 2.5s ease, transform 14s ease-out;
}
.hero-cinema.is-loaded .hero-cinema__media video,
.hero-cinema.is-loaded .hero-cinema__media img {
  opacity: 0.35; transform: scale(1);
}
.hero-cinema__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.08) 0%, transparent 55%),
    linear-gradient(180deg, rgba(6,10,18,0.7) 0%, rgba(6,10,18,0.02) 40%, rgba(6,10,18,0.92) 100%);
}
.hero-cinema__content {
  position: relative; z-index: 2; max-width: 760px; padding: 0 var(--spacing-xl);
}
.hero-cinema__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 100px;
  background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.35);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px; opacity: 0; transform: translateY(20px);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero-cinema__title {
  font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 800; color: #fff;
  line-height: 1.06; letter-spacing: -0.04em; margin-bottom: 24px;
}
.hero-cinema__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 4px; }
.hero-cinema__title .word-inner { display: inline-block; opacity: 0; transform: translateY(110%); }
.hero-cinema__title .accent {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-cinema__desc {
  font-size: clamp(1rem, 1.5vw, 1.12rem); color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 500px; margin-bottom: 40px;
  opacity: 0; transform: translateY(30px);
}
.hero-cinema__buttons { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); }
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px;
  border-radius: 100px; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.btn-hero--primary { background: #2563eb; color: #fff; border: none; }
.btn-hero--primary:hover { background: #1d4ed8; transform: translateY(-3px); box-shadow: 0 20px 50px rgba(37,99,235,0.3); }
.btn-hero--ghost { background: transparent; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.1); }
.btn-hero--ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); transform: translateY(-3px); }
.hero-cinema__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0;
}
.hero-cinema__scroll-text { font-size: 0.6rem; color: rgba(255,255,255,0.12); text-transform: uppercase; letter-spacing: 0.25em; }
.hero-cinema__scroll-dot { width: 1px; height: 48px; position: relative; overflow: hidden; }
.hero-cinema__scroll-dot::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.3); animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{top:-100%} 100%{top:100%} }

/* ── SHOWCASE ── */
.showcase { position: relative; overflow: hidden; }
.showcase__img-wrap { position: relative; overflow: hidden; width: 100%; }
.showcase__img-wrap img {
  width: 100%; height: 60vh; object-fit: cover; display: block;
  transform: scale(1.06); transition: transform 0.1s linear, filter 0.6s ease; will-change: transform;
}
.showcase__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 100px 48px 48px;
  background: linear-gradient(to top, rgba(6,10,18,0.95) 0%, transparent 100%); z-index: 2;
}
.showcase__caption-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 8px; }
.showcase__caption-title { font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; }

/* ── VIDEO SHOWCASE ── */
.video-showcase {
  position: relative; max-width: 900px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  aspect-ratio: 16/9;
}
.video-showcase__poster {
  position: relative; width: 100%; height: 100%; cursor: pointer;
}
.video-showcase__poster img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-showcase__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.video-showcase__poster:hover .video-showcase__overlay {
  background: rgba(0,0,0,0.2);
}
.video-showcase__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer; padding: 0;
  transition: transform 0.3s ease;
  z-index: 2;
}
.video-showcase__play svg circle:first-child {
  transition: stroke 0.3s;
}
.video-showcase__poster:hover .video-showcase__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-showcase__poster:hover .video-showcase__play svg circle:first-child {
  stroke: rgba(255,255,255,0.6);
}
.video-showcase__label {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em; text-transform: uppercase;
  z-index: 2;
}
.video-showcase__iframe {
  width: 100%; height: 100%; position: absolute; inset: 0;
}
.video-showcase__iframe iframe {
  width: 100%; height: 100%; border: none;
}

/* ── SLOGAN ── */
.slogan-area {
  padding: 160px 24px; background: #0a0f1a; text-align: center;
  position: relative; overflow: hidden;
}

/* Background glow */
.slogan-area__glow {
  position: absolute; top: 50%; left: 50%; width: 70vw; height: 70vw;
  max-width: 800px; max-height: 800px; border-radius: 50%;
  transform: translate(-50%,-50%) scale(0.3); opacity: 0;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.02) 40%, transparent 70%);
  transition: all 2.5s cubic-bezier(.16,1,.3,1);
}
.slogan-area.is-visible .slogan-area__glow { transform: translate(-50%,-50%) scale(1); opacity: 1; }


/* Text lines */
.slogan-area__lines {
  font-size: clamp(1.2rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 20px; opacity: 0; transform: translateY(40px);
  transition: all 1s cubic-bezier(.16,1,.3,1);
}
.slogan-area.is-visible .slogan-area__lines { opacity: 1; transform: translateY(0); }
.slogan-area__line1 { color: rgba(255,255,255,0.4); }
.slogan-area__line2 { color: rgba(37,99,235,0.5); }

.slogan-area__brand {
  font-size: clamp(3.5rem, 13vw, 11rem); font-weight: 800; line-height: 0.9;
  letter-spacing: -0.05em; position: relative; display: inline-block; margin-bottom: 20px;
}
.slogan-area__brand .sg { color: #fff; display: inline-block; }
.slogan-area__brand .sf { color: #2563eb; display: inline-block; }
.slogan-area__brand .char {
  display: inline-block; opacity: 0; transform: translateY(80px) rotateX(-90deg) scale(0.5);
  transition: all 0.8s cubic-bezier(.16,1,.3,1);
}
.slogan-area__brand .char.is-visible {
  opacity: 1; transform: translateY(0) rotateX(0deg) scale(1);
}
.slogan-area__brand::after {
  content: ''; display: block; width: 0; height: 2px; margin: 16px auto 0;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa); border-radius: 2px;
  transition: width 1.5s cubic-bezier(.16,1,.3,1) 0.8s;
}
.slogan-area.is-visible .slogan-area__brand::after { width: 100px; }

/* Subtitle */
.slogan-area__sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.18); text-transform: uppercase; letter-spacing: 0.25em;
  font-weight: 500; opacity: 0; transform: translateY(20px);
  transition: all 1.2s cubic-bezier(.16,1,.3,1) 1.4s;
}
.slogan-area.is-visible .slogan-area__sub { opacity: 1; transform: translateY(0); }

/* ── Trust Strip (Google Reviews) ── */
.trust-strip {
  padding: 40px 20px;
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1220 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-strip__inner {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-strip__google {
  display: flex; align-items: center; gap: 10px;
}
.trust-strip__label {
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
}
.trust-strip__rating {
  display: flex; align-items: center; gap: 10px;
}
.trust-strip__score {
  font-size: 1.6rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.trust-strip__stars {
  display: flex; gap: 2px;
  color: #fbbc05; font-size: 18px;
}
.trust-strip__cta {
  margin-left: 8px;
}
.trust-strip__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500;
  color: #3b82f6; text-decoration: none;
  transition: color 0.3s;
}
.trust-strip__link:hover { color: #60a5fa; }
@media (max-width: 580px) {
  .trust-strip__inner { flex-direction: column; gap: 14px; }
  .trust-strip__cta { margin-left: 0; }
}

/* ── STATS ── */
.stats-bar { padding: 72px 0; background: #0d1220; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 860px; margin: 0 auto; }
.stats-bar__item {
  text-align: center; padding: 20px 16px; position: relative;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(.16,1,.3,1);
}
.stats-bar__item.is-visible { opacity: 1; transform: translateY(0); }
.stats-bar__item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: rgba(255,255,255,0.06);
}
.stats-bar__num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 4px; }
.stats-bar__label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ══════════════════════════════════
   SECTIONS — Refined spacing
   ══════════════════════════════════ */
.sec { padding: 120px 0; position: relative; }
.sec--dark { background: #0a0f1a; }
.sec--darker { background: #080c16; }
.sec--card { background: #0d1220; }

.sec__eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: #3b82f6; margin-bottom: 14px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s cubic-bezier(.16,1,.3,1);
}
.sec__heading {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff;
  letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 16px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(.16,1,.3,1) 0.08s;
}
.sec__desc {
  font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 500px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s cubic-bezier(.16,1,.3,1) 0.16s;
}
.sec__header { text-align: center; margin-bottom: 64px; }
.sec__header .sec__desc { margin: 0 auto; }
.is-visible .sec__eyebrow, .is-visible .sec__heading, .is-visible .sec__desc {
  opacity: 1; transform: translateY(0);
}

/* ── SERVICE CARDS ── */
.srv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.srv-grid--3 { grid-template-columns: repeat(3,1fr); }
.srv-grid--2 { grid-template-columns: repeat(2,1fr); }
.srv-grid--5 { grid-template-columns: repeat(5,1fr); }
.srv-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px;
  padding: 36px 26px 32px; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
  opacity: 0; transform: translateY(50px);
}
.srv-card.is-visible { opacity: 1; transform: translateY(0); }
.srv-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(37,99,235,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.srv-card:hover::before { opacity: 1; }
.srv-card:hover {
  border-color: rgba(37,99,235,0.15); transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.035);
}
.srv-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.srv-card:hover::after { transform: scaleX(1); }
.srv-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(37,99,235,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.srv-card:hover .srv-card__icon { transform: scale(1.1) rotate(-5deg); }
.srv-card__title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.srv-card__text { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.srv-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 22px;
  font-size: 0.8rem; font-weight: 600; color: #3b82f6;
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.srv-card:hover .srv-card__link { opacity: 1; transform: translateY(0); }

/* ── PROCESS ── */
.proc-flow { max-width: 620px; margin: 0 auto; position: relative; }
.proc-flow__line-bg { position: absolute; left: 28px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.05); }
.proc-flow__line {
  position: absolute; left: 28px; top: 0; width: 1px; height: 0%;
  background: linear-gradient(to bottom, #1d4ed8, #60a5fa);
  transition: height 2s cubic-bezier(.16,1,.3,1);
}
.proc-flow.is-visible .proc-flow__line { height: 100%; }
.proc-step {
  display: flex; gap: 28px; padding-bottom: 48px;
  opacity: 0; transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(.16,1,.3,1);
}
.proc-step.is-visible { opacity: 1; transform: translateX(0); }
.proc-step__n {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.2); flex-shrink: 0;
  position: relative; z-index: 1; background: #0a0f1a;
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
}
.proc-step.is-visible .proc-step__n {
  border-color: #2563eb; color: #60a5fa; box-shadow: 0 0 0 6px rgba(37,99,235,0.06);
}
.proc-step__body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.proc-step__body p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split__img {
  position: relative; border-radius: 24px; overflow: hidden;
  opacity: 0; transform: translateX(-60px) scale(0.95);
  transition: all 1.4s cubic-bezier(.16,1,.3,1);
}
.split__img.is-visible { opacity: 1; transform: translateX(0) scale(1); }
.split__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease-out, filter 0.6s ease; }
.split__img:hover img { transform: scale(1.05); }
.split__img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.04); border-radius: 24px; pointer-events: none; }
.split__copy {
  opacity: 0; transform: translateX(60px);
  transition: all 1.4s cubic-bezier(.16,1,.3,1) 0.1s;
}
.split__copy.is-visible { opacity: 1; transform: translateX(0); }
.split__list { list-style: none; padding: 0; margin: 28px 0 0; }
.split__list li {
  display: flex; align-items: center; gap: 14px; padding: 12px 0;
  font-size: 0.9rem; color: rgba(255,255,255,0.45); border-bottom: 1px solid rgba(255,255,255,0.04);
}
.split__list li:last-child { border: none; }
.split__list li i { color: #3b82f6; flex-shrink: 0; }

/* ── REVIEWS ── */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rev-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 20px; padding: 32px 26px;
  transition: all 0.5s cubic-bezier(.16,1,.3,1); opacity: 0; transform: translateY(40px);
}
.rev-card.is-visible { opacity: 1; transform: translateY(0); }
.rev-card:hover { border-color: rgba(255,255,255,0.08); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); background: rgba(255,255,255,0.035); }
.rev-card__stars { display: flex; gap: 2px; margin-bottom: 18px; color: #3b82f6; }
.rev-card__text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.rev-card__name { font-weight: 700; font-size: 0.85rem; color: #fff; }
.rev-card__src { font-size: 0.72rem; color: rgba(255,255,255,0.22); margin-top: 2px; }
.rev-showcase {
  margin-top: 56px; border-radius: 20px; overflow: hidden;
  opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(.16,1,.3,1);
}
.rev-showcase.is-visible { opacity: 1; transform: translateY(0); }
.rev-showcase img { width: 100%; height: 380px; object-fit: cover; display: block; transition: filter 0.6s ease; }

/* ── CITIES ── */
.cities-track {
  display: flex; gap: 10px; padding: 20px 0 36px; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cities-track::-webkit-scrollbar { display: none; }
.city-pill {
  flex-shrink: 0; padding: 14px 24px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 100px;
  text-decoration: none; color: rgba(255,255,255,0.6); font-weight: 600; font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.city-pill:hover { border-color: #2563eb; color: #60a5fa; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.city-pill__t { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.2); }

/* ── FAQ ── */
.faq-list { max-width: 660px; margin: 0 auto; }
.faq-v3 {
  border-bottom: 1px solid rgba(255,255,255,0.05); opacity: 0; transform: translateY(20px);
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
}
.faq-v3.is-visible { opacity: 1; transform: translateY(0); }
.faq-v3__q {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 24px 0; background: none; border: none; font-size: 0.98rem; font-weight: 600;
  color: rgba(255,255,255,0.75); cursor: none; text-align: left; font-family: inherit; transition: color 0.3s;
}
.faq-v3__q:hover { color: #60a5fa; }
.faq-v3__icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.5s cubic-bezier(.16,1,.3,1); color: rgba(255,255,255,0.2);
}
.faq-v3.open .faq-v3__icon { border-color: #2563eb; background: #2563eb; color: #fff; transform: rotate(45deg); }
.faq-v3__a { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(.16,1,.3,1), padding 0.6s; }
.faq-v3.open .faq-v3__a { max-height: 600px; padding-bottom: 24px; }
.faq-v3__a p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ══════════════════════════════════
   CONTACT FORM — Premium Glassmorphism
   ══════════════════════════════════ */
.contact-sec {
  padding: 140px 0; background: #080c16; position: relative; overflow: hidden;
}
.contact-sec__glow {
  position: absolute; top: 30%; right: 10%; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%); pointer-events: none;
}
.contact-sec__glow--2 {
  top: 60%; left: 5%; right: auto;
  background: radial-gradient(circle, rgba(96,165,250,0.03) 0%, transparent 70%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start;
}
.contact-info {
  opacity: 0; transform: translateX(-40px);
  transition: all 1.2s cubic-bezier(.16,1,.3,1);
}
.contact-info.is-visible { opacity: 1; transform: translateX(0); }
.contact-info__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.contact-info__desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px;
}
.contact-detail {
  display: flex; align-items: center; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.contact-detail:last-child { border: none; }
.contact-detail__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(37,99,235,0.06); display: flex; align-items: center; justify-content: center;
  color: #3b82f6; transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.contact-detail:hover .contact-detail__icon { background: #2563eb; color: #fff; transform: scale(1.05); }
.contact-detail__text { flex: 1; }
.contact-detail__label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.contact-detail__value { font-size: 0.95rem; color: rgba(255,255,255,0.75); font-weight: 600; }
.contact-detail__value a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s; }
.contact-detail__value a:hover { color: #60a5fa; }

/* Form Card */
.contact-form-wrap {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 44px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateX(40px);
  transition: all 1.2s cubic-bezier(.16,1,.3,1) 0.1s;
}
.contact-form-wrap.is-visible { opacity: 1; transform: translateX(0); }
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa, #1d4ed8);
  background-size: 200% 100%;
  animation: formGlow 4s ease-in-out infinite;
}
@keyframes formGlow { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.contact-form__title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.contact-form__sub { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; position: relative; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px; border-radius: 12px; font-size: 0.9rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  color: #fff; font-family: inherit; outline: none;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(37,99,235,0.4); background: rgba(37,99,235,0.04);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.06);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-select option { background: #0d1220; color: #fff; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 22px; }
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; margin-top: 2px;
  accent-color: #2563eb;
}
.form-checkbox label { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.form-checkbox label a { color: #3b82f6; text-decoration: none; }
.form-checkbox label a:hover { text-decoration: underline; }
.btn-submit {
  width: 100%; padding: 16px 40px; border-radius: 12px; font-size: 0.95rem; font-weight: 700;
  background: #2563eb; color: #fff; border: none; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.btn-submit:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37,99,235,0.3); }
.btn-submit::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  transform: translate(-50%,-50%); transition: width 0.6s, height 0.6s;
}
.btn-submit:active::after { width: 300px; height: 300px; }
.form-hint { text-align: center; margin-top: 14px; font-size: 0.75rem; color: rgba(255,255,255,0.18); }

/* ══════════════════════════════════
   CASE STUDIES — Referenzen Cards
   ══════════════════════════════════ */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.case-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 22px; overflow: hidden; position: relative;
  opacity: 0; transform: translateY(60px);
  transition: all 0.8s cubic-bezier(.16,1,.3,1);
}
.case-card.is-visible { opacity: 1; transform: translateY(0); }
.case-card:hover { border-color: rgba(37,99,235,0.12); box-shadow: 0 24px 60px rgba(0,0,0,0.3); transform: translateY(-6px); }

/* Image slider */
.case-card__images { position: relative; height: 240px; overflow: hidden; }
.case-card__images img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0;
  transition: opacity 0.6s ease, transform 8s ease-out;
}
.case-card__images img:nth-child(2) { opacity: 0; }
.case-card:hover .case-card__images img:nth-child(1) { opacity: 0; }
.case-card:hover .case-card__images img:nth-child(2) { opacity: 1; }
.case-card:hover .case-card__images img { transform: scale(1.04); }

/* Badge */
.case-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 12px; border-radius: 100px; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.case-card__badge--repair { background: rgba(37,99,235,0.2); color: #93c5fd; border: 1px solid rgba(37,99,235,0.2); }
.case-card__badge--total { background: rgba(239,68,68,0.2); color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); }

/* Card body */
.case-card__body { padding: 24px; }
.case-card__vehicle { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #3b82f6; margin-bottom: 6px; }
.case-card__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.3; }

/* Stats — unified structure */
.case-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.case-card__stat, .case-stat {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px; padding: 12px 14px; text-align: center;
}
.case-card__stat-value, .case-stat__value { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.case-card__stat-label, .case-stat__label { font-size: 0.65rem; color: rgba(255,255,255,0.28); margin-top: 2px; }
.case-stat--highlight .case-stat__value { color: #60a5fa; }

/* Review inside card */
.case-card__review {
  padding: 18px; border-radius: 12px;
  background: rgba(37,99,235,0.04); border: 1px solid rgba(37,99,235,0.05);
}
.case-card__review-stars { display: flex; gap: 2px; margin-bottom: 8px; color: #3b82f6; }
.case-card__review-text { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-style: italic; margin-bottom: 8px; }
.case-card__review-author { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.case-card__review-src { font-size: 0.62rem; color: rgba(255,255,255,0.18); }

@media (max-width:1024px) { .case-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ── CTA ── */
.cta-final {
  padding: 140px 0; text-align: center; position: relative; overflow: hidden;
  background: #060a12;
}
.cta-final__glow {
  position: absolute; top: 50%; left: 50%; width: 80vw; max-width: 800px; height: 80vw; max-height: 800px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 65%); pointer-events: none;
}
.cta-final__title {
  font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; color: #fff;
  letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 16px;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(.16,1,.3,1);
}
.cta-final__text {
  font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 460px; margin: 0 auto 40px;
  line-height: 1.7; position: relative; z-index: 1;
  opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(.16,1,.3,1) 0.1s;
}
.cta-final__btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(.16,1,.3,1) 0.2s;
}
.cta-final.is-visible .cta-final__title,
.cta-final.is-visible .cta-final__text,
.cta-final.is-visible .cta-final__btns { opacity: 1; transform: translateY(0); }
.btn-blue {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px;
  border-radius: 100px; font-size: 0.92rem; font-weight: 600;
  background: #2563eb; color: #fff;
  text-decoration: none; border: none; transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.btn-blue:hover { background: #1d4ed8; transform: translateY(-3px); box-shadow: 0 20px 50px rgba(37,99,235,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px;
  border-radius: 100px; font-size: 0.92rem; font-weight: 600;
  background: transparent; color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08); text-decoration: none;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); transform: translateY(-3px); }

/* ── FOOTER ── */
.foot { background: #060a12; padding: 72px 0 36px; border-top: 1px solid rgba(255,255,255,0.04); }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.foot h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.foot a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.foot a:hover { color: #60a5fa; }
.foot__brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.9; }
.foot__brand img { width: 160px; height: auto; margin-bottom: 16px; opacity: 0.5; }
.foot__links { display: flex; flex-direction: column; gap: 10px; }
.foot__bottom {
  margin-top: 56px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(255,255,255,0.18);
}
.foot__bottom a { font-size: 0.72rem; color: rgba(255,255,255,0.18); }
.foot__bottom a:hover { color: #60a5fa; }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: all 0.4s cubic-bezier(.16,1,.3,1); text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.4); }

.magnetic { transition: transform 0.4s cubic-bezier(.16,1,.3,1); }

/* ── GRAIN ── */
.grain {
  position: fixed; inset: 0; z-index: 99998; pointer-events: none; opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}

/* ── HEXAGON GRID BACKGROUND ── */
.hex-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.hex-bg__grid {
  position: absolute; inset: -60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='194'%3E%3Cpath d='M56 0 L112 33.5 L112 100.5 L56 134 L0 100.5 L0 33.5Z' fill='none' stroke='rgba(37,99,235,0.06)' stroke-width='1'/%3E%3Cpath d='M56 60 L112 93.5 L112 160.5 L56 194 L0 160.5 L0 93.5Z' fill='none' stroke='rgba(37,99,235,0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 112px 194px;
  opacity: 0;
  animation: hexFadeIn 3s ease forwards;
}

/* Floating accent hexagons — large, blurred, parallax-moved by JS */
.hex-bg__accent {
  position: absolute;
  width: 300px; height: 300px;
  opacity: 0;
  animation: hexFloat 20s ease-in-out infinite, hexFadeIn 2s ease forwards;
}
.hex-bg__accent svg { width: 100%; height: 100%; }

.hex-bg__accent--1 { top: 8%; right: -4%; animation-delay: 0s; }
.hex-bg__accent--2 { top: 45%; left: -6%; width: 220px; height: 220px; animation-delay: -7s; }
.hex-bg__accent--3 { bottom: 10%; right: 8%; width: 180px; height: 180px; animation-delay: -13s; }
.hex-bg__accent--4 { top: 25%; left: 35%; width: 260px; height: 260px; animation-delay: -4s; }

/* ── Article / Ratgeber Styles ── */
.article {
  max-width: 720px; margin: 0 auto;
  padding: calc(var(--header-height, 80px) + 48px) var(--spacing-lg, 24px) 80px;
  position: relative; z-index: 1;
}
.article__back {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 500;
  margin-bottom: 32px; transition: color 0.3s;
}
.article__back:hover { color: #60a5fa; }
.article__meta {
  font-size: 0.8rem; color: rgba(255,255,255,0.3); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 16px;
}
.article__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800;
  color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 24px;
}
.article__intro {
  font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 40px;
  border-left: 3px solid #2563eb; padding-left: 20px;
}
.article h2 {
  font-size: 1.4rem; font-weight: 700; color: #fff;
  margin: 48px 0 16px; letter-spacing: -0.02em;
}
.article p {
  font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 20px;
}
.article ul, .article ol {
  margin: 0 0 24px 0; padding-left: 24px;
}
.article li {
  color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 8px; font-size: 1rem;
}
.article li::marker { color: #3b82f6; }
.article strong { color: rgba(255,255,255,0.85); }
.article__tip {
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.12);
  border-radius: 16px; padding: 24px 28px; margin: 32px 0;
}
.article__tip p { color: rgba(255,255,255,0.6); margin: 0; }
.article__cta {
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.04));
  border: 1px solid rgba(37,99,235,0.15); border-radius: 20px;
  padding: 40px; text-align: center; margin: 48px 0 0;
}
.article__cta h3 { font-size: 1.3rem; margin-bottom: 12px; }
.article__cta p { color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.article__cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #2563eb; color: #fff; padding: 14px 32px; border-radius: 12px;
  font-size: 1rem; font-weight: 600; transition: all 0.3s;
}
.article__cta-btn:hover {
  background: #1d4ed8; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.3);
}

@keyframes hexFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(3deg); }
  66% { transform: translateY(15px) rotate(-2deg); }
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width:1024px) {
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid--3 { grid-template-columns: 1fr 1fr; }
  .srv-grid--5 { grid-template-columns: repeat(3,1fr); }
  .srv-grid--2 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__img,.split__copy { transform: none; opacity: 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  body,a,button,input,textarea,select { cursor: auto; }
  .cursor-dot,.cursor-ring { display: none !important; }

  /* Header Mobile */
  .header__logo img { width: 140px !important; }
  .header.is-scrolled .header__logo img { width: 125px !important; }
  .header__inner { min-height: 62px; }
  .header.is-scrolled .header__inner { min-height: 56px; }
  .header__phone { display: none !important; }
  .header__cta .btn { font-size: 0.7rem !important; padding: 8px 16px !important; }

  /* Mobile nav — full-screen dark glass */
  .header__nav {
    background: rgba(6,9,20,0.97) !important;
    backdrop-filter: blur(40px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(40px) saturate(1.5) !important;
    border-left: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: -30px 0 80px rgba(0,0,0,0.6) !important;
    width: min(320px, 90vw) !important; padding: 100px 0 40px !important;
    border-radius: 0 !important;
    flex-direction: column !important; gap: 0 !important;
  }
  .header__nav > a,
  .header__nav .nav-dropdown__trigger {
    font-size: 0.92rem !important; text-transform: none !important; letter-spacing: 0 !important;
    color: rgba(255,255,255,0.55) !important; padding: 14px 28px !important;
    border-radius: 0 !important; width: 100%; box-sizing: border-box;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: all 0.25s !important;
  }
  .header__nav > a:hover,
  .header__nav .nav-dropdown:hover .nav-dropdown__trigger,
  .header__nav .nav-dropdown.open .nav-dropdown__trigger {
    color: #fff !important;
    background: rgba(37,99,235,0.08) !important;
    padding-left: 34px !important;
  }

  /* Mobile dropdown — inline expand */
  .nav-dropdown__menu {
    position: static !important; transform: none !important;
    background: rgba(255,255,255,0.02) !important;
    border: none !important; border-radius: 0 !important;
    box-shadow: none !important; backdrop-filter: none !important;
    padding: 0 !important; min-width: auto !important;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.16,1,.3,1), opacity 0.3s !important;
    opacity: 0 !important; visibility: visible !important;
    pointer-events: auto !important;
  }
  .nav-dropdown__menu::before { display: none; }
  .nav-dropdown.open .nav-dropdown__menu {
    max-height: 600px; opacity: 1 !important;
  }
  .nav-dropdown__menu a {
    padding: 11px 28px 11px 44px !important; font-size: 0.85rem !important;
    border-radius: 0 !important; opacity: 1 !important; transform: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.02);
  }
  .nav-dropdown__menu a:hover {
    padding-left: 50px !important;
  }
  .nav-dropdown__divider { margin: 2px 28px !important; }

  /* Mobile CTA in nav */
  .header__nav::after {
    content: ''; display: block; height: 1px; margin: 16px 28px;
    background: linear-gradient(90deg, rgba(37,99,235,0.3), transparent);
  }

  /* Hero — grösserer, hellerer Text */
  .hero-cinema__content { text-align: center; }
  .hero-cinema__buttons { justify-content: center; }
  .hero-cinema__scroll { display: none; }
  .hero-cinema__eyebrow { font-size: 0.85rem !important; color: rgba(255,255,255,0.7) !important; }
  .hero-cinema__title { font-size: clamp(2.2rem, 9vw, 3.4rem) !important; }
  .hero-cinema__desc { font-size: 1.05rem !important; color: rgba(255,255,255,0.75) !important; line-height: 1.7 !important; }
  .hero-cinema__overlay {
    background:
      radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.06) 0%, transparent 55%),
      linear-gradient(180deg, rgba(6,10,18,0.5) 0%, rgba(6,10,18,0.02) 30%, rgba(6,10,18,0.95) 100%) !important;
  }
  .hero-cinema.is-loaded .hero-cinema__media video,
  .hero-cinema.is-loaded .hero-cinema__media img { opacity: 0.4 !important; }

  /* Showcase */
  .showcase__img-wrap img { height: 40vh; }
  .showcase__img-wrap img,
  .split__img img,
  .rev-showcase img { filter: none; }
  .showcase__caption-title { font-size: 1.1rem !important; }

  /* Slogan */
  .slogan-area { padding: 100px 20px !important; }
  .slogan-area__brand { font-size: clamp(2.5rem, 12vw, 6rem); }
  .slogan-area__lines { font-size: clamp(1rem, 4.5vw, 1.6rem) !important; }
  .slogan-area__sub { font-size: 0.85rem !important; color: rgba(255,255,255,0.6) !important; }

  /* Stats — heller */
  .stats-bar { padding: 48px 0; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__item:nth-child(2)::after { display: none; }
  .stats-bar__num { font-size: 1.6rem !important; }
  .stats-bar__label { color: rgba(255,255,255,0.6) !important; font-size: 0.72rem !important; }

  /* Sektionen */
  .sec { padding: 80px 0; }
  .sec__eyebrow { font-size: 0.72rem !important; color: #60a5fa !important; }
  .sec__heading { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .sec__desc { font-size: 0.95rem !important; color: rgba(255,255,255,0.7) !important; line-height: 1.7 !important; }

  /* Service Cards — mehr Kontrast */
  .srv-grid, .srv-grid--2, .srv-grid--3, .srv-grid--5 { grid-template-columns: 1fr !important; }
  .srv-card { padding: 28px 22px !important; }
  .srv-card__title { font-size: 1.1rem !important; }
  .srv-card__text { font-size: 0.9rem !important; color: rgba(255,255,255,0.7) !important; line-height: 1.7 !important; }

  /* Prozess */
  .proc-step { gap: 18px; }
  .proc-flow__line-bg,.proc-flow__line { left: 20px; }
  .proc-step__body h3 { font-size: 1.05rem !important; }
  .proc-step__body p { font-size: 0.9rem !important; color: rgba(255,255,255,0.7) !important; }

  /* Split / Warum ich */
  .split__copy .sec__desc { font-size: 0.95rem !important; color: rgba(255,255,255,0.7) !important; }
  .split__list li { font-size: 0.9rem !important; color: rgba(255,255,255,0.75) !important; }

  /* Reviews — lesbar */
  .rev-grid { grid-template-columns: 1fr; }
  .rev-card__text { font-size: 0.9rem !important; color: rgba(255,255,255,0.7) !important; }
  .rev-card__name { font-size: 0.85rem !important; }

  /* Referenzen */
  .case-card__title { font-size: 1rem !important; }
  .case-card__review-text { font-size: 0.82rem !important; color: rgba(255,255,255,0.7) !important; }

  /* FAQ — heller */
  .faq-v3__q { font-size: 0.95rem !important; color: rgba(255,255,255,0.7) !important; padding: 20px 0 !important; }
  .faq-v3__a p { font-size: 0.88rem !important; color: rgba(255,255,255,0.7) !important; }

  /* Kontakt */
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info,.contact-form-wrap { transform: none; opacity: 1; }
  .contact-info__title { font-size: 1.5rem !important; }
  .contact-info__desc { font-size: 0.95rem !important; color: rgba(255,255,255,0.7) !important; }
  .contact-detail__label { color: rgba(255,255,255,0.65) !important; }
  .contact-detail__value, .contact-detail__value a { font-size: 0.95rem !important; }

  /* CTA */
  .cta-final { padding: 100px 20px; }
  .cta-final__text { font-size: 0.95rem !important; color: rgba(255,255,255,0.65) !important; }

  /* Buttons — grösser auf Mobile */
  .btn-hero { padding: 16px 28px !important; font-size: 0.95rem !important; }
  .btn-blue { padding: 16px 32px !important; font-size: 0.95rem !important; }
  .btn-ghost { padding: 16px 28px !important; font-size: 0.95rem !important; }
  .btn-submit { width: 100%; justify-content: center; padding: 18px !important; font-size: 1rem !important; }

  /* Footer */
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .foot__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .foot__brand p { font-size: 0.85rem !important; color: rgba(255,255,255,0.65) !important; line-height: 1.8 !important; }

  /* WhatsApp Float grösser */
  .wa-float { width: 58px; height: 58px; bottom: 20px; right: 20px; }
}
/* ══════════════════════════════════
   DARK OVERRIDES — Base Elements
   from style.css light theme → dark
   ══════════════════════════════════ */

/* Body offset handled by style.css, premium overrides background */
body { background: #0a0f1a; color: #c8cdd6; }

/* Fix: Override style.css fade-in — content must never be hidden.
   Use CSS animation instead of JS-dependent IntersectionObserver */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.8s ease forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.8s ease forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

/* Typography: headings white instead of navy */
h1, h2, h3, h4, h5, h6 { color: #fff; }

/* Section backgrounds — dark variants */
.section--navy { background: #080c16; }

/* Section labels & subtitles */
.section-subtitle { color: rgba(255,255,255,0.5); }
.section--blue .section-label,
.section--navy .section-label { color: #60a5fa; }

/* Cards — see premium city section for full card styling */

/* Buttons — dark overrides */
.btn--white {
  background: #fff !important;
  color: #0f172a !important;
  border: 2px solid #fff !important;
}
.btn--white:hover {
  background: #e2e8f0 !important;
  border-color: #e2e8f0 !important;
}
.btn--outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.5) !important;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border-color: #fff !important;
}

/* Tables — dark */
table th {
  background: rgba(37,99,235,0.15);
  color: #fff;
}
table td {
  border-bottom-color: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
}
table tr:hover td {
  background: rgba(255,255,255,0.03);
}

/* Checklist — white text */
.checklist li { color: rgba(255,255,255,0.7); }
.checklist li::before { color: #3b82f6; }

/* Two-column — dark images */
.two-col img {
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.two-col img:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}

/* Breadcrumb — dark */
.breadcrumb {
  background: #0d1220;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-top: calc(var(--header-height) + 1rem);
  color: rgba(255,255,255,0.3);
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: #60a5fa; }
.breadcrumb__list li:not(:last-child)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

/* Scroll progress — premium version overrides style.css */
.scroll-progress {
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6, #60a5fa);
  z-index: 10001;
}

/* Process step — service pages */
.process-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.process-step:last-child { border-bottom: none; }
.process-step__number {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 1.5px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #60a5fa; flex-shrink: 0;
}
.process-step__content h3 { color: #fff; margin-bottom: 6px; }
.process-step__content p { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════
   DARK OVERRIDES — City Page Classes (Premium)
   ══════════════════════════════════════════════ */

/* ── City Hero — Cinematic Dark ── */
.city-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}
.city-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; z-index: -2;
  transform: scale(1.05);
  animation: cityHeroBgZoom 20s ease-in-out infinite alternate;
}
@keyframes cityHeroBgZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.city-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.7) 0%, rgba(6,10,18,0.4) 40%, rgba(6,10,18,0.85) 100%),
    linear-gradient(135deg, rgba(37,99,235,0.12) 0%, transparent 60%);
}
.city-hero__content { max-width: 720px; color: #fff; position: relative; }
.city-hero h1 {
  color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: var(--spacing-lg);
}
.city-hero p, .city-hero__text {
  font-size: var(--font-size-lg); color: rgba(255,255,255,0.6);
  margin-bottom: var(--spacing-xl); line-height: 1.7;
}
.city-hero__badge {
  display: inline-flex; align-items: center; gap: var(--spacing-xs);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; margin-bottom: var(--spacing-xl);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  color: #60a5fa; letter-spacing: 0.03em;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
  50% { box-shadow: 0 0 20px 4px rgba(37,99,235,0.12); }
}
.city-hero__checks {
  display: flex; flex-wrap: wrap; gap: 12px 24px; margin-bottom: var(--spacing-2xl);
}
.city-hero__check {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: var(--font-size-sm); color: rgba(255,255,255,0.75);
}
.city-hero__check i { color: #60a5fa; flex-shrink: 0; }
.city-hero__buttons { display: flex; flex-wrap: wrap; gap: var(--spacing-md); }
@media (max-width: 600px) {
  .city-hero { min-height: 100vh; min-height: 100dvh; }
  .city-hero__buttons { flex-direction: column; }
  .city-hero__buttons .btn { width: 100%; }
  .city-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ── City Trust Bar — Glass Stats ── */
.city-trust {
  background: rgba(13,18,32,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: var(--spacing-2xl) 0;
  position: relative;
}
.city-trust::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #2563eb, #60a5fa, #2563eb, transparent);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}
.city-trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl); text-align: center;
}
.city-trust__item {
  position: relative; padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.city-trust__item:hover {
  background: rgba(37,99,235,0.05);
  transform: translateY(-2px);
}
.city-trust__item strong, .city-trust__number {
  display: block; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  color: #60a5fa; line-height: 1.2;
  background: linear-gradient(135deg, #60a5fa, #93bbfc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.city-trust__item span, .city-trust__label {
  font-size: var(--font-size-sm); color: rgba(255,255,255,0.45);
  margin-top: 4px; display: block;
}
@media (max-width: 700px) {
  .city-trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-md); }
}

/* ── Pills — Interactive Tags ── */
.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: var(--spacing-xl); }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.025); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-full); font-size: var(--font-size-sm); font-weight: 600;
  text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.pill::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37,99,235,0.15), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.pill:hover::before { opacity: 1; }
.pill:hover {
  background: rgba(37,99,235,0.12); color: #fff;
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.2);
}
.pill i { color: #60a5fa; transition: transform 0.3s; }
.pill:hover i { transform: scale(1.15); }
a.pill { cursor: pointer; }

/* ── Accident Cards — Glass with Accent ── */
.accident-card {
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-xl); padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-xl) + 3px);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid #3b82f6;
  position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.accident-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0%;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  transition: height 0.6s cubic-bezier(.16,1,.3,1);
}
.accident-card:hover::before { height: 100%; }
.accident-card:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(37,99,235,0.06);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.035);
}
.accident-card__icon { margin-bottom: var(--spacing-sm); color: #3b82f6; font-size: 1.5rem; }
.accident-card h3, .accident-card__title { color: #fff; font-size: var(--font-size-lg); margin-bottom: var(--spacing-sm); font-weight: 700; }
.accident-card p, .accident-card__text { color: rgba(255,255,255,0.5); font-size: var(--font-size-sm); line-height: 1.7; }

/* ── Benefit Cards — Hover Glow ── */
.benefit-card {
  text-align: center; padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.03);
  border-color: rgba(37,99,235,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(37,99,235,0.05);
}
.benefit-card__icon {
  width: 64px; height: 64px; margin: 0 auto var(--spacing-md);
  background: rgba(37,99,235,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #3b82f6;
  border: 1px solid rgba(37,99,235,0.1);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.benefit-card:hover .benefit-card__icon {
  transform: scale(1.12) rotate(-5deg);
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  box-shadow: 0 0 40px rgba(37,99,235,0.35);
  border-color: transparent;
}
.benefit-card h3, .benefit-card__title { font-size: var(--font-size-base); margin-bottom: var(--spacing-xs); color: #fff; font-weight: 700; }
.benefit-card p, .benefit-card__text { font-size: var(--font-size-sm); color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── Process Cards — Premium Steps ── */
.process-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-xl); }
.process-card {
  text-align: center; padding: var(--spacing-2xl) var(--spacing-xl);
  background: rgba(255,255,255,0.02); border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: none; position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.process-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0; transition: opacity 0.5s;
}
.process-card:hover::before { opacity: 1; }
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 40px rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.15);
  background: rgba(255,255,255,0.035);
}
.process-card__number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: var(--font-size-xl); font-weight: 800;
  margin: 0 auto var(--spacing-lg);
  box-shadow: 0 4px 20px rgba(37,99,235,0.25);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.process-card:hover .process-card__number {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(37,99,235,0.45);
}
.process-card__title { color: #fff; font-weight: 700; margin-bottom: var(--spacing-sm); }
.process-card__text { color: rgba(255,255,255,0.5); line-height: 1.7; }
@media (max-width: 768px) { .process-cards { grid-template-columns: 1fr; } }

/* ── Service Cards (3 columns) — Premium Glass ── */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-xl); }
.service-card {
  background: rgba(255,255,255,0.02); border-radius: var(--radius-xl);
  padding: var(--spacing-2xl); box-shadow: none; text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37,99,235,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 30px rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.15);
}
.service-card__icon { font-size: 2.5rem; margin-bottom: var(--spacing-md); color: #3b82f6; }
@media (max-width: 768px) { .service-cards { grid-template-columns: 1fr; } }

/* ── Generic Card — Premium Dark ── */
.card {
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.05);
  padding: var(--spacing-xl);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.card::before {
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}
.card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37,99,235,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(37,99,235,0.05);
  border-color: rgba(37,99,235,0.15);
  background: rgba(255,255,255,0.03);
}
.card__icon {
  background: rgba(37,99,235,0.06); color: #3b82f6;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}
.card:hover .card__icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  border-color: transparent;
  box-shadow: 0 0 30px rgba(37,99,235,0.3);
}
.card__title { color: #fff; font-weight: 700; margin-bottom: var(--spacing-sm); }
.card__text { color: rgba(255,255,255,0.5); font-size: var(--font-size-sm); line-height: 1.7; }

/* ── CTA Banner — Premium Gradient ── */
.city-cta-banner {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
  animation: none; color: #fff; text-align: center;
  padding: var(--spacing-3xl) var(--spacing-lg); border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.city-cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 400px; height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.city-cta-banner h2 { color: #fff; position: relative; }
.city-cta-banner p { color: rgba(255,255,255,0.6); max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }

/* CTA Section (section--blue) — Enhanced */
.section--blue, .cta-section {
  background: linear-gradient(135deg, #0d1a3a 0%, #0a1028 50%, #0d1220 100%) !important;
  position: relative; overflow: hidden;
}
.section--blue::before, .cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 600px; height: 600px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { position: relative; }

/* CTA Section buttons */
.cta-section__buttons {
  display: flex; justify-content: center; gap: var(--spacing-md); flex-wrap: wrap; position: relative;
}
@media (max-width: 600px) {
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .cta-section__buttons .btn { width: 100%; }
  .city-cta-banner .btn { width: 100%; margin-left: 0 !important; margin-bottom: var(--spacing-sm); }
}

/* ── Reviews Trust — Premium Glass ── */
.reviews-trust { display: flex; flex-direction: column; gap: var(--spacing-lg); }
.reviews-trust__item {
  padding: var(--spacing-md) 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.reviews-trust__item:hover { padding-left: 8px; }
.reviews-trust__item:last-of-type { border-bottom: none; }
.reviews-trust__stars { color: #f59e0b; font-size: 1.5rem; margin-bottom: var(--spacing-xs); }
.reviews-trust__value {
  font-size: var(--font-size-2xl); font-weight: 800; color: #fff; line-height: 1.2;
}
.reviews-trust__label { font-size: var(--font-size-sm); color: rgba(255,255,255,0.4); margin-top: 2px; }
.reviews-image img {
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(37,99,235,0.05);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.reviews-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(37,99,235,0.08);
}

/* ── Two Column Layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-2xl); align-items: center; }
.two-col--center { align-items: center; }
.two-col img {
  border-radius: var(--radius-xl); width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.two-col img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col img { max-width: 400px; margin: 0 auto; }
}

/* ── Portrait Section — Premium Dark ── */
.portrait-section { display: grid; grid-template-columns: 300px 1fr; gap: var(--spacing-2xl); align-items: start; }
.portrait-section img {
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(37,99,235,0.05);
  width: 100%;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.portrait-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(37,99,235,0.08);
}
@media (max-width: 768px) {
  .portrait-section { grid-template-columns: 1fr; text-align: center; }
  .portrait-section img { max-width: 280px; margin: 0 auto; }
}

/* ── Coverage Table — Premium Dark ── */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.coverage-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.05);
}
.coverage-table thead th {
  background: rgba(37,99,235,0.08); color: #fff;
  padding: 14px 20px; font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.coverage-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}
.coverage-table tbody tr:hover { background: rgba(37,99,235,0.04); }
.coverage-table tbody tr:last-child { border-bottom: none; }
.coverage-table td {
  padding: 13px 20px; font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.coverage-table td:first-child { font-weight: 600; color: #fff; }
.coverage-table td a { color: #60a5fa; text-decoration: none; transition: color 0.3s; }
.coverage-table td a:hover { color: #93bbfc; }
.coverage-section table td:first-child { font-weight: 600; color: #fff; }
.coverage-section table td:last-child { color: #60a5fa; font-weight: 600; }

/* ── Checklist — Premium Dark ── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative; padding: 8px 0 8px 28px;
  color: rgba(255,255,255,0.7); font-size: var(--font-size-sm);
  line-height: 1.6;
}
.checklist li::before {
  content: '\2713'; position: absolute; left: 0; top: 8px;
  color: #3b82f6; font-weight: 700; font-size: 1rem;
}

/* ── Section Labels & Subtitles — Premium ── */
.section-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: #60a5fa;
  margin-bottom: var(--spacing-sm);
}

/* ── Section Gray — Dark Variant ── */
.section--gray {
  background: rgba(255,255,255,0.015) !important;
}

/* ── Grid 5 columns for benefit cards ── */
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid--5 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   DARK OVERRIDES — Service Page Classes
   ══════════════════════════════════ */

/* Service Hero — dark */
.service-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
  background: linear-gradient(135deg, #080c16 0%, #0d1220 50%, #0a0f1a 100%);
  color: #fff; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; top: 30%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.service-hero h1 { color: #fff; max-width: 800px; position: relative; }
.service-hero p { max-width: 700px; color: rgba(255,255,255,0.7); font-size: var(--font-size-lg); position: relative; }

/* Service Content — dark */
.service-content {
  padding: var(--spacing-3xl) 0;
  background: #0a0f1a;
  color: rgba(255,255,255,0.75);
}
.service-content h2 { margin-top: var(--spacing-2xl); color: #fff; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { color: rgba(255,255,255,0.72); }
.service-content ul { margin-bottom: var(--spacing-lg); }
.service-content ul li { position: relative; padding-left: 1.5rem; margin-bottom: var(--spacing-sm); color: rgba(255,255,255,0.72); }
.service-content strong { color: rgba(255,255,255,0.9); }
.service-content ul li::before { content: '\2713'; position: absolute; left: 0; color: #3b82f6; font-weight: 700; }

/* Highlight Box — dark */
.service-content .highlight-box {
  background: rgba(37,99,235,0.06); border-left: 3px solid #3b82f6;
  padding: var(--spacing-lg); border-radius: var(--radius-md);
  margin: var(--spacing-xl) 0; position: relative; overflow: hidden;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.service-content .highlight-box::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  opacity: 0; transition: opacity 0.3s;
}
.service-content .highlight-box:hover {
  transform: translateX(4px); background: rgba(37,99,235,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.service-content .highlight-box:hover::before { opacity: 1; }
.service-content .highlight-box p { margin: 0; color: rgba(255,255,255,0.7); }

/* Comparison Table — dark */
.comparison-table {
  margin: var(--spacing-xl) 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}
.comparison-table table { margin: 0; }

/* Service CTA — dark gradient */
.service-cta {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
  animation: none; color: #fff; text-align: center;
  padding: var(--spacing-3xl) var(--spacing-xl); border-radius: var(--radius-xl);
  margin: var(--spacing-3xl) 0; position: relative; overflow: hidden;
}
.service-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 400px; height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.service-cta h2 { color: #fff; position: relative; }
.service-cta p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto var(--spacing-xl); position: relative; }

/* Service Sidebar — dark */
.service-sidebar {
  position: sticky; top: calc(var(--header-height) + var(--spacing-lg));
}
.service-sidebar__card {
  background: rgba(255,255,255,0.02); border-radius: var(--radius-xl);
  padding: var(--spacing-xl); margin-bottom: var(--spacing-xl);
  border: 1px solid rgba(255,255,255,0.05); box-shadow: none;
  animation: float 6s ease-in-out infinite;
}
.service-sidebar__card:nth-child(2) { animation-delay: -3s; }
.service-sidebar__card h4 { color: #fff; margin-bottom: var(--spacing-md); }
.service-sidebar__card p { color: rgba(255,255,255,0.65); }
.service-sidebar__card .btn { width: 100%; margin-bottom: var(--spacing-sm); }
.service-sidebar__card .btn:last-child { margin-bottom: 0; }
.service-sidebar__card .footer__links a { color: rgba(255,255,255,0.5); }
.service-sidebar__card .footer__links a:hover { color: #60a5fa; }

/* Service Layout — dark */
.service-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: var(--spacing-3xl); align-items: start;
}
@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar__card { animation: none; }
}

/* Review cards — dark */
.review-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: none;
}
.review-card:hover {
  border-color: rgba(37,99,235,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.review-card__stars { color: #3b82f6; }
.review-card__text { color: rgba(255,255,255,0.6); }
.review-card__author { color: #fff; }
.review-card__source { color: rgba(255,255,255,0.22); }

/* FAQ items — dark */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); border-top-color: rgba(255,255,255,0.05); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.faq-question {
  color: rgba(255,255,255,0.75);
  background: none;
}
.faq-question:hover { color: #60a5fa; }
.faq-answer p { color: rgba(255,255,255,0.68); }

/* ══════════════════════════════════
   RESPONSIVE — DARK OVERRIDES
   ══════════════════════════════════ */
/* ══════════════════════════════════
   MOBILE RESPONSIVE — Full Overrides
   ══════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-sidebar__card { animation: none; }
  .city-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .portrait-section { grid-template-columns: 1fr; text-align: center; }
  .portrait-section img { max-width: 320px; margin: 0 auto; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Text readability — boosted for mobile */
  .city-hero p, .city-hero__text { color: rgba(255,255,255,0.8) !important; }
  .city-hero__check { color: rgba(255,255,255,0.85) !important; }
  .city-trust__item span, .city-trust__label { color: rgba(255,255,255,0.65) !important; }
  .city-trust { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .benefit-card__text, .benefit-card p { color: rgba(255,255,255,0.75) !important; }
  .process-card__text, .accident-card__text, .accident-card p { color: rgba(255,255,255,0.75) !important; }
  .service-content p { color: rgba(255,255,255,0.75) !important; }
  .service-content li { color: rgba(255,255,255,0.75) !important; }
  .service-content strong { color: rgba(255,255,255,0.9) !important; }
  .service-hero p { color: rgba(255,255,255,0.7) !important; }
  .section-subtitle { color: rgba(255,255,255,0.65) !important; }
  .checklist li { color: rgba(255,255,255,0.8) !important; }
  .card__text { color: rgba(255,255,255,0.7) !important; }
  .reviews-trust__label { color: rgba(255,255,255,0.65) !important; }
  .faq-question { color: rgba(255,255,255,0.8) !important; }
  .faq-answer p { color: rgba(255,255,255,0.7) !important; }
  .service-content .highlight-box p { color: rgba(255,255,255,0.85) !important; }
  .coverage-table td { color: rgba(255,255,255,0.75) !important; }
  .coverage-table th { color: rgba(255,255,255,0.9) !important; }

  /* Layouts → single column */
  .two-col { grid-template-columns: 1fr; }
  .two-col img { max-width: 100%; }
  .grid--2 { grid-template-columns: 1fr; }
  .process-cards { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }

  /* Table */
  .coverage-table { font-size: 0.85rem; }
  .coverage-table td, .coverage-table th { padding: 10px 12px; }
  .table-responsive { margin: 0 calc(var(--spacing-lg) * -1); padding: 0 var(--spacing-lg); }

  /* Sections */
  .section { padding: var(--spacing-2xl) 0; }

  /* Hero */
  .city-hero { min-height: 90vh; min-height: 90dvh; padding-top: calc(var(--header-height) + 20px); }
  .city-hero h1 { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
  .city-hero__badge { font-size: 0.72rem; padding: 6px 14px; }
  .city-hero__checks { gap: 8px 16px; }
  .city-hero__check { font-size: 0.8rem; }

  /* Decorative elements — hide overflow */
  .city-cta-banner::before, .section--blue::before, .cta-section::before,
  .service-hero::before, .service-cta::before { display: none; }

  /* CTA sections */
  .cta-section__buttons { flex-direction: column; align-items: stretch; }
  .cta-section__buttons .btn { width: 100%; text-align: center; }

  /* Service CTA buttons (plain div wrapper) */
  .service-cta > div { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
  .service-cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Service pages — full mobile override ── */
  .service-hero { padding: calc(var(--header-height) + var(--spacing-lg)) 0 var(--spacing-lg); min-height: auto; }
  .service-hero h1 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); margin-bottom: 0.5rem; }
  .service-hero p { font-size: 0.95rem; line-height: 1.6; }

  .service-content { padding: var(--spacing-lg) 0; }
  .service-content h2 { font-size: clamp(1.15rem, 4.5vw, 1.45rem); word-break: break-word; margin-top: var(--spacing-xl); }
  .service-content h3 { font-size: clamp(1rem, 4vw, 1.2rem); }
  .service-content p { font-size: 0.92rem; line-height: 1.7; }
  .service-content ul li { font-size: 0.92rem; line-height: 1.6; margin-bottom: 0.4rem; }
  .service-content section { padding: var(--spacing-md) 0; }

  /* Comparison table — responsive card layout on mobile */
  .comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; border: none; box-shadow: none; }
  .comparison-table table { min-width: 0; width: 100%; font-size: 0.82rem; }
  .comparison-table th { font-size: 0.75rem; padding: 10px 8px; white-space: nowrap; }
  .comparison-table td { padding: 10px 8px; font-size: 0.82rem; line-height: 1.4; }

  /* Process steps — compact on mobile */
  .process-step { gap: var(--spacing-sm); margin-bottom: var(--spacing-lg); }
  .process-step__number { width: 40px; height: 40px; font-size: 0.95rem; flex-shrink: 0; }
  .process-step__content h3 { font-size: 0.95rem; }
  .process-step__content p { font-size: 0.88rem; line-height: 1.6; }

  /* Highlight box — no hover shift on mobile */
  .service-content .highlight-box { padding: var(--spacing-md); }
  .service-content .highlight-box:hover { transform: none; }
  .service-content .highlight-box p { font-size: 0.92rem; }

  /* Checklist — compact */
  .checklist li { font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.5rem; }

  /* Sidebar cards */
  .service-sidebar__card { padding: var(--spacing-lg); }
  .service-sidebar__card h3 { font-size: 1.05rem; }
  .service-sidebar__card p { font-size: 0.88rem; }

  /* Service CTA — compact */
  .service-cta { padding: var(--spacing-xl) var(--spacing-md); margin: var(--spacing-xl) 0; border-radius: var(--radius-lg); }
  .service-cta h2 { font-size: clamp(1.15rem, 5vw, 1.4rem); }
  .service-cta p { font-size: 0.9rem; }

  /* FAQ on service pages */
  .faq-item .faq-question { font-size: 0.9rem; padding: 14px 0; }
  .faq-item .faq-answer p { font-size: 0.88rem; line-height: 1.65; }

  /* General typography override for mobile */
  h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  p { font-size: 0.95rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.78rem; padding: var(--spacing-sm) 0; }

  /* Slogan */
  .slogan-area__brand { font-size: clamp(2rem, 11vw, 4rem); }

  /* Stats bar */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 var(--spacing-md); }
  .city-hero { min-height: 100vh; min-height: 100dvh; }
  .city-hero h1 { font-size: 1.4rem; }
  .city-hero__text { font-size: 0.95rem; }
  .city-hero__buttons .btn { font-size: 0.9rem; padding: 12px 20px; }
  .city-trust__grid { gap: var(--spacing-sm); }
  .city-trust__item { padding: var(--spacing-sm); }
  .pills { gap: 6px; }
  .pill { padding: 8px 14px; font-size: 0.78rem; }
  .benefit-card { padding: var(--spacing-md); }
  .process-card { padding: var(--spacing-lg) var(--spacing-md); }
  .accident-card { padding: var(--spacing-md); }
  .card { padding: var(--spacing-md); }
  .faq-question { font-size: 0.9rem; padding: 14px 0; }
  .coverage-table { font-size: 0.78rem; }
  .coverage-table td, .coverage-table th { padding: 8px 10px; }
  .grid--5 { grid-template-columns: 1fr; }
  .slogan-area__brand { font-size: clamp(1.8rem, 10vw, 3rem); }
  .stats-bar__num { font-size: 1.5rem; }

  /* Service pages — small phones */
  .service-hero h1 { font-size: 1.25rem; }
  .service-hero p { font-size: 0.9rem; }
  .service-content h2 { font-size: 1.1rem; }
  .service-content p { font-size: 0.88rem; }
  .service-content ul li { font-size: 0.88rem; }
  .service-cta { padding: var(--spacing-lg) var(--spacing-md); margin: var(--spacing-lg) 0; }
  .service-cta h2 { font-size: 1.1rem; }
  .service-cta p { font-size: 0.85rem; }
  .comparison-table th { font-size: 0.7rem; padding: 8px 6px; }
  .comparison-table td { font-size: 0.78rem; padding: 8px 6px; }
  .process-step__number { width: 36px; height: 36px; font-size: 0.85rem; }
  .process-step__content h3 { font-size: 0.9rem; }
  .process-step__content p { font-size: 0.84rem; }
  .checklist li { font-size: 0.85rem; }
  .service-content .highlight-box { padding: var(--spacing-sm); }
  .service-content .highlight-box p { font-size: 0.85rem; }
  .faq-item .faq-question { font-size: 0.85rem; }
  .faq-item .faq-answer p { font-size: 0.84rem; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
}

@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .cursor-dot,.cursor-ring { display: none !important; }
}
