/* ============================================================
   Autopark Röte — Premium Design System
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Accent: Gold #1E9BFF
   ============================================================ */

* { -webkit-font-smoothing: antialiased; box-sizing: border-box; }

/* ── Trust Strip (Google Bewertungen — zwischen Hero und Stats) ── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: #fff;
  border-bottom: 1px solid rgba(15,15,15,0.08);
  text-decoration: none;
  color: #181818;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.trust-strip:hover { background: #f4f0e8; color: #1E9BFF; }
.trust-strip__logo { width: 18px; height: 18px; flex-shrink: 0; }
.trust-strip__stars { color: #F5A623; letter-spacing: 1px; font-size: 0.875rem; }
.trust-strip__score { font-weight: 700; }
.trust-strip__divider { color: rgba(15,15,15,0.25); }
.trust-strip__text { color: inherit; }
.trust-strip__arrow { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; }
.trust-strip:hover .trust-strip__arrow { transform: translateX(3px); }
html { scroll-padding-top: 90px; }
body { font-feature-settings: 'ss01', 'cv11'; overflow-x: clip; }

/* ============================================================
   NAVIGATION
   ============================================================ */

#navbar {
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              box-shadow 0.3s ease,
              backdrop-filter 0.3s ease;
  will-change: transform;
}

#navbar.scrolled {
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(30, 155, 255, 0.18);
}

#navbar.nav-hidden {
  transform: translateY(-100%);
}

/* Brand lockup */
.brand-lockup { color: #fafaf8; line-height: 1; }
.brand-word {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
  white-space: nowrap;
  color: #fafaf8;
}
@media (min-width: 640px) {
  .brand-word { font-size: 1.35rem; }
}
.brand-word--light { color: #fafaf8; }
.brand-mark { display: inline-block; }

/* Nav links — always light (nav is always dark-backed) */
.nav-link {
  position: relative;
  padding: 5px 0;
  color: rgba(250, 250, 248, 0.65);
  transition: color 0.25s ease;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1.5px;
  background: #1E9BFF;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: #fafaf8; }
.nav-link:hover::after { width: 100%; left: 0; }

/* Nav CTA — Termin buchen highlight */
.nav-link--cta {
  color: #1E9BFF;
  padding: 6px 14px;
  border: 1px solid rgba(30,155,255,0.4);
  letter-spacing: 0.05em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: #1E9BFF;
  color: #0F0F0F;
  border-color: #1E9BFF;
}

/* Nav CTA — "Auto inserieren" button: takes no space at top, slides in after hero */
#nav-cta-btn {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
  pointer-events: none;
  transition: opacity 0.35s ease, max-width 0.4s ease, padding 0.4s ease;
  white-space: nowrap;
}
#nav-cta-btn.nav-cta-visible {
  opacity: 1;
  max-width: 200px;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  pointer-events: auto;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  --reveal-delay: 0s;
  opacity: 0;
}
.reveal.is-visible {
  animation: clip-reveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay) both;
}
@keyframes clip-reveal {
  from { clip-path: inset(0 0 100% 0); opacity: 0; }
  to   { clip-path: inset(0% 0% 0% 0%); opacity: 1; }
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */

.section-heading {
  font-family: 'Zodiak', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #0F0F0F;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1E9BFF;
}
.eyebrow--light span { color: #1E9BFF; }

.eyebrow-line {
  width: 2rem;
  height: 1px;
  background: #1E9BFF;
  flex-shrink: 0;
}
.eyebrow-line--gold { background: #1E9BFF; }

/* ============================================================
   HERO — buttons & chips
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1E9BFF;
  color: #0F0F0F;
  padding: 0.9rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: #5fb8ff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 250, 248, 0.6);
  padding: 0.9rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(250, 250, 248, 0.15);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  color: #1E9BFF;
  border-color: #1E9BFF;
}

.data-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1.25rem;
  background: rgba(250, 250, 248, 0.08);
  border: 1px solid rgba(250, 250, 248, 0.12);
}
.data-chip__value {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #1E9BFF;
}
.data-chip__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.45);
}

/* ============================================================
   FREEZE SLIDE — key stats strip (rhythm + breathing room)
   ============================================================ */
.freeze-slide {
  background: #0F0F0F;
  border-top: 1px solid rgba(30,155,255,0.15);
  border-bottom: 1px solid rgba(30,155,255,0.15);
  padding: 5rem 1.5rem;
  position: relative;
}
.freeze-slide::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(30,155,255,0.4), transparent);
}
.freeze-inner {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 0;
}
.freeze-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 2rem;
  position: relative;
}
.freeze-stat::before {
  content: '';
  position: absolute;
  top: -1.75rem;
  left: 2rem;
  width: 28px;
  height: 1px;
  background: #1E9BFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1) var(--freeze-delay, 0ms);
}
.freeze-stat.is-visible::before { transform: scaleX(1); }

.freeze-stat:nth-child(even) {
  align-items: flex-end;
  text-align: right;
}
.freeze-stat:nth-child(even)::before {
  left: auto;
  right: 2rem;
  transform-origin: right;
}

.freeze-number {
  font-family: 'Zodiak', Georgia, serif;
  font-size: clamp(3.25rem, 5.5vw, 4.75rem);
  font-weight: 700;
  line-height: 0.95;
  color: #fafaf8;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  letter-spacing: -0.025em;
  transition: color 0.7s ease var(--freeze-delay, 0ms);
}
.freeze-plus {
  font-size: 0.55em;
  color: #1E9BFF;
  font-weight: 600;
  transition: color 0.7s ease var(--freeze-delay, 0ms);
}
.freeze-unit {
  font-size: 0.32em;
  color: #1E9BFF;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 0.4rem;
  transition: color 0.7s ease var(--freeze-delay, 0ms);
}
.freeze-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
}
.freeze-stat.is-visible .freeze-number { color: #1E9BFF; }
.freeze-stat.is-visible .freeze-plus,
.freeze-stat.is-visible .freeze-unit { color: #fafaf8; }
.freeze-divider { display: none; }
@media (max-width: 767px) {
  .freeze-slide { padding: 3rem 1.25rem; }
  .freeze-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .freeze-stat--link { pointer-events: none; cursor: default; }
  .freeze-cta { display: none; }
  .freeze-stat {
    padding: 2.25rem 0.75rem 1.5rem;
    box-sizing: border-box;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .freeze-stat::before {
    top: 1rem !important;
    left: 0.75rem !important;
    right: auto !important;
    transform-origin: left !important;
  }
  .freeze-stat:nth-child(1),
  .freeze-stat:nth-child(2) {
    border-bottom: 1px solid rgba(250,250,248,0.08);
  }
  .freeze-stat:nth-child(odd) {
    border-right: 1px solid rgba(250,250,248,0.08);
  }
  .freeze-number { font-size: 2.5rem; }
}

/* ============================================================
   LEISTUNGEN — numbered service list
   ============================================================ */

.service-list {
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

.service-item {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  transition: background 0.25s ease;
  transition-delay: calc(var(--stagger, 0) * 60ms);
}
.service-item:hover {
  background: transparent;
}
.service-item:hover .service-num {
  color: #1E9BFF;
}

.service-num {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(15, 15, 15, 0.15);
  letter-spacing: -0.02em;
  transition: color 0.55s cubic-bezier(0.22,0.61,0.36,1);
  flex-shrink: 0;
}
.service-num--gold { color: #1E9BFF; }
.service-item.is-lit .service-num { color: #1E9BFF; }

.service-body { min-width: 0; }

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0F0F0F;
  line-height: 1.2;
}

.service-desc {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: rgba(15, 15, 15, 0.55);
  line-height: 1.6;
  max-width: 540px;
}

.service-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.35);
  white-space: nowrap;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(15, 15, 15, 0.1);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1E9BFF;
  padding: 0.5rem 1rem;
  border: 1px solid #1E9BFF;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.service-cta:hover {
  background: #1E9BFF;
  color: #0F0F0F;
}

.service-item--featured {
  background: rgba(30, 155, 255, 0.04);
}

@media (max-width: 767px) {
  .service-item {
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
  }
  .service-tag, .service-cta {
    grid-column: 2;
  }
}

/* ============================================================
   ABLAUF — process steps
   ============================================================ */

.step { text-align: left; }

.step-circle {
  width: 88px;
  height: 88px;
  border-radius: 0;
  background: #fafaf8;
  border: 1px solid rgba(15, 15, 15, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F0F0F;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.step:hover .step-circle {
  border-color: #1E9BFF;
  box-shadow: 0 0 0 4px rgba(30, 155, 255, 0.1);
}
.step-circle--gold {
  background: #1E9BFF;
  color: #0F0F0F;
  border-color: #1E9BFF;
}

/* Mobile vertical line — left/top/height set by JS */
.step-line {
  position: absolute;
  width: 2px;
  background: rgba(15, 15, 15, 0.1);
  z-index: 0;
  pointer-events: none;
}
/* ============================================================
   ABLAUF — sticky scroll section
   ============================================================ */

#ablauf-outer {
  height: 300vh;
}
#ablauf {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Sticky is active on ALL screen sizes */

/* Gray track — left/width set by JS */
.step-line-track {
  height: 1px;
  background: rgba(15, 15, 15, 0.09);
  top: 2.75rem;
}
/* Blue fill — left/width animated by JS */
.step-line-h {
  height: 2px;
  top: calc(2.75rem - 0.5px);
}
/* Mobile vertical fill — height set directly by JS */
.step-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #1E9BFF, #5fb8ff);
  transition: height 60ms linear;
}

@media (min-width: 1024px) {
  .step { text-align: left; }
}
/* ── Mobile step layout: circle LEFT, text RIGHT ──────────── */
@media (max-width: 1023px) {
  /* Each step is a 2-column row: [circle 72px] [text] */
  .step {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 1rem;
  }
  /* Circle sits in column 1 */
  .step-circle {
    grid-column: 1;
    grid-row: 1;
    width: 60px;
    height: 60px;
    font-size: 1.15rem;
    justify-self: center;
  }
  /* Text block in column 2 */
  .step-text {
    grid-column: 2;
    grid-row: 1;
  }
}

/* ============================================================
   PRICING
   ============================================================ */

.price-card {
  background: #ffffff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  align-self: stretch;
}
.price-card:hover {
  box-shadow: 0 16px 48px -16px rgba(15, 15, 15, 0.12);
  border-color: rgba(15, 15, 15, 0.14);
}

/* animated border card */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes border-rotate {
  to { --border-angle: 360deg; }
}

.price-card--silver {
  background: #ffffff;
  border: 1px solid rgba(180, 188, 196, 0.5);
  position: relative;
  overflow: hidden;
}
.price-card--silver::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8A9299 0%, #C8D0D8 25%, #E8EDF0 50%, #C8D0D8 75%, #8A9299 100%);
  z-index: 1;
}
.price-card--silver:hover {
  box-shadow: 0 16px 48px -16px rgba(140, 160, 176, 0.3);
  border-color: rgba(180, 188, 196, 0.7);
}

.price-card--featured {
  background: transparent;
  border: none;
  position: relative;
  z-index: 0;
  box-shadow: 0 32px 80px -20px rgba(15, 15, 15, 0.5);
  margin-top: -1rem;
  margin-bottom: -1rem;
}
/* comet — dark gap, long tail builds up, bright glowing head */
.price-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    conic-gradient(
      from var(--border-angle),
      transparent 0%,
      transparent 38%,
      rgba(200,169,81,0.04) 44%,
      rgba(200,169,81,0.12) 50%,
      rgba(200,169,81,0.30) 57%,
      rgba(200,169,81,0.58) 64%,
      #C8A951 70%,
      #E8C96A 75%,
      #F5E0A0 80%,
      #ffffff 84%,
      #ffffff 86%,
      rgba(255,255,255,0.6) 89%,
      rgba(200,169,81,0.15) 93%,
      transparent 97%,
      transparent 100%
    ),
    conic-gradient(
      from var(--border-angle),
      transparent 0%,
      transparent 65%,
      rgba(200,169,81,0.08) 72%,
      rgba(232,201,106,0.35) 82%,
      rgba(255,255,255,0.55) 86%,
      rgba(200,169,81,0.08) 92%,
      transparent 96%,
      transparent 100%
    );
  animation: border-rotate 7s linear infinite;
}
.price-card--featured::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: #0F0F0F;
  z-index: -1;
}
.price-card--featured:hover {
  box-shadow: 0 40px 80px -20px rgba(15, 15, 15, 0.6);
}

.price-card--bronze {
  border: 1px solid rgba(205, 127, 50, 0.35);
  position: relative;
  overflow: hidden;
}
.price-card--bronze::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #7A4010 0%, #CD7F32 25%, #E8A75A 50%, #CD7F32 75%, #7A4010 100%);
  z-index: 1;
}
.price-card--bronze:hover {
  border-color: rgba(205, 127, 50, 0.55);
  box-shadow: 0 16px 48px -16px rgba(205, 127, 50, 0.2);
}

.price-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #C8A951;
  color: #0F0F0F;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.price-tier {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}
.price-card--silver .price-tier {
  background: linear-gradient(135deg, #D0D8DF 0%, #E8EDF0 50%, #C0C8D0 100%);
  color: #4A5560;
  border: 1px solid rgba(140, 160, 176, 0.4);
}
.price-tier--light {
  background: linear-gradient(135deg, #B8942A 0%, #C8A951 40%, #E8C96A 70%, #C8A951 100%);
  color: #0F0F0F;
  border: none;
}
.price-card--bronze .price-tier {
  background: linear-gradient(135deg, #7A4010 0%, #CD7F32 40%, #E8A75A 70%, #B87333 100%);
  color: #ffffff;
  border: none;
}

.price-name {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #0F0F0F;
  margin-top: 0.6rem;
}
.price-name--light {
  color: #fafaf8;
  font-size: 1.75rem;
  margin-top: 0.75rem;
}

.price-desc {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(15, 15, 15, 0.55);
  line-height: 1.5;
}
.price-desc--light { color: rgba(250, 250, 248, 0.6); }

.price-amount {
  margin-top: 0.6rem;
  font-family: 'Zodiak', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #0F0F0F;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.price-amount--light {
  color: #fafaf8;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  margin-top: 0.75rem;
}
.price-currency {
  font-size: 0.45em;
  font-weight: 600;
  color: rgba(15,15,15,0.5);
}
.price-card--silver .price-currency { color: #0f0f0f; }
.price-amount--light .price-currency { color: #ffffff; }
.price-card--bronze .price-currency { color: #0f0f0f; }
.price-period {
  margin-top: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.4);
}
.price-period--light { color: rgba(250,250,248,0.35); }

.price-features {
  margin-top: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-bottom: 0.75rem;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: rgba(15, 15, 15, 0.7);
}
.price-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(200, 169, 81, 0.5);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%23C8A951' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
  flex-shrink: 0;
}
.price-card--silver .price-features li::before {
  border: 1.5px solid rgba(138, 146, 153, 0.5);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%238A9299' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.price-features--light li { color: rgba(250, 250, 248, 0.8); }
.price-features--light li::before {
  border-color: rgba(200, 169, 81, 0.6);
}
.price-card--bronze .price-features li::before {
  border: 1.5px solid rgba(205, 127, 50, 0.5);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%23CD7F32' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid #0F0F0F;
  color: #0F0F0F;
  transition: background 0.2s ease, color 0.2s ease;
}
.price-btn:hover {
  background: #0F0F0F;
  color: #fafaf8;
}
.price-btn--featured {
  background: #C8A951;
  border-color: #C8A951;
  color: #0F0F0F;
}
.price-btn--featured:hover {
  background: #E8C96A;
  border-color: #E8C96A;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */

.about-img {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0F0F0F;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.06);
}
.about-feat::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1.5px solid #1E9BFF;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%231E9BFF' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testi {
  padding: 2.25rem;
  background: #ffffff;
  border: 1px solid rgba(15, 15, 15, 0.07);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testi:hover {
  box-shadow: 0 20px 60px -20px rgba(15, 15, 15, 0.1);
  border-color: rgba(30, 155, 255, 0.25);
}

.testi-quote {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: #1E9BFF;
  opacity: 0.35;
  margin-bottom: 1.25rem;
  user-select: none;
}

.testi-stars {
  font-size: 0.875rem;
  color: #1E9BFF;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(15, 15, 15, 0.75);
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 15, 15, 0.07);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: #0F0F0F;
  color: #1E9BFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-item {
  border: 1px solid rgba(15, 15, 15, 0.07);
  background: #fafaf8;
  transition: background 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.faq-item[open] {
  background: #ffffff;
  border-color: rgba(30, 155, 255, 0.35);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.625rem;
  font-weight: 600;
  font-size: 0.975rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  color: #0F0F0F;
  transition: color 0.2s ease;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: #1E9BFF; }
.faq-item[open] .faq-summary { color: #0F0F0F; }

.faq-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(15, 15, 15, 0.15);
  border-radius: 4px;
  color: #0F0F0F;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.faq-icon::before {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] .faq-icon {
  border-color: #1E9BFF;
  color: #1E9BFF;
}
.faq-item[open] .faq-icon::before {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.625rem 1.375rem;
  font-size: 0.9rem;
  color: rgba(15, 15, 15, 0.6);
  line-height: 1.7;
}

/* ============================================================
   KONTAKT — form & contact links
   ============================================================ */

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(250, 250, 248, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-link:hover {
  border-color: rgba(30, 155, 255, 0.4);
  background: rgba(30, 155, 255, 0.04);
}
.contact-link--featured {
  border-color: rgba(30, 155, 255, 0.35);
  background: linear-gradient(135deg, rgba(30,155,255,0.06), rgba(30,155,255,0));
}
.contact-link--featured:hover {
  border-color: rgba(30, 155, 255, 0.65);
  background: linear-gradient(135deg, rgba(30,155,255,0.10), rgba(30,155,255,0.02));
}

.contact-link__icon {
  width: 44px;
  height: 44px;
  background: #1E9BFF;
  color: #0F0F0F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form */
.form-label {
  display: block;
  font-size: 0.725rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(250, 250, 248, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(250, 250, 248, 0.1);
  background: rgba(250, 250, 248, 0.04);
  color: #fafaf8;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-input::placeholder { color: rgba(250, 250, 248, 0.2); }
.form-input:focus {
  outline: none;
  border-color: #1E9BFF;
  background: rgba(30, 155, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(30, 155, 255, 0.1);
}

/* ============================================================
   SCROLL-REVEAL — word splitting via Splitting.js
   ============================================================ */

/* Splitting.js wraps each word in .word — we clip it for the slide-up */
[data-split] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  padding-bottom: 0.28em;
  margin-bottom: -0.28em;
  padding-right: 0.12em;
  margin-right: -0.12em;
}
[data-split] .word-inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity   0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: calc(var(--word-index) * 60ms);
  will-change: transform, opacity;
}
[data-split].split-in .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   PARALLAX — scroll-animations.js sets --parallax-y
   ============================================================ */

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

/* ============================================================
   MISC
   ============================================================ */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(15, 15, 15, 0.2); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: rgba(15, 15, 15, 0.35); }

/* Stagger delays via --reveal-delay */
.service-item.reveal {
  --reveal-delay: calc(var(--stagger, 0) * 55ms);
}
.freeze-stat.reveal {
  --reveal-delay: var(--freeze-delay, 0s);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal.is-visible { opacity: 1; animation: none; clip-path: none; }
  [data-split] .word-inner { transform: none; opacity: 1; }
}

/* ============================================================
   MOBILE OVERRIDES — 375px safety net
   ============================================================ */

@media (max-width: 480px) {
  .section-heading {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
  h1[data-split] {
    font-size: clamp(2.5rem, 13vw, 3.5rem) !important;
  }
  .service-item {
    grid-template-columns: 2.5rem 1fr;
  }
  .service-num {
    font-size: 1.75rem;
  }
  .data-chip__value {
    font-size: 1.35rem;
  }
  .step-circle {
    width: 64px;
    height: 64px;
    font-size: 1.35rem;
  }
}

@media (max-width: 375px) {
  h1[data-split] {
    font-size: 2.5rem !important;
  }
}

/* ============================================================
   ERSTGESPRÄCH / CALENDLY-Sektion
   ============================================================ */
.termin-section {
  background: #0F0F0F;
  color: #fafaf8;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(30,155,255,0.12);
  border-bottom: 1px solid rgba(30,155,255,0.12);
}
.termin-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(30,155,255,0.08), transparent 70%);
  pointer-events: none;
}
.termin-inner {
  position: relative;
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.termin-text { max-width: 36rem; }
.termin-heading {
  margin-top: 1rem;
  font-family: 'Zodiak', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.termin-copy {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(250,250,248,0.6);
}
.termin-perks {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.termin-perks li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(250,250,248,0.85);
  font-weight: 500;
}
.termin-perks svg {
  width: 18px;
  height: 18px;
  color: #1E9BFF;
  flex-shrink: 0;
}
.termin-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.termin-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #1E9BFF;
  color: #0F0F0F;
  padding: 1.05rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 rgba(30,155,255,0);
}
.termin-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s cubic-bezier(0.22,0.61,0.36,1);
}
.termin-cta:hover {
  background: #5fb8ff;
  box-shadow: 0 12px 32px -8px rgba(30,155,255,0.5);
}
.termin-cta:hover svg { transform: translateX(4px); }
.termin-fineprint {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.4);
  letter-spacing: 0.02em;
}

/* Right visual — oversized "15 MINUTEN" frame */
.termin-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.termin-visual__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2.5rem;
  width: 100%;
  max-width: 28rem;
  background: linear-gradient(180deg, rgba(30,155,255,0.04), rgba(30,155,255,0));
}
.termin-visual__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(30,155,255,0.55);
  border-style: solid;
  border-width: 0;
}
.termin-visual__corner--tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.termin-visual__corner--tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.termin-visual__corner--bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.termin-visual__corner--br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.termin-visual__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
  margin-bottom: 1.5rem;
}
.termin-visual__big {
  font-family: 'Zodiak', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(6.5rem, 11vw, 9.5rem);
  line-height: 0.85;
  color: #1E9BFF;
  letter-spacing: -0.04em;
}
.termin-visual__unit {
  font-family: 'Zodiak', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(250,250,248,0.85);
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}
.termin-visual__sub {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
}

/* Laptop (fits in one viewport) */
@media (max-height: 820px) and (min-width: 901px) {
  .termin-section { padding: 3.5rem 1.5rem; }
  .termin-heading { font-size: clamp(2rem, 3.5vw, 3.25rem); }
  .termin-visual__big { font-size: clamp(5.5rem, 9vw, 8rem); }
  .termin-visual__frame { padding: 2rem 2rem; }
  .termin-copy { margin-top: 1rem; }
  .termin-perks { margin-top: 1.25rem; gap: 0.6rem; }
  .termin-actions { margin-top: 1.25rem; }
}
@media (max-width: 900px) {
  .termin-section { padding: 4rem 1.25rem; }
  .termin-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .termin-visual__frame { padding: 2.5rem 2rem; }
  .termin-visual__big { font-size: clamp(5rem, 18vw, 8rem); }
}
@media (max-width: 480px) {
  .termin-section { padding: 3.5rem 1.25rem; }
  .termin-perks { margin-top: 1.25rem; }
  .termin-actions { margin-top: 1.5rem; width: 100%; }
  .termin-cta { width: 100%; justify-content: center; }
}

/* ============================================================
   ÖFFNUNGSZEITEN BLOCK (Kontakt-Sektion)
   ============================================================ */
.hours-block {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250,250,248,0.08);
}
.hours-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
  margin-bottom: 1rem;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(250,250,248,0.05);
  font-size: 0.875rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row dt {
  color: rgba(250,250,248,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hours-row dd {
  color: #fafaf8;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.hours-closed {
  color: rgba(250,250,248,0.4) !important;
  font-style: italic;
  font-weight: 400 !important;
}
.hours-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(250,250,248,0.4);
  line-height: 1.5;
  font-style: italic;
}

/* ============================================================
   FREEZE-STAT LINK (Google Bewertung — klickbar)
   ============================================================ */
.freeze-stat--link {
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2.25rem;
  margin-bottom: -2.25rem;
}
.freeze-cta {
  position: absolute;
  bottom: 0;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(30,155,255,0.7);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22,0.61,0.36,1), color 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}
.freeze-stat:nth-child(even) .freeze-cta {
  left: auto;
  right: 2rem;
}
.freeze-cta__arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.25s cubic-bezier(0.22,0.61,0.36,1);
}
.freeze-stat--link:hover .freeze-cta {
  opacity: 1;
  transform: translateY(0);
  color: #1E9BFF;
}
.freeze-stat--link:hover .freeze-cta__arrow {
  transform: translateX(3px);
}
.freeze-stat--link:hover .freeze-number { color: #5fb8ff; }
.freeze-stat--link:focus-visible {
  outline: 1px solid #1E9BFF;
  outline-offset: 8px;
}
.freeze-stat--link:focus-visible .freeze-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   PLATFORM TRUST-BAR (mobile.de · AutoScout24 · Kleinanzeigen)
   ============================================================ */
.platform-bar {
  background: #f4f0e8;
  border-top: 1px solid rgba(15,15,15,0.06);
  border-bottom: 1px solid rgba(15,15,15,0.06);
  padding: 4.5rem 1.5rem;
}
.platform-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}
.platform-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(15,15,15,0.4);
  position: relative;
  padding-bottom: 0.85rem;
}
.platform-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: rgba(30,155,255,0.5);
}
.platform-intro {
  font-size: 0.875rem;
  color: rgba(15,15,15,0.55);
  letter-spacing: 0.02em;
}
.platform-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  margin-top: 0.5rem;
}
.platform-item {
  font-family: 'Zodiak', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0F0F0F;
  line-height: 1;
}
.platform-sep {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1.5rem;
  color: rgba(30,155,255,0.5);
  font-weight: 700;
  user-select: none;
  line-height: 1;
}
@media (max-width: 480px) {
  .platform-bar { padding: 3rem 1.25rem; }
  .platform-list { gap: 0.85rem 1.25rem; }
  .platform-item { font-size: 1.4rem; }
  .platform-sep { font-size: 1.2rem; }
}

/* ============================================================
   TOP ANNOUNCEMENT BAR — refined links
   ============================================================ */
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,250,248,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s ease;
}
.topbar-link + .topbar-link::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  background: rgba(250,250,248,0.25);
  border-radius: 50%;
}
.topbar-link:hover { color: #1E9BFF; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.wa-fab {
  position: fixed;
  bottom: max(28px, env(safe-area-inset-bottom));
  right: max(28px, env(safe-area-inset-right));
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.12),
    0 14px 36px -8px rgba(0,0,0,0.55),
    0 4px 14px -4px rgba(37,211,102,0.45);
  transition: transform 0.25s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.25s ease,
              background 0.25s ease;
}
.wa-fab::after {
  content: 'WhatsApp';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #0F0F0F;
  color: #fafaf8;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(30,155,255,0.15);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22,0.61,0.36,1);
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.04);
  background: #1ebe5b;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.18),
    0 18px 40px -8px rgba(0,0,0,0.55),
    0 6px 18px -4px rgba(37,211,102,0.55);
}
.wa-fab:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wa-fab__icon {
  width: 28px;
  height: 28px;
}
.wa-fab__label { display: none; }

@media (max-width: 480px) {
  .wa-fab {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
    width: 52px;
    height: 52px;
  }
  .wa-fab::after { display: none; }
}

/* ============================================================
   INSTAGRAM CTA SECTION
   ============================================================ */
.ig-section {
  background: #0F0F0F;
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(30,155,255,0.12);
  position: relative;
  overflow: hidden;
}
.ig-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(30,155,255,0.06), transparent 70%);
  pointer-events: none;
}
.ig-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.25rem;
}
.ig-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.ig-left::before,
.ig-left::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(30,155,255,0.5), transparent);
}
.ig-left::before { right: calc(100% + 1.5rem); }
.ig-left::after { left: calc(100% + 1.5rem); }
.ig-logo {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  color: #1E9BFF;
}
.ig-handle {
  font-family: 'Zodiak', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-style: italic;
  font-weight: 500;
  color: #fafaf8;
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow: visible;
  padding-right: 0.1em;
}
.ig-sub {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.4);
}
.ig-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 36rem;
}
.ig-copy {
  font-size: 0.95rem;
  color: rgba(250,250,248,0.55);
  line-height: 1.7;
  margin-bottom: 0;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: 1px solid rgba(30,155,255,0.5);
  color: #1E9BFF;
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ig-btn:hover {
  background: #1E9BFF;
  border-color: #1E9BFF;
  color: #0F0F0F;
}
@media (max-width: 600px) {
  .ig-section { padding: 4rem 1.25rem; }
  .ig-left::before,
  .ig-left::after { display: none; }
}

/* ============================================================
   IMAGE DIVIDER — diagonal full-width photo break
   ============================================================ */

#ueber-uns {
  position: relative;
  z-index: 2;
}
@media (max-height: 820px) and (min-width: 901px) {
  #ueber-uns { padding-top: 3rem; padding-bottom: 3rem; }
  .section-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); }
  .termin-section { padding: 3rem 1.5rem; }
  #preise, #leistungen, #faq, #kontakt, .py-16 { padding-top: 3rem; padding-bottom: 3rem; }
}
.img-divider + section {
  position: relative;
  z-index: 2;
}

.img-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(320px, 45vw, 580px);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
  /* Pull sections over the transparent clip triangles — eliminates white seams */
  margin-top: -72px;
  margin-bottom: -72px;
}

/* 3D shadow: strong top cast shadow fading out, no bottom stripe */
.img-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.38) 18%,
    rgba(0,0,0,0.08) 38%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 2;
}

.img-divider img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin-top: -25%;
  will-change: transform;
}
