/* ============================================================
   ABSCHLEPPEN.NET — "Bold Emergency" Design System
   Premium Emergency Services Platform 2026
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Colors */
  --signal-red: #E11D48;
  --signal-red-dark: #BE123C;
  --signal-red-glow: rgba(225, 29, 72, 0.4);
  --anthracite: #18181B;
  --anthracite-light: #27272A;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --white: #FFFFFF;
  --black: #000000;

  /* Typography */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 30px var(--signal-red-glow);
  --shadow-glow-sm: 0 0 15px var(--signal-red-glow);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
  --bottom-bar-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background-color: var(--anthracite);
  color: var(--white);
}

.section--slate {
  background-color: var(--slate-50);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal-red);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--signal-red);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--slate-500);
  max-width: 600px;
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: var(--slate-400);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--signal-red);
  color: var(--white);
  box-shadow: var(--shadow-glow-sm);
}

.btn--primary:hover {
  background: var(--signal-red-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--dark {
  background: var(--anthracite);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--anthracite-light);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--signal-red);
  font-weight: 600;
  padding: 0.5rem 0;
}

.btn--ghost:hover {
  gap: var(--space-md);
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
  border-radius: var(--radius-xl);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* === PULSE ANIMATION (Emergency CTA) === */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

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

.btn--emergency {
  position: relative;
  background: var(--signal-red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

.btn--emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 3px solid var(--signal-red);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.btn--emergency:hover {
  background: var(--signal-red-dark);
  transform: scale(1.03);
  animation: none;
}

.btn--emergency:hover::before {
  animation: none;
  opacity: 0;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
}

.header--transparent {
  background: transparent;
}

.header--solid {
  background: rgba(24, 24, 27, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  z-index: 1001;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--signal-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.header__logo-text span {
  color: var(--signal-red);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.header__nav-links {
  display: flex;
  gap: var(--space-xl);
  margin-left: var(--space-xl);
}

.header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link:hover {
  color: var(--white);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--signal-red);
  transition: width var(--transition-base);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem 1.25rem;
  background: var(--signal-red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.header__cta:hover {
  background: var(--signal-red-dark);
  box-shadow: var(--shadow-glow-sm);
  transform: scale(1.05);
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--signal-red);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--anthracite);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.45);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.3) 40%, rgba(15,23,42,0.6) 80%, rgba(15,23,42,0.95) 100%),
    linear-gradient(135deg, rgba(225,29,72,0.15) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.3);
  color: var(--signal-red);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(4px);
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--signal-red), #FF6B6B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--slate-300);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero__phone {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--slate-300);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero__badge-icon {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--emerald);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--slate-400);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

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

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--slate-400), transparent);
}

/* === SERVICES === */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: all var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 50%, rgba(15,23,42,0.2) 100%);
  transition: background var(--transition-slow);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(225,29,72,0.9) 0%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.3) 100%);
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: var(--space-xl);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: gap var(--transition-base);
}

.service-card:hover .service-card__link {
  gap: var(--space-md);
}

/* Secondary Services */
.services__secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-mini {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.service-mini:hover {
  border-color: var(--signal-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-mini__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(225,29,72,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-base);
}

.service-mini:hover .service-mini__icon {
  background: var(--signal-red);
  color: var(--white) !important;
}

.service-mini__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-800);
}

.service-mini__subtitle {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 2px;
}

/* === USP BANNER (Hochvolt) === */
.usp-banner {
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.usp-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.usp-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.usp-banner__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(225,29,72,0.8) 0%, rgba(15,23,42,0.9) 100%);
}

.usp-banner__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.usp-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--amber);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.usp-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.usp-banner__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.usp-banner__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.usp-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.usp-banner__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.1);
}

.usp-banner__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* === FUHRPARK === */
.fuhrpark-usp {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding: var(--space-xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(225,29,72,0.06) 100%);
  border: 2px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-2xl);
}

.fuhrpark-usp__icon {
  font-size: 2.5rem;
  min-width: 60px;
  animation: spin-slow 6s linear infinite;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fuhrpark-usp__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  background: rgba(245,158,11,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245,158,11,0.3);
}

.fuhrpark-usp__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: var(--space-sm);
}

.fuhrpark-usp__text {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.fuhrpark__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.fuhrpark__grid--four {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.fuhrpark-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-base);
}

.fuhrpark-card--featured {
  border: 2px solid var(--amber);
  box-shadow: 0 0 20px rgba(245,158,11,0.1);
}

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

.fuhrpark-card--featured:hover {
  box-shadow: 0 8px 25px rgba(245,158,11,0.2);
}

.fuhrpark-card__badge-unique {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 5;
  background: var(--amber);
  color: var(--slate-900);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.02em;
}

.fuhrpark-card__image {
  height: 240px;
  overflow: hidden;
}

.fuhrpark-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.fuhrpark-card:hover .fuhrpark-card__image img {
  transform: scale(1.05);
}

.fuhrpark-card__body {
  padding: var(--space-lg);
}

.fuhrpark-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: var(--space-xs);
}

.fuhrpark-card__type {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: var(--space-md);
}

.fuhrpark-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.fuhrpark-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: var(--slate-100);
  color: var(--slate-600);
  border-radius: var(--radius-full);
}

.fuhrpark-tag--highlight {
  background: rgba(245,158,11,0.15);
  color: var(--amber-dark);
  border: 1px solid rgba(245,158,11,0.3);
  font-weight: 700;
}

/* === TRUST === */
.trust__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.trust__cert {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  max-width: 400px;
}

.trust__cert img {
  width: 100%;
}

.trust__content h3 {
  margin-bottom: var(--space-md);
}

.trust__text {
  color: var(--slate-400);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

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

.trust__stat {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.trust__stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--signal-red);
  font-family: var(--font-mono);
}

.trust__stat-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: var(--space-xs);
  font-weight: 500;
}

/* Cooperation logos */
.trust__cooperation {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust__cooperation-label {
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.trust__cooperation-logos {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.cooperation-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--slate-300);
  font-size: 0.85rem;
  font-weight: 600;
}

/* === GOOGLE REVIEWS === */
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.reviews__stars {
  font-size: 1.5rem;
  color: #F59E0B;
  letter-spacing: 2px;
}

.reviews__score {
  font-size: 1rem;
  color: var(--slate-600);
}

.reviews__score strong {
  font-size: 1.3rem;
  color: var(--slate-800);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.review-card__stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--slate-100);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--signal-red);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.review-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 1px;
}

/* === TEAM === */
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-top: var(--space-2xl);
}

.team__image-stack {
  position: relative;
}

.team__image-main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.team__image-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.team__image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.team__image-float img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team__info h3 {
  margin-bottom: var(--space-md);
}

.team__text {
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.team__members {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.team-member {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--slate-50);
  border-radius: var(--radius-lg);
}

.team-member__avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--signal-red);
}

.team-member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-weight: 700;
  color: var(--slate-800);
}

.team-member__role {
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* === ANFRAGE FORM === */
.anfrage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.anfrage-form {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
}

.anfrage-form__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--slate-900);
}

.anfrage-form__subtitle {
  color: var(--slate-500);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--slate-50);
  color: var(--slate-900);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--signal-red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(225,29,72,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

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

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

.form-radio-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.form-radio {
  display: none;
}

.form-radio-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-radio:checked + .form-radio-label {
  border-color: var(--signal-red);
  background: rgba(225,29,72,0.08);
  color: var(--signal-red);
}

.form-radio-label:hover {
  border-color: var(--signal-red);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-md);
}

.form-privacy {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--slate-400);
  text-align: center;
}

.form-privacy a {
  color: var(--signal-red);
  text-decoration: underline;
}

/* Anfrage info side */
.anfrage__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.anfrage__info-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.anfrage__info-card:hover {
  box-shadow: var(--shadow-md);
}

.anfrage__info-icon {
  width: 48px;
  height: 48px;
  background: rgba(225,29,72,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.anfrage__info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: var(--space-sm);
}

.anfrage__info-text {
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

.anfrage__info-phone {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--signal-red);
  margin-top: var(--space-sm);
}

.anfrage__hours {
  margin-top: var(--space-md);
}

.anfrage__hours dt {
  font-weight: 600;
  color: var(--slate-700);
  font-size: 0.9rem;
}

.anfrage__hours dd {
  color: var(--slate-500);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

/* === FAQ === */
.faq__list {
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
}

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

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-xl) 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-800);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--signal-red);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--radius-full);
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1.2rem;
  color: var(--slate-500);
}

.faq-item.active .faq-item__icon {
  background: var(--signal-red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-xl);
}

.faq-item__answer p {
  color: var(--slate-500);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--signal-red), var(--signal-red-dark));
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-banner__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image: 
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px);
  background-size: 60px 60px;
}

/* === FOOTER === */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-desc {
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9rem;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--signal-red);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.footer__contact-icon {
  min-width: 20px;
  text-align: center;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: var(--slate-500);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--signal-red);
}

/* === MOBILE BOTTOM BAR === */
.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-sm) var(--space-md);
  padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
}

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

.bottom-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--space-sm) 0;
  border-radius: var(--radius-lg);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-400);
  transition: all var(--transition-fast);
}

.bottom-bar__btn--primary {
  background: var(--signal-red);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.bottom-bar__btn-icon {
  font-size: 1.3rem;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services__grid .service-card:last-child {
    grid-column: span 2;
  }
  
  .services__secondary {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .usp-banner__content {
    grid-template-columns: 1fr;
  }
  
  .fuhrpark__grid,
  .fuhrpark__grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .fuhrpark-usp {
    flex-direction: column;
    text-align: center;
  }
  
  .trust__row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .trust__cert {
    margin: 0 auto;
    max-width: 300px;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__grid {
    grid-template-columns: 1fr;
  }
  
  .anfrage__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__badges {
    flex-direction: column;
    gap: var(--space-sm);
  }

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

  .services__grid .service-card:last-child {
    grid-column: span 1;
  }

  .service-card {
    height: 300px;
  }

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

  .fuhrpark__grid,
  .fuhrpark__grid--four {
    grid-template-columns: 1fr;
  }

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

  .trust__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .trust__stat {
    padding: var(--space-md);
  }

  .trust__stat-number {
    font-size: 1.5rem;
  }

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

  .team__image-float {
    position: static;
    width: 100%;
    margin-top: var(--space-md);
  }

  .team__image-float img {
    height: 200px;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  /* Show bottom bar on mobile */
  .bottom-bar {
    display: block;
  }

  body {
    padding-bottom: var(--bottom-bar-height);
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

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

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

.cookie-banner.active {
  display: block;
  transform: translateY(0);
  animation: cookie-slide-up 0.4s ease-out forwards;
}

@keyframes cookie-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner__inner {
  background: rgba(24, 24, 27, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  max-width: 100%;
}

.cookie-banner__main {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex: 1;
  min-width: 0;
}

.cookie-banner__shield {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal-red);
  margin-top: 2px;
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__text strong {
  color: var(--slate-200);
}

.cookie-banner__privacy-link {
  color: var(--signal-red);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: var(--space-xs);
  font-size: 0.85rem;
}

.cookie-banner__privacy-link:hover {
  color: #FF6B6B;
}

.cookie-banner__details {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner__category {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cookie-banner__category strong {
  font-size: 0.8rem;
  color: var(--slate-200);
  display: block;
}

.cookie-banner__category-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
  display: block;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  min-width: 38px;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--slate-600);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--emerald);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(18px);
}

.cookie-toggle__slider--locked {
  background: var(--emerald);
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle__slider--locked::before {
  transform: translateX(18px);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.cookie-banner__btn--primary {
  background: var(--signal-red);
  color: var(--white);
}

.cookie-banner__btn--primary:hover {
  background: var(--signal-red-dark);
  transform: translateY(-1px);
}

.cookie-banner__btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--slate-300);
}

.cookie-banner__btn--outline:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cookie-banner__link {
  font-size: 0.8rem;
  color: var(--slate-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.cookie-banner__link:hover {
  color: var(--slate-300);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-lg);
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }

  .cookie-banner__details {
    flex-direction: column;
    gap: var(--space-md);
  }
}
