/* =============================================
   SVB – Sachverständigenbüro von Berg
   style.css
   Rule: Style classes only, never IDs (unless JS-required)
   ============================================= */

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

:root {
  --color-blue: #2AABDB;
  --color-blue-dark: #1E90BE;
  --color-blue-light: #EBF7FD;
  --color-bg: #F0F6FA;
  --color-bg-section: #E8F2F8;
  --color-white: #FFFFFF;
  --color-text: #1A1F2E;
  --color-text-muted: #121517;
  --color-border: #D0DDE8;
  --color-footer-bg: #2AABDB;

  --font-sans: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-btn: 0 2px 8px rgba(42, 171, 219, 0.35);

  --nav-height: 68px;
  --container-max: 1400px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
}

/* ── FONT FACES ───────────────────────────── */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/inter-v20-latin-300italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/inter-v20-latin-500italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/inter-v20-latin-600italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin-700italic.woff2') format('woff2');
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/inter-v20-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-800italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/inter-v20-latin-800italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/inter-v20-latin-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-900italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/inter-v20-latin-900italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


html {
  scroll-behavior: smooth;
}

body {
  font: 400 16px/1.6rem 'Inter', sans-serif;
  background-color: #fff;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── UTILITY ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.desk-br {
  display: none;
}

@media (min-width: 900px) {
  .desk-br {
    display: inline;
  }
}

/* ── SECTIONS ─────────────────────────────── */
section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section:nth-of-type(odd) {
  background: linear-gradient(180deg, #fff, var(--color-bg-section)) !important;
}

section:nth-of-type(even) {
  background: linear-gradient(180deg, var(--color-bg-section), #fff) !important;
}

.kontaktformular{
  width: 100%;
  height: 850px;
  border: 2px solid var(--color-blue);
  border-radius: var(--radius-md);
}


/* =============================================
   NAVIGATION
   ============================================= */
svb-nav {
  max-width: var(--container-max);
  margin: auto;
  display: block;
  position: sticky;
  top: 20px;
  z-index: 1000;
}

.svb-navbar {
  max-width: var(--container-max);
  margin: auto;
  border-radius: var(--radius-md);
  height: var(--nav-height);
  background: var(--color-white);
  position: relative;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
}

.svb-navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.svb-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.svb-logo-img {
  width: auto;
  display: block;
}

/* Desktop links */
.svb-nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  list-style: none;
  flex-shrink: 0;
}

.svb-nav-item {
  position: relative;
}

.svb-nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.svb-nav-link:hover {
  color: var(--color-blue);
  background: var(--color-blue-light);
}

.svb-nav-link--active {
  color: var(--color-blue);
}

.svb-chevron-sm {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.svb-nav-item.open>.svb-nav-link .svb-chevron-sm {
  transform: rotate(180deg);
}

/* Desktop dropdown */
.svb-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}

.svb-nav-item.open>.svb-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.svb-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background: var(--color-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.svb-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
}

.svb-dropdown-link:last-child {
  border-bottom: none;
}

.svb-dropdown-link:hover {
  color: var(--color-blue);
  background: var(--color-blue-light);
  padding-left: 1.4rem;
}

.svb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.18s, transform 0.18s;
}

.svb-dropdown-link:hover .svb-dot {
  opacity: 1;
  transform: scale(1);
}

/* Burger */
.svb-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.svb-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.25s;
  transform-origin: center;
}

/* Backdrop */
.svb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(15, 30, 50, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.svb-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile overlay */
.svb-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 100vw);
  background: var(--color-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--color-border);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.svb-overlay.open {
  transform: translateX(0);
}

.svb-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  min-height: var(--nav-height);
  flex-shrink: 0;
  border-bottom: 1px solid var(--color-border);
}

.svb-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-blue-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
  color: var(--color-blue);
}

.svb-close-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.svb-close-btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/* Mobile nav list */
.svb-nav-mobile {
  list-style: none;
  padding: 0.5rem 0;
  flex: 1;
}

.svb-m-item {
  border-bottom: 1px solid var(--color-border);
}

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

.svb-m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
}

.svb-m-link:hover {
  color: var(--color-blue);
  background: var(--color-blue-light);
}

.svb-m-link--active {
  color: var(--color-blue);
}

.svb-chevron-md {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.28s;
  stroke: currentColor;
}

.svb-m-item.open>.svb-m-link .svb-chevron-md {
  transform: rotate(180deg);
}

.svb-m-dropdown {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--color-bg);
}

.svb-m-item.open>.svb-m-dropdown {
  max-height: 500px;
}

.svb-m-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.25rem 0.7rem 1.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  border-top: 1px solid var(--color-border);
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
}

.svb-m-dropdown-link::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
}

.svb-m-dropdown-link:hover {
  color: var(--color-blue);
  background: var(--color-blue-light);
  padding-left: 2.1rem;
}

.svb-overlay-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.svb-overlay-footer p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}


/* =============================================
   FLOATING CONTACT BUTTONS
   ============================================= */
.float-contact {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(42, 171, 219, 0.45);
  transition: background 0.18s, transform 0.18s;
}

.float-btn:hover {
  background: var(--color-blue-dark);
  transform: scale(1.08);
}


/* =============================================
   BUTTONS
   ============================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.15s, padding 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--outline:hover {
  background: var(--color-blue-light);
}

/* Hover-Pfeil */
.btn::after {
  content: '→';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  font-size: 1em;
  line-height: 1;
}

.btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.btn:hover {
  padding-right: 2.25rem;
  padding-left: calc(1.4rem - 0.3rem);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  padding: clamp(6rem, 8vw, 10rem) 0 clamp(6rem, 6vw, 10rem);
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hero-accent {
  color: var(--color-blue);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-or {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-images {
  flex-shrink: 0;
  position: relative;
  width: 50%;
  height: clamp(280px, 40vw, 420px);
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--back {
  bottom: 10%;
  right: 0;
  width: 60%;
  aspect-ratio: 1;
}

.hero-img--front {
  bottom: -10%;
  left: 10%;
  width: 45%;
  aspect-ratio: 1;
  z-index: 2;
}


/* =============================================
   SECTION COMMON
   ============================================= */
.section-eyebrow {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-eyebrow--left {
  text-align: left;
}

.section-headline {
  font-size: clamp(2.3rem, 4.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 3rem;
}

.section-headline--left {
  text-align: left;
}


/* =============================================
   FEATURE CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-blue-light);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.feature-card__icon img {
  width: 26px;
  height: 26px;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color 0.18s;
}

.faq-question:hover {
  color: var(--color-blue);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-blue);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-blue);
  transition: transform 0.25s;
}

.faq-icon img {
  width: 20px;
  height: 20px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-text);
}

.cta-headline--verglasung {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.cta-actions {
  justify-content: center;
}


/* =============================================
   TIMELINE  (geteilt von Leistungen, Gutachten,
              Fahrzeugverglasung)
   ============================================= */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-blue);
  transform: translateX(-50%);
  z-index: 0;
}

/* Row-basierte Timeline (Fahrzeugverglasung / Gutachten) */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
  padding: 1.75rem 0;
}

.timeline-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Item-basierte Timeline (Leistungen) */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  align-items: center;
  position: relative;
  padding: 1.75rem 0;
}

.timeline-item--left .timeline-content {
  grid-column: 1;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item--left .timeline-dot {
  grid-column: 2;
}

.timeline-item--left::after {
  content: '';
  grid-column: 3;
}

.timeline-item--right::before {
  content: '';
  grid-column: 1;
}

.timeline-item--right .timeline-dot {
  grid-column: 2;
}

.timeline-item--right .timeline-content {
  grid-column: 3;
  text-align: left;
  padding-left: 2rem;
}

/* Shared dot */
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-blue);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-blue);
  justify-self: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Col helpers (row-based) */
.timeline-col--left {
  text-align: right;
  padding-right: 2rem;
}

.timeline-col--right {
  text-align: left;
  padding-left: 2rem;
}

/* Shared text */
.timeline-content__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.timeline-content__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 2.5rem 2rem;
  align-items: start;
}

.footer-brand__text {
  font-size: 0.8rem;
  line-height: 1.65;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 220px;
}

.footer-col__heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.8rem;
}

.footer-col__heading--spacer {
  margin-top: 1.5rem;
}

.footer-col__links li+li {
  margin-top: 0.4rem;
}

.footer-col__links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.18s, gap 0.22s ease;
}

.footer-col__links a:hover {
  color: #fff;
  gap: 0.35rem;
}

/* Footer hover-arrow */
.footer-col__links a::after {
  content: '→';
  display: inline-block;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(-4px);
  transition: opacity 0.22s ease, max-width 0.22s ease, transform 0.22s ease;
  font-size: 0.85em;
  white-space: nowrap;
}

.footer-col__links a:hover::after {
  opacity: 1;
  max-width: 1em;
  transform: translateX(0);
}

.footer-address {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.footer-address a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.18s;
}

.footer-address a:hover {
  color: #fff;
}


/* =============================================
   PAGE-SPECIFIC SECTIONS
   ============================================= */

/* ── Über uns ─────────────────────────────── */
.werwir-section {
  position: relative;
  padding: clamp(6rem, 8vw, 10rem) 0 clamp(6rem, 6vw, 10rem);
  overflow: hidden;
}

.werwir-section::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1;
  max-width: 300px;
  background: url('../images/drehwerkzeug.png')no-repeat center/contain;
  transform: translateX(-200%) rotate(-160deg);
}

.werwir-section::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  width: 50%;
  aspect-ratio: 1;
  max-width: 400px;
  background: url('../images/werkzeug.png')no-repeat center/contain;
  transform: translateX(175%) rotate(27deg);
}

.werwir-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.werwir-inner .section-headline {
  margin-bottom: 1.5rem;
}

.werwir-body {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 800px;
}

.werwir-body+.werwir-body {
  margin-top: 1rem;
}

.why-section {
  padding: clamp(6rem, 8vw, 10rem) 0 clamp(6rem, 6vw, 10rem)
}

.qual-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.nahdran-section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.nahdran-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nahdran-inner .section-headline {
  margin-bottom: 1.5rem;
}

.nahdran-body {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 660px;
}

.philosophy-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

.philosophy-col {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.philosophy-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.philosophy-col__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 0.85rem;
}

.philosophy-col__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Leistungen ───────────────────────────── */
.leistungen-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ablauf-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.vorteil-section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
}

.vorteil-section::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 10%;
  left: 50%;
  width: 50%;
  max-width: 300px;
  aspect-ratio: 1;
  background: url('../images/klemmbrett.png')no-repeat center/contain;
  transform: translateX(-200%) rotate(-19deg);
}

.vorteil-section::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 50%;
  width: 50%;
  max-width: 300px;
  aspect-ratio: 1;
  background: url('../images/stift.png')no-repeat center/contain;
  transform: translateX(200%) rotate(-11deg);
}


/* 
.vorteil-deko {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.vorteil-deko--left {
	width: clamp(140px, 50vw, 250px);
	bottom: 10%;
	left: 10%;
	transform: rotate(-20deg);
}

.vorteil-deko--right {
  width: clamp(100px, 40vw, 250px);
  top: 10%;
  right: 10%;
	transform: rotate(-11deg);
} */

.vorteil-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vorteil-inner .section-headline {
  margin-bottom: 1.5rem;
}

.vorteil-body {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 620px;
}

/* ── Gutachten nach Unfall ────────────────── */
.schritte-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.rechte-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.rechte-subtext {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 560px;
  margin: -1.5rem auto 2.5rem;
  line-height: 1.65;
}

.rechte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.rechte-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.rechte-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.rechte-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.objektiv-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  padding-bottom: 400px;
}

.objektiv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.objektiv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.objektiv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232, 242, 248, 1) 1%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1)), url('../images/handschlag.png') no-repeat center/cover;
  z-index: 1;
}

.objektiv-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.objektiv-body {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 680px;
}

.versicherung-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.versicherung-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.versicherung-inner .section-headline {
  margin-bottom: 1.5rem;
}

.versicherung-body {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ── Fahrzeugverglasung ───────────────────── */
.ueberblick-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.ueberblick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.experten-section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
}

.experten-section::before {
  content: '';
  background: url('../images/saug-werkzeug.png')no-repeat center/contain;
  display: block;
  position: absolute;
  width: 50%;
  max-width: 400px;
  aspect-ratio: 1;
  top: 10%;
  left: 50%;
  transform: translateX(-150%) rotate(-10deg);
}

/* .experten-deko {
  position: absolute;
  left: 10%;
  top: 10%;
  transform: rotate(-15deg);
  width: clamp(180px, 50vw, 500px);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
  z-index: 0;
} */

.experten-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.experten-inner .section-headline {
  margin-bottom: 1.5rem;
}

.experten-body {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* ── Kontakt ──────────────────────────────── */
.kontaktinfo-section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
}

.kontaktinfo-deko {
  position: absolute;
  left: -1rem;
  bottom: 0;
  width: clamp(160px, 20vw, 260px);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
  z-index: 0;
}

.kontaktinfo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kontaktinfo-inner .section-headline {
  margin-bottom: 1.25rem;
}

.kontaktinfo-body {
  font-size: clamp(0.875rem, 1.4vw, 0.975rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.formular-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
}

.formular-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formular-inner .section-headline {
  margin-bottom: 2rem;
}

.formular-iframe-wrap {
  width: 100%;
  max-width: 580px;
}

.formular-iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
}

/* ── Impressum / Datenschutz ──────────────── */
.legal-section {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.legal-inner {
  max-width: 760px;
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-top: 0.4rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
}

.legal-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.legal-block p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.legal-block p+p {
  margin-top: 0.75rem;
}

.legal-address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.legal-block a {
  color: var(--color-blue);
  transition: color 0.18s;
}

.legal-block a:hover {
  color: var(--color-blue-dark);
  text-decoration: underline;
}

.legal-back {
  margin-top: 2.5rem;
}

/* ── 404 ──────────────────────────────────── */
.error-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vw, 7rem) var(--container-pad);
  min-height: calc(100dvh - var(--nav-height) - 280px);
}

.error-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.error-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.error-code {
  font-size: clamp(7rem, 22vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  -webkit-text-stroke: 2px var(--color-blue);
  color: transparent;
  user-select: none;
}

.error-crack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 20vw, 200px);
  height: auto;
  pointer-events: none;
}

.error-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.error-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.error-body {
  font-size: 0.975rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.error-nav {
  border-top: 1px solid var(--color-border);
  padding-top: 1.75rem;
  width: 100%;
}

.error-nav__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}

.error-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
}

.error-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-blue);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}

.error-nav__link:hover {
  color: var(--color-blue-dark);
  border-bottom-color: var(--color-blue-dark);
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .svb-burger {
    display: flex;
  }

  .svb-nav-desktop {
    display: none;
  }

  .float-contact {
    top: auto;
    bottom: 1.5rem;
    right: 1rem;
    transform: none;
    flex-direction: row;
  }

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

  .werwir-section::before,
  .werwir-section::after,
  .vorteil-section::before,
  .vorteil-section::after,
  .experten-section::before {
    filter: opacity(.4);
  }

  .experten-section::before {
    transform: translateX(-50%) rotate(-10deg);
  }

  .werwir-section::before {
    transform: translateX(-99%) rotate(-160deg);
  }

  .werwir-section::after {
    transform: translateX(106%) rotate(27deg);
  }

  .vorteil-section::before {
    transform: translateX(-120%) rotate(-19deg);
  }

  .vorteil-section::after {
    transform: translateX(110%) rotate(-11deg);
  }

}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .hero-img--back {
    bottom: auto;
  }

  .hero-img--front {
    bottom: 0;
    left: 0;
  }

  .hero-images {
    width: 100%;
    aspect-ratio: 4/3;
    margin: 0 auto;
    height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  /* Timeline mobile – alles linksbündig */
  .timeline::before {
    left: 11px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 24px 1fr;
    padding: 1.25rem 0;
  }

  .timeline-item{
    display: flex;
    align-items: flex-start;
  }

  .timeline-item.timeline-item--left{
    flex-direction: row-reverse;    
  }

  .timeline-item--left .timeline-content{
    text-align: left;
    padding-left: 2rem;   
    padding-right: 0; 
  }

  .timeline-dot{
    position: relative;
    right: -9px;
    top: 4px;
  }

  svb-nav {
    top: 5px;
  }

  .timeline-item--left::after,
  .timeline-item--right::before {
    display: none;
  }

  .timeline-row {
    grid-template-columns: 32px 1fr;
    padding: 1.25rem 0;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-center {
    grid-column: 1;
    justify-content: flex-start;
  }

  .timeline-col--left,
  .timeline-col--right {
    grid-column: 2;
    text-align: left;
    padding-left: 1.25rem;
    padding-right: 0;
  }

  .timeline-col--left:empty,
  .timeline-col--right:empty {
    display: none;
  }

  .kontaktinfo-deko {
    width: 120px;
    left: -0.5rem;
  }

  .formular-iframe-wrap {
    max-width: 100%;
  }

  .objektiv-overlay {
    position: static;
    aspect-ratio: 3/2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1)), url('../images/handschlag.png') no-repeat center/cover;
  }

  .objektiv-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-brand__text {
    max-width: 100%;
  }
}

@media (max-width: 600px) {

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

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.85rem;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .kontaktinfo-deko {
    display: none;
  }

  .formular-iframe {
    min-height: 600px;
  }

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

  .error-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
  border-radius: 4px;
}