/* =====================================================================
   GE RundumSauber — Premium Stylesheet
   Lokal eingebundene Webfonts (DSGVO-konform): Plus Jakarta Sans + Inter
   Falls die Schriftdateien noch nicht im Ordner /assets/fonts/ liegen,
   fällt der Browser auf die System-Stack-Fallbacks zurück.
   ===================================================================== */

/* @font-face — sobald die Schriften lokal hinterlegt sind, aktivieren.
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/PlusJakartaSans-Variable.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
*/

/* ============== TOKENS ============== */
:root {
  /* Marken-Farben — tieferes, sattes Marineblau */
  --c-navy-900: #030A1C;
  --c-navy-800: #061534;
  --c-navy-700: #0C2456;
  --c-navy-600: #143372;
  --c-cyan-500: #00C2D1;
  --c-cyan-400: #1FD8E6;
  --c-cyan-300: #7BE6EE;

  --c-ink:      #061534;
  --c-ink-soft: #2A3A5C;
  --c-muted:    #6B7A92;
  --c-line:     #E3E8F0;
  --c-line-soft:#EEF1F6;
  --c-bg:       #FFFFFF;
  --c-bg-soft:  #F4F7FC;
  --c-bg-mute:  #ECF1F8;

  /* Premium-Akzente */
  --grad-primary: linear-gradient(135deg, #00C2D1 0%, #0AA9D6 100%);
  --grad-navy:    linear-gradient(135deg, #061534 0%, #0C2456 50%, #143372 100%);
  --grad-navy-deep: linear-gradient(160deg, #030A1C 0%, #061534 50%, #0C2456 100%);
  --grad-mesh:    radial-gradient(circle at 20% 15%, rgba(0,194,209,0.20) 0%, transparent 50%),
                  radial-gradient(circle at 85% 30%, rgba(0,194,209,0.12) 0%, transparent 55%),
                  radial-gradient(circle at 50% 90%, rgba(20,51,114,0.08) 0%, transparent 60%);

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(6,21,52,0.08);
  --shadow-md: 0 8px 28px -10px rgba(6,21,52,0.22), 0 2px 6px rgba(6,21,52,0.08);
  --shadow-lg: 0 24px 60px -18px rgba(6,21,52,0.28), 0 6px 14px rgba(6,21,52,0.08);
  --shadow-cyan: 0 14px 40px -10px rgba(0,194,209,0.50);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Spacing scale (8pt) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Fonts */
  --f-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body:    'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1200px;
  --header-h: 92px;

  /* Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

a { color: var(--c-cyan-500); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--c-cyan-400); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0;
  color: var(--c-navy-800);
  font-weight: 700;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--c-cyan-500); color: #fff; }

:focus-visible {
  outline: 2px solid var(--c-cyan-500);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.section { padding: var(--s-9) 0; }

.section__head { max-width: 760px; margin: 0 auto var(--s-7); text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-cyan-500);
  margin-bottom: var(--s-4);
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 194, 209, 0.08);
  border: 1px solid rgba(0, 194, 209, 0.18);
}

.section__title {
  font-size: clamp(1.85rem, 3vw + 0.6rem, 2.85rem);
  margin-bottom: var(--s-4);
}

.title-accent {
  color: var(--c-cyan-500);
}

.section__lede {
  font-size: 1.075rem;
  color: var(--c-ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-cyan);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px rgba(0,194,209,0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--c-navy-800);
  border: 1.5px solid var(--c-line);
}

.btn--ghost:hover {
  border-color: var(--c-navy-800);
  background: var(--c-navy-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ============== HEADER ============== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--c-line);
  box-shadow: 0 4px 20px -10px rgba(10,30,63,0.10);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  height: 62px;
  width: auto;
  transition: transform .3s var(--ease-out);
}

@media (max-width: 768px) {
  .brand__logo { height: 52px; }
}

.brand:hover .brand__logo { transform: scale(1.04); }

.nav { display: none; }

@media (min-width: 1024px) {
  .nav {
    display: block;
    flex: 1;
  }
  .nav__list {
    display: flex;
    justify-content: center;
    gap: var(--s-5);
  }
}

.nav__link {
  position: relative;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-ink);
  padding: 8px 4px;
  transition: color .2s var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: var(--c-cyan-500);
  transition: width .3s var(--ease-out), left .3s var(--ease-out);
  border-radius: 1px;
}

.nav__link:hover { color: var(--c-cyan-500); }
.nav__link:hover::after { width: 70%; left: 15%; }

.header__cta {
  display: none;
  align-items: center;
  gap: 18px;
}

@media (min-width: 1024px) {
  .header__cta { display: flex; }
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-navy-800);
}

.header__phone svg { color: var(--c-cyan-500); }
.header__phone:hover { color: var(--c-cyan-500); }

/* Nav-Toggle (Mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy-800);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu[hidden] { display: none !important; }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #fff;
  padding: var(--s-4) 24px var(--s-6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 20px 30px -20px rgba(10,30,63,0.18);
  z-index: 99;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu__link {
  display: block;
  padding: 14px 4px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line-soft);
}

.mobile-menu__link:last-of-type { border-bottom: 0; }

.mobile-menu__divider {
  height: 1px;
  background: var(--c-line);
  margin: 12px 0;
}

.mobile-menu__contact {
  padding: 12px 4px;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-navy-800);
  font-size: 15px;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + var(--s-8)) 0 var(--s-9);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #F8FAFD 0%, #EDF2F8 60%, #E4EBF4 100%);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  opacity: 1;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(0,194,209,0.06) 0%, transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(10,30,63,0.04) 0%, transparent 30%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: var(--s-7);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s-7);
  }
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--s-5);
}

.hero__badge-icon {
  color: var(--c-cyan-500);
  flex-shrink: 0;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--c-cyan-500);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.hero__badge-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--c-cyan-500);
  opacity: 0.35;
  animation: pulse 2.4s var(--ease-out) infinite;
}

@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 0.35; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.hero__title {
  font-size: clamp(2rem, 3.8vw + 0.4rem, 3.5rem);
  line-height: 1.08;
  margin-bottom: var(--s-5);
  letter-spacing: -0.025em;
  max-width: 18ch;
}

.hero__accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero__lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 540px;
  margin-bottom: var(--s-6);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--s-6);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink-soft);
}

.hero__trust svg { color: var(--c-cyan-500); }

/* Hero Visual */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__visual-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 6 / 7;
  background: var(--c-navy-900);
}

.hero__visual-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle at 50% 50%, rgba(0,194,209,0.45), transparent 65%);
  filter: blur(50px);
  z-index: -1;
  opacity: 0.9;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.9; }
  33%      { transform: scale(1.1) translate(20px, -10px); opacity: 1; }
  66%      { transform: scale(0.95) translate(-15px, 15px); opacity: 0.75; }
}

/* === Bilder-Carousel: 9 Slides === */
.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  animation: slideCycle 27s infinite;
  will-change: opacity, transform;
}

/* 9 Slides, je 3 Sekunden sichtbar */
.hero__slide--1 { animation-delay:  0s; }
.hero__slide--2 { animation-delay:  3s; }
.hero__slide--3 { animation-delay:  6s; }
.hero__slide--4 { animation-delay:  9s; }
.hero__slide--5 { animation-delay: 12s; }
.hero__slide--6 { animation-delay: 15s; }
.hero__slide--7 { animation-delay: 18s; }
.hero__slide--8 { animation-delay: 21s; }
.hero__slide--9 { animation-delay: 24s; }

@keyframes slideCycle {
  0%    { opacity: 0; transform: scale(1.08); }
  3%    { opacity: 1; transform: scale(1.05); }
  10%   { opacity: 1; transform: scale(1.00); }
  11.1% { opacity: 0; transform: scale(1.00); }
  100%  { opacity: 0; transform: scale(1.08); }
}

/* Cyan/Navy Tönung */
.hero__slides-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,21,52,0) 0%, rgba(6,21,52,0.18) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(0,194,209,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero__visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}

/* === SPARKLE LAYER ===
   Aktiv bei Reinigungs-Slides 1, 2, 4, 5
   Slide-Zeitpunkte: 0-3s, 3-6s, 9-12s, 12-15s im 27s-Cycle
   = aktiv in den Bereichen 0-22.2% und 33.3-55.5% */
.hero__sparkle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  animation: sparkleLayerVisibility 27s infinite;
}

@keyframes sparkleLayerVisibility {
  /* Slide 1 (0-3s = 0-11.1%): fade in, hold, fade out */
  0%    { opacity: 0; }
  3%    { opacity: 1; }
  9%    { opacity: 1; }
  /* Slide 2 (3-6s = 11.1-22.2%): bleibt an */
  11.1% { opacity: 1; }
  20%   { opacity: 1; }
  /* Slide 3 (6-9s = 22.2-33.3%): aus */
  22.2% { opacity: 0; }
  33.3% { opacity: 0; }
  /* Slide 4 (9-12s = 33.3-44.4%): an */
  34.3% { opacity: 1; }
  43%   { opacity: 1; }
  /* Slide 5 (12-15s = 44.4-55.5%): bleibt an */
  44.4% { opacity: 1; }
  54%   { opacity: 1; }
  /* danach Slides 6-9: aus */
  55.5% { opacity: 0; }
  100%  { opacity: 0; }
}

.sparkle-svg {
  width: 100%;
  height: 100%;
}

.sp {
  transform-box: fill-box;
  transform-origin: center;
}

.sp path {
  transform-box: fill-box;
  transform-origin: center;
  animation: sparkleScale 2.2s ease-in-out infinite;
}

@keyframes sparkleScale {
  0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
  50%      { transform: scale(1) rotate(180deg); opacity: 1; }
}

/* 12 Sparkles auf der Karte verteilt mit unterschiedlichen Größen, Positionen und Timings */
.sp--1  { transform: translate(80px, 90px);   } .sp--1 path  { animation-duration: 2.4s; animation-delay: 0s; }
.sp--2  { transform: translate(380px, 60px);  } .sp--2 path  { animation-duration: 2.0s; animation-delay: 0.3s; }
.sp--3  { transform: translate(520px, 140px); } .sp--3 path  { animation-duration: 2.6s; animation-delay: 0.6s; }
.sp--4  { transform: translate(150px, 230px); } .sp--4 path  { animation-duration: 1.8s; animation-delay: 0.9s; }
.sp--5  { transform: translate(450px, 280px); } .sp--5 path  { animation-duration: 2.8s; animation-delay: 0.2s; }
.sp--6  { transform: translate(80px, 380px);  } .sp--6 path  { animation-duration: 2.2s; animation-delay: 1.1s; }
.sp--7  { transform: translate(540px, 450px); } .sp--7 path  { animation-duration: 2.5s; animation-delay: 0.5s; }
.sp--8  { transform: translate(280px, 540px); } .sp--8 path  { animation-duration: 2.0s; animation-delay: 1.4s; }
.sp--9  { transform: translate(420px, 620px); } .sp--9 path  { animation-duration: 2.4s; animation-delay: 0.7s; }
.sp--10 { transform: translate(170px, 480px); } .sp--10 path { animation-duration: 2.1s; animation-delay: 1.2s; }
.sp--11 { transform: translate(330px, 380px); } .sp--11 path { animation-duration: 2.6s; animation-delay: 0.4s; }
.sp--12 { transform: translate(490px, 530px); } .sp--12 path { animation-duration: 2.3s; animation-delay: 1.0s; }

/* === LEAVES LAYER ===
   Aktiv beim Garten-Slide 6 (15-18s = 55.5-66.6%) */
.hero__leaves-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  animation: leavesLayerVisibility 27s infinite;
}

@keyframes leavesLayerVisibility {
  0%    { opacity: 0; }
  55.5% { opacity: 0; }
  57%   { opacity: 1; }
  65%   { opacity: 1; }
  66.6% { opacity: 0; }
  100%  { opacity: 0; }
}

.leaf {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 40, 0, 0.25));
  will-change: transform, opacity;
}

/* 10 Blätter, fliegen zeitversetzt von links nach rechts wie wegfliegendes Schnittgut */
.leaf--1  { left: -30px; top: 18%; width: 20px; height: 20px; animation: leafFly 3.2s linear infinite; animation-delay: 0s; }
.leaf--2  { left: -30px; top: 42%; width: 24px; height: 24px; animation: leafFly 3.5s linear infinite; animation-delay: 0.25s; }
.leaf--3  { left: -30px; top: 68%; width: 18px; height: 18px; animation: leafFly 3.0s linear infinite; animation-delay: 0.45s; }
.leaf--4  { left: -30px; top: 28%; width: 22px; height: 22px; animation: leafFly 3.4s linear infinite; animation-delay: 0.7s; }
.leaf--5  { left: -30px; top: 55%; width: 20px; height: 20px; animation: leafFly 3.6s linear infinite; animation-delay: 0.9s; }
.leaf--6  { left: -30px; top: 12%; width: 26px; height: 26px; animation: leafFly 3.1s linear infinite; animation-delay: 1.15s; }
.leaf--7  { left: -30px; top: 78%; width: 19px; height: 19px; animation: leafFly 3.3s linear infinite; animation-delay: 1.4s; }
.leaf--8  { left: -30px; top: 48%; width: 21px; height: 21px; animation: leafFly 3.5s linear infinite; animation-delay: 1.6s; }
.leaf--9  { left: -30px; top: 35%; width: 23px; height: 23px; animation: leafFly 3.2s linear infinite; animation-delay: 1.85s; }
.leaf--10 { left: -30px; top: 62%; width: 17px; height: 17px; animation: leafFly 3.4s linear infinite; animation-delay: 2.1s; }

@keyframes leafFly {
  0%   {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  8%   { opacity: 1; }
  25%  {
    transform: translate(180px, -15px) rotate(120deg);
  }
  50%  {
    transform: translate(360px, 25px) rotate(270deg);
  }
  75%  {
    transform: translate(540px, -10px) rotate(450deg);
  }
  92%  { opacity: 1; }
  100% {
    transform: translate(720px, 30px) rotate(640deg);
    opacity: 0;
  }
}

.hero__stat-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 18px 42px -14px rgba(6,21,52,0.40);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: calc(100% - 48px);
  z-index: 5;
}

.hero__stat-card-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--c-navy-800);
  line-height: 1;
}

.hero__stat-label {
  font-size: 12.5px;
  color: var(--c-muted);
  letter-spacing: 0.01em;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--c-line);
}

.hero__fade-down {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--c-bg));
  z-index: 0;
  pointer-events: none;
}

/* ============== HERO MOBILE PHOTO ============== */
.hero__team-photo {
  display: none;
  margin: 0 0 var(--s-5);
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-navy-900);
}

.hero__team-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 40%;
}

.hero__team-photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,21,52,0) 0%, rgba(6,21,52,0.55) 100%);
}

.hero__team-photo-name {
  position: absolute;
  bottom: 14px;
  right: 18px;
  color: rgba(255,255,255,0.92);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  z-index: 1;
}

/* Nur auf Mobile sichtbar */
@media (max-width: 880px) {
  .hero__team-photo { display: block; }
}

/* ============== QUALITY STRIP (DESKTOP) ============== */
.quality-strip {
  display: none;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-soft) 100%);
  padding: var(--s-7) 0;
  position: relative;
}

.quality-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.quality-strip__photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-navy-900);
}

.quality-strip__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 35%;
  transition: transform .8s var(--ease-out);
}

.quality-strip__photo:hover img {
  transform: scale(1.02);
}

.quality-strip__photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,21,52,0) 0%, rgba(6,21,52,0.55) 100%);
}

.quality-strip__name {
  position: absolute;
  bottom: 18px;
  right: 22px;
  color: rgba(255,255,255,0.92);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  z-index: 1;
}

.quality-strip__text {
  padding-right: var(--s-4);
}

.quality-strip__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-cyan-500);
  margin-bottom: var(--s-3);
}

.quality-strip__text p {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 1.6vw + 0.5rem, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--c-navy-800);
  margin: 0;
}

/* Nur auf Desktop sichtbar */
@media (min-width: 881px) {
  .quality-strip { display: block; }
}

/* ============== SERVICES ============== */
.services { background: var(--c-bg); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,194,209,0.12), rgba(0,194,209,0.04));
  color: var(--c-cyan-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out);
}

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

.service-card:hover .service-card__icon {
  transform: scale(1.06) rotate(-3deg);
  background: var(--grad-primary);
  color: #fff;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card > p {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-cyan-500);
}

.service-card--soft {
  background: linear-gradient(155deg, var(--c-navy-800) 0%, var(--c-navy-700) 100%);
  color: #fff;
  border-color: transparent;
  display: flex;
  flex-direction: column;
}

.service-card--soft h3 { color: #fff; }
.service-card--soft > p {
  color: rgba(255,255,255,0.78);
  flex: 1;
}

.service-card--soft .service-card__icon {
  background: rgba(0,194,209,0.18);
  color: var(--c-cyan-400);
}

.service-card--soft:hover .service-card__icon {
  background: var(--grad-primary);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-cyan-400);
  font-size: 15px;
  margin-top: 4px;
  transition: gap .25s var(--ease-out);
}

.service-card__link:hover { gap: 12px; color: var(--c-cyan-300); }

/* CTA-Button auf Navy-Karte */
.btn--card-cta {
  align-self: flex-start;
  margin-top: 8px;
  padding: 13px 22px;
  font-size: 14.5px;
}

.service-card--soft .btn--card-cta {
  box-shadow: 0 10px 28px -8px rgba(0,194,209,0.55);
}

.service-card--soft .btn--card-cta:hover {
  box-shadow: 0 16px 38px -10px rgba(0,194,209,0.70);
  transform: translateY(-2px);
}

/* ============== PROCESS ============== */
.process {
  background: var(--grad-navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,194,209,0.18), transparent 65%);
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,194,209,0.10), transparent 65%);
  pointer-events: none;
}

.process .eyebrow {
  background: rgba(0, 194, 209, 0.14);
  border-color: rgba(0, 194, 209, 0.30);
  color: var(--c-cyan-400);
}

.process .section__title { color: #fff; }

.process__lede {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* 4 Schritte: Grid auf Desktop, Stapel auf Mobile, mit feiner Verbindungslinie */
.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  counter-reset: step;
}

@media (min-width: 720px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1080px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.process__step {
  position: relative;
  padding: 30px 26px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), transform .3s var(--ease-out);
}

.process__step:hover {
  border-color: rgba(0, 194, 209, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

/* Dezente Verbindungslinie zwischen Steps auf Desktop */
@media (min-width: 1080px) {
  .process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 56px;
    right: -22px;
    width: 24px;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 194, 209, 0.4), rgba(0, 194, 209, 0.05));
    z-index: 0;
  }
}

.process__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.process__step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.012em;
}

.process__step p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ============== ABOUT ============== */
.about { background: var(--c-bg); }

/* Band 1: centered head */
.about__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--s-7);
}
.about__head .section__title {
  font-size: clamp(1.85rem, 3vw + 0.5rem, 2.7rem);
  margin-bottom: var(--s-4);
}
.about__head .section__lede {
  font-size: 1.06rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
}
.about__head em {
  color: var(--c-navy-800);
  font-style: italic;
  font-weight: 500;
}

/* Band 2: founder row — photo + quote merge into ONE card (mobile: stacked, desktop: side-by-side) */
.about__founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto var(--s-7);
  align-items: stretch;
  max-width: 1100px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

@media (min-width: 768px) {
  .about__founder {
    grid-template-columns: 1fr 1fr;
  }
}

.about__portrait {
  margin: 0;
  background: var(--c-bg-mute);
  position: relative;
  isolation: isolate;
  /* No own radius / shadow — parent .about__founder handles both */
}

.about__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;          /* mobile / small screens */
  object-fit: cover;
  object-position: center 20%;
}

@media (min-width: 768px) {
  .about__portrait img {
    aspect-ratio: 1 / 1;          /* square on desktop — balanced with quote content */
    object-position: center 18%;
  }
}

.about__quote {
  background: linear-gradient(155deg, var(--c-navy-800), var(--c-navy-700));
  color: #fff;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  margin: 0;
  /* No own radius / shadow — parent .about__founder handles both */
}

.about__quote::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(0,194,209,0.32), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about__quote-mark {
  color: var(--c-cyan-400);
  margin-bottom: 12px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.about__quote-text {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 0.9vw + 0.85rem, 1.35rem);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.012em;
  position: relative;
  z-index: 1;
  flex: 1;                       /* push author to the bottom */
  margin: 0 0 24px;
}

.about__quote-author {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.about__quote-author-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.about__quote-author-role {
  font-size: 13.5px;
  color: var(--c-cyan-300);
  margin-top: 2px;
}

/* Band 3: value cards */
.about__values {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 560px) {
  .about__values { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (min-width: 960px) {
  .about__values { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

.value-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 194, 209, 0.35);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 194, 209, 0.10);
  color: var(--c-cyan-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
}

.value-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-navy-800);
  margin: 0;
  letter-spacing: -0.01em;
}

.value-card__desc {
  font-size: 14.5px;
  color: var(--c-ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============== AREAS / KARTE ============== */
.areas { background: var(--c-bg-soft); }

.areas__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 960px) {
  .areas__layout {
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 1fr);
    gap: var(--s-6);
  }
}

.areas__map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #EEF1F6;
  border: 1px solid var(--c-line);
  margin: 0;
}

.areas__map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1448 / 1086;
  object-fit: cover;
}

/* Liste daneben */
.areas__list {
  background: #FFFFFF;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

.areas__list-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-cyan-500);
  margin: 0 0 6px;
  font-weight: 700;
}

.areas__list ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.areas__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line-soft);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--c-ink);
}

.areas__list-item:last-child { border-bottom: 0; }

.areas__list-item--main {
  padding: 14px 0;
}

.areas__list-item--main strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-navy-800);
  line-height: 1.2;
}

.areas__list-item--main small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-cyan-500);
  font-weight: 600;
  margin-top: 2px;
}

.areas__list-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-cyan-500);
  box-shadow: 0 0 0 4px rgba(0, 194, 209, 0.18);
  flex-shrink: 0;
  position: relative;
}

.areas__list-dot--small {
  width: 9px;
  height: 9px;
  background: var(--c-navy-800);
  box-shadow: 0 0 0 3px rgba(10, 30, 63, 0.10);
}

.areas__list-note {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.55;
  margin: 6px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--c-line-soft);
}

/* ============== FAQ ============== */
.faq { background: var(--c-bg); }

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}

.faq__item[open] {
  border-color: var(--c-cyan-500);
  box-shadow: 0 8px 24px -10px rgba(0,194,209,0.20);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--c-navy-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  transition: color .2s var(--ease-out);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--c-cyan-500);
  line-height: 1;
  transition: transform .3s var(--ease-out);
  flex-shrink: 0;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item summary:hover { color: var(--c-cyan-500); }

.faq__body {
  padding: 0 24px 22px;
  color: var(--c-ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

.faq__body p { margin: 0; }
.faq__body a { color: var(--c-cyan-500); font-weight: 500; }

/* ============== CONTACT ============== */
.contact {
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 100%);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}

@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; gap: var(--s-8); }
}

.contact__info .section__title { font-size: clamp(1.85rem, 3vw + 0.5rem, 2.7rem); }
.contact__info .section__lede { margin-left: 0; margin-right: 0; text-align: left; max-width: none; }
.contact__info .eyebrow { margin-bottom: var(--s-4); }

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: var(--s-6);
}

.contact__info-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,194,209,0.10);
  color: var(--c-cyan-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  margin-bottom: 2px;
  font-weight: 600;
}

.contact__info-value {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-navy-800);
}

a.contact__info-value:hover { color: var(--c-cyan-500); }

/* Form */
.contact__form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 600px) { .contact__form { padding: 28px 22px; } }

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field > span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-navy-800);
  letter-spacing: -0.005em;
}

.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 15.5px;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--c-ink);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
  width: 100%;
  font-weight: 400;
}

.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-cyan-500);
  box-shadow: 0 0 0 4px rgba(0,194,209,0.15);
  background: #fff;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230A1E3F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 4px;
}

.field--checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  border: 1.5px solid var(--c-line);
  border-radius: 5px;
  accent-color: var(--c-cyan-500);
  flex-shrink: 0;
  cursor: pointer;
}

.field--checkbox > span {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  letter-spacing: 0;
  line-height: 1.55;
}

.field--checkbox a {
  color: var(--c-cyan-500);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact__form-note {
  font-size: 12.5px;
  color: var(--c-muted);
  margin: 0;
}

.form-status {
  font-size: 14px;
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(0,194,209,0.10);
  color: var(--c-navy-800);
  border: 1px solid rgba(0,194,209,0.30);
}

.form-status.is-error {
  display: block;
  background: rgba(220, 64, 64, 0.08);
  color: #B72E2E;
  border: 1px solid rgba(220, 64, 64, 0.25);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--c-navy-900);
  color: rgba(255,255,255,0.78);
  padding-top: var(--s-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
}

@media (min-width: 600px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-7); } }

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.6;
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 0;
  filter: brightness(1.05);
}

.footer__col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-family: var(--f-display);
  font-weight: 600;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.footer__col a { color: rgba(255,255,255,0.72); }
.footer__col a:hover { color: var(--c-cyan-400); }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 0;
}

.footer__bar-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

@media (min-width: 600px) { .footer__bar-inner { flex-direction: row; } }

.footer__bar small { color: rgba(255,255,255,0.55); }

.footer__legal { display: flex; gap: 22px; }
.footer__legal a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer__legal a:hover { color: var(--c-cyan-400); }

/* ============== QUICK CALL FLOATER (Desktop) ============== */
.quick-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 16px 38px -10px rgba(0,194,209,0.55);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), gap .3s var(--ease-out), padding .3s var(--ease-out);
  pointer-events: none;
  overflow: hidden;
}

.quick-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-call:hover {
  color: #fff;
  gap: 8px;
  padding-right: 22px;
  transform: translateY(-2px);
}

.quick-call__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width .35s var(--ease-out);
}

.quick-call:hover .quick-call__label { max-width: 160px; }

@media (max-width: 1023px) {
  /* Auf Mobile gibt's stattdessen die mobile-bar */
  .quick-call { display: none; }
}

/* ============== MOBILE CONTACT BAR ============== */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--c-line);
  display: flex;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  pointer-events: none;
}

.mobile-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 1024px) { .mobile-bar { display: none; } }

.mobile-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--c-navy-800);
  text-decoration: none;
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
}

.mobile-bar__item:hover { background: var(--c-bg-mute); color: var(--c-cyan-500); }

.mobile-bar__item--primary {
  background: var(--grad-primary);
  color: #fff;
}

.mobile-bar__item--primary:hover {
  color: #fff;
  background: var(--grad-primary);
  opacity: 0.92;
}

/* Pad the body so mobile bar doesn't overlap last section */
@media (max-width: 1023px) {
  body.has-mobile-bar { padding-bottom: 76px; }
}

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__badge-dot::before { animation: none; }
  .hero__visual-glow { animation: none; }
  /* Bei reduzierter Bewegung: erstes Bild dauerhaft anzeigen */
  .hero__slide { animation: none; opacity: 0; transform: scale(1); }
  .hero__slide--1 { opacity: 1; }
  .hero__sparkle-layer { opacity: 0.7; animation: none; }
  .sp path { animation: none; transform: scale(1) rotate(0deg); opacity: 0.8; }
  .hero__leaves-layer { display: none; }
}

/* ============== LEGAL PAGES ============== */
.legal {
  padding: calc(var(--header-h) + var(--s-7)) 0 var(--s-8);
  background: var(--c-bg);
}

.legal__container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal h1 {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
  margin-bottom: var(--s-5);
  letter-spacing: -0.025em;
}

.legal h2 {
  font-size: 1.4rem;
  margin: var(--s-6) 0 var(--s-3);
  color: var(--c-navy-800);
}

.legal h3 {
  font-size: 1.1rem;
  margin: var(--s-5) 0 var(--s-2);
  color: var(--c-navy-800);
}

.legal p, .legal li {
  color: var(--c-ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal ul {
  margin: 0 0 1em 1.2em;
  padding: 0;
  list-style: disc;
}

.legal a { color: var(--c-cyan-500); }
.legal a:hover { text-decoration: underline; }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--s-5);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-ink-soft);
}

.legal__back:hover { color: var(--c-cyan-500); }

.legal__meta {
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
  font-size: 13.5px;
  color: var(--c-muted);
}

/* ============== UTILITIES ============== */
@media (max-width: 600px) {
  .section { padding: var(--s-7) 0; }
  .hero { padding-bottom: var(--s-7); }
  .hero__stat-card { bottom: 16px; right: 16px; padding: 14px 16px; }
  .hero__stat-num { font-size: 1.2rem; }
  .hero__stat-label { font-size: 11.5px; }
  .hero__stat-divider { height: 28px; }
}
