/*
 * Theme Name: Autoankauf Theme
 * Theme URI: https://concuserv.com
 * Description: Klassisches WordPress-Theme für Fahrzeugankauf-Website mit FAQ-System
 * Author: AS ConCuServ Digital
 * Author URI: https://concuserv.com
 * Version: 1.0.0
 * License: GPL-2.0-or-later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: autoankauf-theme
 * Domain Path: /languages
 * Requires at least: 5.0
 * Requires PHP: 8.0
 * Tags: responsive, mobile-first, dark-theme
 */

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

:root {
  --black: #080A0E;
  --dark: #0E1218;
  --card-bg: rgba(255,255,255,0.04);
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #FFFFFF;
  --off: #F0EDE8;
  --muted: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.08);
  --r: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== CURSOR ===== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
}

@media (hover: none) {
  .cursor, .cursor-ring {
    display: none;
  }
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

header.scrolled {
  background: rgba(8,10,14,0.85);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}

.logo em {
  color: var(--gold);
  font-style: normal;
}

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--white);
}

.btn-nav {
  background: var(--gold);
  color: var(--black);
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ===== HERO PARALLAX ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: -15%;
  background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1800&q=80&auto=format');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,10,14,0.92) 0%, rgba(8,10,14,0.6) 55%, rgba(8,10,14,0.2) 100%),
    linear-gradient(to top, rgba(8,10,14,0.8) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s 0.2s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.9s 0.35s forwards;
}

h1 .gold {
  color: var(--gold);
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1.5rem 0;
}

h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: revealUp 0.9s 0.5s forwards;
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: revealUp 0.9s 0.65s forwards;
  transform: translateY(20px);
}

.btn-primary-hero {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}

.btn-ghost {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-ghost:hover {
  opacity: 1;
}

.btn-ghost svg {
  transition: transform 0.2s;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* Hero Statistiken floating */
.hero-stats-float {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  gap: 0;
  z-index: 2;
  opacity: 0;
  animation: revealUp 1s 0.9s forwards;
  transform: translateY(16px);
}

.hero-stat {
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.hero-stat:first-child {
  border-radius: var(--r) 0 0 var(--r);
}

.hero-stat:last-child {
  border-radius: 0 var(--r) var(--r) 0;
}

.hero-stat:not(:first-child) {
  border-left: none;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.3rem;
}

/* Scroll-Indikator */
.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: revealUp 1s 1.1s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: rgba(201,168,76,0.06);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.25rem 4rem;
  overflow: hidden;
}

.trust-ticker {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.trust-ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trust-ticker-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== FORMULAR SECTION ===== */
.form-section {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.form-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.form-left h2 em {
  color: var(--gold);
  font-style: normal;
}

.form-left p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Formular-Karte */
.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.75rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.form-card-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

/* Steps-Indikator */
.steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--muted);
  transition: all 0.3s;
  flex-shrink: 0;
}

.step-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.step-dot.done {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.step-connector {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.step-connector.done {
  background: rgba(201,168,76,0.4);
}

/* Form-Felder */
.form-step {
  display: none;
}

.form-step.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

select option {
  background: #1a1f28;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

input.err,
select.err {
  border-color: #e05a5a;
}

.ferr {
  font-size: 0.7rem;
  color: #e05a5a;
  display: none;
}

.ferr.show {
  display: block;
}

/* Preis */
.price-wrap {
  position: relative;
}

.price-wrap input {
  padding-left: 3.25rem;
}

.price-prefix {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r) 0 0 var(--r);
  pointer-events: none;
}

/* Upload */
.upload-zone {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--r);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover,
.upload-zone.over {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0;
}

.upload-zone p {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.5;
}

.upload-zone strong {
  color: var(--gold);
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
  justify-content: center;
}

.upload-thumb {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}

.upload-fname {
  font-size: 0.72rem;
  color: #5ce68a;
  margin-top: 0.4rem;
  display: none;
}

textarea {
  resize: vertical;
  min-height: 70px;
}

/* Checkbox */
.check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.check-wrap input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  border: none;
  background: transparent;
}

.check-wrap span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.check-wrap a {
  color: var(--gold);
  text-decoration: none;
}

/* Formular-Buttons */
.form-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  align-items: center;
}

.btn-form-primary {
  flex: 1;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-form-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-form-back {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-form-back:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.form-micro {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success.show {
  display: block;
  animation: fadeSlide 0.4s ease;
}

.success-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.success-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
}

.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== PARALLAX BILD-SECTION ===== */
.parallax-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-bg.bg-road {
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1800&q=80&auto=format');
}

.parallax-bg.bg-interior {
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1800&q=80&auto=format');
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,10,14,0.65);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.parallax-content blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 860px;
  margin: 0 auto 1.5rem;
}

.parallax-content blockquote em {
  color: var(--gold);
  font-style: normal;
}

.parallax-content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

/* ===== SCHRITTE ===== */
.steps-section {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-title em {
  color: var(--gold);
  font-style: normal;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  cursor: default;
}

.step-row:first-child {
  border-top: 1px solid var(--border);
}

.step-row:hover {
  background: rgba(255,255,255,0.02);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  transition: color 0.3s;
}

.step-row:hover .step-number {
  color: rgba(201,168,76,0.12);
}

.step-info h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.step-info p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-tag {
  justify-self: end;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
}

/* ===== BILD-SPLIT SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-img {
  position: relative;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.split-img:hover img {
  transform: scale(1.04);
}

.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,10,14,0.3), transparent);
}

.split-content {
  background: var(--dark);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.split-content h2 em {
  color: var(--gold);
  font-style: normal;
}

.split-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2rem;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.65);
  font-size: 0.76rem;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
}

.split-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.split-link:hover {
  gap: 1rem;
}

/* ===== MARKEN GRID ===== */
.brands-section {
  padding: 5rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 2.5rem;
}

.brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-pill {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.3);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.brand-pill:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.faq-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.faq-left h2 em {
  color: var(--gold);
  font-style: normal;
}

.faq-left p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q .faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
}

.faq-item.open .faq-q .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-item.open .faq-q .faq-icon svg {
  stroke: var(--black);
}

.faq-a {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

/* ===== GEO SECTION ===== */
.geo-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 6rem 4rem;
}

.geo-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.geo-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.city-tag {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  transition: color 0.2s, border-color 0.2s;
}

.city-tag:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.25);
}

.geo-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.geo-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.geo-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(8,10,14,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.geo-badge-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.geo-badge-text {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: -20%;
  background-image: url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?w=1800&q=80&auto=format');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,10,14,0.78);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.cta-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.cta-content h2 em {
  color: var(--gold);
  font-style: normal;
}

.cta-content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-phone {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.cta-phone strong {
  color: var(--gold);
}

/* ===== SEO TEXT ===== */
.seo-block {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 5rem 4rem;
}

.seo-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.seo-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 2rem;
}

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

.seo-grid h3 {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seo-grid p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.15);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  background: #050709;
  padding: 4rem 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ===== REVEAL ANIMATIONEN ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  header {
    padding: 1.25rem 2rem;
  }
  header.scrolled {
    padding: 0.875rem 2rem;
  }
  nav {
    gap: 1.5rem;
  }
  .hero-content {
    padding: 0 2rem;
  }
  .hero-stats-float {
    display: none;
  }
  .scroll-hint {
    display: none;
  }
  .form-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }
  .steps-section, .faq-section {
    padding: 5rem 2rem;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-img {
    height: 320px;
  }
  .split-content {
    padding: 3rem 2rem;
  }
  .geo-section {
    padding: 4rem 2rem;
  }
  .geo-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .step-row {
    grid-template-columns: 60px 1fr;
  }
  .step-tag {
    display: none;
  }
  .brands-section {
    padding: 3rem 2rem;
  }
  .seo-block {
    padding: 3rem 2rem;
  }
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  footer {
    padding: 3rem 2rem 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .trust-bar {
    padding: 1rem 2rem;
  }
}

@media (max-width: 640px) {
  nav a:not(.btn-nav) {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
