/* ============================================================
   FAHRSCHULE AB COMPANY – Premium Stylesheet
   Mobile-First | DSGVO-konform | Keine externen Ressourcen
   ============================================================

   SCHRIFTEN (DSGVO):
   Aktuell: System-Font-Stack (kein externer Request).
   Für lokale Inter-Schrift:
     1. Dateien herunterladen: https://fontsource.org/fonts/inter
     2. Ablegen in /public/assets/fonts/
     3. @font-face-Regeln unten einkommentieren
   ============================================================ */

/*
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy-950: #060E1D;
  --navy-900: #0B1D3A;
  --navy-800: #122244;
  --navy-700: #1A3261;
  --navy-600: #24468A;
  --navy-100: #E8EDF7;
  --navy-50:  #F0F3FA;

  --orange-600: #D4660A;
  --orange-500: #F07B0A;
  --orange-400: #F5A340;
  --orange-100: #FEF0DC;
  --orange-50:  #FFF8F0;

  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5568;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;

  --green-500: #10B981;
  --green-100: #D1FAE5;
  --purple-500: #8B5CF6;
  --purple-100: #EDE9FE;
  --red-500:    #EF4444;
  --red-100:    #FEE2E2;
  --teal-500:   #14B8A6;
  --teal-100:   #CCFBF1;
  --blue-500:   #3B82F6;
  --blue-100:   #DBEAFE;

  --white: #FFFFFF;
  --wowobot: #22b8e0;

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  /* Wenn Inter vorhanden: --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, ... */

  --shadow-xs: 0 1px 3px rgba(11, 29, 58, 0.07);
  --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.09);
  --shadow-md: 0 4px 20px rgba(11, 29, 58, 0.10);
  --shadow-lg: 0 8px 40px rgba(11, 29, 58, 0.13);
  --shadow-xl: 0 16px 60px rgba(11, 29, 58, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1280px;
  --container-px: 1.25rem;
  --section-py: clamp(4rem, 8vw, 6.5rem);
  --nav-height: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

@media (min-width: 640px) {
  :root { --container-px: 2rem; }
}
@media (min-width: 1024px) {
  :root { --container-px: 2.5rem; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.125rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1rem; font-weight: 600; }

p {
  color: var(--gray-600);
  line-height: 1.75;
}

.text-orange { color: var(--orange-500); }
.text-white  { color: var(--white); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.875rem;
}

.section-eyebrow--light { color: var(--orange-400); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.0625rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
  cursor: pointer;
  text-decoration: none;
}

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; min-height: 40px; }
.btn-lg { padding: 0.9375rem 1.875rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.btn-primary {
  background-color: var(--orange-500);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(240, 123, 10, 0.30);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--orange-600);
  box-shadow: 0 4px 16px rgba(240, 123, 10, 0.40);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--navy-700);
  background-color: var(--navy-50);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background-color: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
}

.btn:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.nav-container { width: 100%; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(11, 29, 58, 0.12);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--orange-500);
  border-radius: var(--radius-sm);
  gap: 1px;
}

.logo-mark span {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-primary {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-secondary {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header.is-scrolled .logo-primary { color: var(--navy-900); }
.site-header.is-scrolled .logo-secondary { color: var(--gray-500); }

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover { color: var(--white); background-color: rgba(255,255,255,0.1); }

.site-header.is-scrolled .nav-link { color: var(--gray-700); }
.site-header.is-scrolled .nav-link:hover { color: var(--navy-900); background-color: var(--gray-100); }

.nav-cta { margin-left: 0.5rem; }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background-color var(--transition-fast);
}

.burger:hover { background-color: rgba(255,255,255,0.1); }
.site-header.is-scrolled .burger:hover { background-color: var(--gray-100); }

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--transition-base), opacity var(--transition-base), background-color var(--transition-base);
}

.site-header.is-scrolled .burger-line { background-color: var(--navy-900); }

.burger.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Menu */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy-900);
  padding: 1.5rem var(--container-px) 2rem;
  gap: 0.25rem;
  overflow-y: auto;
  animation: mobileNavIn var(--transition-base) ease forwards;
}

@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-links.is-open .nav-link {
  padding: 1rem 1.25rem;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
}

.nav-links.is-open .nav-cta {
  margin: 0.75rem 0 0;
  padding: 1rem;
  background-color: var(--orange-500);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .burger    { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(6,14,29,0.92) 0%, rgba(18,34,68,0.88) 50%, rgba(26,50,97,0.84) 100%),
    url('/assets/imported/slideshow_01.jpg') center 40% / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(240,123,10,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(36,70,138,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: clamp(3rem, 8vw, 5rem);
  align-items: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--orange-400);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--orange-400);
  position: relative;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
}

.trust-item svg { width: 16px; height: 16px; color: var(--green-500); flex-shrink: 0; }

/* Hero Visual */
.hero-visual { display: none; }

.hero-visual-inner {
  position: relative;
  height: 340px;
}

.visual-card {
  position: absolute;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem;
  animation: float 6s ease-in-out infinite;
}

.visual-card--main {
  top: 0;
  right: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.visual-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.04em;
  line-height: 1;
}

.visual-stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.visual-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  padding: 0.375rem 0.625rem;
  background-color: var(--green-100);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  width: fit-content;
}

.visual-badge svg { width: 14px; height: 14px; }

.visual-card--app {
  top: 120px;
  left: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
  animation-delay: -2s;
}

.app-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon svg { width: 24px; height: 24px; color: var(--white); }

.visual-card--app span { font-size: 0.8125rem; font-weight: 600; color: var(--navy-900); }

.app-languages {
  font-size: 0.75rem !important;
  color: var(--orange-500) !important;
  font-weight: 500 !important;
}

.visual-card--location {
  bottom: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  animation-delay: -4s;
}

.visual-card--location svg { width: 20px; height: 20px; color: var(--navy-700); flex-shrink: 0; }
.visual-card--location span { font-size: 0.8125rem; font-weight: 600; color: var(--navy-900); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
}

.hero-wave svg { width: 100%; height: 100%; }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-visual { display: block; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background-color: var(--white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
}

.stat-value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.375rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background-color: var(--gray-50);
  padding-block: var(--section-py);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}

.service-card-icon svg { width: 26px; height: 26px; }

.service-card-icon--blue   { background: var(--blue-100);   color: var(--blue-500); }
.service-card-icon--orange { background: var(--orange-100); color: var(--orange-500); }
.service-card-icon--green  { background: var(--green-100);  color: var(--green-500); }
.service-card-icon--purple { background: var(--purple-100); color: var(--purple-500); }
.service-card-icon--red    { background: var(--red-100);    color: var(--red-500); }
.service-card-icon--teal   { background: var(--teal-100);   color: var(--teal-500); }

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--navy-900);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange-500);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-link svg { width: 14px; height: 14px; }
.service-card-link:hover { gap: 0.625rem; color: var(--orange-600); }

.service-card--featured {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-color: transparent;
}

.service-card--featured h3, .service-card--featured p { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.7); }
.service-card--featured .service-card-link { color: var(--orange-400); }
.service-card--featured::before { opacity: 0 !important; }

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--orange-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
  background:
    linear-gradient(135deg, rgba(6,14,29,0.94) 0%, rgba(18,34,68,0.91) 60%, rgba(26,50,97,0.88) 100%),
    url('/assets/imported/slideshow_02.jpg') center/cover no-repeat;
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.app-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.app-content h2 { color: var(--white); margin-bottom: 1rem; }

.app-description {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.app-features svg { width: 20px; height: 20px; color: var(--green-500); flex-shrink: 0; }

/* App Mockup */
.app-visual { display: flex; justify-content: center; }

.app-mockup {
  position: relative;
  width: 280px;
}

.mockup-screen {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 6px rgba(255,255,255,0.08);
}

.mockup-header {
  background-color: var(--navy-900);
  padding: 0.875rem 1rem;
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.25);
}

.mockup-content { padding: 1.25rem; }

.mockup-question span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.mockup-progress {
  height: 4px;
  background-color: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mockup-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  border-radius: 4px;
}

.mockup-card {
  background-color: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.875rem;
}

.mockup-card p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
}

.mockup-answers { display: flex; flex-direction: column; gap: 0.5rem; }

.mockup-answer {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  background-color: var(--gray-100);
  color: var(--gray-700);
  border: 1.5px solid transparent;
}

.mockup-answer--correct {
  background-color: var(--green-100);
  color: #065f46;
  border-color: var(--green-500);
}

.mockup-lang-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.mockup-lang-badges span {
  background-color: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 1024px) {
  .app-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background-color: var(--gray-50);
  padding-block: var(--section-py);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed var(--gray-300);
}

.about-img-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--gray-400);
  margin: auto;
}

.about-img-placeholder p {
  font-size: 0.875rem;
  text-align: center;
  color: var(--gray-400);
  line-height: 1.5;
}

.about-img-placeholder p span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-300);
}

/* Wenn Bild vorhanden:
   .about-img-placeholder { background: none; border: none; }
   .about-img-placeholder::after {
     content: '';
     position: absolute;
     inset: 0;
     background-image: url('/assets/imported/team.jpg');
     background-size: cover;
     border-radius: var(--radius-xl);
   }
*/

.about-contact-card {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-contact-card svg {
  width: 36px;
  height: 36px;
  color: var(--navy-700);
  flex-shrink: 0;
  background-color: var(--navy-50);
  padding: 8px;
  border-radius: var(--radius-sm);
}

.about-contact-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy-900);
}

.about-contact-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.about-content .section-eyebrow { margin-bottom: 0.75rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { margin-bottom: 1rem; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.about-value svg {
  width: 36px;
  height: 36px;
  color: var(--orange-500);
  flex-shrink: 0;
  background-color: var(--orange-50);
  padding: 8px;
  border-radius: var(--radius-sm);
}

.about-value strong { display: block; font-size: 0.9375rem; color: var(--navy-900); margin-bottom: 0.125rem; }
.about-value span   { font-size: 0.875rem; color: var(--gray-500); }

@media (min-width: 1024px) {
  .about-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  background-color: var(--white);
  padding-block: var(--section-py);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  counter-reset: steps;
}

.process-step {
  position: relative;
}

.process-step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: -0.5rem;
  font-variant-numeric: tabular-nums;
}

.process-step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process-step-icon svg { width: 24px; height: 24px; color: var(--white); }

.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.875rem; line-height: 1.65; }

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section {
  background-color: var(--gray-50);
  padding-block: var(--section-py);
}

/* Map Placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--navy-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-xl);
  border: 1.5px dashed var(--gray-300);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.map-pin-icon { width: 32px; height: 32px; color: var(--navy-700); }

.map-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-700);
}

.map-content .btn { margin-top: 0.25rem; }

/* Location Cards */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.location-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.location-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.location-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg { width: 22px; height: 22px; color: var(--white); }

.location-card-header h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--navy-900);
}

.location-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  background-color: var(--navy-50);
  color: var(--navy-700);
}

.location-badge--primary {
  background-color: var(--orange-100);
  color: var(--orange-600);
}

.location-details { margin-bottom: 1.25rem; }

.location-info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.location-info svg { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; margin-top: 2px; }

/* Accordion */
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-700);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition-fast);
}

.accordion-trigger:hover { color: var(--orange-500); }
.accordion-trigger svg:first-child { width: 16px; height: 16px; color: var(--orange-500); flex-shrink: 0; }

.accordion-chevron {
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.accordion-trigger.is-open .accordion-chevron { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-top: 0.75rem;
}

.hours-table td {
  padding: 0.3rem 0;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy-800);
  padding-right: 1rem;
  white-space: nowrap;
}

.location-actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .map-placeholder { height: 260px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background-color: var(--white);
  padding-block: var(--section-py);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 1.75rem; }

.contact-items { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  min-height: 44px;
}

a.contact-item:hover {
  border-color: var(--navy-100);
  background-color: var(--navy-50);
}

.contact-item--no-link { cursor: default; }

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; color: var(--white); }

.contact-item-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.125rem;
}

.contact-item-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-900);
  word-break: break-all;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form { display: flex; flex-direction: column; gap: 1.125rem; }

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

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-900);
}

.form-label span { color: var(--orange-500); }

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--gray-900);
  background-color: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(26, 50, 97, 0.08);
}

.form-input::placeholder { color: var(--gray-400); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

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

/* Checkbox */
.form-group--checkbox { gap: 0; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }

.form-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  background-color: var(--white);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-checkbox:checked + .form-checkbox-custom {
  background-color: var(--navy-800);
  border-color: var(--navy-800);
}

.form-checkbox:checked + .form-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox:focus-visible + .form-checkbox-custom {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.form-checkbox-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.form-checkbox-text a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox-text a:hover { color: var(--orange-500); }

.form-error {
  padding: 0.75rem 1rem;
  background-color: var(--red-100);
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: #991b1b;
  font-weight: 500;
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--green-500);
  margin: 0 auto 1rem;
}

.form-success h3 { color: var(--navy-900); margin-bottom: 0.5rem; }
.form-success p  { color: var(--gray-600); }

@media (min-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--navy-950) 0%, #030810 100%);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(3rem, 6vw, 5rem);
}

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

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

.footer-logo .logo-primary { color: var(--white); }
.footer-logo .logo-secondary { color: rgba(255,255,255,0.45); }

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.125rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
  word-break: break-word;
}

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

.footer-col li:not(:has(a)) {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.footer-wowobot {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  text-align: center;
}

.footer-wowobot a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

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

.wowobot-brand {
  color: var(--wowobot);
  font-weight: 700;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1fr; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-wowobot {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-top: 0;
    padding-left: 1.5rem;
    width: auto;
    text-align: right;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Instant-visibility for elements in the hero (above fold) */
.hero .reveal {
  opacity: 0;
  animation: revealUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero .reveal-d1 { animation-delay: 0.1s; }
.hero .reveal-d2 { animation-delay: 0.2s; }
.hero .reveal-d3 { animation-delay: 0.3s; }
.hero .reveal-d4 { animation-delay: 0.4s; }

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

/* ============================================================
   AKTUELLES / TERMINE BANNER
   ============================================================ */
.aktuelles-section {
  background: linear-gradient(90deg, var(--navy-800) 0%, var(--navy-700) 100%);
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.aktuelles-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.aktuelles-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-400);
  flex-shrink: 0;
}

.aktuelles-label svg { width: 14px; height: 14px; }

.aktuelles-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.5rem;
  flex: 1;
}

.aktuelles-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.aktuelles-item svg { width: 14px; height: 14px; color: var(--orange-400); flex-shrink: 0; }

.aktuelles-item strong { color: var(--white); }

.aktuelles-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-400);
  border: 1px solid rgba(240,123,10,0.35);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  min-height: 32px;
}
.aktuelles-cta:hover { background-color: var(--orange-500); color: var(--white); border-color: var(--orange-500); }

/* ============================================================
   SERVICE CARD WITH TOP IMAGE
   ============================================================ */
.service-card--with-img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-img-top {
  width: 100%;
  height: 168px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.service-card--with-img:hover .service-card-img-top img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body .service-card-link { margin-top: auto; padding-top: 0.75rem; }

.service-card:not(.service-card--with-img) .service-card-icon,
.service-card:not(.service-card--with-img) h3,
.service-card:not(.service-card--with-img) p,
.service-card:not(.service-card--with-img) .service-card-link {
  /* Already in card root padding */
}

/* ============================================================
   ABOUT – REAL IMAGE
   ============================================================ */
.about-real-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

/* ============================================================
   REAL LOGO IN FOOTER
   ============================================================ */
.footer-logo-img {
  width: 150px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero .reveal {
    animation: none;
    opacity: 1;
  }

  .badge-pulse { animation: none; }
  .visual-card { animation: none; }

  html { scroll-behavior: auto; }
}
