/* ================================================================
   A.T.S Autohaus Hilden — Haupt-Stylesheet (index.html)
   ================================================================ */

/* ============== CSS VARIABLES ============== */
:root {
  --bg: #F4F2EC;
  --bg-deep: #ECE9E1;
  --ink: #0E0E0E;
  --ink-soft: #2B2B2B;
  --ink-muted: #6B6862;
  --line: rgba(14,14,14,0.10);
  --line-strong: rgba(14,14,14,0.22);
  --accent: #C8B83A;
  --accent-deep: #A99B25;
  --paper: #FAF8F2;
  --card: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(14,14,14,0.04), 0 2px 6px rgba(14,14,14,0.04);
  --shadow-md: 0 4px 12px rgba(14,14,14,0.06), 0 12px 28px rgba(14,14,14,0.08);
  --shadow-lg: 0 12px 28px rgba(14,14,14,0.08), 0 28px 60px rgba(14,14,14,0.14);
  --max: 1240px;
}

/* ============== RESET ============== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============== ACCESSIBILITY ============== */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--ink); color: var(--bg); padding: 12px 18px;
  border-radius: 8px; font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px; border-radius: 4px;
}

/* ============== LAYOUT ============== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ============== TOP BAR ============== */
.topbar {
  background: var(--ink); color: var(--bg);
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  max-width: var(--max); margin: 0 auto; padding: 10px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); }
.topbar-item svg { width: 14px; height: 14px; stroke: var(--accent); }
.topbar-item a:hover { color: var(--accent); }
.topbar-right { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.topbar-right .dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }

/* ============== NAVIGATION ============== */
nav#mainNav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,242,236,0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 0.02em; color: var(--ink); }
.brand-sub { font-size: 10px; letter-spacing: 0.22em; color: var(--ink-muted); font-weight: 600; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .2s ease; position: relative; }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid transparent; transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-deep); color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  width: 44px; height: 44px; border-radius: 10px; color: var(--ink); align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ============== HERO ============== */
.hero { padding: 90px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,184,58,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,14,14,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,14,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: end; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--ink); text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow .square { width: 7px; height: 7px; background: var(--accent); display: inline-block; }
.hero h1 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.92; letter-spacing: -0.01em;
  color: var(--ink); text-transform: uppercase;
}
.hero h1 .accent-bar { display: inline-block; position: relative; }
.hero h1 .accent-bar::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.18em;
  background: var(--accent); z-index: -1;
}
.hero h1 .slash { color: var(--accent); }
.hero-meta { display: flex; flex-direction: column; gap: 28px; padding: 0 0 14px; }
.hero-meta p.lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 380px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-stat-num { font-family: 'Anton', sans-serif; font-size: 36px; line-height: 1; color: var(--ink); letter-spacing: 0.02em; }
.hero-stat-label { font-size: 12px; color: var(--ink-muted); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* ============== TRUST BAR ============== */
.trustbar { background: var(--ink); color: var(--bg); padding: 26px 0; position: relative; overflow: hidden; }
.trustbar-inner { display: flex; align-items: center; justify-content: space-around; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(200,184,58,0.12); border: 1px solid rgba(200,184,58,0.32);
  display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0;
}
.trust-item .icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.trust-item .text { display: flex; flex-direction: column; }
.trust-item .title { font-weight: 700; font-size: 14px; color: var(--bg); letter-spacing: 0.01em; }
.trust-item .sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ============== SECTIONS ============== */
section { padding: 110px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--ink-muted); text-transform: uppercase; margin-bottom: 18px;
}
.section-eyebrow .square { width: 6px; height: 6px; background: var(--accent); }
.section-title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px); line-height: 1.0;
  letter-spacing: -0.005em; color: var(--ink);
  text-transform: uppercase; max-width: 820px; margin-bottom: 22px;
}
.section-title .accent { color: var(--accent-deep); }
.section-lead { font-size: 18px; color: var(--ink-soft); max-width: 680px; line-height: 1.65; }

/* ============== LEISTUNGEN ============== */
#leistungen { background: var(--bg-deep); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.service-card {
  background: var(--card); border: 1px solid var(--line);
  padding: 32px 28px; position: relative; transition: all .35s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Anton', sans-serif; font-size: 13px; color: var(--ink-muted); letter-spacing: 0.12em; margin-bottom: 18px; }
.service-icon {
  width: 52px; height: 52px; background: var(--bg);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--ink);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--ink); color: var(--accent); }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

/* ============== FAHRZEUGE ============== */
#fahrzeuge { background: var(--bg); }
.marketplaces { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.market-card {
  background: var(--ink); color: var(--bg); padding: 50px 44px;
  position: relative; overflow: hidden; border-radius: 4px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; justify-content: space-between; min-height: 280px;
}
.market-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.market-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--accent);
}
.market-card.alt { background: var(--paper); color: var(--ink); border: 1px solid var(--line-strong); }
.market-card.alt::before { background: var(--ink); }
.market-platform { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: 18px; }
.market-card.alt .market-platform { color: var(--ink); }
.market-card h3 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: 38px; line-height: 1; letter-spacing: -0.005em; margin-bottom: 16px; text-transform: uppercase;
}
.market-card p { font-size: 15px; line-height: 1.6; max-width: 380px; margin-bottom: 28px; opacity: 0.85; }
.market-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.market-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.market-card:hover .market-link svg { transform: translateX(4px); }

/* ============== BEWERTUNGEN ============== */
#bewertungen { background: var(--bg-deep); }
.reviews-summary { display: flex; align-items: center; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.reviews-rating { display: flex; align-items: center; gap: 14px; }
.reviews-num { font-family: 'Anton', sans-serif; font-size: 56px; line-height: 1; color: var(--ink); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; fill: var(--accent); }
.reviews-label { font-size: 13px; color: var(--ink-muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--card); border: 1px solid var(--line); padding: 30px 28px; position: relative; }
.review-stars { margin-bottom: 16px; }
.review-quote { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 24px; min-height: 110px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-source { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.review-cta { text-align: center; margin-top: 40px; }

/* ============== ÜBER UNS ============== */
#ueber { background: var(--bg); }
.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ueber-text p { font-size: 16px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.7; }
.ueber-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.value-tile {
  background: var(--paper); border: 1px solid var(--line); padding: 22px 20px; transition: all .25s ease;
}
.value-tile:hover { border-color: var(--accent); background: var(--card); }
.value-tile h4 {
  font-family: 'Anton', sans-serif; font-weight: 400; font-size: 22px;
  color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.005em;
}
.value-tile p { font-size: 13px; color: var(--ink-muted); margin: 0; line-height: 1.55; }
.ueber-visual {
  background: var(--ink); padding: 56px 48px; border-radius: 4px; position: relative; overflow: hidden;
}
.ueber-visual::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(200,184,58,0.3) 0%, transparent 60%);
}
.ueber-stat { color: var(--bg); position: relative; z-index: 1; }
.ueber-stat + .ueber-stat { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.ueber-stat-num { font-family: 'Anton', sans-serif; font-size: 64px; line-height: 1; color: var(--accent); letter-spacing: 0.005em; }
.ueber-stat-text { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; max-width: 280px; line-height: 1.5; }

/* ============== KONTAKT ============== */
#kontakt { background: var(--bg-deep); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; margin-top: 56px; }
.kontakt-info { display: flex; flex-direction: column; gap: 4px; }
.kontakt-block { background: var(--card); border: 1px solid var(--line); padding: 26px 28px; transition: all .25s ease; }
.kontakt-block + .kontakt-block { border-top: none; }
.kontakt-block:hover { background: var(--paper); }
.kontakt-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--ink-muted); text-transform: uppercase; margin-bottom: 12px;
}
.kontakt-label svg { width: 14px; height: 14px; stroke: var(--accent); }
.kontakt-value { font-family: 'Anton', sans-serif; font-size: 24px; line-height: 1.1; color: var(--ink); letter-spacing: 0.005em; }
.kontakt-value a:hover { color: var(--accent-deep); }
.kontakt-sub { font-size: 13px; color: var(--ink-muted); margin-top: 6px; line-height: 1.5; }
.hours-list { list-style: none; margin-top: 8px; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: 14px; color: var(--ink-soft); border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border: none; }
.hours-list li.closed { color: var(--ink-muted); }
.hours-list .day { font-weight: 600; }
.map-wrap { background: var(--card); border: 1px solid var(--line); overflow: hidden; min-height: 480px; position: relative; }
.map-visual { position: relative; min-height: 480px; height: 100%; overflow: hidden; }
.map-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-start; padding: 28px; }
.map-card {
  background: var(--ink); color: var(--bg); padding: 26px 26px 24px;
  max-width: 320px; width: 100%; box-shadow: 0 18px 40px rgba(14,14,14,0.25); position: relative;
}
.map-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); }
.map-card-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 14px;
}
.map-card-label svg { width: 14px; height: 14px; stroke: var(--accent); }
.map-card-name { font-family: 'Anton', sans-serif; font-size: 22px; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 8px; }
.map-card-addr { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.55; margin-bottom: 18px; }
.map-card-actions { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.map-card-actions .btn { width: 100%; }
.map-card-actions .btn-accent { background: var(--accent); color: var(--ink); }
.map-card-actions .btn-accent:hover { background: #DDC845; }
.map-card-actions .btn-secondary { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: var(--bg); }
.map-card-actions .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--bg); }
.map-card-note { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }

/* ============== CTA BANNER ============== */
.cta-banner { background: var(--ink); color: var(--bg); padding: 90px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at right center, rgba(200,184,58,0.18) 0%, transparent 70%);
}
.cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.0; text-transform: uppercase; color: var(--bg);
}
.cta-banner h2 .accent { color: var(--accent); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.78); margin-top: 18px; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; justify-self: end; }
.cta-banner .btn-primary { background: var(--accent); color: var(--ink); }
.cta-banner .btn-primary:hover { background: #DDC845; transform: translateY(-2px); }
.cta-banner .btn-secondary { color: var(--bg); border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-secondary:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ============== FOOTER ============== */
footer { background: var(--ink); color: var(--bg); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 56px; width: auto; filter: invert(1) brightness(2); margin-bottom: 18px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 320px; }
.footer-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; line-height: 1.6; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============== FLOATING CALL BUTTON (Mobile) ============== */
.floating-call {
  position: fixed; bottom: 18px; right: 18px; z-index: 60;
  background: var(--accent); color: var(--ink);
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  display: none; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(14,14,14,0.25);
  transition: transform .25s ease;
}
.floating-call:hover { transform: translateY(-2px); }
.floating-call svg { width: 18px; height: 18px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 24px 28px; gap: 18px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .marketplaces { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-self: start; flex-direction: row; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 80px 0; }
  .floating-call { display: inline-flex; }
  .topbar-left { gap: 14px; font-size: 12px; }
  .topbar-right { display: none; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .container, .topbar-inner, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .ueber-values { grid-template-columns: 1fr; }
  .trustbar-inner { justify-content: flex-start; gap: 24px; }
  .trust-divider { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
