/* ============================================================================
   Carimpact — Editorial Premium
   Light base with dark signature sections
   ========================================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Light palette */
  --bg: #fbfbfa;           /* warm off-white */
  --bg-1: #ffffff;         /* cards / surfaces */
  --bg-2: #f4f4f1;         /* subtle alt */
  --bg-3: #ecece8;
  --border: #e6e5e1;
  --border-strong: #d3d2cd;
  --text: #0b0c0f;
  --text-2: #494b52;
  --text-3: #7a7d86;
  --text-dim: #adafb6;

  /* Dark palette (hero, CTA, footer) */
  --dark: #0a0b0f;
  --dark-1: #0f1115;
  --dark-2: #16181e;
  --dark-border: #22242b;
  --dark-border-strong: #2f323a;
  --dark-text: #f5f6f8;
  --dark-text-2: #b6b9c2;
  --dark-text-3: #7a7e89;

  /* Mint/Teal — aligned with tekimpact.de */
  --brand: #4FB39B;
  --brand-2: #3D9885;
  --brand-3: #6FC9B0;
  --brand-glow: rgba(79, 179, 155, 0.18);
  --brand-dim: rgba(79, 179, 155, 0.08);

  /* Secondary blue (used in tekimpact-style gradient stripe) */
  --accent-blue: #5BA8E8;
  --accent-blue-2: #4A89DC;

  --gold: #b08a4f;

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1280px;
  --container-narrow: 960px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  overflow-x: hidden;
  /* Force light-themed native dropdowns + form controls even in OS dark mode */
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover { color: var(--brand); }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

::selection { background: var(--brand); color: #fff; }

/* Layout utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.section--alt { background: var(--bg-2); }

.section--dark { background: var(--dark); color: var(--dark-text); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--dark-text); }
.section--dark .section-head__lead { color: var(--dark-text-2); }

/* Eyebrow — pill-shaped badge style (tekimpact-aligned) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: var(--brand-dim);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* Section-label variant (with leading vertical bar) — used inside section-head */
.section-head .eyebrow,
.eyebrow--label {
  background: transparent;
  padding: 0;
  color: var(--brand-2);
  position: relative;
}

.section-head .eyebrow::before,
.eyebrow--label::before {
  content: "";
  width: 3px;
  height: 14px;
  background: var(--accent-blue-2);
  border-radius: 2px;
  display: inline-block;
}

.section--dark .eyebrow {
  color: var(--brand-3);
  background: rgba(111, 201, 176, 0.12);
}
.section--dark .section-head .eyebrow,
.section--dark .eyebrow--label {
  background: transparent;
  color: var(--brand-3);
}
.section--dark .section-head .eyebrow::before,
.section--dark .eyebrow--label::before {
  background: var(--accent-blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(79, 179, 155, 0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -12px rgba(79, 179, 155, 0.7), inset 0 1px 0 rgba(255,255,255,0.22);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--text);
  color: var(--text);
  background: var(--bg-1);
}

.section--dark .btn--ghost {
  color: var(--dark-text);
  border-color: var(--dark-border-strong);
}

.section--dark .btn--ghost:hover {
  background: var(--dark-2);
  color: var(--dark-text);
  border-color: var(--dark-text);
}

/* WhatsApp button — branded green, always visible on any background */
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px -10px rgba(37, 211, 102, 0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn--whatsapp:hover {
  background: #1faa50;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -12px rgba(37, 211, 102, 0.7), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn--lg { padding: 18px 36px; font-size: 15px; }

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Header ----------------------------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.35s var(--ease);
  background: rgba(251, 251, 250, 0);
}

/* Tekimpact-style gradient stripe on top of header */
.header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--accent-blue-2) 0%,
    var(--accent-blue) 35%,
    var(--brand-3) 65%,
    var(--brand) 100%);
  z-index: 1;
}

.header.is-scrolled {
  background: rgba(251, 251, 250, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

/* Dark header variant for hero page (on dark hero background) */
.header.on-dark {
  background: transparent;
}

.header.on-dark.is-scrolled {
  background: rgba(10, 11, 15, 0.82);
  border-bottom: 1px solid var(--dark-border);
}

.header.on-dark .nav a { color: var(--dark-text-2); }
.header.on-dark .nav a:hover, .header.on-dark .nav a.is-active {
  color: var(--dark-text);
  background: var(--dark-2);
}
.header.on-dark .menu-toggle {
  background: var(--dark-2);
  border-color: var(--dark-border);
}
.header.on-dark .menu-toggle span,
.header.on-dark .menu-toggle span::before,
.header.on-dark .menu-toggle span::after { background: var(--dark-text); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}

.brand__logo {
  display: block;
  height: 48px;
  width: auto;
  transition: opacity 0.2s var(--ease);
}

/* On light header, show dark variant */
.brand__logo--light { display: none; }
.brand__logo--dark { display: block; }

/* On dark variants, flip */
.header.on-dark .brand__logo--light,
.section--dark .brand__logo--light,
.footer .brand__logo--light { display: block; }
.header.on-dark .brand__logo--dark,
.section--dark .brand__logo--dark,
.footer .brand__logo--dark { display: none; }

.footer .brand__logo { height: 64px; }

.brand:hover { color: var(--text); }
.brand:hover .brand__logo { opacity: 0.85; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.nav a:hover, .nav a.is-active {
  color: var(--text);
  background: var(--bg-2);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: all 0.3s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Hero --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  color: var(--text);
}

/* Light hero background — tekimpact-style, soft mint wash */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(79, 179, 155, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(91, 168, 232, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(79, 179, 155, 0.15) 0%, transparent 55%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 72px;
  row-gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

/* Hero content (left column, text) */
.hero__content {
  text-align: left;
}

/* Hero visual (right column, car image) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__car-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow:
    0 60px 120px -40px rgba(0, 0, 0, 0.22),
    0 20px 40px -20px rgba(79, 179, 155, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.7s var(--ease);
}

.hero__car-img:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) translateY(-6px);
}

/* Meta row spans both columns */
.hero__meta {
  grid-column: 1 / -1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--text);
}

.hero__title .gradient {
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 60%, var(--brand-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}

.hero__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  max-width: 540px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero__meta-item {
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero__meta-item:last-child { border-right: none; }

.hero__meta-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 6px;
}

.hero__meta-value .brand { color: var(--brand); }

.hero__meta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

.hero__scroll {
  display: none; /* hidden — the car image is the focal point now */
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--dark-text-3);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--dark-text-3), transparent);
  animation: scroll-pulse 2s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Section head */
.section-head {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-head--left {
  text-align: left;
  margin-inline: 0;
}

.section-head__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-head__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto;
}

.section-head--left .section-head__lead {
  margin-inline: 0;
}

/* Services grid (light bg) */
.services-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 20px 40px -20px rgba(0, 0, 0, 0.05);
}

.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s var(--ease);
}

.service-card:hover { background: var(--bg); }

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-dim), transparent);
  border: 1px solid rgba(31, 111, 163, 0.18);
  margin-bottom: 24px;
  color: var(--brand);
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-card__icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(31,111,163,0.12), rgba(31,111,163,0.04));
  border-color: var(--brand);
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card__title {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__text { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; }

.service-card__number {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--bg-1);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.08);
}

.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--brand);
  transition: width 0.4s var(--ease);
}

.feature:hover::before { width: 100%; }

.feature__num {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
}

.feature__title { font-size: 1.25rem; margin-bottom: 12px; font-weight: 500; }
.feature__text { color: var(--text-2); font-size: 0.95rem; }

/* Section--dark variants for features */
.section--dark .feature {
  background: var(--dark-1);
  border-color: var(--dark-border);
}

.section--dark .feature:hover {
  background: var(--dark-2);
  border-color: var(--dark-border-strong);
}

.section--dark .feature__title { color: var(--dark-text); }
.section--dark .feature__text { color: var(--dark-text-2); }
.section--dark .feature__num { color: var(--brand-3); }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-1) 100%);
  border: 1px solid var(--dark-border);
}

.split__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, var(--brand-glow), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(176, 138, 79, 0.1), transparent 50%);
}

.split__stat {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
}

.split__stat-value {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff 0%, var(--brand-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 16px;
}

.split__stat-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-text-2);
  max-width: 260px;
  line-height: 1.5;
}

.split__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.split__content p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.split__content p:last-of-type { margin-bottom: 32px; }

/* Contact pillars */
.contact-pillars {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  padding: 40px 32px;
  background: var(--bg-1);
  transition: background 0.3s var(--ease);
}

.pillar:hover { background: var(--bg); }

.pillar__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.pillar__title {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.pillar__text {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pillar__link {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease);
}

.pillar__link:hover { gap: 14px; }

/* CTA — always dark for drama */
.cta {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, #ecf7f2 100%);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, var(--brand-glow), transparent 60%);
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

.cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.cta__lead {
  color: var(--text-2);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* Footer — dark */
.footer {
  background: var(--dark);
  color: var(--dark-text-2);
  padding: 80px 0 40px;
}

.footer h1, .footer h2, .footer h3, .footer h4 { color: var(--dark-text); }

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--dark-border);
}

.footer__brand p {
  color: var(--dark-text-2);
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 340px;
  line-height: 1.6;
}

.footer .brand { color: var(--dark-text); }
.footer .brand:hover { color: var(--dark-text); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark-text-3);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__col ul { list-style: none; display: grid; gap: 10px; }

.footer__col a {
  color: var(--dark-text-2);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.footer__col a:hover { color: var(--dark-text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  color: var(--dark-text-3);
  font-size: 13px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* Page hero — light sub-page hero */
.page-hero {
  padding: 180px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, var(--brand-dim) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 0%, var(--brand-dim) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  line-height: 1;
}

.page-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--text-dim); }

/* Prose */
.prose {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.75;
}

.prose h1, .prose h2, .prose h3 {
  color: var(--text);
  margin-top: 2.5em;
  margin-bottom: 0.75em;
  font-weight: 500;
}

.prose h2 {
  font-size: 1.75rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
}

.prose h3 { font-size: 1.2rem; }

.prose p { margin-bottom: 1.2em; }

.prose ul, .prose ol { margin: 0 0 1.2em 1.5em; }
.prose li { margin-bottom: 0.4em; }

.prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(31, 111, 163, 0.3);
}

.prose a:hover { text-decoration-color: var(--brand); }

.prose strong { color: var(--text); font-weight: 600; }

.prose em { color: var(--text); font-style: italic; }

/* Fahrzeuge — Fullscreen Iframe */
body.is-iframe-view {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.iframe-stage {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow: hidden;
  overscroll-behavior: contain;
}

.iframe-stage iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Below 1100px: iframe rendered at fixed design width and scaled to
   viewport via JS, so AutoScout never triggers horizontal scroll. */
@media (max-width: 1099px) {
  .iframe-stage {
    touch-action: pan-y;
  }
  .iframe-stage iframe {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
    /* width + height + transform set by JS */
  }
}

.iframe-stage__bar {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  background: rgba(10, 11, 15, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-text-2);
}

.iframe-stage__bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 10px var(--brand-3);
  animation: pulse-dot 2s var(--ease) infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.iframe-stage__bar a {
  color: var(--brand-3);
  margin-left: 6px;
}

.iframe-stage__bar a:hover { color: #fff; }

@media (max-width: 900px) {
  .iframe-stage { top: 60px; }
  .iframe-stage__bar { font-size: 10px; padding: 6px 12px; }
}

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

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--text);
}

.contact-info__block {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.contact-info__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-info__block p { color: var(--text-2); line-height: 1.7; }
.contact-info__block a { color: var(--brand); }

.contact-note {
  padding: 20px;
  border: 1px solid rgba(176, 138, 79, 0.35);
  background: rgba(176, 138, 79, 0.07);
  border-radius: var(--radius);
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 16px;
}

.contact-note strong { color: var(--gold); }

.form {
  display: grid;
  gap: 20px;
  padding: 40px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.1);
}

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

.field { display: grid; gap: 8px; }

.field label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s var(--ease);
}

/* Custom caret on select — kills the native arrow + makes it match the design */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234FB39B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--bg-1);
  box-shadow: 0 0 0 3px var(--brand-dim);
}

.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }

.field--full { grid-column: 1 / -1; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.checkbox a { color: var(--brand); text-decoration: underline; }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  z-index: 80;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  box-shadow: 0 16px 40px -6px rgba(37, 211, 102, 0.6), 0 6px 18px rgba(0, 0, 0, 0.25);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.35;
  animation: wa-pulse 2.4s var(--ease) infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* Reveal — content is visible by default; only hide when JS is confirmed
   ready to reveal (html.js-reveal). Guarantees graceful no-JS fallback. */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(251, 251, 250, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 90;
  }

  .header.on-dark .nav {
    background: rgba(10, 11, 15, 0.98);
  }

  .nav.is-open { transform: translateX(0); }

  .nav a {
    padding: 20px 24px;
    font-size: 24px;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .header.on-dark .nav a { border-bottom-color: var(--dark-border); }

  .nav a:last-child { border-bottom: none; }

  .menu-toggle { display: grid; place-items: center; z-index: 100; }

  .header__cta .btn--ghost { display: none; }

  .split { grid-template-columns: 1fr; gap: 48px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .form-row { grid-template-columns: 1fr; }
  .form { padding: 28px; }
}

@media (max-width: 600px) {
  .hero__meta-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }

  .hero__meta-item:last-child { border-bottom: none; }

  .footer__top { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================================
   Mobile Polish — edge-safe spacing, tap targets, stacking
   ========================================================================= */

@media (max-width: 900px) {
  /* Tighter container padding on small screens */
  .container { padding-inline: 20px; }

  /* Header */
  .header { padding: 14px 0; }
  .header.is-scrolled { padding: 10px 0; }
  .brand__logo { height: 44px; }
  .footer .brand__logo { height: 60px; }
  .header__cta { gap: 8px; }
  /* Remove Kontakt CTA on mobile so logo has breathing room */
  .header__cta .btn--primary { display: none; }

  /* Section spacing */
  .section { padding: 72px 0; }

  /* Hero — breathe on phones + revert to single column */
  .hero { padding: 120px 0 60px; min-height: 100vh; min-height: 100svh; }
  .hero__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .hero__content { text-align: center; }
  .hero__lead { margin: 0 auto 32px; }
  .hero__cta { justify-content: center; margin-bottom: 40px; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .hero__visual { display: none; }
  .hero__meta { grid-column: 1; margin-top: 40px; grid-template-columns: repeat(2, 1fr); padding-top: 28px; }
  .hero__title { margin-bottom: 18px; }
  .hero__scroll { display: none; }

  /* Section heads */
  .section-head { margin-bottom: 48px; }
  .section-head__title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  /* Services / Features — single column */
  .services-grid { grid-template-columns: 1fr; border-radius: 14px; }
  .service-card { padding: 32px 24px; border-right: none; }
  .service-card__number { top: 16px; right: 20px; }

  .features { grid-template-columns: 1fr; gap: 14px; }
  .feature { padding: 28px 24px; }

  /* Split reverses so visual comes AFTER text on mobile */
  .split { gap: 40px; }
  .split__visual { aspect-ratio: 5/4; max-height: 340px; }
  .split__stat-value { font-size: clamp(4rem, 24vw, 7rem); }

  /* Contact pillars */
  .contact-pillars { grid-template-columns: 1fr; border-radius: 14px; }
  .pillar { padding: 32px 24px; }

  /* Page hero (sub pages) */
  .page-hero { padding: 130px 0 60px; }
  .page-hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .breadcrumb { margin-bottom: 18px; font-size: 11px; }

  /* Buttons — bigger taps */
  .btn { padding: 14px 24px; }
  .btn--lg { padding: 16px 28px; font-size: 14px; }

  /* Forms */
  .form { padding: 24px 20px; border-radius: 14px; }
  .field input, .field textarea, .field select { font-size: 16px; /* no iOS zoom */ }

  /* Prose */
  .prose { font-size: 15.5px; }
  .prose h2 { font-size: 1.4rem; margin-top: 2em; }
  .prose h3 { font-size: 1.08rem; }

  /* Fahrzeuge iframe — smaller top gap */
  .iframe-stage { top: 58px; }
  .iframe-stage__bar {
    font-size: 10px;
    padding: 6px 10px;
    top: 10px;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* CTA + hero CTA groups — stacked, full-width */
  .cta__lead { font-size: 1rem; }
  .cta .hero__cta, .cta__inner .hero__cta { gap: 10px; }
  .cta .hero__cta .btn,
  .cta__inner .hero__cta .btn { width: 100%; }

  /* Contact info stack */
  .contact-info h3 { font-size: 1rem; }
  .contact-info__block { padding-bottom: 22px; margin-bottom: 22px; }

  .contact-note { padding: 16px; font-size: 0.88rem; }

  /* Footer */
  .footer { padding: 64px 0 32px; }
  .footer__top { padding-bottom: 40px; }
}

@media (max-width: 600px) {
  /* Full-bleed visual */
  .container { padding-inline: 18px; }

  /* Hero meta: 2 cols on phones, not 1 — looks tighter */
  .hero__meta {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
  }
  .hero__meta-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 10px;
  }
  .hero__meta-item:nth-child(even) { border-right: none; }
  .hero__meta-item:nth-child(n+3) { border-bottom: none; }
  .hero__meta-value { font-size: 1.5rem; }
  .hero__meta-label { font-size: 10px; letter-spacing: 0.16em; }

  .hero__title {
    font-size: clamp(2.25rem, 11vw, 3rem);
    letter-spacing: -0.04em;
  }
  .hero__lead { font-size: 1rem; }

  .section { padding: 64px 0; }

  /* Bigger, tap-friendly mobile menu items */
  .nav a { padding: 18px 20px; font-size: 22px; }

  /* Smaller section padding inside dense areas */
  .service-card { padding: 28px 22px; }
  .feature { padding: 24px 22px; }
  .pillar { padding: 28px 22px; }

  /* Footer single-column inner lists */
  .footer__top { gap: 32px; }
  .footer__col h4 { margin-bottom: 14px; }

  /* WhatsApp float stays visible */
  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg { width: 24px; height: 24px; }

  /* Breadcrumb smaller */
  .breadcrumb { letter-spacing: 0.12em; }

  /* Contact form row */
  .form { padding: 20px 18px; }
  .form-row { gap: 14px; }

  /* Section-head lead */
  .section-head__lead { font-size: 0.98rem; }
}

/* Ultra-small phones (<= 380px) */
@media (max-width: 380px) {
  .container { padding-inline: 16px; }
  .header__cta .btn { padding: 9px 14px; font-size: 12px; }
  .hero__title { font-size: 2rem; }
  .brand__logo { height: 40px; }
  .hero__meta-value { font-size: 1.3rem; }
  .wa-float { width: 48px; height: 48px; }
}

/* Respect user motion prefs */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   Tekimpact-style storytelling components
   (timeline, team cards, contact channels, FAQ, service detail blocks, map)
   ========================================================================= */

/* Stats bar — inline KPI row above story */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 48px 0;
  padding: 32px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat {
  text-align: center;
  padding: 8px 16px;
}
.stat__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__value .gradient {
  background: linear-gradient(135deg, var(--brand-3) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Timeline — vertical milestones with dots */
.timeline {
  position: relative;
  margin: 48px 0;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--border-strong) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 4px var(--brand-dim);
}
.timeline-item__date {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  font-weight: 600;
}
.timeline-item__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.timeline-item__text {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
}
.timeline-item__text em {
  font-style: normal;
  background: var(--brand-dim);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--brand);
}

/* Team cards — founder/team profile grid */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.team-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s var(--ease);
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 10px 30px var(--brand-dim);
}
.team-card__avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-3), var(--brand));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.team-card__name {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-card__role {
  color: var(--text-3);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.team-card__links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.team-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--text-2);
  background: var(--bg-2);
  border-radius: 999px;
  transition: all 0.15s var(--ease);
}
.team-card__links a:hover {
  background: var(--brand);
  color: #fff;
}

/* Contact channel cards — emoji + value + meta */
.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}
.channel {
  display: block;
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.channel:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-dim);
}
.channel__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}
.channel__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  font-weight: 600;
}
.channel__value {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.channel__meta {
  font-size: 0.82rem;
  color: var(--text-3);
}

/* Response-time promise banner */
.promise {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--brand-dim) 0%, rgba(91, 179, 227, 0.08) 100%);
  border: 1px solid var(--brand-glow);
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.promise__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.1); }
}
.promise__text {
  font-size: 0.95rem;
  color: var(--text);
}
.promise__text strong { color: var(--brand); }

/* Service detail block — richer per-service section */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-of-type { border-bottom: none; }
.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-block--reverse .service-block__inner { direction: rtl; }
.service-block--reverse .service-block__inner > * { direction: ltr; }
.service-block__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 12px;
}
.service-block__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-weight: 500;
}
.service-block__lead {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.service-block__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.service-meta__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}
.service-meta__value {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}
.service-block__steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.service-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.service-step__num {
  counter-increment: step;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}
.service-step__num::before { content: counter(step); }
.service-step__text {
  color: var(--text-2);
  padding-top: 3px;
  font-size: 0.98rem;
}
.service-block__visual {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.service-block__visual-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  color: var(--brand);
}
.service-block__visual-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.service-block__visual h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
  font-weight: 600;
}

/* FAQ — native HTML <details>/<summary> accordion */
.faq {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-1);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq details[open] {
  border-color: var(--brand);
  box-shadow: 0 4px 20px var(--brand-dim);
}
.faq summary {
  padding: 18px 22px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand);
  font-weight: 400;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 22px 18px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* Map embed */
.map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 32px 0;
  background: var(--bg-2);
}
.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.02);
}
.map__link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.2s var(--ease);
}
.map__link:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* Quote block — for origin story */
.quote {
  padding: 40px;
  background: var(--bg-1);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 40px 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 0;
  left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--brand);
  opacity: 0.15;
  line-height: 1;
}
.quote__meta {
  display: block;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* Mobile responsive adjustments for new components */
@media (max-width: 900px) {
  .service-block {
    padding: 56px 0;
  }
  .service-block__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-block--reverse .service-block__inner { direction: ltr; }
  .service-block__visual {
    position: static;
    padding: 32px;
  }
  .service-block__visual-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  .stats-row {
    padding: 24px 16px;
    margin: 32px 0;
  }
  .stat__value { font-size: 1.8rem; }
  .timeline { padding-left: 32px; }
  .timeline-item::before { left: -28px; }
  .quote { padding: 24px; font-size: 1rem; }
  .service-block__meta { grid-template-columns: 1fr; }
}

/* ============================================================================
   Trust Bar — under hero, premium dealer style
   ========================================================================= */
.trust-bar {
  padding: 36px 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-dim);
  color: var(--brand);
}

.trust-item__icon svg { width: 22px; height: 22px; }

.trust-item__label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}

.trust-item__sub {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .trust-bar { padding: 24px 0; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 16px; }
  .trust-item__icon { width: 40px; height: 40px; }
  .trust-item__icon svg { width: 20px; height: 20px; }
  .trust-item__label { font-size: 13px; }
  .trust-item__sub { font-size: 11px; }
}

/* ============================================================================
   Featured Vehicles — homepage car cards
   ========================================================================= */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.vehicle-card {
  display: block;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--text);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.12),
              0 0 0 1px var(--brand-dim);
  color: var(--text);
}

.vehicle-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}

.vehicle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.vehicle-card:hover .vehicle-card__media img {
  transform: scale(1.06);
}

.vehicle-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--brand-2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vehicle-card__badge--new {
  background: var(--brand);
  color: #fff;
}

.vehicle-card__body {
  padding: 24px 24px 22px;
}

.vehicle-card__cat {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 8px;
}

.vehicle-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text);
}

.vehicle-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.vehicle-card__specs li {
  font-size: 12px;
  color: var(--text-2);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.vehicle-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.vehicle-card__cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}

.vehicle-card:hover .vehicle-card__cta { gap: 10px; color: var(--brand-2); }
.vehicle-card .arrow { transition: transform 0.25s var(--ease); }
.vehicle-card:hover .arrow { transform: translateX(3px); }

@media (max-width: 600px) {
  .vehicles-grid { grid-template-columns: 1fr; gap: 18px; }
  .vehicle-card__body { padding: 20px; }
  .vehicle-card__title { font-size: 1.15rem; }
}

/* ============================================================================
   Chat bubbles — tekimpact-style for the founding-story conversation
   ========================================================================= */
.chat {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  margin: 40px 0;
  box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.06);
}

.chat__intro {
  font-size: 0.95rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border);
  text-align: center;
}

.chat__intro strong { color: var(--text-2); font-weight: 500; }

.chat__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  max-width: 78%;
}

.chat__group--left {
  align-items: flex-start;
  margin-right: auto;
}

.chat__group--right {
  align-items: flex-end;
  margin-left: auto;
}

.chat__name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-2);
  margin-bottom: 6px;
  padding: 0 6px;
  text-transform: none;
}

.chat__bubble {
  padding: 12px 18px;
  background: var(--bg-2);
  color: var(--text);
  border-radius: 18px 18px 18px 4px;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 100%;
  box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.08);
}

.chat__bubble--me,
.chat__group--right .chat__bubble {
  background: var(--brand);
  color: #fff;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 4px 14px -4px rgba(79, 179, 155, 0.35);
}

.chat__time {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-top: 6px;
  padding: 0 6px;
}

@media (max-width: 600px) {
  .chat { padding: 24px 18px 18px; }
  .chat__group { max-width: 88%; }
  .chat__bubble { font-size: 0.95rem; padding: 10px 14px; }
}
