/* ═══════════════════════════════════════════════════════════════
   style.css — [COMPANY NAME] Website
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --surface:     #111111;
  --surface-2:   #161616;
  --text:        #F0EBE1;
  --text-muted:  #888880;
  --accent:      #C8A96E;
  --accent-dim:  rgba(200,169,110,0.14);
  --border:      rgba(200,169,110,0.18);
  --overlay:     rgba(8,8,8,0.74);
  --glass:       rgba(11,11,11,0.80);
  --ff-h:        'Cormorant Garamond', Georgia, serif;
  --ff-b:        'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --radius:      2px;
  --max-w:       1160px;
}

/* ── RESET ────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-b);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-b); background: none; border: none; }
img { max-width: 100%; display: block; }

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-el {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── SKIP LINK ────────────────────────────────────────────────── */
.skip-link {
  position: fixed; top: 16px; left: 16px; z-index: 9999;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: var(--radius);
  font-weight: 500; font-size: .875rem;
  transform: translateY(-200%);
  transition: transform .26s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--bg); outline-offset: 2px; }

/* ── CURSOR ───────────────────────────────────────────────────── */
/* Custom cursor removed — native cursor everywhere. */

/* ── SCROLL PROGRESS BAR ──────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 1px; width: 0%;
  background: var(--accent); z-index: 9998;
  transition: width .06s linear;
}

/* ── FOCUS ────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--ff-h); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.625rem); }
p  { color: var(--text-muted); line-height: 1.78; }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: 32px;
}
@media (max-width: 640px) { .container { padding-inline: 20px; } }

.section-label {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 14px;
}

/* ── NAV ──────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), border-bottom .3s var(--ease);
}
nav.scrolled {
  background: rgba(8,8,8,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--ff-h);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  background: linear-gradient(135deg, #e8d5a3 0%, #C8A96E 40%, #f0e0b0 60%, #C8A96E 80%, #a8843a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(200,169,110,.45)) drop-shadow(0 0 2px rgba(200,169,110,.3));
  transition: filter .3s ease;
}
.nav-logo:hover {
  filter: drop-shadow(0 0 14px rgba(200,169,110,.70)) drop-shadow(0 0 4px rgba(200,169,110,.5));
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: .07em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
  transition: color .26s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .26s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(200,169,110,.85), 0 0 6px rgba(200,169,110,.60), 0 0 2px rgba(200,169,110,.9);
}
.nav-links a:hover::after { width: 100%; }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all .26s var(--ease); cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary  { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-primary:hover  { background: transparent; color: var(--accent); }
.btn-secondary { background: transparent; color: var(--text); border-color: rgba(240,235,225,.22); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  position: relative; width: 100%; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
/* Intro video — sits at z-index 0, covers full hero */
.hero-video-wrap { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-video-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
/* Static image — initially hidden, fades in after video */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero-overlay { position: absolute; inset: 0; background: var(--overlay); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding-top: 80px; }
/* Reduced-motion: skip video, show image immediately */
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap { display: none !important; }
  .hero-bg, .hero-overlay { opacity: 1 !important; }
}
.hero-eyebrow {
  font-size: .78rem; font-weight: 500; letter-spacing: .17em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 22px; display: block;
  opacity: 0; transform: translateY(12px);
}
#hero-heading { font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--text); margin-bottom: 22px; }
.hero-word    { display: inline-block; opacity: 0; transform: translateY(30px); margin-right: .22em; }
.hero-sub {
  font-family: var(--ff-h); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--text-muted); font-style: italic; margin-bottom: 44px;
  opacity: 0; transform: translateY(16px);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(14px); }

/* ── GWAGON SCROLL SEQUENCE ───────────────────────────────────── */
.gwagon-sequence { position: relative; height: 600vh; }
@media (prefers-reduced-motion: reduce) {
  .gws-sticky      { display: none !important; }
  .gws-rm-fallback { display: block !important; }
  .gwagon-sequence { height: auto !important; }
}
.gws-rm-fallback { display: none; }

.gws-loadbar-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px; z-index: 9995;
  background: rgba(200,169,110,.12);
}
.gws-loadbar { height: 100%; width: 0%; background: #C8A96E; transition: width .08s linear; }

.gws-sticky { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; }
#gws-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.gws-beats { position: absolute; inset: 0; pointer-events: none; }
.gws-beat  {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  padding: 0 8%;
  will-change: opacity, transform;
}
.gws-beat.gws-active { pointer-events: auto; }

/* Beat positions — 10 beats across the sequence */
/* Process intro — bottom center */
.gws-b1  { align-items: center; justify-content: flex-end; padding-bottom: 13%; background: radial-gradient(ellipse at center 88%, rgba(8,8,8,.80) 0%, transparent 58%); }
/* Step 01 — left center */
.gws-b2  { align-items: flex-start; justify-content: center; padding-right: 52%; background: radial-gradient(ellipse at 16% center, rgba(8,8,8,.78) 0%, transparent 54%); }
/* Step 02 — right center */
.gws-b3  { align-items: flex-end; justify-content: center; padding-left: 52%; background: radial-gradient(ellipse at 84% center, rgba(8,8,8,.78) 0%, transparent 54%); }
/* Step 03 — left center */
.gws-b4  { align-items: flex-start; justify-content: center; padding-right: 52%; background: radial-gradient(ellipse at 16% center, rgba(8,8,8,.78) 0%, transparent 54%); }
/* Step 04 — right center */
.gws-b5  { align-items: flex-end; justify-content: center; padding-left: 52%; background: radial-gradient(ellipse at 84% center, rgba(8,8,8,.78) 0%, transparent 54%); }
/* Transition — center */
.gws-b6  { align-items: center; justify-content: center; background: radial-gradient(ellipse at center, rgba(8,8,8,.82) 0%, transparent 58%); }
.gws-b6-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
.gws-b6-label { font-family: var(--ff-b); font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.gws-b6-inner h2 { font-size: clamp(2rem, 5vw, 3.8rem); color: var(--text); line-height: 1.15; margin-bottom: 20px; text-align: center; }
.gws-b6-divider { width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin-bottom: 20px; }
.gws-b6-inner p { font-family: var(--ff-h); font-size: clamp(1rem, 2vw, 1.35rem); color: var(--text-muted); font-style: italic; letter-spacing: .04em; }
/* Ihr Vorteil header — center */
.gws-b7  { align-items: center; justify-content: center; background: radial-gradient(ellipse at center, rgba(8,8,8,.76) 0%, transparent 56%); }
/* 01 Privatmarktpreis — left center */
.gws-b8  { align-items: flex-start; justify-content: center; padding-right: 52%; background: radial-gradient(ellipse at 16% center, rgba(8,8,8,.78) 0%, transparent 54%); }
/* 02 Null Aufwand — right center */
.gws-b9  { align-items: flex-end; justify-content: center; padding-left: 52%; background: radial-gradient(ellipse at 84% center, rgba(8,8,8,.78) 0%, transparent 54%); }
/* 03 Transparenz + CTA — bottom center */
.gws-b10 { align-items: center; justify-content: flex-end; padding-bottom: 13%; background: radial-gradient(ellipse at center 88%, rgba(8,8,8,.80) 0%, transparent 58%); }

@media (max-width: 768px) {
  .gws-b2, .gws-b3, .gws-b4, .gws-b5, .gws-b8, .gws-b9 {
    padding-right: 8%; padding-left: 8%; align-items: center;
  }
}

/* Beat typography — step cards */
.gws-beat h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700; font-size: clamp(1.6rem, 4vw, 3.2rem);
  color: #F0EBE1; line-height: 1.1; letter-spacing: -.01em; margin-bottom: 10px;
  text-shadow: 0 0 17px rgba(200,169,110,0.27), 0 0 6px rgba(200,169,110,0.42);
}
.gws-beat p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(.9375rem, 1.5vw, 1.125rem);
  color: #cac9bf; line-height: 1.7; font-weight: 400; margin: 0; max-width: 420px;
}
/* Right-aligned text for right-side beats */
.gws-b3 p, .gws-b5 p, .gws-b9 p { text-align: right; }
.gws-b3 .gws-step, .gws-b5 .gws-step, .gws-b9 .gws-step { text-align: right; }
.gws-b3 .gws-tagline, .gws-b5 .gws-tagline, .gws-b9 .gws-tagline { text-align: right; }

/* ── SECTION HEADER BEATS (b1, b7) — refined, understated ── */
.gws-b1 h2, .gws-b7 h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  max-width: 520px;
  margin-bottom: 0;
  color: #F0EBE1;
}
.gws-b1 .gws-section-label,
.gws-b7 .gws-section-label {
  text-align: center;
  letter-spacing: .22em;
  font-size: .68rem;
  margin-bottom: 0;
}
/* Thin gold rule between label and heading */
.gws-b1 .gws-section-label::after,
.gws-b7 .gws-section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #C8A96E;
  margin: 14px auto 20px;
  opacity: .7;
}

/* Step number label (01, 02, …) */
.gws-step {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: #C8A96E; display: block; margin-bottom: 10px;
}
/* Section label (Ablauf, Ihr Vorteil, …) */
.gws-section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: #C8A96E; display: block; margin-bottom: 14px;
}
/* Italic tagline below heading */
.gws-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(.9rem, 1.4vw, 1.1rem);
  color: #C8A96E; display: block; margin-bottom: 8px;
}

.gws-cta {
  display: inline-block; margin-top: 24px;
  padding: 14px 32px;
  border: 1px solid #C8A96E; color: #C8A96E; background: transparent;
  font-family: 'Inter', system-ui, sans-serif; font-size: .8125rem;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; text-decoration: none;
  transition: background .26s cubic-bezier(.25,.46,.45,.94), color .26s cubic-bezier(.25,.46,.45,.94);
}
.gws-cta:hover { background: #C8A96E; color: #080808; }

.gws-seq-bar {
  position: absolute; bottom: 0; left: 0;
  width: 0%; height: 1px; background: #C8A96E;
  opacity: 0; z-index: 4; transition: opacity .3s;
}

.gws-rm-fallback { position: relative; min-height: 100vh; overflow: hidden; }
.gws-rm-fallback img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.38); }
.gws-rm-beats { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 48px; padding: 96px 8%; max-width: 860px; }
.gws-rm-beats h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: clamp(1.75rem, 4vw, 2.75rem); color: #F0EBE1; line-height: 1.1; margin-bottom: 8px; }
.gws-rm-beats p  { font-family: 'Inter', system-ui, sans-serif; font-size: .9375rem; color: #888880; }

/* ── PROCESS ──────────────────────────────────────────────────── */
#process { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
#process > .container { position: relative; z-index: 1; }
.process-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .process-split { grid-template-columns: 1fr; gap: 52px; } }
.process-steps { display: flex; flex-direction: column; gap: 30px; }
.process-step  { display: flex; gap: 22px; align-items: flex-start; opacity: 0; transform: translateX(-18px); }
.step-num      { font-family: var(--ff-h); font-size: 1.4rem; font-weight: 700; color: var(--accent); opacity: .5; min-width: 36px; line-height: 1.4; flex-shrink: 0; }
.step-text h3  { font-size: 1.25rem; color: var(--text); margin-bottom: 5px; }
.step-text p   { font-size: 1rem; }

/* ── ALLOY VIDEO (replaces SVG rim) ────────────────────────────── */
.car-canvas { width: 100%; position: relative; min-height: 420px; overflow: hidden; }
.alloy-video {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* ── WHY US ───────────────────────────────────────────────────── */
#why {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background-image: url('hamburg.webp');
  background-size: cover;
  background-position: center 70%;
  background-attachment: fixed;
}
#why > .container { position: relative; z-index: 1; }
#why > .why-bar   { z-index: 1; }
.why-bar    { position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--accent); clip-path: inset(0 100% 0 0); }
.why-header { margin-bottom: 56px; opacity: 0; transform: translateY(18px); }
.why-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; gap: 36px; } }
.why-card   { opacity: 0; transform: translateY(22px); }
.why-num    { font-family: var(--ff-h); font-size: clamp(4.5rem, 8vw, 7rem); font-weight: 700; color: rgba(200,169,110,0.55); line-height: 1; display: block; letter-spacing: -.03em; margin-bottom: 14px; text-shadow: 0 0 40px rgba(200,169,110,0.30), 0 0 12px rgba(200,169,110,0.18); }
.why-card h3    { color: var(--text); margin-bottom: 6px; }
.why-card .tagline { font-family: var(--ff-h); font-style: italic; font-size: 1.2rem; color: var(--accent); display: block; margin-bottom: 8px; }

/* ── PRICING ──────────────────────────────────────────────────── */
#pricing {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  background-image: url('buggati.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}
#pricing > .container { position: relative; z-index: 1; }

/* ── SECTION OVERLAY (shared by pricing + why) ─────────────────── */
.section-dark-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(8, 8, 8, 0.82);
  z-index: 0;
  pointer-events: none;
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 38px 30px; opacity: 0; transform: translateY(18px);
  transition: border-color .26s var(--ease);
}
.pricing-card:hover  { border-color: var(--accent); }
.pricing-card.featured { border-color: var(--accent); }
.pricing-badge {
  display: inline-block; font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 3px 10px; border-radius: var(--radius); margin-bottom: 14px;
}
.pricing-card h3      { font-size: 1.7rem; color: var(--text); margin-bottom: 10px; }
.pricing-card .price-lead { font-size: .875rem; color: var(--text-muted); margin-bottom: 22px; line-height: 1.7; }
.pricing-card ul      { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pricing-card li      { font-size: .875rem; color: var(--text-muted); padding-left: 18px; position: relative; }
.pricing-card li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.callout {
  background: var(--surface-2); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: var(--radius);
  padding: 22px 28px; margin-bottom: 40px;
  opacity: 0; transform: translateY(14px);
}
.callout h4 { font-family: var(--ff-b); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.callout p  { font-size: .875rem; line-height: 1.8; }

/* ── SLIDER ───────────────────────────────────────────────────── */
#kalkulator {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#kalkulator > .container { position: relative; z-index: 1; }
.section-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  filter: brightness(0.5) grayscale(20%);
}
@media (max-width: 860px) { #kalkulator .container > div { grid-template-columns: 1fr !important; gap: 48px !important; } }
.slider-wrap         { max-width: 640px; }
.slider-val-display  { font-family: var(--ff-h); font-size: 2.2rem; color: var(--text); margin-bottom: 22px; line-height: 1; }
.slider-track        { position: relative; height: 1px; background: var(--border); margin-bottom: 10px; cursor: pointer; user-select: none; -webkit-user-select: none; }
.slider-fill         { position: absolute; top: 0; left: 0; height: 100%; background: var(--accent); pointer-events: none; }
.slider-thumb        { position: absolute; top: 50%; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; transform: translate(-50%,-50%); cursor: grab; touch-action: none; transition: transform .12s var(--ease); }
.slider-thumb:active { cursor: grabbing; transform: translate(-50%,-50%) scale(1.5); }
.slider-range        { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-muted); margin-bottom: 26px; }
.slider-result       { border-top: 1px solid var(--border); padding-top: 20px; }
.slider-result-label { font-size: .72rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.slider-result-val   { font-family: var(--ff-h); font-size: 2.4rem; color: var(--accent); font-weight: 700; letter-spacing: -.02em; }

/* ── CONTACT ──────────────────────────────────────────────────── */
#contact {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  border-top: 1px solid var(--border); overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: brightness(.32); }
.contact-overlay { position: absolute; inset: 0; background: rgba(8,8,8,.55); z-index: 1; }
.contact-center  { position: relative; z-index: 2; display: flex; justify-content: center; width: 100%; padding: 80px 0; }
.glass-panel {
  background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px; width: 100%; max-width: 640px;
}
@media (max-width: 680px) { .glass-panel { padding: 28px 20px; } }
.glass-panel h2  { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--text); margin-bottom: 6px; }
.glass-panel .sub { font-size: .875rem; color: var(--text-muted); margin-bottom: 28px; }

form     { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field   { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: .8rem; font-weight: 500; color: var(--text); letter-spacing: .02em; }
.field label .opt { color: var(--text-muted); font-weight: 400; }
.field input,
.field textarea {
  background: rgba(240,235,225,.05); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--ff-b); font-size: .875rem;
  padding: 11px 13px; width: 100%;
  transition: border-color .26s var(--ease);
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); opacity: .6; }
.field input:focus,
.field textarea:focus { border-color: var(--accent); outline: 2px solid var(--accent); outline-offset: 2px; }
.field textarea { resize: vertical; min-height: 88px; }
.field-error { font-size: .72rem; color: #E07070; display: none; }
.field.has-error input,
.field.has-error textarea { border-color: #E07070; }
.field.has-error .field-error { display: block; }

.btn-submit {
  width: 100%; padding: 15px; background: var(--accent); color: var(--bg);
  border-radius: var(--radius); font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: opacity .26s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px;
}
.btn-submit:hover    { opacity: .86; }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; }

.spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(8,8,8,.25); border-top-color: var(--bg);
  border-radius: 50%; animation: spin .6s linear infinite;
  display: none; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.dsgvo-note   { font-size: .72rem; color: var(--text-muted); line-height: 1.65; }
.form-err-msg {
  font-size: .8rem; color: #E07070;
  padding: 10px 14px; border: 1px solid rgba(224,112,112,.28);
  border-radius: var(--radius); display: none; margin-top: -4px;
}
#form-success          { display: none; text-align: center; padding: 20px 0; }
#form-success h3       { font-size: 2rem; color: var(--accent); margin-bottom: 10px; }
#form-success p        { font-size: .9375rem; }

/* ── FAQ ──────────────────────────────────────────────────────── */
#faq       { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); }
.faq-max   { max-width: 760px; margin-inline: auto; }
.faq-list  { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn   {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 26px; background: none; border: none;
  color: var(--text); font-size: .9375rem; font-weight: 500; text-align: left;
  transition: background .26s var(--ease), color .26s var(--ease); cursor: pointer;
}
.faq-btn:hover           { background: var(--accent-dim); color: var(--accent); }
.faq-btn[aria-expanded="true"] { color: var(--accent); }
.faq-icon  { flex-shrink: 0; width: 16px; height: 16px; position: relative; color: var(--accent); }
.faq-icon::before,
.faq-icon::after { content: ''; position: absolute; background: currentColor; transition: transform .26s var(--ease), opacity .26s var(--ease); }
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-btn[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-panel       { overflow: hidden; height: 0; }
.faq-panel-inner { padding: 0 26px 18px; font-size: .875rem; color: var(--text-muted); line-height: 1.85; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer         { background: var(--bg); border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner  { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-promise { font-family: var(--ff-h); font-style: italic; font-size: .95rem; color: var(--text-muted); }
.footer-gold {
  background: linear-gradient(135deg, #e8d5a3 0%, #C8A96E 40%, #f0e0b0 60%, #C8A96E 80%, #a8843a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(200,169,110,.4));
}
.footer-center  { font-family: var(--ff-h); font-size: .95rem; color: var(--text); }
.footer-copy    { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-legal-links { display: flex; align-items: center; gap: 6px; }
.footer-legal-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-size: .8rem; color: var(--text-muted); font-family: inherit;
  text-decoration: underline; text-underline-offset: 2px;
  transition: color .2s;
}
.footer-legal-btn:hover { color: var(--accent); }
@media (max-width: 640px) { .footer-inner { flex-direction: column; text-align: center; } }

/* ── LEGAL MODAL ──────────────────────────────────────────────── */
.legal-modal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; }
.legal-modal[hidden] { display: none; }
.legal-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(4px); }
.legal-modal-box {
  position: relative; z-index: 1;
  background: #141414; border: 1px solid var(--border);
  border-radius: 4px; width: min(720px, 94vw); max-height: 82vh;
  display: flex; flex-direction: column; overflow: hidden;
}
.legal-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 4px 8px;
  transition: color .2s;
}
.legal-modal-close:hover { color: var(--accent); }
.legal-tabs { display: flex; border-bottom: 1px solid var(--border); padding: 0 24px; gap: 0; }
.legal-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--text-muted); font-family: var(--ff-h); font-size: 1rem;
  padding: 16px 20px 14px; cursor: pointer; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.legal-tab:hover { color: var(--text); }
.legal-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.legal-content { overflow-y: auto; padding: 28px 32px 36px; flex: 1; }
.legal-section h2 { font-family: var(--ff-h); font-size: 1.5rem; color: var(--text); margin-bottom: 20px; }
.legal-section h3 { font-family: var(--ff-h); font-size: 1rem; color: var(--accent); margin: 22px 0 8px; }
.legal-section h4 { font-size: .9rem; color: var(--text); margin: 16px 0 6px; }
.legal-section p  { font-size: .875rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { font-size: .875rem; color: var(--text-muted); line-height: 1.8; padding-left: 20px; margin-bottom: 10px; }
.legal-section a  { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* ── THREE-DOT BUTTON (mobile only) ─────────────────────────── */
.nav-dots-btn {
  display: none;                          /* hidden on desktop */
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-dots-btn span {
  display: block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text);
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.nav-dots-btn[aria-expanded="true"] span { background: var(--accent); }
.nav-dots-btn[aria-expanded="true"] span:nth-child(1) { transform: scale(1.4); }
.nav-dots-btn[aria-expanded="true"] span:nth-child(3) { transform: scale(1.4); }

/* ── COMPACT DROPDOWN ────────────────────────────────────────── */
.nav-dropdown {
  display: none;                          /* shown via JS */
  position: absolute;
  top: calc(100% + 8px);
  right: 20px;
  min-width: 210px;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  z-index: 195;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.nav-dropdown a {
  display: block;
  padding: 15px 22px;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s var(--ease), background .2s var(--ease), padding-left .2s var(--ease);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  color: var(--accent);
  background: var(--accent-dim);
  padding-left: 28px;
}

/* ── MOBILE BREAKPOINT ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links     { display: none; }
  .nav-dots-btn  { display: flex; }
}

/* ── EINZELLEISTUNGEN ────────────────────────────────────────── */
.einzelleistungen-wrap {
  margin: 48px 0 40px;
}

.einzelleistungen-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 20px 0;
}

.einzelleistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.el-card {
  border: 1px solid var(--border);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color 0.2s var(--ease);
}

.el-card:hover {
  border-color: rgba(200, 169, 110, 0.45);
}

.el-nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(200, 169, 110, 0.55);
  line-height: 1;
  text-shadow: 0 0 40px rgba(200,169,110,0.30), 0 0 12px rgba(200,169,110,0.18);
}

.el-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}

.el-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.el-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .einzelleistungen-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .einzelleistungen-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT PHONE LINE ──────────────────────────────────────── */
.contact-phone-line {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin: -4px 0 20px 0;
}
.contact-phone-nr {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.contact-phone-nr:hover {
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════
   REDESIGN 2026-06 — "Goldstaub" layer
   Scope: hero text, ticker, why, pricing, kalkulator, faq,
   contact, footer. G-Class sequence (.gws-*), #process and nav
   are intentionally untouched.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ff-display: 'Italiana', Georgia, serif;
  --ff-body2:   'Instrument Sans', system-ui, sans-serif;
  --ff-mono:    'Space Mono', ui-monospace, monospace;
  --accent-light: #e8d5a3;
  --glass-card: rgba(10,10,10,.5);
}
.gold { color: var(--accent); }

/* ── HERO — new text design (background video/image unchanged) ── */
.hero-el { opacity: 0; transform: translateY(24px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 30px;
}
.hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); flex-shrink: 0; }
#hero-heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.9rem, 8vw, 6.6rem); line-height: 1.02;
  letter-spacing: .01em; margin-bottom: 26px; color: var(--text);
}
#hero-heading .h1-top {
  display: block; font-family: var(--ff-mono);
  font-size: clamp(.65rem, 1.1vw, .8rem); font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 20px;
}
#hero-heading .h1-line { display: block; }
.hero-sub {
  font-family: var(--ff-body2); font-style: normal;
  font-size: clamp(1rem, 1.5vw, 1.2rem); letter-spacing: .04em;
  color: #b5b0a4; margin-bottom: 44px;
}
.btn-new {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 17px 32px; overflow: hidden; isolation: isolate;
  border-radius: var(--radius); cursor: pointer;
  transition: color .35s var(--ease);
}
.btn-new .arr { transition: transform .35s var(--ease); }
.btn-new:hover .arr { transform: translateX(5px); }
.btn-new-solid { background: var(--accent); color: #0a0a0a; }
.btn-new-solid::before {
  content: ""; position: absolute; inset: 0; background: var(--text); z-index: -1;
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn-new-solid:hover::before { transform: translateY(0); }
.btn-new-ghost { border: 1px solid rgba(240,235,225,.28); color: var(--text); }
.btn-new-ghost::before {
  content: ""; position: absolute; inset: 0; background: var(--accent); z-index: -1;
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn-new-ghost:hover { color: #0a0a0a; border-color: var(--accent); }
.btn-new-ghost:hover::before { transform: translateY(0); }

/* ── NEWS TICKER ───────────────────────────────────────────── */
.mq {
  border-block: 1px solid rgba(240,235,225,.08);
  padding-block: 16px; overflow: hidden; background: var(--surface);
}
.mq-inner { display: flex; width: max-content; animation: mq-scroll 26s linear infinite; }
.mq-inner span {
  font-family: var(--ff-display); font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: .14em; white-space: nowrap; color: var(--text);
}
.mq-inner em { font-style: normal; color: var(--accent); padding: 0 22px; }
@keyframes mq-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mq-inner { animation: none; } }

/* ── WARUM WIR — transparent glass cards, readable gold ─────── */
#why { padding: 88px 0; }
.why-card {
  background: var(--glass-card);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s var(--ease);
}
.why-card:hover { border-color: rgba(200,169,110,.45); }
.why-grid { gap: 24px; }
.why-num {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(3.4rem, 5.5vw, 4.6rem);
  color: #d9bc82; opacity: .95; text-shadow: none;
  margin-bottom: 10px;
}
.why-card h3 { font-family: var(--ff-display); font-weight: 400; font-size: 1.85rem; margin-bottom: 10px; }
.why-card .tagline {
  font-family: var(--ff-mono); font-style: normal;
  font-size: .72rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-light); line-height: 1.8; margin-bottom: 12px;
}
.why-card p { color: #c6c1b4; font-size: .95rem; }

/* ── PREISE — compact, transparent ─────────────────────────── */
#pricing { padding: 72px 0; }
#pricing h2 { margin-bottom: 32px !important; }
.pricing-grid { gap: 16px; margin-bottom: 16px; }
.pricing-card {
  background: var(--glass-card);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 28px 26px;
}
.pricing-card h3 { font-family: var(--ff-display); font-weight: 400; font-size: 1.8rem; margin-bottom: 8px; }
.pricing-card .price-lead { margin-bottom: 14px; color: #b5b0a4; }
.pricing-card ul { gap: 7px; }
.pricing-card li { color: #c6c1b4; }
.einzelleistungen-wrap { margin: 28px 0 22px; }
.einzelleistungen-label { color: var(--accent-light); letter-spacing: .22em; }
.el-card {
  background: var(--glass-card);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 18px 16px 16px; gap: 8px; border-radius: var(--radius);
}
.el-nr { color: #d9bc82; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; text-shadow: 0 0 40px rgba(200,169,110,0.30), 0 0 12px rgba(200,169,110,0.18); }
.el-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: 19px; letter-spacing: .01em; }
.el-text { color: #b5b0a4; }
.el-cta { color: var(--accent-light); }
.callout {
  background: var(--glass-card);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  margin-bottom: 0; padding: 18px 24px;
}
.callout h4 { color: var(--accent-light); }
.callout p { color: #c6c1b4; }
@media (max-width: 900px) {
  #pricing { padding: 60px 0; }
  .el-card { padding: 16px 14px 14px; }
}

/* ── KALKULATOR — transparent panel, big numbers ───────────── */
.kalk-panel {
  background: rgba(10,10,10,.45);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(26px, 3.2vw, 44px);
  position: relative; overflow: hidden;
}
.kalk-panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.kalk-label {
  display: block; font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 12px;
}
.kalk-panel .slider-val-display {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem); color: var(--text);
  margin-bottom: 26px; line-height: 1;
}
#kalk-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 34px; background: transparent; cursor: pointer;
  --pct: 23.8%;
}
#kalk-range:focus-visible { outline: 1px solid var(--accent); outline-offset: 8px; }
#kalk-range::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(90deg, var(--accent) var(--pct), rgba(240,235,225,.16) var(--pct));
}
#kalk-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; margin-top: -10px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(200,169,110,.15), 0 0 18px rgba(200,169,110,.35);
}
#kalk-range::-moz-range-track { height: 2px; background: rgba(240,235,225,.16); }
#kalk-range::-moz-range-progress { height: 2px; background: var(--accent); }
#kalk-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(200,169,110,.15), 0 0 18px rgba(200,169,110,.35);
}
.kalk-bounds {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: .82rem; color: #b5b0a4;
  margin: 8px 0 26px;
}
.kalk-panel .slider-result { border-top: 1px solid rgba(240,235,225,.1); padding-top: 24px; }
.kalk-panel .slider-result-label {
  font-family: var(--ff-mono); font-size: .78rem; color: #b5b0a4;
  letter-spacing: .14em; margin-bottom: 10px;
}
.kalk-panel .slider-result-val {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 4.4rem); letter-spacing: 0;
}

/* ── FAQ — hairline list, big serif questions ──────────────── */
#faq h2 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--text);
  line-height: 1.2; padding-bottom: .14em; margin-bottom: 36px;
}
.faq-list { border: none; border-top: 1px solid rgba(240,235,225,.1); border-radius: 0; overflow: visible; }
.faq-item { border-bottom: 1px solid rgba(240,235,225,.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(240,235,225,.1); }
.faq-btn {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.3;
  padding: 24px 8px;
}
.faq-btn:hover { background: transparent; color: var(--accent); padding-left: 18px; }
.faq-icon {
  width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 50%;
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.faq-icon::before { left: 9px; right: 9px; }
.faq-icon::after  { top: 9px; bottom: 9px; }
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(135deg); background: var(--accent); color: var(--bg); }
.faq-btn[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%); opacity: 1; }
.faq-panel-inner { padding: 0 8px 24px; font-size: .9rem; }

/* ── KONTAKT — split layout, photo stays visible ───────────── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px); align-items: center; width: 100%;
}
@media (max-width: 920px) { .contact-split { grid-template-columns: 1fr; gap: 44px; } }
.contact-intro .section-label { letter-spacing: .26em; }
#contact-heading {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important; line-height: 1.1;
  padding-bottom: .1em; margin-bottom: 14px;
}
.contact-intro .sub { font-size: 1rem; color: #c6c1b4; margin-bottom: 30px; max-width: 44ch; }
.contact-intro .contact-phone-line { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--ff-mono); color: #b5b0a4; }
.contact-intro .contact-phone-nr {
  display: inline-block; margin-top: 8px;
  font-family: var(--ff-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: .02em; color: var(--text);
}
.contact-intro .contact-phone-nr:hover { color: var(--accent); text-decoration: none; }
.glass-panel {
  background: rgba(8,8,8,.52);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  max-width: none;
  padding: clamp(28px, 3.4vw, 48px);
}
.field label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase; color: #b5b0a4;
}
.field input, .field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(240,235,225,.16); border-radius: 0;
  font-family: var(--ff-body2); font-size: 1rem;
  padding: 10px 2px;
}
.field input:focus, .field textarea:focus {
  border-bottom-color: var(--accent); outline: none;
}
.field.has-error input, .field.has-error textarea { border-bottom-color: #E07070; }
.btn-submit {
  font-family: var(--ff-mono); font-weight: 700; font-size: .95rem;
  letter-spacing: .16em; color: #0a0a0a; padding: 17px;
}
.btn-submit:hover { opacity: 1; background: var(--accent-light); }
#form-success h3 { font-family: var(--ff-display); font-weight: 400; }

/* ── FOOTER — statement section ────────────────────────────── */
footer { padding: clamp(56px, 9vh, 100px) 0 30px; }
.foot-statement {
  font-family: var(--ff-display); font-weight: 400; text-align: center;
  font-size: clamp(2.4rem, 7.5vw, 6rem); line-height: 1.1;
  letter-spacing: .02em; color: var(--accent);
}
@supports (-webkit-text-stroke: 1px #000) {
  .foot-statement {
    color: transparent;
    -webkit-text-stroke: 1px rgba(200,169,110,.65);
    transition: color .5s var(--ease);
  }
  .foot-statement:hover { color: var(--accent); }
}
.foot-network {
  margin-top: 34px; text-align: center;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--text-muted);
}
.foot-network-gold { color: var(--accent); }
.foot-bottom {
  margin-top: clamp(40px, 6vh, 70px); padding-top: 24px;
  border-top: 1px solid rgba(240,235,225,.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.foot-bottom .footer-center { font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .14em; color: var(--text-muted); }
@media (max-width: 640px) { .foot-bottom { flex-direction: column; text-align: center; } }


/* ═══════════════════════════════════════════════════════════════
   REDESIGN v2 — hero HUD, glow headers, boxless why, exact price
   boxes, calculator bars, subtle cursor. Overrides v1 layer.
   ═══════════════════════════════════════════════════════════════ */

/* ── GLOW GOLD (section header second half + ticker) ────────── */
.gold-glow {
  background: linear-gradient(135deg, #e8d5a3 0%, #C8A96E 40%, #f0e0b0 60%, #C8A96E 80%, #a8843a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(200,169,110,.45)) drop-shadow(0 0 3px rgba(200,169,110,.35));
}
@supports not (-webkit-background-clip: text) {
  .gold-glow { color: var(--accent); }
}

/* ── DISPLAY HEADERS (white line + glow-gold line) ──────────── */
.h2-display {
  font-family: var(--ff-display) !important;
  font-weight: 400 !important;
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  line-height: 1.08;
  letter-spacing: .01em;
  padding-bottom: .1em;
}

/* ── HERO HUD + SCROLL CUE (visible only after intro video) ─── */
.hud {
  position: absolute; z-index: 6;
  font-family: var(--ff-mono); font-size: 9.5px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-muted); pointer-events: none;
  line-height: 2;
}
.hud b { color: var(--accent); font-weight: 400; }
.hud-tl { top: 104px; left: 32px; }
.hud-tr { top: 104px; right: 32px; text-align: right; }
.hud-br { bottom: 36px; right: 32px; text-align: right; }
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 9px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--text-muted); pointer-events: none;
}
.scroll-cue i {
  width: 1px; height: 44px; display: block;
  background: linear-gradient(var(--accent), transparent);
  animation: cue-line 2s cubic-bezier(.22,1,.36,1) infinite;
}
@keyframes cue-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 700px) { .hud-tr, .hud-br, .scroll-cue { display: none; } }
@media (max-width: 700px) { .hud-tl { top: 92px; left: 20px; } }

/* ── NAV CTA (desktop only) ─────────────────────────────────── */
.nav-cta {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--border);
  padding: 11px 22px; border-radius: var(--radius);
  transition: background .3s var(--ease), color .3s var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }
@media (max-width: 768px) { .nav-cta { display: none; } }

/* ── TICKER — golden, lighted ───────────────────────────────── */
.mq-inner span {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(200,169,110,.55), 0 0 5px rgba(200,169,110,.4);
}
.mq-inner em {
  color: #f0e0b0;
  text-shadow: 0 0 12px rgba(200,169,110,.6);
}

/* ── WARUM WIR — boxless, picture-3 composition, original type ─ */
.why-card {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border: none; border-radius: 0; padding: 0;
}
.why-card:hover { border: none; }
.why-grid { gap: 56px; }
@media (max-width: 800px) { .why-grid { gap: 40px; } }
.why-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; margin-bottom: 14px;
}
.why-card h3 {
  font-family: var(--ff-h); font-weight: 700;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem); color: var(--text);
  margin-bottom: 0;
}
.why-num {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: .9;
  color: transparent; -webkit-text-stroke: 1px rgba(200,169,110,.75);
  opacity: 1; text-shadow: none; margin-bottom: 0; display: block;
}
@supports not (-webkit-text-stroke: 1px #000) {
  .why-num { color: rgba(200,169,110,.75); }
}
.why-card .tagline {
  font-family: var(--ff-h); font-style: italic; font-weight: 700;
  font-size: 1.15rem; letter-spacing: .01em; text-transform: none;
  color: #e0c891; line-height: 1.5; margin-bottom: 0;
}
.why-rule { width: 38px; height: 1px; background: var(--accent); opacity: .8; margin: 16px 0 18px; }
.why-card p { color: #c6c1b4; font-size: .96rem; }

/* ── PREISE — exact redesign boxes ──────────────────────────── */
.pricing-card {
  background: #0c0c0c;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border: 1px solid rgba(240,235,225,.08);
  padding: clamp(30px, 3vw, 46px);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.pricing-card:hover { border-color: var(--border); }
.pricing-card.featured {
  border-color: var(--border);
  background: linear-gradient(160deg, rgba(200,169,110,.10), #0c0c0c 55%);
}
.pricing-grid { gap: clamp(16px, 2.4vw, 32px); margin-bottom: 24px; align-items: stretch; }
.pricing-badge {
  position: absolute; top: 0; right: 0; margin-bottom: 0;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .3em;
  padding: 9px 18px 9px 22px; border-radius: 0;
}
.pricing-card h3 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.8rem, 2.4vw, 2.2rem); margin-bottom: 12px;
}
.pricing-card .price-lead { margin-bottom: 24px; color: #b5b0a4; max-width: 42ch; }
.pricing-card ul { gap: 0; margin-bottom: 34px; }
.pricing-card li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; padding-left: 0;
  font-size: .9rem; color: #c6c1b4;
  border-top: 1px solid rgba(240,235,225,.07);
}
.pricing-card li::before { display: none; }
.pricing-card li svg { flex-shrink: 0; margin-top: 4px; }
.pc-cta { margin-top: auto; justify-content: center; width: 100%; }

/* ── KALKULATOR — bigger panel, one-line label, bars ────────── */
.kalk-panel { padding: clamp(30px, 3.6vw, 52px); }
.kalk-panel .slider-result-label {
  font-size: .72rem; letter-spacing: .1em;
}
@media (min-width: 920px) {
  .kalk-panel .slider-result-label { white-space: nowrap; }
}
.kalk-bars { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.kbar .kbar-head {
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--ff-mono); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: #b5b0a4; margin-bottom: 8px;
}
.kbar.privat .kbar-head { color: var(--accent); }
.kbar .kbar-track { height: 4px; background: rgba(240,235,225,.08); overflow: hidden; }
.kbar .kbar-fill { height: 100%; transition: width .7s cubic-bezier(.22,1,.36,1); }
.kbar.dealer .kbar-fill { background: #5d5544; }
.kbar.privat .kbar-fill { background: linear-gradient(90deg, #a8843a, #C8A96E, #e8d5a3); }

/* ── SUBTLE CUSTOM CURSOR ───────────────────────────────────── */
#cursor {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 10px rgba(200,169,110,.5);
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  opacity: 0; will-change: left, top;
  transition: opacity .25s var(--ease);
}
body.has-cursor #cursor { opacity: .85; }
#cursor.expanded {
  transform: translate(-50%,-50%) scale(2.4);
  opacity: .4 !important;
}
body.has-cursor,
body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor select,
body.has-cursor label,
body.has-cursor [role="slider"] { cursor: none; }


/* ═══════════════════════════════════════════════════════════════
   REDESIGN v3 — full-width nav at top, pricing tilt, wider FAQ,
   open contact layout with larger intro text.
   ═══════════════════════════════════════════════════════════════ */

/* ── NAV: logo flush left / CTA flush right at page top.
   On scroll the inner container narrows back to its original
   1160px position. 100vw → 1160px interpolates smoothly. ─────── */
#navbar .nav-inner { transition: max-width .45s var(--ease); }
#navbar:not(.scrolled) .nav-inner { max-width: 100vw; }

/* ── PREISE: cards react to the cursor (tilt + sheen) ───────── */
.pricing-card { --mx: 50%; --my: 50%; }
@media (hover: hover) and (pointer: fine) {
  .pricing-card {
    transition: transform .5s cubic-bezier(.22,1,.36,1), border-color .26s var(--ease);
    will-change: transform;
  }
  .pricing-card::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    opacity: 0; transition: opacity .4s var(--ease);
    background: radial-gradient(460px circle at var(--mx) var(--my), rgba(200,169,110,.10), transparent 60%);
  }
  .pricing-card:hover::after { opacity: 1; }
}

/* ── FAQ: wider reading column ──────────────────────────────── */
.faq-max { max-width: 1000px; }

/* ── KONTAKT: open layout, no box, larger intro ─────────────── */
#contact .glass-panel {
  background: transparent;
  border: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  padding: 0;
}
#contact-heading {
  font-size: clamp(2.6rem, 5vw, 4.2rem) !important;
  margin-bottom: 18px;
}
.contact-intro .sub { font-size: 1.15rem; max-width: 46ch; margin-bottom: 36px; }
.contact-intro .contact-phone-line { font-size: 13px; line-height: 2; }
.contact-intro .contact-phone-nr { font-size: clamp(1.8rem, 2.8vw, 2.5rem); margin-top: 10px; }
.contact-mail-line {
  margin-top: 28px;
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: #b5b0a4; line-height: 2;
}
.contact-mail {
  display: inline-block; margin-top: 8px;
  font-family: var(--ff-body2); font-size: 1.05rem;
  letter-spacing: .02em; text-transform: none;
  color: var(--text); border-bottom: 1px solid var(--border);
  transition: color .26s var(--ease);
}
.contact-mail:hover { color: var(--accent); }
