/* =============================================
   AUTOMOBILE GRENZ – Premium CSS
   Farbpalette: Tiefes Navy/Anthrazit + Gold/Amber
   Agentur: vocalx.de
   ============================================= */

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

:root {
  --bg:            #080c12;
  --bg-soft:       #0e1420;
  --bg-card:       #111827;
  --bg-glass:      rgba(14, 20, 32, 0.82);
  --line:          rgba(255, 255, 255, 0.07);
  --line-gold:     rgba(212, 160, 50, 0.25);
  --text:          #eef2f9;
  --text-muted:    #8fa3bc;
  --text-soft:     #c2d0e4;
  --gold:          #d4a032;
  --gold-light:    #f0bc50;
  --gold-dark:     #b88520;
  --gold-glow:     rgba(212, 160, 50, 0.18);
  --green:         #22c55e;
  --red:           #ef4444;
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.28);
  --shadow-md:     0 10px 40px rgba(0,0,0,0.38);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.50);
  --shadow-gold:   0 8px 32px rgba(212, 160, 50, 0.22);
  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     28px;
  --radius-full:   9999px;
  --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --container:     1240px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: var(--radius-full); }

/* ── CONTAINER ── */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--gold-glow);
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1, h2, h3, h4, h5 { line-height: 1.18; font-weight: 800; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0e16;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(212, 160, 50, 0.40);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
}

.btn-green {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.30);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.42);
}

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

.btn i { font-size: 1.05em; }

/* ── DIVIDER ── */
.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 80px;
  margin: 20px 0;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 12, 18, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 54px;
  border-radius: 8px;
  background: #f5f5f5;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 14px rgba(0,0,0,0.40), inset 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
  flex-shrink: 0;
  padding: 5px 7px;
  transition: box-shadow var(--transition);
}

.brand-logo-wrap:hover {
  box-shadow: 0 4px 20px rgba(212,160,50,0.30), inset 0 0 0 1px rgba(0,0,0,0.06);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  /* Logo hat schwarzen Hintergrund – kein Invert nötig, weiße Box gibt Kontrast */
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold-light); }
.header-phone i { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(8, 12, 18, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 800;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateY(0); }

.mobile-nav a {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}
.mobile-nav a:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
}

.mobile-nav-cta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mobile-nav-cta .btn { flex: 1; justify-content: center; }

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

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

.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.72) saturate(0.9);
}

.hero-fallback-image {
  z-index: 0;
}

.hero-video {
  z-index: 1;
  pointer-events: none;
}

.hero-video.video-finished {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,12,18,0.985) 0%,
    rgba(8,12,18,0.92) 42%,
    rgba(8,12,18,0.68) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(8,12,18,0.98) 0%, rgba(8,12,18,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(212, 160, 50, 0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #ffd77a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item i { color: var(--gold); }

/* Stats Bar */
.stats-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.02); }

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   REVIEWS TICKER
══════════════════════════════════════════ */
.reviews-ticker {
  background: linear-gradient(90deg, var(--bg) 0%, #0a1220 50%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.reviews-ticker::before,
.reviews-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-ticker::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.reviews-ticker::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-review {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  white-space: nowrap;
  border-right: 1px solid var(--line);
}

.ticker-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0a0e16;
  flex-shrink: 0;
}

.ticker-stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.ticker-text {
  color: var(--text-soft);
  font-size: 0.88rem;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
}

.ticker-divider {
  color: var(--gold);
  padding: 0 18px;
  font-size: 0.7rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 3px 12px 3px 3px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  flex-shrink: 0;
}
.google-badge img {
  width: 18px;
  height: 18px;
  display: inline;
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--bg-soft); }

/* ── USP / WHY US ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.usp-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.usp-card:hover::before { opacity: 1; }

.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.usp-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ── PROCESS / HOW IT WORKS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
}

.process-step {
  background: var(--bg-card);
  padding: 40px 28px;
  position: relative;
  text-align: center;
  transition: background var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.02); }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--line-gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.service-card:hover .service-link {
  gap: 10px;
  color: var(--gold-light);
}

/* ── CONTACT / FORM ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.contact-info-col {}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-list { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-item i {
  color: var(--gold);
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a { color: inherit; transition: color var(--transition); }
.contact-item a:hover { color: var(--gold-light); }

/* Opening Hours */
.hours-grid { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-soft); }
.hours-time { font-weight: 600; }
.hours-closed { color: var(--text-muted); }

/* WhatsApp CTA Card */
.wa-card {
  background: linear-gradient(135deg, #0d3320 0%, #0f3d25 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.wa-card i { font-size: 2.5rem; color: #22c55e; margin-bottom: 12px; }
.wa-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.wa-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }

/* Form */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238fa3bc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
  background-color: rgba(255,255,255,0.04);
}
.form-group select option { background: var(--bg-card); color: var(--text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 160, 50, 0.04);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* File Upload */
.file-upload-zone {
  border: 2px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.file-upload-zone:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.file-upload-zone.drag-over {
  border-color: var(--gold-light);
  background: var(--gold-glow);
}
.file-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
.upload-text { font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; }
.upload-hint { color: var(--text-muted); font-size: 0.8rem; }

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-glow);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--gold-light);
}
.file-chip button {
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
  padding: 0 2px;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success i { font-size: 3rem; color: var(--green); margin-bottom: 14px; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ── REVIEWS SECTION ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a0e16;
  flex-shrink: 0;
}

.review-meta { flex: 1; }
.review-author { font-weight: 700; font-size: 0.95rem; }
.review-stars { color: var(--gold); font-size: 0.8rem; margin-top: 2px; letter-spacing: 1px; }

.review-text {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}
.review-text::before { content: '"'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -0.5em; margin-right: 2px; }

.review-date {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-top: 32px;
}
.rating-num { font-size: 2.2rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.rating-info { display: flex; flex-direction: column; gap: 3px; }
.rating-stars { color: var(--gold); letter-spacing: 2px; }
.rating-source { color: var(--text-muted); font-size: 0.8rem; font-weight: 500; }

/* ── MEDIA MENTIONS ── */
.media-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}

.media-badge {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-soft);
  transition: var(--transition);
}
.media-badge:hover {
  border-color: var(--line-gold);
  color: var(--gold-light);
}
.media-badge span { color: var(--gold); }

/* ── MAP SECTION ── */
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}

.map-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.map-info-panel h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.map-iframe-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 400px;
}
.map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); }

.float-whatsapp {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.35);
}
.float-whatsapp i { font-size: 1.3rem; }

.float-phone {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: #0a0e16;
  box-shadow: var(--shadow-gold);
}
.float-phone i { font-size: 1.1rem; }

.float-label {
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand { }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-img {
  width: 64px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 6px 8px;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.footer-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}
.footer-brand-sub {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
  border-color: var(--line-gold);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-4px);
}
.footer-links a:hover { color: var(--text); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.footer-contact-item i { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 16px; }
.footer-contact-item a { color: inherit; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-copyright a { color: var(--gold); transition: color var(--transition); }
.footer-copyright a:hover { color: var(--gold-light); }

.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--text); }

/* ══════════════════════════════════════════
   PAGE HERO (Unterseiten)
══════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,160,50,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--line); }

.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   REGION BADGES
══════════════════════════════════════════ */
.region-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 500;
}
.region-badge i { color: var(--gold); font-size: 0.7rem; }

/* ══════════════════════════════════════════
   CONTENT BLOCKS
══════════════════════════════════════════ */
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.content-block h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.content-block p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
.check-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--gold-light);
}

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-content {
  max-width: 820px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
  color: var(--gold-light);
}
.legal-content p, .legal-content ul {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--gold); }

/* ══════════════════════════════════════════
   ANIMATIONS & UTILS
══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.text-center { text-align: center; }
.text-gold { color: var(--gold-light); }
.mt-auto { margin-top: auto; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .float-btns { bottom: 18px; right: 16px; }
  .float-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 12px; }
  .stat-num { font-size: 1.8rem; }
  .form-card { padding: 24px 18px; }
}
