/* ============================================================
   MAGER GMBH – DESIGN SYSTEM
   Familienbetrieb Heizung & Sanitär | Düren | seit 1987
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Brand colors – pulled from logo */
  --c-blue: #00a3e0;          /* Primary brand blue */
  --c-blue-dark: #0077a8;     /* Hover/contrast */
  --c-blue-deeper: #003a52;   /* Headings on light */
  --c-yellow: #ffd000;        /* Accent yellow */
  --c-red: #e63946;           /* CTA / Notdienst */
  --c-red-dark: #b8202c;

  /* Neutrals */
  --c-ink: #0d1b2a;
  --c-text: #2b3a4a;
  --c-text-soft: #5a6878;
  --c-line: #e6ebf0;
  --c-bg: #ffffff;
  --c-bg-soft: #f5f8fb;
  --c-bg-deep: #061522;

  /* Typography */
  --f-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --f-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.06);
  --shadow: 0 8px 30px rgba(13,27,42,0.08);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.12);
  --shadow-blue: 0 12px 40px rgba(0,163,224,0.30);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s;
  --t: .3s;
  --t-slow: .55s;
}

/* ---------- Base ---------- */
body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: var(--f-display);
  color: var(--c-ink);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }
strong { color: var(--c-ink); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--c-blue); border-radius: 2px;
}

.section-title {
  margin-bottom: 18px;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--c-text-soft);
  max-width: 640px;
  margin-bottom: 50px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease),
              background var(--t) var(--ease),
              color var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--c-blue-dark); transform: translateY(-2px); box-shadow: 0 16px 50px rgba(0,163,224,0.4); }
.btn-secondary {
  background: var(--c-ink);
  color: #fff;
}
.btn-secondary:hover { background: #1a2b3d; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--c-ink);
  color: var(--c-ink);
}
.btn-outline:hover { background: var(--c-ink); color: #fff; }
.btn-ghost {
  color: var(--c-ink);
  padding: 12px 18px;
}
.btn-ghost:hover { color: var(--c-blue); }
.btn-emergency {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 12px 40px rgba(230,57,70,.32);
}
.btn-emergency:hover { background: var(--c-red-dark); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.92rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(255,255,255,0.95);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 48px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--c-ink);
  border-radius: 999px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  position: relative;
}
.nav-menu a:hover { color: var(--c-blue); background: rgba(0,163,224,0.08); }
.nav-menu a.active { color: var(--c-blue); }
.nav-menu a.active::after {
  content: ""; position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--c-blue); border-radius: 50%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  background: var(--c-bg-soft);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-ink);
  position: relative;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--c-ink);
  transition: transform var(--t) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-menu, .nav-cta .btn:not(.btn-emergency) { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-emergency { padding: 10px 16px; font-size: 0.85rem; }
  .mobile-menu.open { display: flex; }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: #fff;
  flex-direction: column;
  padding: 30px 24px;
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu a {
  padding: 16px 0;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.mobile-menu a.active { color: var(--c-blue); }
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   HERO – Homepage
   ============================================================ */
.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0,163,224,0.08), transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(255,208,0,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 110px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0,163,224,0.10);
  color: var(--c-blue-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--f-display);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--c-blue);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1);} 50%{opacity:.6; transform:scale(1.4);} }

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent {
  position: relative;
  color: var(--c-blue);
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 8px;
  background: var(--c-yellow);
  z-index: -1;
  border-radius: 4px;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--c-text);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text-soft);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-trust-item .stars { display: flex; gap: 2px; color: var(--c-yellow); }
.hero-trust-item strong { color: var(--c-ink); }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-blue);
  aspect-ratio: 4/3;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-floating {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-floating-1 {
  bottom: -30px; left: -30px;
  animation: float-a 6s ease-in-out infinite;
}
.hero-floating-2 {
  top: -25px; right: -25px;
  animation: float-b 7s ease-in-out infinite;
}
@keyframes float-a { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes float-b { 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }
.hero-floating-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,163,224,0.12);
  display: grid; place-items: center;
  color: var(--c-blue);
}
.hero-floating-1 .hero-floating-icon { background: rgba(255,208,0,0.18); color: #b88800; }
.hero-floating strong { display: block; font-family: var(--f-display); font-weight: 700; color: var(--c-ink); font-size: 1rem; }
.hero-floating span { font-size: 0.82rem; color: var(--c-text-soft); }

@media (max-width: 600px) {
  .hero-floating { padding: 12px 16px; }
  .hero-floating-1 { bottom: -20px; left: -10px; }
  .hero-floating-2 { top: -15px; right: -10px; }
}

/* ============================================================
   PAGE HEADERS (subpages)
   ============================================================ */
.page-header {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0,163,224,0.10), transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(255,208,0,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 { max-width: 780px; margin: 0 auto 18px; }
.page-header p { max-width: 640px; margin: 0 auto; color: var(--c-text-soft); font-size: 1.1rem; }
.breadcrumb {
  display: inline-flex; gap: 8px;
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--c-blue); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 100% 0%, rgba(0,163,224,0.10), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,163,224,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(0,163,224,0.25);
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--c-text-soft); font-size: 0.97rem; margin-bottom: 16px; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-blue);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--f-display);
}
.service-card .more svg { transition: transform var(--t) var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* ============================================================
   STATS / TRUST BAR
   ============================================================ */
.stats {
  background: var(--c-bg-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,163,224,0.20), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,208,0,0.10), transparent 40%);
}
.stats .container { position: relative; }
.stats h2, .stats h3 { color: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.stat {
  text-align: center;
}
.stat .number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #b9e3f6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   ABOUT / VIDEO SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } }

.video-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: #000;
}
.video-card video {
  width: 100%; height: 100%; object-fit: cover;
}
.video-card .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  z-index: 2;
}
.video-card .play-btn::before {
  content: "";
  position: absolute; inset: -10px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: ring 2s ease-out infinite;
}
@keyframes ring { 0%{transform:scale(.8); opacity:.8;} 100%{transform:scale(1.4); opacity:0;} }
.video-card .play-btn svg {
  width: 28px; height: 28px;
  color: var(--c-blue);
  margin-left: 4px;
}
.video-card.playing .play-btn { opacity: 0; pointer-events: none; }
.video-card:hover .play-btn { transform: translate(-50%,-50%) scale(1.08); }

.value-list {
  list-style: none;
  margin-top: 30px;
}
.value-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}
.value-list li:last-child { border-bottom: 0; }
.value-list .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(0,163,224,0.12);
  color: var(--c-blue);
  border-radius: 8px;
  display: grid; place-items: center;
}
.value-list .check svg { width: 16px; height: 16px; }
.value-list strong { display: block; color: var(--c-ink); margin-bottom: 2px; }
.value-list span { color: var(--c-text-soft); font-size: 0.95rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
}
.reviews-rating .score {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1;
}
.reviews-rating .stars { color: var(--c-yellow); display: flex; gap: 2px; }
.reviews-rating .meta { font-size: 0.85rem; color: var(--c-text-soft); }
.reviews-rating .meta strong { color: var(--c-ink); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card .quote-icon {
  position: absolute;
  top: -16px; right: 24px;
  width: 36px; height: 36px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
}
.review-card .quote-icon svg { width: 18px; height: 18px; }
.review-stars {
  display: flex; gap: 2px;
  color: var(--c-yellow);
  margin-bottom: 14px;
}
.review-text {
  color: var(--c-text);
  font-size: 1rem;
  margin-bottom: 22px;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
}
.review-author-info strong { display: block; color: var(--c-ink); font-size: 0.95rem; }
.review-author-info span { color: var(--c-text-soft); font-size: 0.82rem; }
.review-source {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--c-text-soft);
  font-weight: 500;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,208,0,0.20), transparent 70%);
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
}
.cta-section h2, .cta-section p { color: #fff; position: relative; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { max-width: 640px; margin-bottom: 20px; }
.cta-section p { opacity: 0.92; margin-bottom: 28px; max-width: 540px; font-size: 1.05rem; }
.cta-section .btn-primary { background: #fff; color: var(--c-blue-dark); }
.cta-section .btn-primary:hover { background: var(--c-yellow); color: var(--c-ink); }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-section .btn-outline:hover { background: #fff; color: var(--c-blue-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-bg-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-brand img {
  height: 78px;
  width: auto;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 22px;
  display: block;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 280px; margin: 0; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a { transition: color var(--t-fast); }
.footer-list a:hover { color: var(--c-blue); }

/* ===== Footer Contact: sauber strukturiert ===== */
.footer-contact { font-size: 0.92rem; line-height: 1.6; }
.footer-contact .fc-block { margin-bottom: 18px; }
.footer-contact .fc-block:last-child { margin-bottom: 0; }
.footer-contact .fc-label {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-contact .fc-line { display: block; line-height: 1.7; }
.footer-contact .fc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 6px;
  transition: color 0.18s ease;
}
.footer-contact .fc-link:hover { color: var(--c-blue); }
.footer-contact .fc-link svg {
  width: 16px !important;
  height: 16px !important;
  stroke: var(--c-red);
  flex-shrink: 0;
}
.footer-contact .fc-link[href^="mailto"] svg { stroke: var(--c-blue); }

/* Column headers all aligned to top */
.footer-grid > * > h4:first-child,
.footer-grid > .footer-brand > img:first-child {
  margin-top: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-field {
  display: flex; flex-direction: column;
  gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink);
  font-family: var(--f-display);
}
.form-field label .req { color: var(--c-red); }
.form-field input, .form-field textarea, .form-field select {
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.97rem;
  transition: border var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(0,163,224,0.12);
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-field .hint { font-size: 0.82rem; color: var(--c-text-soft); }
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--c-text);
  cursor: pointer;
  line-height: 1.55;
}
.form-checkbox input { margin-top: 4px; flex-shrink: 0; accent-color: var(--c-blue); }
.form-checkbox a { color: var(--c-blue); text-decoration: underline; }

.form-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .form-card { padding: 28px; } }

/* Service-type pills */
.pill-group {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.pill-group input { display: none; }
.pill-group label {
  padding: 8px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t-fast);
  background: #fff;
  color: var(--c-text);
  font-weight: 500;
}
.pill-group input:checked + label {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}
.pill-group label:hover { border-color: var(--c-blue); }

.form-success {
  padding: 30px;
  background: rgba(0,163,224,0.08);
  border: 1.5px solid var(--c-blue);
  border-radius: var(--radius-lg);
  color: var(--c-blue-deeper);
  text-align: center;
  display: none;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--c-blue-deeper); margin-bottom: 8px; }

/* ============================================================
   CONTACT-INFO BLOCKS
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  text-align: center;
}
.info-card .icon-wrap {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0,163,224,0.10);
  color: var(--c-blue);
  display: grid; place-items: center;
}
.info-card .icon-wrap svg { width: 26px; height: 26px; }
.info-card h4 { margin-bottom: 8px; }
.info-card p { font-size: 0.95rem; color: var(--c-text-soft); margin-bottom: 0; }
.info-card a { color: var(--c-blue); font-weight: 600; }
.info-card a:hover { color: var(--c-blue-dark); }

/* ============================================================
   PROCESS / STEPS (Career page)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  position: relative;
  counter-increment: step;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-blue);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 18px; right: 22px;
}
.step-card h4 { margin-bottom: 8px; font-size: 1.15rem; }
.step-card p { color: var(--c-text-soft); font-size: 0.95rem; margin-bottom: 0; }

/* ============================================================
   JOB POSTING (Karriere)
   ============================================================ */
.job-hero {
  background: linear-gradient(135deg, #003a52 0%, var(--c-blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) { .job-hero { padding: 40px 28px; } }
.job-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,208,0,0.30), transparent 50%);
}
.job-hero .container { position: relative; z-index: 1; }
.job-hero h2, .job-hero h1 { color: #fff; }
.job-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,208,0,0.20);
  color: var(--c-yellow);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--f-display);
  margin-bottom: 18px;
}
.job-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 30px;
  color: rgba(255,255,255,0.85);
}
.job-meta div { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.job-meta svg { width: 18px; height: 18px; opacity: 0.7; }

.job-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-top: 50px;
}
@media (max-width: 800px) { .job-content { grid-template-columns: 1fr; } }
.job-section { margin-bottom: 36px; }
.job-section h3 {
  margin-bottom: 14px;
  color: var(--c-ink);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.job-section h3::before {
  content: ""; width: 4px; height: 22px;
  background: var(--c-blue); border-radius: 2px;
}
.job-section ul { list-style: none; }
.job-section ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--c-text);
}
.job-section ul li::before {
  content: "";
  position: absolute;
  left: 6px; top: 18px;
  width: 8px; height: 8px;
  background: var(--c-blue);
  border-radius: 50%;
}

.job-sidebar {
  background: var(--c-bg-soft);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  align-self: start;
}
.job-sidebar h4 { margin-bottom: 14px; }
.job-sidebar p { font-size: 0.95rem; color: var(--c-text-soft); }

/* ============================================================
   TEAM / FAMILY
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card .photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-deeper));
  display: grid; place-items: center;
  color: rgba(255,255,255,0.9);
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 800;
}
.team-card .info {
  padding: 24px;
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--c-blue); font-weight: 600; font-size: 0.92rem; margin-bottom: 12px; display: block; }
.team-card p { font-size: 0.93rem; color: var(--c-text-soft); margin-bottom: 0; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-blue), rgba(0,163,224,0.1));
}
.timeline-item {
  position: relative;
  padding: 0 0 36px 60px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 12px; top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border: 3px solid var(--c-blue);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}
.timeline-item h4 { margin-bottom: 6px; font-size: 1.15rem; }
.timeline-item p { font-size: 0.97rem; color: var(--c-text-soft); margin-bottom: 0; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: none;
  animation: slide-up .5s var(--ease);
}
.cookie-banner.show { display: block; }
@keyframes slide-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.cookie-banner h4 {
  font-family: var(--f-display);
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin-bottom: 18px;
}
.cookie-banner p a { color: var(--c-blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.92rem; }

.cookie-toggle-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
}
.cookie-toggle-row:last-of-type { border-bottom: 0; }
.cookie-toggle-row strong { color: var(--c-ink); display: block; font-size: 0.95rem; }
.cookie-toggle-row span { font-size: 0.85rem; color: var(--c-text-soft); }
.toggle-switch {
  position: relative;
  width: 42px; height: 24px;
  background: #ccc;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--t-fast);
}
.toggle-switch.on { background: var(--c-blue); }
.toggle-switch.on::after { transform: translateX(18px); }
.toggle-switch.locked { background: var(--c-blue); opacity: 0.6; cursor: not-allowed; }
.toggle-switch.locked::after { transform: translateX(18px); }

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot-toggle {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 40px rgba(0,163,224,0.40);
  cursor: pointer;
  z-index: 95;
  transition: transform var(--t) var(--ease);
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-toggle svg { width: 26px; height: 26px; }
.chatbot-toggle .badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: var(--c-red);
  border: 3px solid #fff;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid; place-items: center;
}
.chatbot-toggle.is-open { background: var(--c-ink); }
.chatbot-toggle.is-open svg.icon-chat { display: none; }
.chatbot-toggle svg.icon-close { display: none; }
.chatbot-toggle.is-open svg.icon-close { display: block; }

.chatbot-window {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 380px;
  max-width: calc(100vw - 30px);
  height: 560px;
  max-height: calc(100vh - 130px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(13,27,42,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 95;
  transform-origin: bottom right;
  animation: chat-pop .35s var(--ease);
}
.chatbot-window.open { display: flex; }
@keyframes chat-pop { from { opacity: 0; transform: scale(.9) translateY(20px);} to { opacity:1; transform: scale(1) translateY(0);} }

.chatbot-header {
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
  color: #fff;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chatbot-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  position: relative;
}
.chatbot-avatar::after {
  content: ""; position: absolute;
  bottom: 2px; right: 2px;
  width: 10px; height: 10px;
  background: #4ade80;
  border: 2px solid var(--c-blue);
  border-radius: 50%;
}
.chatbot-header strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: #fff;
}
.chatbot-header span {
  font-size: 0.82rem;
  opacity: 0.85;
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--c-bg-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chatbot-body::-webkit-scrollbar { width: 6px; }
.chatbot-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.93rem;
  line-height: 1.55;
  animation: msg-in .25s var(--ease);
}
@keyframes msg-in { from { opacity: 0; transform: translateY(8px);} to { opacity:1; transform: translateY(0);} }
.chat-msg.bot {
  background: #fff;
  color: var(--c-ink);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}
.chat-msg.user {
  background: var(--c-blue);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg a { color: inherit; text-decoration: underline; }
.chat-msg strong { color: inherit; }

.chat-options {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 4px;
  align-self: flex-start;
  max-width: 90%;
}
.chat-option {
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid var(--c-blue);
  color: var(--c-blue);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all var(--t-fast);
  font-family: var(--f-body);
}
.chat-option:hover { background: var(--c-blue); color: #fff; }

.chat-typing {
  display: flex; gap: 4px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}
.chat-typing span {
  width: 8px; height: 8px;
  background: var(--c-text-soft);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100%{opacity:.3; transform:translateY(0);} 30%{opacity:1; transform:translateY(-3px);} }

.chatbot-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--c-line);
  background: #fff;
  display: flex;
  gap: 8px;
  align-items: center;
}
.chatbot-footer input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.92rem;
}
.chatbot-footer input:focus {
  outline: none;
  border-color: var(--c-blue);
}
.chatbot-footer button {
  width: 40px; height: 40px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.chatbot-footer button:hover { background: var(--c-blue-dark); }
.chatbot-footer button svg { width: 18px; height: 18px; }
.chatbot-disclaimer {
  font-size: 0.7rem;
  color: var(--c-text-soft);
  text-align: center;
  padding: 6px 18px 12px;
  background: #fff;
}

@media (max-width: 480px) {
  .chatbot-window { right: 10px; bottom: 90px; width: calc(100vw - 20px); height: 70vh; }
  .chatbot-toggle { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.legal-content p, .legal-content li {
  color: var(--c-text);
  margin-bottom: 12px;
  line-height: 1.75;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content a { color: var(--c-blue); text-decoration: underline; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.95rem;
}
.legal-content th, .legal-content td {
  padding: 10px 14px;
  border: 1px solid var(--c-line);
  text-align: left;
}
.legal-content th { background: var(--c-bg-soft); font-weight: 600; }

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

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .header, .footer, .chatbot-toggle, .chatbot-window, .cookie-banner { display: none !important; }
  body { color: #000; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@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;
  }
}
:focus-visible {
  outline: 3px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PAGE-LEVEL ADDITIONS (kontakt, karriere, ueber-uns, legal)
   ============================================================ */

/* Page hero (sub-page banner) */
.page-hero {
  padding: 120px 0 70px;
  background: linear-gradient(180deg, #f4f9fc 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,163,224,0.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { max-width: 820px; margin-bottom: 18px; line-height: 1.28; padding-bottom: 0.1em; }
.page-hero .lead { max-width: 720px; }

/* Section variants */
.section-muted { background: var(--c-bg-soft); }
.section-dark {
  background: var(--c-blue-deeper, #0d1b2a);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0,163,224,0.18), transparent 50%),
    radial-gradient(circle at 88% 88%, rgba(255,208,0,0.10), transparent 55%);
  pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-head--light p { color: rgba(255,255,255,0.85); }
.eyebrow--light { color: var(--c-yellow); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--video { gap: 48px; align-items: center; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* Stats (homepage + ueber-uns) */
.stats-section {
  background: var(--c-blue-deeper, #0d1b2a);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(0,163,224,0.22), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255,208,0,0.10), transparent 55%);
  pointer-events: none;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-section .stat strong {
  display: block;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #ffd000 70%, #b9e3f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stats-section .stat span {
  display: block;
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.stats-section .stats-grid {
  margin-top: 0;
  gap: 40px 30px;
}

/* CONTACT PAGE */
.kontakt-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
}
.kontakt-info {
  display: grid;
  gap: 16px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--c-border, #e8eef3);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm, 0 4px 14px rgba(13,27,42,0.06)); }
.info-card--accent {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  color: #fff;
  border-color: transparent;
}
.info-card--accent h3, .info-card--accent p, .info-card--accent strong { color: #fff; }
.info-card--accent .info-link { color: #fff; }
.info-card--accent .info-note { color: rgba(255,255,255,0.85); }
.info-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(0,163,224,0.10);
}
.info-card--accent .info-icon { background: rgba(255,255,255,0.18); }
.info-card h3 { margin: 0; font-size: 1rem; font-weight: 700; }
.info-link {
  font-size: 1.2rem; font-weight: 700;
  color: var(--c-blue);
  text-decoration: none;
  margin-top: 4px;
}
.info-link:hover { text-decoration: underline; }
.info-note {
  font-size: 0.85rem;
  color: var(--c-text-soft, #5a6b7a);
  margin-top: 4px;
}
.info-note-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--c-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.info-note-link:hover { text-decoration: underline; }
.hours-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
  font-size: 0.92rem;
}
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.hours-list li:last-child { border: none; }

/* Form card */
.kontakt-form-wrap { width: 100%; }
.form-intro { margin-bottom: 24px; color: var(--c-text-soft, #5a6b7a); }
.form-card--light {
  background: #fff;
  color: var(--c-ink, #0d1b2a);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}
.form-card--light h2, .form-card--light h3 { color: var(--c-ink, #0d1b2a); }
@media (max-width: 600px) {
  .form-card--light { padding: 24px; }
}
.hp-field { display: none !important; }

.pill--urgent {
  border-color: var(--c-red, #e63946) !important;
  color: var(--c-red, #e63946);
}
.pill-group input[type="radio"]:checked + .pill--urgent,
.pill--urgent input[type="radio"]:checked ~ * { /* fallback */ }
.pill-group label.pill--urgent { color: var(--c-red, #e63946); border-color: var(--c-red, #e63946); }

.field-file input[type="file"] {
  padding: 12px;
  border: 2px dashed var(--c-border, #d4dde4);
  border-radius: 12px;
  background: var(--c-bg-soft, #f4f9fc);
  cursor: pointer;
  width: 100%;
  font-size: 0.95rem;
}
.field-file input[type="file"]:hover { border-color: var(--c-blue); background: rgba(0,163,224,0.05); }
.field-file small {
  display: block;
  margin-top: 6px;
  color: var(--c-text-soft, #5a6b7a);
  font-size: 0.85rem;
}

.checkbox-field--light a { color: var(--c-blue); }

.form-alt {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border, #e8eef3);
  font-size: 0.95rem;
  color: var(--c-text-soft, #5a6b7a);
}
.form-alt p { margin-bottom: 6px; }
.form-alt a { color: var(--c-blue); font-weight: 600; }

.form-note--light { color: var(--c-text-soft, #5a6b7a); }

/* MAP */
.map-wrap {
  position: relative;
  width: 100%;
  min-height: 450px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 12px 40px rgba(13,27,42,0.10));
}
.map-wrap iframe { display: block; width: 100%; height: 450px; border: 0; }
.map-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0,163,224,0.10), rgba(255,208,0,0.06)),
    repeating-linear-gradient(45deg, #f4f9fc, #f4f9fc 14px, #ebf3f8 14px, #ebf3f8 28px);
  padding: 40px 24px;
}
.map-placeholder > div { max-width: 460px; }
.map-placeholder .ph-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder h4 { margin-bottom: 10px; font-size: 1.2rem; }
.map-placeholder p { margin-bottom: 18px; color: var(--c-text-soft, #5a6b7a); font-size: 0.95rem; }
.map-placeholder .btn + .btn { margin-left: 8px; }
@media (max-width: 500px) {
  .map-placeholder .btn + .btn { margin-left: 0; margin-top: 8px; }
}

/* CTA section variants */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .cta-grid { grid-template-columns: 1fr; }
}
.cta-section--red {
  background: linear-gradient(135deg, var(--c-red, #e63946) 0%, #c1121f 100%);
}
.cta-section--red::before, .cta-section--red::after { display: none; }
.cta-section--red .btn-emergency {
  background: #fff;
  color: var(--c-red, #e63946);
  border: 2px solid #fff;
}
.cta-section--red .btn-emergency:hover {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-color: var(--c-yellow);
}

/* CAREER PAGE */
.job-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .job-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.job-hero-text h1 { color: #fff; margin-bottom: 18px; }
.job-hero-text h1 em {
  font-style: normal;
  color: var(--c-yellow);
  font-weight: 700;
}
.job-hero-text .lead { color: rgba(255,255,255,0.92); margin-bottom: 28px; }
.job-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.job-hero-meta > div {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.job-hero-meta strong { color: #fff; font-size: 1rem; }
.job-hero-meta span { color: rgba(255,255,255,0.78); font-size: 0.88rem; }
.job-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.job-hero-cta .btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.job-hero-cta .btn-outline:hover { background: #fff; color: var(--c-blue-dark); border-color: #fff; }

.job-hero-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.hero-video--lg { border-radius: 18px; box-shadow: var(--shadow-lg, 0 24px 60px rgba(13,27,42,0.18)); }
.video-caption {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--c-border, #e8eef3);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 12px 40px rgba(13,27,42,0.10));
  border-color: var(--c-blue);
}
.benefit-icon {
  font-size: 2rem;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(0,163,224,0.15), rgba(255,208,0,0.12));
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.benefit-card p { color: var(--c-text-soft, #5a6b7a); margin: 0; font-size: 0.95rem; line-height: 1.6; }

/* Check + step lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
  font-size: 1rem;
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: stepcount;
  display: grid;
  gap: 18px;
}
.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-list strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.step-list p { color: var(--c-text-soft, #5a6b7a); font-size: 0.95rem; margin: 0; }

/* ABOUT PAGE */
.quote-block { padding: 12px 0; }
.quote-block blockquote {
  font-family: var(--font-display, 'Bricolage Grotesque', serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.3;
  font-weight: 600;
  color: var(--c-ink, #0d1b2a);
  margin: 14px 0 14px;
  position: relative;
}
.qmark {
  color: var(--c-blue);
  font-size: 1.4em;
  font-weight: 800;
  line-height: 0;
  display: inline-block;
}
.qmark--end { color: var(--c-yellow); }
.quote-block cite {
  font-style: normal;
  font-weight: 600;
  color: var(--c-blue);
  display: block;
  margin-bottom: 16px;
}
.quote-block p { color: var(--c-text-soft, #5a6b7a); }

/* Team photos (placeholder large emoji) */
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0,163,224,0.12), rgba(255,208,0,0.10));
}
.team-photo--helmut { background: linear-gradient(135deg, #00a3e0 0%, #0077a8 100%); color: #fff; }
.team-photo--thomas { background: linear-gradient(135deg, #ffd000 0%, #ffaa00 100%); color: #fff; }
.team-photo--team { background: linear-gradient(135deg, #e63946 0%, #c1121f 100%); color: #fff; }
.team-role {
  display: block;
  color: var(--c-blue);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 4px 0 12px;
}

/* Badge row */
.badge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.badge-card {
  background: #fff;
  border: 1px solid var(--c-border, #e8eef3);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.badge-card strong { font-size: 0.98rem; color: var(--c-blue-dark, #0077a8); }
.badge-card span { font-size: 0.85rem; color: var(--c-text-soft, #5a6b7a); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.value-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--c-border, #e8eef3);
  overflow: hidden;
  transition: transform 0.25s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--c-blue), var(--c-yellow));
}
.value-num {
  display: inline-block;
  font-family: var(--font-display, 'Bricolage Grotesque', serif);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--c-text-soft, #5a6b7a); margin: 0; font-size: 0.95rem; line-height: 1.6; }

/* LEGAL PAGES */
.legal-toc {
  background: var(--c-bg-soft, #f4f9fc);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 36px;
  border: 1px solid var(--c-border, #e8eef3);
}
.legal-toc summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--c-blue-dark, #0077a8);
  margin-bottom: 12px;
}
.legal-toc ol {
  margin: 12px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 4px;
  font-size: 0.92rem;
}
.legal-toc a {
  color: var(--c-text-soft, #5a6b7a);
  text-decoration: none;
}
.legal-toc a:hover { color: var(--c-blue); text-decoration: underline; }

.placeholder {
  display: inline-block;
  background: rgba(255, 208, 0, 0.25);
  border: 1px dashed rgba(180,140,0,0.4);
  padding: 1px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.92em;
  color: #7a5c00;
}
.placeholder-note {
  background: rgba(255, 208, 0, 0.12);
  border-left: 4px solid var(--c-yellow);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--c-text-soft, #5a6b7a);
  margin: 14px 0 24px;
  border-radius: 6px;
}
.legal-note {
  background: rgba(0,163,224,0.06);
  border-left: 4px solid var(--c-blue);
  padding: 12px 16px;
  font-size: 0.92rem;
  border-radius: 6px;
  margin: 14px 0;
}
.legal-divider {
  border: none;
  border-top: 1px solid var(--c-border, #e8eef3);
  margin: 36px 0 18px;
}


/* ============================================================
   FÖRDERCHECK – Homepage Highlight Card
   ============================================================ */
.foerder-strip {
  position: relative;
  padding: clamp(40px, 6vw, 70px) 0;
  background: linear-gradient(135deg, #fffaea 0%, #fff5d0 100%);
  overflow: hidden;
  isolation: isolate;
}
.foerder-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255,208,0,0.5), transparent 40%),
    radial-gradient(circle at 88% 70%, rgba(0,163,224,0.18), transparent 45%);
  z-index: -1;
}
.foerder-strip::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,0,0.35), transparent 70%);
  z-index: -1;
  animation: foerder-pulse 6s ease-in-out infinite;
}
@keyframes foerder-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}
.foerder-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
@media (max-width: 800px) {
  .foerder-strip-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}
.foerder-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--c-ink);
  color: var(--c-yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foerder-strip-eyebrow svg { width: 14px; height: 14px; }
.foerder-strip h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin: 0 0 10px;
  color: var(--c-ink);
  line-height: 1.30;
}
.foerder-strip h2 .underline-yellow {
  background: linear-gradient(180deg, transparent 60%, rgba(255,208,0,0.65) 60%);
  padding: 0 4px;
}
.foerder-strip p {
  margin: 0;
  color: var(--c-text);
  max-width: 56ch;
  font-size: 1.02rem;
}
@media (max-width: 800px) {
  .foerder-strip p { margin-inline: auto; }
}
.foerder-strip-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media (max-width: 800px) {
  .foerder-strip-cta { align-items: center; }
}
.foerder-strip-cta .btn {
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(255,184,0,0.45);
  background: var(--c-ink);
}
.foerder-strip-cta .btn:hover {
  background: #1a2b3d;
  box-shadow: 0 16px 40px rgba(255,184,0,0.55);
}
.foerder-strip-cta .btn svg { color: var(--c-yellow); }
.foerder-strip-meta {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.foerder-strip-meta strong { color: var(--c-ink); }


/* ============================================================
   FÖRDERCHECK PAGE – Hero Section
   ============================================================ */
.foerder-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
  transition: max-height 0.6s ease, padding 0.6s ease, opacity 0.4s ease;
}
.foerder-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,163,224,0.10), transparent 70%),
    linear-gradient(180deg, #fafdff 0%, #f5f8fb 100%);
}
.foerder-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(255,208,0,0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(0,163,224,0.12), transparent 35%);
}
.foerder-hero-inner {
  text-align: center;
  max-width: 880px;
}
.foerder-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--c-ink);
  color: var(--c-yellow);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(13,27,42,0.18);
}
.foerder-pill svg { width: 16px; height: 16px; }
.foerder-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.23;
  margin: 0 0 18px;
  color: var(--c-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.foerder-hero h1 .accent-yellow {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, transparent 62%, rgba(255,208,0,0.7) 62%);
  padding: 0 6px;
  color: var(--c-ink);
}
.foerder-hero .lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--c-text);
  margin: 0 auto 32px;
  max-width: 60ch;
  line-height: 1.55;
}
.foerder-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 32px;
  margin: 0 auto 40px;
  max-width: 760px;
}
.foerder-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--c-text);
  font-weight: 500;
}
.foerder-trust-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--c-blue);
}
.foerder-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.btn-lg {
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 14px;
}
.btn-lg svg { width: 20px; height: 20px; }
.btn-block { width: 100%; justify-content: center; }
.foerder-bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--c-text);
  background: rgba(255,208,0,0.18);
  border: 1px solid rgba(255,208,0,0.35);
  padding: 10px 18px;
  border-radius: 999px;
  margin: 0;
  max-width: 100%;
}
.foerder-bonus svg { width: 18px; height: 18px; flex-shrink: 0; }
.foerder-meta {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.foerder-meta .dot-sep { opacity: 0.4; }
.foerder-meta strong { color: var(--c-ink); }
.foerder-hero--collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}


/* ============================================================
   FÖRDERCHECK PAGE – Funnel
   ============================================================ */
.funnel {
  padding: clamp(40px, 6vw, 70px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, #fafdff 0%, #f5f8fb 100%);
  min-height: 70vh;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.funnel--visible {
  opacity: 1;
  transform: translateY(0);
}
.container--narrow {
  max-width: 720px;
  padding-inline: 20px;
  margin-inline: auto;
}

/* Progress bar */
.funnel-progress {
  margin-bottom: 36px;
}
.funnel-progress-bar {
  height: 8px;
  background: rgba(0,163,224,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.funnel-progress-bar span {
  display: block;
  height: 100%;
  width: 17%;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blue-dark));
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.funnel-progress-bar span::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 16px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6));
  border-radius: 999px;
}
.funnel-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--c-text-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.funnel-progress-meta #progress-percent { color: var(--c-blue); }

/* Step container */
.funnel-step {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.funnel-step--active {
  opacity: 1;
  transform: translateX(0);
}
.funnel-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 12px;
}
.funnel-question {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  color: var(--c-ink);
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.funnel-sub {
  color: var(--c-text-soft);
  margin: 0 0 24px;
  font-size: 1rem;
}

/* Option cards (questions 1-4) */
.funnel-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.opt-card {
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: #fff;
  border: 2px solid var(--c-line, #e6ebf0);
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--c-ink);
  font-weight: 600;
  position: relative;
}
.opt-card:hover {
  border-color: var(--c-blue);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,163,224,0.12);
}
.opt-card:focus-visible {
  outline: 3px solid rgba(0,163,224,0.4);
  outline-offset: 2px;
}
.opt-card--selected {
  border-color: var(--c-blue);
  background: rgba(0,163,224,0.04);
  box-shadow: 0 8px 24px rgba(0,163,224,0.18);
}
.opt-card--soft {
  background: rgba(13,27,42,0.02);
  font-weight: 500;
  color: var(--c-text);
}
.opt-icon {
  font-size: 1.7rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,163,224,0.08);
  border-radius: 12px;
  flex-shrink: 0;
}
.opt-card--soft .opt-icon {
  background: rgba(13,27,42,0.05);
}
.opt-label {
  flex: 1;
}
.opt-arrow {
  color: var(--c-blue);
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.opt-card:hover .opt-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.opt-card--selected .opt-arrow { opacity: 1; }

@media (max-width: 520px) {
  .opt-card {
    padding: 16px 18px;
    grid-template-columns: 48px 1fr 20px;
    gap: 14px;
    font-size: 1rem;
  }
  .opt-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* Back button */
.funnel-back {
  margin-top: 28px;
  background: none;
  border: none;
  color: var(--c-text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: inherit;
  transition: color 0.15s ease, background 0.15s ease;
}
.funnel-back:hover {
  color: var(--c-blue);
  background: rgba(0,163,224,0.06);
}

/* PLZ input */
.plz-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 24px;
  max-width: 520px;
}
@media (max-width: 520px) {
  .plz-wrap { grid-template-columns: 1fr; }
}
.plz-input {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 18px 22px;
  border: 2px solid var(--c-line, #e6ebf0);
  border-radius: 14px;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: inherit;
  color: var(--c-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
.plz-input:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(0,163,224,0.1);
}
.plz-input::placeholder {
  color: #c0cad4;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.plz-hint {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin: 8px 0 0;
}
.plz-hint--ok { color: #1a8c4d; font-weight: 600; }

/* Form error state */
.field-error input,
.field-error textarea,
.field-error select {
  border-color: var(--c-red) !important;
  background: rgba(230,57,70,0.04);
}
.field-error label,
.field-error span {
  color: var(--c-red);
}
.form-checkbox.field-error {
  background: rgba(230,57,70,0.04);
  border-radius: 8px;
  padding: 8px;
}

/* Form disclaimer */
.form-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--c-text-soft);
  background: rgba(13,27,42,0.03);
  padding: 14px 16px;
  border-radius: 10px;
  margin: 16px 0 0;
  line-height: 1.5;
}
.form-disclaimer svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--c-text-soft);
}

/* Loading spinner on submit button */
.btn--loading { pointer-events: none; opacity: 0.85; }
.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: -3px;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}


/* ============================================================
   FÖRDERCHECK – Result step
   ============================================================ */
.funnel-step--result {
  text-align: center;
}
.result-confirm {
  margin-bottom: 40px;
}
.result-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd573, #1a9c52);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(45,213,115,0.35);
  animation: result-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.result-check svg { width: 40px; height: 40px; }
@keyframes result-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.result-confirm h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--c-ink);
  margin: 0 0 12px;
}
.result-confirm h2 .accent-yellow {
  background: linear-gradient(180deg, transparent 60%, rgba(255,208,0,0.7) 60%);
  padding: 0 6px;
}
.result-meta {
  color: var(--c-text-soft);
  font-size: 1rem;
  margin: 0;
}
.result-variant {
  background: #fff;
  border: 1px solid var(--c-line, #e6ebf0);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  margin-bottom: 32px;
  text-align: left;
  box-shadow: 0 12px 40px rgba(13,27,42,0.06);
  position: relative;
  overflow: hidden;
}
.result-variant::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-yellow));
}
.result-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 12px;
}
.result-variant h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.25;
  color: var(--c-ink);
  margin: 0 0 14px;
  font-weight: 800;
}
.result-variant p {
  color: var(--c-text);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 26px;
}
.result-variant .btn {
  width: auto;
}
@media (max-width: 520px) {
  .result-variant .btn { width: 100%; justify-content: center; }
}

/* Divider between result and contact */
.result-divider {
  position: relative;
  text-align: center;
  margin: 36px 0 24px;
  font-size: 0.85rem;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.result-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--c-line, #e6ebf0);
}
.result-divider span {
  position: relative;
  background: linear-gradient(180deg, #fafdff 0%, #f5f8fb 100%);
  padding: 0 18px;
}

/* Contact cards */
.result-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .result-contact { grid-template-columns: 1fr; }
}
.result-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid var(--c-line, #e6ebf0);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}
.result-contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-blue);
  box-shadow: 0 12px 28px rgba(13,27,42,0.08);
}
.result-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.result-contact-icon svg { width: 22px; height: 22px; }
.result-contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  font-weight: 600;
}
.result-contact-value {
  font-size: 1rem;
  color: var(--c-ink);
  font-weight: 700;
}
.result-disclaimer {
  font-size: 0.84rem;
  color: var(--c-text-soft);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 auto;
}

/* ============================================================
   MODERN HERO V2 — Team-Image Full Background
   ============================================================ */
.hero-v2 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-ink);
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('/assets/images/team.png');
  background-size: cover;
  background-position: center right 20%;
  filter: saturate(1.05) contrast(1.05);
  animation: hero-zoom 18s ease-out infinite alternate;
}
@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.78) 30%, rgba(13,27,42,0.45) 55%, rgba(13,27,42,0.15) 100%),
    linear-gradient(180deg, rgba(13,27,42,0) 70%, rgba(13,27,42,0.6) 100%);
}
@media (max-width: 900px) {
  .hero-v2-overlay {
    background:
      linear-gradient(180deg, rgba(13,27,42,0.78) 0%, rgba(13,27,42,0.5) 40%, rgba(13,27,42,0.85) 100%);
  }
  .hero-v2-bg { background-position: center; }
}

.hero-v2-content {
  max-width: 920px;
  position: relative;
  z-index: 2;
}
.hero-v2-content > * { color: #fff; }

.hero-v2-headline {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.18;
  margin: 24px 0 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-v2-headline .accent {
  color: var(--c-yellow);
  position: relative;
  display: inline-block;
}
.hero-v2-headline .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 0.18em;
  background: var(--c-yellow);
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}
.hero-v2-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 36px;
  max-width: 560px;
  font-weight: 400;
}
.hero-v2-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-v2-buttons .btn-primary {
  background: var(--c-yellow);
  color: var(--c-ink);
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(255,208,0,0.35);
}
.hero-v2-buttons .btn-primary:hover {
  background: #ffdd33;
  box-shadow: 0 16px 50px rgba(255,208,0,0.5);
  transform: translateY(-2px);
}
.hero-v2-buttons .btn-primary svg { color: var(--c-ink); }
.hero-v2-buttons .btn-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-weight: 600;
}
.hero-v2-buttons .btn-glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

/* Stats row in hero */
.hero-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 36px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 640px;
}
@media (max-width: 720px) {
  .hero-v2-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
.hero-v2-stat strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-v2-stat strong .star {
  color: var(--c-yellow);
  font-size: 0.85em;
  margin-right: 2px;
}
.hero-v2-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* Floating cards on hero */
.hero-v2-floating {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-v2-floating-1 {
  top: 18%;
  right: 6%;
  animation-delay: 0s;
}
.hero-v2-floating-2 {
  bottom: 14%;
  right: 12%;
  animation-delay: 2s;
}
@media (max-width: 1100px) {
  .hero-v2-floating { display: none; }
}
.hero-v2-floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.hero-v2-floating-icon--blue { background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark)); }
.hero-v2-floating-icon--red { background: linear-gradient(135deg, var(--c-red), var(--c-red-dark)); }
.hero-v2-floating-icon svg { width: 22px; height: 22px; }
.hero-v2-floating-text strong {
  display: block;
  color: var(--c-ink);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-v2-floating-text span {
  display: block;
  color: var(--c-text-soft);
  font-size: 0.8rem;
}

/* Modern Familienbetrieb Badge */
.hero-v2-badge {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-v2-badge-left {
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-v2-badge-left svg {
  width: 14px;
  height: 14px;
}
.hero-v2-badge-right {
  padding: 8px 18px 8px 14px;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-v2-badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2dd573;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hero-v2-badge-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2dd573;
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}


/* ============================================================
   NOTDIENST – Pulsing Red Animation
   ============================================================ */
.btn-emergency {
  position: relative;
  animation: btn-emergency-pulse 1.8s ease-in-out infinite;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1rem;
  padding: 14px 26px 14px 22px;
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-emergency svg {
  animation: btn-emergency-shake 1.8s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes btn-emergency-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(230,57,70,0.7),
      0 0 0 0 rgba(230,57,70,0.3),
      0 4px 16px rgba(230,57,70,0.4);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(230,57,70,0),
      0 0 0 24px rgba(230,57,70,0),
      0 8px 28px rgba(230,57,70,0.55);
  }
}
@keyframes btn-emergency-shake {
  0%, 50%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-12deg) scale(1.05); }
  20%, 40% { transform: rotate(12deg) scale(1.05); }
}
.btn-emergency:hover {
  background: linear-gradient(135deg, #f04553 0%, #d31a2a 100%);
  transform: translateY(-2px) scale(1.03);
  animation-play-state: paused;
}
.btn-emergency::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: emergency-blink 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,255,255,0.9);
}
@keyframes emergency-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}
/* For btn-emergency variants without the dot */
.btn-emergency-no-dot::before { display: none; }


/* ============================================================
   MODERN SERVICE CARDS — V2 with photo backgrounds
   ============================================================ */
.services-v2 {
  padding: clamp(70px, 9vw, 120px) 0;
  background: linear-gradient(180deg, #fafdff 0%, #f0f5fa 100%);
  position: relative;
}
.services-v2-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .services-v2-head { grid-template-columns: 1fr; }
}
.services-v2-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 0;
  color: var(--c-ink);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.services-v2-head h2 .accent {
  color: var(--c-blue);
  font-style: italic;
}
.services-v2-head p {
  color: var(--c-text);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .services-v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-v2-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: var(--c-ink);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(13,27,42,0.06);
  box-shadow: 0 4px 14px rgba(13,27,42,0.04);
  isolation: isolate;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(13,27,42,0.18);
}
.svc-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
}
.svc-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.svc-card:hover .svc-card-img {
  transform: scale(1.06);
}
.svc-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,27,42,0.4) 100%);
  z-index: 1;
}
/* Each service has its own gradient fallback */
.svc-card--heizung .svc-card-media { background: linear-gradient(135deg, #ff6b35, #d63031); }
.svc-card--bad .svc-card-media { background: linear-gradient(135deg, #00b4d8, #0077a8); }
.svc-card--waermepumpe .svc-card-media { background: linear-gradient(135deg, #2ecc71, #16a085); }
.svc-card--sanitaer .svc-card-media { background: linear-gradient(135deg, #00a3e0, #006491); }
.svc-card--barrierefrei .svc-card-media { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
.svc-card--notdienst .svc-card-media { background: linear-gradient(135deg, #e63946, #b8202c); }

.svc-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--c-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card-tag-dot {
  width: 6px; height: 6px;
  background: var(--c-blue);
  border-radius: 50%;
}
.svc-card--notdienst .svc-card-tag-dot { background: var(--c-red); animation: emergency-blink 1.4s ease-in-out infinite; }
.svc-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--c-ink);
  font-family: var(--font-display, 'Bricolage Grotesque', system-ui, sans-serif);
}

.svc-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card-body h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--c-ink);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-card-body p {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-blue);
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: auto;
}
.svc-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.svc-card:hover .svc-card-link svg {
  transform: translateX(4px);
}
.svc-card--notdienst .svc-card-link { color: var(--c-red); }


/* ============================================================
   GALLERY V2 — "Unsere Arbeit"
   ============================================================ */
.gallery-v2 {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--c-ink);
  color: #fff;
}
.gallery-v2 .section-title { color: #fff; }
.gallery-v2 .eyebrow { color: var(--c-yellow); }
.gallery-v2 .section-lead { color: rgba(255,255,255,0.75); }
.gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .gallery-v2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-v2-grid { grid-template-columns: 1fr; } }
.gal-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #1a2b3d, #0d1b2a);
  transition: transform 0.4s ease;
}
.gal-item:hover { transform: translateY(-4px); }
.gal-item:nth-child(2),
.gal-item:nth-child(5) {
  aspect-ratio: 4 / 5;
}
.gal-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.gal-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
}
.gal-caption strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.gal-caption span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================================
   REVIEWS V2 - Updated with 4.8/121
   ============================================================ */
.reviews-v2 {
  padding: clamp(60px, 9vw, 110px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}
.reviews-v2-head {
  text-align: center;
  margin-bottom: 50px;
}
.reviews-v2-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid rgba(0,163,224,0.15);
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0,163,224,0.1);
}
.reviews-v2-rating-stars {
  color: var(--c-yellow);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 2px 4px rgba(255,208,0,0.3));
}
.reviews-v2-rating-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.reviews-v2-rating-meta {
  font-size: 0.92rem;
  color: var(--c-text-soft);
  font-weight: 500;
}
.reviews-v2-rating-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0,163,224,0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-blue-dark);
}


/* ============================================================
   BIG CTA STRIP V2
   ============================================================ */
.cta-strip-v2 {
  padding: clamp(50px, 7vw, 90px) 0;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-strip-v2::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,0,0.3), transparent 70%);
}
.cta-strip-v2-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .cta-strip-v2-grid { grid-template-columns: 1fr; }
}
.cta-strip-v2-grid h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-strip-v2-grid p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 1.02rem;
}
.cta-strip-v2-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-strip-v2-buttons .btn-yellow {
  background: var(--c-yellow);
  color: var(--c-ink);
  font-weight: 700;
  border: none;
}
.cta-strip-v2-buttons .btn-yellow:hover {
  background: #ffdd33;
  transform: translateY(-2px);
}


/* ============================================================
   SCROLL-DOWN INDICATOR
   ============================================================ */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.scroll-down svg { width: 22px; height: 22px; }
@media (max-width: 700px) {
  .scroll-down { display: none; }
}

/* ============================================================
   ★ MODERN REDESIGN — v2 (2026)
   ============================================================ */

/* ---------- Notdienst-Button: pulsierend rot ---------- */
@keyframes notdienst-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230,57,70,0.7),
                0 8px 24px rgba(230,57,70,0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(230,57,70,0),
                0 12px 32px rgba(230,57,70,0.45);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230,57,70,0),
                0 8px 24px rgba(230,57,70,0.35);
    transform: scale(1);
  }
}
@keyframes notdienst-blink {
  0%, 60%, 100% { background: var(--c-red); }
  30% { background: #ff5a6a; }
}
.btn-emergency {
  position: relative;
  animation: notdienst-pulse 1.6s ease-in-out infinite,
             notdienst-blink 2.4s ease-in-out infinite;
}
.btn-emergency::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255,255,255,0.5);
  opacity: 0;
  animation: notdienst-ring 1.6s ease-out infinite;
  pointer-events: none;
}
@keyframes notdienst-ring {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-emergency { animation: none; }
  .btn-emergency::after { display: none; }
}


/* ---------- Hero v2: Full-bleed Teamfoto-Header ---------- */
.hero-v2 {
  position: relative;
  min-height: clamp(620px, 88vh, 900px);
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #061522;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-v2-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) saturate(1.05);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero-v2-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6,21,34,0.82) 0%, rgba(6,21,34,0.60) 50%, rgba(6,21,34,0.30) 100%),
    linear-gradient(180deg, rgba(6,21,34,0.40) 0%, transparent 30%, rgba(6,21,34,0.85) 100%);
  z-index: 1;
}
.hero-v2-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' seed='5'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
}
.hero-v2-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}

/* Modernes Trust-Badge (statt alter Pill) */
.trust-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  padding: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.trust-chip + .trust-chip {
  border-left: 1px solid rgba(255,255,255,0.18);
}
.trust-chip svg { width: 16px; height: 16px; }
.trust-chip-rating .stars {
  color: var(--c-yellow);
  letter-spacing: 1px;
  font-size: 0.95rem;
}
.trust-chip-rating .score {
  font-weight: 800;
  color: #fff;
}
.trust-chip-rating .count { color: rgba(255,255,255,0.75); font-weight: 500; }
.trust-chip-since { color: rgba(255,255,255,0.85); }
.trust-chip-since strong { color: #fff; }
@media (max-width: 540px) {
  .trust-row { flex-direction: column; align-items: stretch; border-radius: 20px; }
  .trust-chip { justify-content: center; padding: 10px 16px; }
  .trust-chip + .trust-chip { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
}

.hero-v2 h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.22;
  margin: 0 0 22px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-v2 h1 .accent-yellow {
  position: relative;
  display: inline-block;
  color: var(--c-yellow);
}
.hero-v2 h1 .accent-yellow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: rgba(255,208,0,0.35);
  z-index: -1;
  border-radius: 3px;
}
.hero-v2 .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 0 0 36px;
  max-width: 580px;
}
.hero-v2-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.btn-xl {
  font-size: 1.05rem;
  padding: 18px 32px;
  border-radius: 14px;
}
.btn-xl svg { width: 20px; height: 20px; }
.btn-glass {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* Hero-Stats unter Hero */
.hero-v2-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-v2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-v2-stat strong {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}
.hero-v2-stat span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* Floating-Karten über Hero */
.hero-v2-floats {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,0.5);
}
.hero-float-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-float-card-icon svg { width: 20px; height: 20px; }
.hero-float-card strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.25;
}
.hero-float-card span {
  font-size: 0.78rem;
  color: var(--c-text-soft);
}
.hero-float-card--top {
  top: 130px;
  right: 6%;
  animation: float-y 7s ease-in-out infinite;
}
.hero-float-card--bottom {
  bottom: 140px;
  right: 14%;
  animation: float-y 6s ease-in-out infinite reverse;
}
.hero-float-card--top .hero-float-card-icon {
  background: rgba(0,163,224,0.14);
  color: var(--c-blue);
}
.hero-float-card--bottom .hero-float-card-icon {
  background: rgba(255,208,0,0.22);
  color: #b88800;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 1100px) {
  .hero-float-card--top { top: 100px; right: 4%; }
  .hero-float-card--bottom { bottom: 100px; right: 4%; }
}
@media (max-width: 760px) {
  .hero-v2 { min-height: 700px; padding: 120px 0 80px; }
  .hero-float-card { padding: 10px 14px; }
  .hero-float-card-icon { width: 36px; height: 36px; }
  .hero-float-card strong { font-size: 0.85rem; }
  .hero-float-card span { font-size: 0.72rem; }
  .hero-float-card--top { top: 90px; right: 16px; }
  .hero-float-card--bottom { bottom: 110px; right: 16px; left: auto; }
  .hero-v2-stats { gap: 18px 28px; padding-top: 24px; }
  .hero-v2-stat strong { font-size: 1.25rem; }
}


/* ---------- Photo-Service-Cards (mit echten Bildern) ---------- */
.photo-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.photo-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4/5;
  background: var(--c-ink);
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 32px rgba(13,27,42,0.08);
}
.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13,27,42,0.20);
}
.photo-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-card:hover .photo-card-img {
  transform: scale(1.08);
}
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(13,27,42,0.55) 60%, rgba(13,27,42,0.92) 100%);
  transition: opacity 0.4s ease;
}
.photo-card:hover::before {
  background: linear-gradient(180deg, rgba(13,27,42,0.10) 0%, rgba(13,27,42,0.65) 50%, rgba(13,27,42,0.95) 100%);
}
.photo-card-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.photo-card-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: var(--c-blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.photo-card-icon svg { width: 22px; height: 22px; }
.photo-card.photo-card--urgent .photo-card-icon { color: var(--c-red); }
.photo-card-tag {
  position: absolute;
  top: 28px;
  right: 24px;
  padding: 5px 12px;
  background: var(--c-red);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230,57,70,0.5);
  animation: notdienst-pulse 1.6s ease-in-out infinite;
}
.photo-card h3 {
  font-size: 1.45rem;
  line-height: 1.30;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.photo-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  margin: 0 0 16px;
  max-width: 36ch;
}
.photo-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-yellow);
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, gap 0.3s ease;
}
.photo-card:hover .photo-card-more {
  gap: 14px;
}
.photo-card-more svg { width: 16px; height: 16px; }


/* ---------- Modernisierte Reviews mit Score-Badge ---------- */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
}
.reviews-header-text { flex: 1; min-width: 280px; }
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(13,27,42,0.06);
}
.google-rating-badge::before {
  content: "G";
  font-family: 'Product Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(45deg, #4285F4 0%, #34A853 25%, #FBBC04 50%, #EA4335 75%, #4285F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.google-rating-badge-content { display: flex; flex-direction: column; gap: 2px; }
.google-rating-badge .score {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-rating-badge .score .stars { color: var(--c-yellow); font-size: 1.05rem; letter-spacing: 1px; }
.google-rating-badge .label {
  font-size: 0.84rem;
  color: var(--c-text-soft);
  font-weight: 500;
}


/* ---------- Animated counter stats ---------- */
.stats-strip {
  background: linear-gradient(135deg, var(--c-ink) 0%, #0a2436 50%, var(--c-blue-deeper) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,163,224,0.18), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,208,0,0.10), transparent 40%);
}
.stats-strip-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 720px) {
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stat-item-modern .num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--c-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-item-modern .label {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================================
   ★ FIX: Forms (big-form, form-row, field) — komplettes Layout
   ============================================================ */
.big-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.big-form .hp-field {
  position: absolute !important;
  left: -9999px !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row.form-row--narrow { grid-template-columns: 1fr 200px; }
@media (max-width: 640px) {
  .form-row,
  .form-row.form-row--3,
  .form-row.form-row--narrow { grid-template-columns: 1fr; gap: 18px; }
}

.big-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.big-form .field > span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink, #0d1b2a);
  letter-spacing: 0.01em;
}
.big-form .field input,
.big-form .field textarea,
.big-form .field select {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--c-line, #e6ebf0);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-ink, #0d1b2a);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.big-form .field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%230d1b2a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.big-form .field input:focus,
.big-form .field textarea:focus,
.big-form .field select:focus {
  outline: none;
  border-color: var(--c-blue, #00a3e0);
  box-shadow: 0 0 0 4px rgba(0,163,224,0.12);
  background: #fff;
}
.big-form .field input::placeholder,
.big-form .field textarea::placeholder {
  color: #9aa5b1;
  opacity: 1;
}
.big-form .field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}
.big-form .field small {
  font-size: 0.82rem;
  color: var(--c-text-soft, #5a6878);
  margin-top: 4px;
}

/* File input */
.big-form .field-file {
  position: relative;
}
.big-form .field-file input[type="file"] {
  width: 100%;
  padding: 16px 18px;
  background: rgba(0,163,224,0.03);
  border: 2px dashed rgba(0,163,224,0.25);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--c-text);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.big-form .field-file input[type="file"]:hover {
  border-color: var(--c-blue);
  background: rgba(0,163,224,0.06);
}
.big-form .field-file input[type="file"]::-webkit-file-upload-button {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 8px 14px;
  margin-right: 14px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
  transition: background 0.15s ease;
}
.big-form .field-file input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--c-bg-soft);
}

/* Checkbox row */
.big-form .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(0,163,224,0.03);
  border: 1px solid rgba(0,163,224,0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.big-form .checkbox-field:hover {
  background: rgba(0,163,224,0.05);
  border-color: rgba(0,163,224,0.20);
}
.big-form .checkbox-field input[type="checkbox"] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--c-blue);
  cursor: pointer;
}
.big-form .checkbox-field span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-text);
}
.big-form .checkbox-field a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit row */
.big-form .form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.big-form .form-note {
  font-size: 0.85rem;
  color: var(--c-text-soft);
}

/* Form-card wrapper */
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 12px 40px rgba(13,27,42,0.06);
  border: 1px solid var(--c-line, #e6ebf0);
}
.form-card--light { background: #fff; }

/* Pill-group fix */
.big-form .pill-group {
  border: 1.5px solid var(--c-line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.big-form .pill-group::before {
  content: attr(data-label);
  position: absolute;
  top: -10px;
  left: 14px;
  background: #fff;
  padding: 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-soft);
}
.big-form .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.big-form .pill input { display: none; }
.big-form .pill:hover { border-color: var(--c-blue); color: var(--c-blue); }
.big-form .pill:has(input:checked) {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}
.big-form .pill--urgent { color: var(--c-red); border-color: rgba(230,57,70,0.4); }
.big-form .pill--urgent:hover,
.big-form .pill--urgent:has(input:checked) {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

/* Form alt section */
.form-alt {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  text-align: center;
}
.form-alt p { margin: 0 0 8px; color: var(--c-text); }
.form-alt a { color: var(--c-blue); font-weight: 600; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show,
.form-success:not([hidden]) { display: block; }
.form-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #2dd573, #1a9c52);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(45,213,115,0.35);
}
.form-success h3 { margin: 0 0 8px; color: var(--c-ink); }
.form-success p { color: var(--c-text-soft); }


/* ============================================================
   ★ FIX: Service-Cards zentriert wenn Reihe nicht voll
   ============================================================ */
.services-grid,
.svc-grid,
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .services-grid,
  .svc-grid,
  .services-v2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .services-grid,
  .svc-grid,
  .services-v2-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   ★ FIX: Leistungs-Detail-Hero (echte Bilder statt Icon-Boxen)
   ============================================================ */
.leistung-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl, 36px);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 20px 60px rgba(13,27,42,0.12));
  background: var(--c-ink);
}
.leistung-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.leistung-image:hover img { transform: scale(1.04); }
.leistung-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,27,42,0.7) 100%);
  pointer-events: none;
}
.leistung-image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
}
.leistung-image-caption strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
}
.leistung-image-caption span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}


/* ============================================================
   ★ Bildquellen-Hinweis im Footer
   ============================================================ */
.image-credits {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.image-credits a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-decoration-style: dotted;
}
.image-credits a:hover { color: #fff; }

/* ============================================================
   ★ HERO v3 — kompakter, schärfer, lesbarer Text
   ============================================================ */
/* Override of earlier .hero-v2 — reduce height & strengthen overlay */
.hero-v2 {
  min-height: clamp(540px, 78vh, 720px) !important;
  padding: clamp(110px, 13vw, 150px) 0 clamp(60px, 8vw, 90px) !important;
}
.hero-v2-bg {
  background-position: center 25% !important;
  /* Slight blur smooths away pixel artifacts on upscaling */
  filter: saturate(1.0) contrast(1.0) brightness(0.95) !important;
}
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(6,21,34,0.92) 0%, rgba(6,21,34,0.78) 38%, rgba(6,21,34,0.45) 100%),
    linear-gradient(180deg, rgba(6,21,34,0.55) 0%, transparent 30%, rgba(6,21,34,0.85) 100%) !important;
}
.hero-v2-headline {
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-v2-lead {
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Hide leftover floating cards if any remain */
.hero-v2-floating { display: none !important; }


/* ============================================================
   ★ HERO STATS — als prominente werbe-taugliche Karten
   ============================================================ */
.hero-v2-stats--cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 !important;
  border: none !important;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .hero-v2-stats--cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .hero-v2-stats--cards { grid-template-columns: 1fr; gap: 10px; }
}

.hero-stat-card {
  position: relative;
  padding: 22px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
  isolation: isolate;
}
.hero-stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-yellow), transparent);
  opacity: 0.7;
}
.hero-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,208,0,0.4);
  background: rgba(255,255,255,0.10);
}
.hero-stat-card-stars {
  color: var(--c-yellow);
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 8px rgba(255,208,0,0.5));
}
.hero-stat-card-value {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #ffd000 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-stat-card-value span {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.7;
  -webkit-text-fill-color: rgba(255,255,255,0.65);
}
.hero-stat-card-label {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.hero-stat-card-label svg {
  flex-shrink: 0;
  color: var(--c-yellow);
  opacity: 0.85;
}

/* Rating-Karte spezial: gold-tinted + stärker hervorgehoben */
.hero-stat-card--rating {
  background: linear-gradient(135deg, rgba(255,208,0,0.18) 0%, rgba(255,208,0,0.05) 100%);
  border-color: rgba(255,208,0,0.38);
}
.hero-stat-card--rating::before {
  background: linear-gradient(90deg, var(--c-yellow), rgba(255,208,0,0.3));
  opacity: 1;
  height: 3px;
}
.hero-stat-card--rating:hover {
  background: linear-gradient(135deg, rgba(255,208,0,0.25) 0%, rgba(255,208,0,0.08) 100%);
  border-color: rgba(255,208,0,0.6);
}

/* Notdienst-Karte spezial: rot-tinted + leichte Pulse */
.hero-stat-card--alert {
  background: linear-gradient(135deg, rgba(230,57,70,0.18) 0%, rgba(230,57,70,0.05) 100%);
  border-color: rgba(230,57,70,0.4);
}
.hero-stat-card--alert::before {
  background: linear-gradient(90deg, var(--c-red), rgba(230,57,70,0.3));
  opacity: 1;
  height: 3px;
}
.hero-stat-card--alert .hero-stat-card-value {
  background: linear-gradient(135deg, #fff 0%, #ff6b76 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-card--alert .hero-stat-card-label svg { color: #ff8a92; }
@keyframes alert-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
  50% { box-shadow: 0 0 24px rgba(230,57,70,0.35); }
}
.hero-stat-card--alert {
  animation: alert-glow 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-stat-card--alert { animation: none; }
}


/* ============================================================
   ★ Footer-Branding: dreihundertsechzig
   ============================================================ */
.footer-built-by {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.footer-built-by a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 8px;
  border-radius: 8px;
}
.footer-built-by a:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.dh-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dh-logo-mark {
  display: inline-block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  animation: dh-rotate 12s linear infinite;
  transform-origin: center center;
}
.dh-logo-mark svg { width: 100%; height: 100%; display: block; }
@keyframes dh-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .dh-logo-mark { animation: none; }
}
.dh-logo-text {
  font-family: var(--f-display, 'Bricolage Grotesque', sans-serif);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.dh-logo-text .dh-light { color: #7ed3a3; }
.dh-logo-text .dh-mid { color: #d4d199; }

/* ============================================================
   ★★★ WORLD-CLASS REDESIGN v4 — 2026 ★★★
   Trends: Bold Display Typography, Mixed Serif Italic Accents,
   Glow, Layered Animations, Magnetic Cursor, Scroll Storytelling
   ============================================================ */

/* ---------- New font system ---------- */
:root {
  --f-display: 'Boldonse', 'Bricolage Grotesque', system-ui, sans-serif;
  --f-serif: 'Instrument Serif', 'Times New Roman', serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body) !important;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reset h tags to Boldonse + tighter spacing */
h1, h2, h3, h4, h5, h6,
.hero-v2 h1,
.hero-v2-headline,
.section-head h2,
.hero-stat-card-value {
  font-family: var(--f-display) !important;
  font-weight: 400 !important; /* Boldonse only ships in 400 weight */
  letter-spacing: -0.025em;
  line-height: 1.22;
}

/* Italic serif accent — wherever .accent or .accent-italic appears */
.accent,
.accent-italic,
.hero-v2-headline .accent {
  font-family: var(--f-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--c-yellow);
}

/* Eyebrow refinement */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Body / lead reset */
.hero-v2-lead, .lead, p, li {
  font-family: var(--f-body);
  font-weight: 400;
}

/* Buttons → Inter Medium */
.btn { font-family: var(--f-body); font-weight: 600; letter-spacing: -0.005em; }


/* ============================================================
   ★ Scroll-Progress-Bar (oben)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-yellow), var(--c-blue), var(--c-yellow));
  background-size: 200% 100%;
  animation: progress-shimmer 3s linear infinite;
  box-shadow: 0 0 12px rgba(255,208,0,0.6);
  transition: width 0.08s linear;
}
@keyframes progress-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}


/* ============================================================
   ★ Custom Cursor (Desktop only)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .btn, input, textarea, select, .opt-card { cursor: none; }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: width 0.18s ease, height 0.18s ease;
  }
  .cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    transition: transform 0.12s ease-out, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  }
  body.cursor-hover .cursor-dot { width: 0; height: 0; }
  body.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--c-yellow);
    border-width: 2px;
    background: rgba(255,208,0,0.08);
  }
}


/* ============================================================
   ★ Marquee — Endless Service-Ticker
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(90deg, var(--c-ink) 0%, #0a2436 50%, var(--c-ink) 100%);
  border-top: 1px solid rgba(255,208,0,0.15);
  border-bottom: 1px solid rgba(255,208,0,0.15);
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--c-ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--c-ink), transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee-scroll 38s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 56px;
  letter-spacing: -0.01em;
}
.marquee-item .accent-italic {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-yellow);
  font-size: 1.1em;
}
.marquee-item .dot {
  width: 10px;
  height: 10px;
  background: var(--c-yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--c-yellow);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}


/* ============================================================
   ★ Reveal-on-Scroll (refined)
   ============================================================ */
.fade-up,
.fade-in,
.fade-right,
.fade-left,
.zoom-in {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.fade-up { transform: translateY(40px); }
.fade-right { transform: translateX(-40px); }
.fade-left { transform: translateX(40px); }
.zoom-in { transform: scale(0.92); }
.fade-up.in-view,
.fade-in.in-view,
.fade-right.in-view,
.fade-left.in-view,
.zoom-in.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }


/* ============================================================
   ★ Text-Reveal (Wörter erscheinen sequentiell)
   ============================================================ */
.text-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%) rotate(8deg);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: visible;
}
.text-reveal.in-view .word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.text-reveal.in-view .word:nth-child(1) { transition-delay: 0.05s; }
.text-reveal.in-view .word:nth-child(2) { transition-delay: 0.13s; }
.text-reveal.in-view .word:nth-child(3) { transition-delay: 0.21s; }
.text-reveal.in-view .word:nth-child(4) { transition-delay: 0.29s; }
.text-reveal.in-view .word:nth-child(5) { transition-delay: 0.37s; }
.text-reveal.in-view .word:nth-child(6) { transition-delay: 0.45s; }
.text-reveal.in-view .word:nth-child(7) { transition-delay: 0.53s; }
.text-reveal.in-view .word:nth-child(8) { transition-delay: 0.61s; }


/* ============================================================
   ★ Magnetic Buttons (data-magnetic)
   ============================================================ */
.btn[data-magnetic] {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}


/* ============================================================
   ★ 3D-Tilt on cards (data-tilt)
   ============================================================ */
[data-tilt] {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  will-change: transform;
}


/* ============================================================
   ★ Number Counter (Stats animation)
   ============================================================ */
.count-up { display: inline-block; }


/* ============================================================
   ★ Section Heads — bigger, bolder, with italic accent
   ============================================================ */
.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
  line-height: 1.22 !important;
  letter-spacing: -0.035em !important;
  margin: 12px 0 24px !important;
}
.section-head h2 .accent,
.section-head h2 .accent-italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c-blue);
  letter-spacing: 0;
}
.section-head h2 .accent-yellow {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c-yellow);
  letter-spacing: 0;
  -webkit-text-fill-color: var(--c-yellow);
}

/* Make hero headline massive */
.hero-v2 h1,
.hero-v2-headline {
  font-size: clamp(3rem, 8vw, 7rem) !important;
  letter-spacing: -0.04em !important;
  line-height: 1.22 !important;
}
.hero-v2-headline .accent {
  font-family: var(--f-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--c-yellow);
  display: inline-block;
  transform: translateY(0.05em);
}


/* ============================================================
   ★ Spotlight Hover on photo-cards (mouse-position glow)
   ============================================================ */
.svc-card,
.photo-card,
.gal-item {
  position: relative;
  overflow: hidden;
}
.svc-card::after,
.photo-card::after,
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,208,0,0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.svc-card:hover::after,
.photo-card:hover::after,
.gal-item:hover::after {
  opacity: 1;
}


/* ============================================================
   ★ Animated underline on links
   ============================================================ */
.link-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ============================================================
   ★ Live Indicator (pulse dot)
   ============================================================ */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  margin-right: 6px;
  vertical-align: middle;
}
.live-dot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: rgba(74,222,128,0.4);
  animation: live-ping 1.6s ease-in-out infinite;
}
@keyframes live-ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}


/* ============================================================
   ★ Top-Bar mit Live-Indikator
   ============================================================ */
.topbar {
  background: var(--c-ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.topbar a:hover { color: var(--c-yellow); }
.topbar svg { width: 14px; height: 14px; opacity: 0.7; }
@media (max-width: 720px) {
  .topbar { font-size: 0.76rem; padding: 6px 0; }
  .topbar-left, .topbar-right { gap: 12px; }
  .topbar-hide-mobile { display: none; }
}


/* ============================================================
   ★ Sticky Header with shrink on scroll
   ============================================================ */
.header {
  position: sticky !important;
  top: 0;
  z-index: 100;
  transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 2px 20px rgba(13,27,42,0.06);
}


/* ============================================================
   ★ Quick-Access Pills (Schwebend rechts unten neben Chat)
   ============================================================ */
.quick-fab {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 80;
}
.quick-fab a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(13,27,42,0.18);
  color: var(--c-blue);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  position: relative;
}
.quick-fab a:hover {
  transform: scale(1.1) translateX(-4px);
  background: var(--c-blue);
  color: #fff;
}
.quick-fab a svg { width: 22px; height: 22px; }
.quick-fab a[href^="tel:"] { color: var(--c-red); }
.quick-fab a[href^="tel:"]:hover { background: var(--c-red); color: #fff; }
.quick-fab a[href^="https://wa.me"] { color: #25D366; }
.quick-fab a[href^="https://wa.me"]:hover { background: #25D366; color: #fff; }
.quick-fab a::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--c-ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.quick-fab a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 640px) {
  .quick-fab { right: 12px; bottom: 80px; }
  .quick-fab a { width: 44px; height: 44px; }
  .quick-fab a::after { display: none; }
}


/* ============================================================
   ★ Section-Eyebrows mit Animated Line
   ============================================================ */
.eyebrow-animated {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.eyebrow-animated::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--c-blue);
  display: inline-block;
  animation: eyebrow-extend 1.4s ease-in-out infinite alternate;
  transform-origin: left;
}
@keyframes eyebrow-extend {
  from { transform: scaleX(0.5); }
  to { transform: scaleX(1); }
}


/* ============================================================
   ★ Logo Marquee (Hersteller-Logos rotierend)
   ============================================================ */
.brands-marquee {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.brands-marquee-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.brands-track {
  display: flex;
  gap: 70px;
  animation: brands-scroll 28s linear infinite;
  align-items: center;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
.brand-logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-text-soft);
  white-space: nowrap;
  transition: color 0.3s ease;
  letter-spacing: -0.02em;
  opacity: 0.6;
}
.brand-logo:hover { color: var(--c-blue); opacity: 1; }
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ============================================================
   ★ Cinematic Hero — Vignette + Light-Beam
   ============================================================ */
.hero-v2 {
  background: radial-gradient(ellipse at top, #0e2436 0%, #061522 60%) !important;
}
.hero-v2-bg::before {
  content: "";
  position: absolute;
  top: -20%; left: 40%;
  width: 600px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(255,208,0,0.18), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
  animation: light-drift 12s ease-in-out infinite alternate;
}
@keyframes light-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-100px, 60px) rotate(20deg); }
}


/* ============================================================
   ★ Hover scaling for service cards
   ============================================================ */
.svc-card {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.svc-card:hover {
  transform: translateY(-8px) !important;
}


/* ============================================================
   ★ Reduced motion fallback
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in, .fade-right, .fade-left, .zoom-in,
  .text-reveal .word { opacity: 1 !important; transform: none !important; }
  .marquee-track, .brands-track { animation: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
  a, button, .btn { cursor: pointer !important; }
}

/* ---------- Hero headline size correction ---------- */
.hero-v2 h1,
.hero-v2-headline {
  font-size: clamp(2.6rem, 5.8vw, 5rem) !important;
}

/* Boldonse hat Probleme mit & und - umlauten - ensure crisp rendering */
.hero-v2-headline {
  font-feature-settings: "kern" 1, "liga" 1;
  word-spacing: -0.04em;
}

/* Improve responsive hero stat cards on small screens */
@media (max-width: 460px) {
  .hero-stat-card-value { font-size: 1.6rem; }
  .hero-stat-card-label { font-size: 0.78rem; }
}

/* ============================================================
   ★ dreihundertsechzig — Footer Badge (modern dark)
   ============================================================ */
.footer-built-by {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: center;
}
.dh-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  min-width: 240px;
}
.dh-badge:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(155,227,168,0.22);
  transform: translateY(-1px);
}
.dh-badge-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-block;
  animation: dh-rotate 14s linear infinite;
  transform-origin: center center;
}
.dh-badge-mark svg { width: 100%; height: 100%; display: block; }
@keyframes dh-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .dh-badge-mark { animation: none; }
}
.dh-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.dh-badge-eyebrow {
  font-family: var(--f-body, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.dh-badge-name {
  font-family: var(--f-body, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}
.dh-badge:hover .dh-badge-name { color: #fff; }
.dh-badge-arrow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s ease, transform 0.25s ease;
}
.dh-badge-arrow svg { width: 100%; height: 100%; }
.dh-badge:hover .dh-badge-arrow {
  color: #9be3a8;
  transform: translate(2px, -2px);
}

/* Override any old .dh-logo styling */
.dh-logo, .dh-logo-mark, .dh-logo-text { display: none !important; }

/* ============================================================
   ★ Family Badge (warm, einladend, handschriftlich)
   ============================================================ */
.family-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 18px !important;
  background: linear-gradient(135deg, #fffbe8 0%, #fff5d0 100%) !important;
  border: 1px solid rgba(255, 208, 0, 0.45) !important;
  border-radius: 999px !important;
  box-shadow:
    0 8px 24px rgba(255, 184, 0, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.6) inset !important;
  position: relative;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.family-badge:hover {
  transform: translateY(-2px) rotate(-0.5deg);
  box-shadow:
    0 14px 32px rgba(255, 184, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.family-badge-stamp {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-red, #e63946), #c8202c);
  border-radius: 50%;
  color: #fff;
  box-shadow:
    0 6px 14px rgba(230, 57, 70, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
  animation: heart-pulse 2.4s ease-in-out infinite;
}
.family-badge-stamp svg { width: 18px; height: 18px; }
@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.12); }
  20% { transform: scale(1); }
  30% { transform: scale(1.08); }
  40% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .family-badge-stamp { animation: none; }
}
.family-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.30;
  text-align: left;
}
.family-badge-line1 {
  font-family: var(--f-body, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 0.78rem;
  color: #6b5a1f;
  letter-spacing: 0.01em;
}
.family-badge-line1 em {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-style: normal;
  font-weight: 700;
  font-size: 1.55em;
  color: #1a1a1a;
  letter-spacing: -0.005em;
  margin: 0 1px;
  display: inline-block;
  transform: translateY(2px);
}
.family-badge-line2 {
  font-family: var(--f-body, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 0.78rem;
  color: #6b5a1f;
  letter-spacing: 0.01em;
}
.family-badge-line2 strong {
  font-weight: 800;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
}

/* Mobile family badge — stack-ready */
@media (max-width: 460px) {
  .family-badge { padding: 10px 18px 10px 14px !important; gap: 10px; }
  .family-badge-stamp { width: 30px; height: 30px; }
  .family-badge-stamp svg { width: 15px; height: 15px; }
  .family-badge-line1, .family-badge-line2 { font-size: 0.72rem; }
}


/* ============================================================
   ★ Stat Cards — now clickable with CTA reveal on hover
   ============================================================ */
a.hero-stat-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  cursor: pointer;
}
.hero-stat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-yellow);
  text-transform: uppercase;
  opacity: 0.7;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}
.hero-stat-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
a.hero-stat-card:hover .hero-stat-card-cta {
  opacity: 1;
  gap: 10px;
}
a.hero-stat-card:hover .hero-stat-card-cta svg {
  transform: translateX(2px);
}
.hero-stat-card--alert .hero-stat-card-cta {
  color: #ff8a92;
}
a.hero-stat-card:focus-visible {
  outline: 2px solid var(--c-yellow);
  outline-offset: 3px;
}

/* Tighter stat card layout for 4-col on desktop */
.hero-v2-stats--cards {
  gap: 12px !important;
}
.hero-stat-card {
  padding: 16px !important;
  gap: 4px !important;
}
.hero-stat-card-cta {
  font-size: 0.72rem !important;
  margin-top: 8px !important;
  padding-top: 8px !important;
  letter-spacing: 0.05em !important;
}
.hero-stat-card-cta svg { width: 12px; height: 12px; }

/* On medium screens make stat cards wrap to 2x2 */
@media (max-width: 1100px) {
  .hero-v2-stats--cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 460px) {
  .hero-v2-stats--cards { grid-template-columns: 1fr !important; }
}
/* ===== Icon containers ===== */
.benefit-icon,
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,163,224,0.12), rgba(255,208,0,0.10));
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--c-blue, #0093d0);
  transition: transform 0.3s ease, background 0.3s ease;
}
.benefit-icon svg,
.service-icon svg {
  width: 32px; height: 32px;
  stroke: var(--c-blue, #0093d0);
}
.benefit-card:hover .benefit-icon,
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(0,163,224,0.22), rgba(255,208,0,0.18));
}
/* Service tag SVG icons (kontakt + foerdercheck) */
.service-tag svg,
.tag-pill svg,
.btn svg.inline-svg {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}
/* ===== Service Pills (Kontakt-Formular: Worum geht es?) ===== */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1.5px solid var(--c-line, #e6ebf0);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--c-ink);
  transition: all 0.18s ease;
  user-select: none;
}
.pill svg {
  width: 18px !important;
  height: 18px !important;
  stroke: var(--c-blue);
  transition: stroke 0.18s ease;
  flex-shrink: 0;
}
.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pill:hover {
  border-color: var(--c-blue);
  background: rgba(0,163,224,0.04);
  transform: translateY(-1px);
}
.pill:has(input:checked) {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}
.pill:has(input:checked) svg {
  stroke: #fff;
}
.pill--urgent {
  color: var(--c-red);
  border-color: rgba(230,57,70,0.3);
}
.pill--urgent svg {
  stroke: var(--c-red);
}
.pill--urgent:hover {
  border-color: var(--c-red);
  background: rgba(230,57,70,0.06);
}
.pill--urgent:has(input:checked) {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.pill--urgent:has(input:checked) svg {
  stroke: #fff;
}

/* Fieldset legend (Worum geht es?) */
.big-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.big-form fieldset legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 4px;
}

/* Contact info cards (Telefon, E-Mail, Adresse): SVG bigger */
.info-card svg, .contact-card svg {
  width: 28px !important;
  height: 28px !important;
}

/* Form heading polish - prevent clip */
.form-card h2,
.form-card .form-title {
  line-height: 1.18 !important;
  margin-bottom: 12px;
  padding-bottom: 0.08em;
}
.form-intro {
  margin-top: 0;
  margin-bottom: 28px !important;
  color: var(--c-text-soft, #5a6b7a);
  font-size: 1rem;
  line-height: 1.6;
}
/* ===== Bewerbungs-Section: Du passt zu uns + 4 Schritte ===== */
.check-list li {
  position: relative;
  padding-left: 40px;
  font-size: 1rem;
  line-height: 1.6;
  padding-top: 2px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--c-blue), #0083b8);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,163,224,0.25);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.step-list {
  display: grid;
  gap: 22px;
}
.step-list li {
  background: linear-gradient(135deg, rgba(0,163,224,0.04), rgba(255,208,0,0.03));
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid var(--c-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,163,224,0.12);
}
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--c-blue), #0083b8);
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(0,163,224,0.3);
}
.step-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: var(--c-ink);
}

/* Two-col on bewerbungs: align tops better, equal padding */
.two-col h2 { margin-bottom: 24px; }

/* CTAs row below "60-Sek Fördercheck" — hero stat cards more breathing */
.hero-stat-card-value {
  font-size: 1.6rem !important;
  font-weight: 800;
  margin: 2px 0 4px;
}
.hero-stat-card-label {
  font-size: 0.82rem !important;
  opacity: 0.95;
}
.hero-stat-card-cta {
  margin-top: auto;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
/* ===== Flip Cards (Karriere · Was du machst) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

.flip-card {
  perspective: 1500px;
  height: 320px;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  position: relative;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}
.flip-card-front {
  background: #fff;
  border: 1px solid var(--c-border, #e8eef3);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 16px rgba(13,27,42,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.flip-card:not(.is-flipped):hover .flip-card-front {
  border-color: var(--c-blue);
  box-shadow: 0 12px 32px rgba(0,163,224,0.12);
  transform: translateY(-2px);
}
.flip-card-front h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.flip-card-front p {
  color: var(--c-text-soft, #5a6b7a);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.flip-hint {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-blue);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.flip-card:hover .flip-hint { opacity: 1; }

.flip-card-back {
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.flip-card-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0) 30%, rgba(13,27,42,0.85) 100%);
}
.flip-card-back-content {
  position: relative;
  padding: 24px;
  z-index: 1;
}
.flip-card-back-content h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.flip-card-back-content p {
  color: rgba(255,255,255,0.92);
  font-size: 0.93rem;
  line-height: 1.5;
  margin: 0;
}


/* Förder-Highlight Zahl */
.foerder-highlight-num {
  display: inline-block;
  color: #d70000;
  font-weight: 900;
  font-size: 1.1em;
  background: linear-gradient(135deg, #ff3030, #c1121f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.foerder-strip h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem) !important;
}

/* ===== DreiHundertSechzig Badge mit rotierendem Kreis ===== */
.dh-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  font-family: var(--f-display);
}
.dh-badge:hover {
  background: rgba(155, 227, 168, 0.08);
  border-color: rgba(155, 227, 168, 0.45);
  transform: translateY(-1px);
}
.dh-badge-mark {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dh-badge-mark::before,
.dh-badge-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #9be3a8;
  border-right-color: #9be3a8;
}
.dh-badge-mark::before {
  animation: dh-spin 3.5s linear infinite;
}
.dh-badge-mark::after {
  inset: 4px;
  border-top-color: #ffd000;
  border-right-color: transparent;
  border-bottom-color: #ffd000;
  animation: dh-spin 5s linear infinite reverse;
  opacity: 0.7;
}
@keyframes dh-spin {
  to { transform: rotate(360deg); }
}
.dh-badge-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.dh-badge-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--f-body, "Inter", sans-serif);
}
.dh-badge-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dh-badge-name em,
.dh-badge-name .it {
  color: #ffd000;
  font-style: italic;
  font-weight: 700;
  margin-left: 2px;
}
.dh-badge-arrow {
  margin-left: 4px;
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.dh-badge-arrow svg { width: 12px; height: 12px; stroke-width: 2.4; }
.dh-badge:hover .dh-badge-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.footer-built-by {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  text-align: center;
}
@media (min-width: 760px) {
  .footer-built-by {
    text-align: right;
  }
}

/* ===== Foto-Diagnose: Bestandskunden-Gate ===== */
.diag-gate-section {
  padding: 30px 0 0;
}
.diag-gate-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffefb8 100%);
  border: 1.5px solid #ffd000;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255,208,0,0.18);
}
@media (max-width: 720px) {
  .diag-gate-banner {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .diag-gate-cta {
    grid-column: 1 / -1;
  }
}
.diag-gate-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-ink);
  color: #ffd000;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diag-gate-icon svg {
  width: 28px; height: 28px;
}
.diag-gate-text strong {
  display: block;
  color: var(--c-ink);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.diag-gate-text p {
  color: var(--c-text-soft, #5a6b7a);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.diag-gate-text a {
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: underline;
}
.diag-gate-cta {
  white-space: nowrap;
}

.diag-gate-sla {
  margin-top: 24px;
}
.diag-sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) {
  .diag-sla-grid { grid-template-columns: 1fr; }
}
.diag-sla-card {
  padding: 18px 20px;
  background: #f7fafc;
  border-radius: 12px;
  border-left: 4px solid var(--c-blue);
}
.diag-sla-card--urgent {
  background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
  border-left-color: var(--c-red);
}
.diag-sla-time {
  font-weight: 700;
  color: var(--c-ink);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.diag-sla-label {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.5;
  margin: 0;
}
.diag-sla-card--urgent a {
  color: var(--c-red);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.02rem;
}
.diag-sla-card--urgent strong {
  color: var(--c-red);
}
