/* Design-System */
:root {
  --bg-dark: #0F0F0F;
  --bg-mid: #1A1A1A;
  --bg-light: #F7F7F7;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #F5F5F5;
  --text-muted: #888888;
  --accent: #C8102E;
  --accent-hover: #A00D24;
  --ford-color: #003087;
  --maxus-color: #00529B;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.12);

  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  --max-width: 1200px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Labels */
.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.label-light {
  color: rgba(255, 255, 255, 0.6);
}

/* Section headers */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-header-light h2 {
  color: var(--text-light);
}

.section-desc {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 500px;
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  transition: gap var(--transition);
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin: 4px 4px 0 0;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─────────────────────────────
   NAVIGATION
───────────────────────────── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  background: var(--bg-dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--accent-hover);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg-dark);
  align-items: center;
  justify-content: center;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.nav-overlay-links a {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  transition: color var(--transition);
}

.nav-overlay-links a:hover {
  color: var(--accent);
}


/* ─────────────────────────────
   SEKTION 1: HERO
───────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 var(--space-md);
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ─────────────────────────────
   SEKTION 2: VORSTELLUNG
───────────────────────────── */
.vorstellung {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}

.vorstellung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.vorstellung-bild {
  position: relative;
}

.portrait-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.trust-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.trust-name {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
}

.trust-sub {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.vorstellung-text {
  padding-left: var(--space-sm);
}

.vorstellung-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.vorstellung-text .lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.vorstellung-text p {
  color: var(--text-mid);
  margin-bottom: 12px;
}

.vorstellung-badges {
  margin-top: 24px;
}


/* ─────────────────────────────
   SEKTION 3: MARKEN
───────────────────────────── */
.marken {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.marken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.marken-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.marken-karte {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.marken-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.marken-bild-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}

.marken-bild-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.marken-karte:hover .marken-bild-wrapper img {
  transform: scale(1.05);
}

.marken-logo-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.marken-logo-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.marken-bild-wrapper .marken-logo-img {
  object-fit: contain;
  padding: 32px;
  background: #fff;
}

.marken-karte-text {
  padding: 20px;
}

.marken-karte-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.marken-karte-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
}


/* ─────────────────────────────
   SEKTION 4: VORTEILE
───────────────────────────── */
.vorteile {
  padding: var(--space-xl) 0;
  background: var(--bg-dark);
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.vorteil-karte {
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition);
}

.vorteil-karte:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.vorteil-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.vorteil-karte h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.vorteil-karte p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ─────────────────────────────
   SEKTION 5: FAHRZEUGE (Slider)
───────────────────────────── */
.fahrzeuge {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
  overflow: hidden;
}

.fahrzeuge-swiper {
  padding: 0 var(--space-md) 48px;
}

.fahrzeug-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  max-width: 380px;
}

.fahrzeug-bild {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e0e0e0;
}

.fahrzeug-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fahrzeug-slide:hover .fahrzeug-bild img {
  transform: scale(1.05);
}

.fahrzeug-info {
  padding: 20px;
}

.fahrzeug-marke {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  color: #fff;
}

.fahrzeug-marke.ford {
  background: var(--ford-color);
}

.fahrzeug-marke.maxus {
  background: var(--maxus-color);
}

.fahrzeug-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.fahrzeug-info p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}

.antrieb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.antrieb-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.antrieb-tag.diesel {
  background: #EBEBEB;
  color: #555555;
}

.antrieb-tag.elektro {
  background: #E6F4EA;
  color: #1E7A33;
}

.antrieb-tag.phev {
  background: #EEF0FF;
  color: #3B4FBF;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  background: var(--bg-white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}


/* ─────────────────────────────
   SEKTION 6: ÜBER UNS
───────────────────────────── */
.ueber-uns {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.ueber-bild img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.ueber-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.ueber-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}

.standorte {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.standort {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.standort strong {
  font-weight: 700;
  font-size: 0.95rem;
}

.standort span {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.standort-tel {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  transition: opacity var(--transition);
}

.standort-tel:hover {
  opacity: 0.8;
}


/* ─────────────────────────────
   SEKTION 7: KUNDENSTIMMEN
───────────────────────────── */
.kundenstimmen {
  padding: var(--space-xl) 0;
  background: var(--bg-dark);
}

.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.stimme {
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  position: relative;
}

.stimme::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: 20px;
  font-size: 6rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
}

.stimme p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.stimme footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stimme footer strong {
  color: #fff;
  font-size: 0.95rem;
}

.stimme footer span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}


/* ─────────────────────────────
   SEKTION 8: KONTAKT
───────────────────────────── */
.kontakt {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.kontakt-formular {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-gruppe {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-gruppe label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-gruppe input,
.form-gruppe textarea,
.form-gruppe select {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  appearance: none;
}

.form-gruppe input:focus,
.form-gruppe textarea:focus,
.form-gruppe select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-gruppe textarea {
  resize: vertical;
  min-height: 120px;
}

.form-gruppe select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-hinweis {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.kontakt-direkt {
  padding: var(--space-md);
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.kontakt-direkt h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.kontakt-direkt > p {
  color: var(--text-mid);
  margin-bottom: 24px;
}

.direkt-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.direkt-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-white);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text-dark);
  border: 1.5px solid transparent;
  transition: border-color var(--transition);
}

.direkt-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.direkt-link-whatsapp:hover {
  color: #25D366;
  border-color: #25D366;
}

.direkt-link svg {
  flex-shrink: 0;
  color: var(--text-mid);
}

.direkt-link:hover svg {
  color: inherit;
}

.verfuegbarkeit {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: var(--bg-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.verfuegbarkeit h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.verfuegbarkeit p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 4px;
}


/* ─────────────────────────────
   SEKTION 9: FOOTER
───────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-name {
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-slogan {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 4px 0;
}

.footer-arbeitgeber {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-nav,
.footer-kontakt,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav h4,
.footer-kontakt h4,
.footer-social h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-nav a,
.footer-kontakt a,
.footer-kontakt p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-kontakt a:hover {
  color: #fff;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.social-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* ─────────────────────────────
   RESPONSIVE: TABLET (768px)
───────────────────────────── */
@media (max-width: 960px) {
  .vorteile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 64px;
    --space-lg: 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .vorstellung-grid,
  .ueber-grid,
  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .vorstellung-bild {
    max-width: 400px;
    margin: 0 auto;
  }

  .trust-badge {
    right: 0;
    bottom: -16px;
  }

  .marken-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .vorteile-grid {
    grid-template-columns: 1fr;
  }

  .stimmen-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ueber-bild {
    order: -1;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

/* DSGVO Banner */
#dsgvo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  border-top: 1px solid #2a2a2a;
  padding: 20px 24px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

#dsgvo-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

#dsgvo-banner p {
  color: #aaaaaa;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

#dsgvo-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

#dsgvo-ok {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

#dsgvo-ok:hover {
  background: #a00d25;
}
