/* ==================================================================
   ENLUPA — Shared Stylesheet
   Selbst gehostete Fonts: Baloo 2 (Display) + Inter (Fließtext).
   Markenblau #1B82D8 aus dem echten Enlupa-Logo (Kunden-PDFs).
   ================================================================== */

@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/Baloo2-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/Baloo2-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Baloo 2";
  src: url("../fonts/Baloo2-ExtraBold.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter var";
  src: url("../fonts/Inter-roman.var.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --enlupa-blue:  #1B82D8;
  --enlupa-azure: #53A5E9;
  --ink:          #0A0C10;
  --surface:      #12151C;
  --surface-2:    #1A1E27;
  --text:         #F4F6FA;
  --muted:        #9AA4B2;
  --glow:         rgba(83, 165, 233, .35);
  --glow-soft:    rgba(83, 165, 233, .16);
  --hairline:     rgba(83, 165, 233, .14);
  --hairline-2:   rgba(244, 246, 250, .08);

  /* Ausschließlich für den Footer-Credit (Kaiserstuhl Digital) */
  --navy: #0f1628;
  --gold: #C9A84C;

  --font-display: "Baloo 2", system-ui, -apple-system, "Segoe UI", Roboto,
                  Helvetica, Arial, sans-serif;
  --font-body: "Inter var", system-ui, -apple-system, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono",
               Menlo, Consolas, monospace;

  --maxw: 1200px;
  --pad-x: clamp(1.15rem, 5vw, 4rem);
  --section-y: clamp(4rem, 10vh, 7.5rem);
  --radius: 20px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(60vw 40vw at 78% -8%, var(--glow-soft), transparent 60%),
    radial-gradient(55vw 45vw at -10% 108%, rgba(27,130,216,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
::selection { background: var(--enlupa-blue); color: #fff; }
:focus-visible { outline: 2px solid var(--enlupa-azure); outline-offset: 3px; border-radius: 4px; }

/* ================================================================
   TYPO
   ================================================================ */
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; line-height: 1.04; text-wrap: balance; }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--enlupa-azure);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow::before { content: ""; width: 1.8em; height: 1px; background: linear-gradient(90deg, var(--enlupa-azure), transparent); }
.lead { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem); color: var(--muted); line-height: 1.55; max-width: 52ch; }

/* ================================================================
   LAYOUT
   ================================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
main { position: relative; z-index: 1; }
section { position: relative; }
.section-pad { padding-block: var(--section-y); }
.rule-top { border-top: 1px solid var(--hairline); }
.heads { max-width: 64ch; }
.heads h2 { font-size: clamp(1.9rem, 1.3rem + 2.8vw, 3.1rem); margin: 0.9rem 0 0; }
.heads p { color: var(--muted); margin-top: 1rem; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: linear-gradient(to bottom, rgba(10,12,16,.86), rgba(10,12,16,.55));
  border-bottom: 1px solid var(--hairline);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand__mark { width: 34px; height: 34px; filter: drop-shadow(0 0 8px var(--glow)); }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.01em; }

.nav-links { display: none; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
.nav-links a { color: var(--muted); font-size: 0.94rem; transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.is-active { color: var(--text); }
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-ig {
  color: var(--text) !important; border: 1px solid var(--hairline);
  padding: 8px 15px; border-radius: 999px; display: inline-flex; align-items: center; gap: .5em;
  transition: border-color .2s, background .2s;
}
.nav-ig:hover { border-color: var(--enlupa-azure); background: var(--glow-soft); }

.nav-burger {
  display: inline-flex; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--hairline); background: rgba(255,255,255,.02);
  align-items: center; justify-content: center; gap: 4px; flex-direction: column; cursor: pointer;
}
.nav-burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 900px) { .nav-burger { display: none; } }

.nav-mobile {
  display: none; flex-direction: column; gap: 0.2rem;
  border-top: 1px solid var(--hairline); background: rgba(10,12,16,.97);
  padding: 0.6rem var(--pad-x) 1.2rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: 0.85rem 0.2rem; color: var(--muted); border-bottom: 1px solid var(--hairline-2); font-size: 1.02rem; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.is-active, .nav-mobile a:hover { color: var(--text); }
@media (min-width: 900px) { .nav-mobile { display: none !important; } }

/* ================================================================
   BUTTONS
   ================================================================ */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  padding: 15px 24px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s, box-shadow .25s, background .25s, border-color .25s;
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(180deg, var(--enlupa-azure), var(--enlupa-blue));
  color: #04121f; box-shadow: 0 8px 30px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,.4); }
.btn--ghost { border-color: var(--hairline); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--enlupa-azure); transform: translateY(-2px); background: var(--glow-soft); }

/* ================================================================
   HERO
   ================================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(2rem, 6vh, 3.5rem); padding-bottom: var(--section-y); }
.hero__lower {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center; margin-top: clamp(1.6rem, 4vw, 2.6rem);
}
@media (min-width: 900px) { .hero__lower { grid-template-columns: minmax(0, 1fr) minmax(0, 0.62fr); } }

.hero h1 { margin: clamp(1rem, 3vw, 1.6rem) 0 0; font-size: clamp(2.2rem, 1rem + 4vw, 3.7rem); }
.hero h1 .spark { color: var(--enlupa-azure); text-shadow: 0 0 30px var(--glow); }
.hero__sub { margin: 0 0 2rem; }

.hero__art { position: relative; display: grid; place-items: center; min-height: 260px; }
.hero__art img { width: min(72vw, 340px); height: auto; filter: drop-shadow(0 18px 50px rgba(27,130,216,.28)); }
.hero__model {
  width: min(72vw, 340px); height: min(72vw, 340px);
  --poster-color: transparent; background-color: transparent;
  filter: drop-shadow(0 18px 50px rgba(27,130,216,.28));
}
.hero__art-halo {
  position: absolute; inset: 6% 10%;
  background: radial-gradient(closest-side, var(--glow), transparent 72%);
  filter: blur(6px); animation: pulse 3.4s ease-in-out infinite; z-index: -1;
}
@keyframes pulse { 0%,100% { opacity:.5; transform: scale(.94);} 50% { opacity:1; transform: scale(1.04);} }
@media (prefers-reduced-motion: reduce) { .hero__art-halo { animation: none; opacity: .6; } }

/* ================================================================
   WAS IST ENLUPA / ZIEL
   ================================================================ */
.about-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 780px) { .about-grid { grid-template-columns: 1.3fr 1fr; } }
.about-grid__cell { background: var(--surface); padding: clamp(1.6rem, 3.4vw, 2.4rem); }
.about-grid__cell p { color: var(--muted); margin: 0 0 1rem; }
.about-grid__cell p:last-child { margin-bottom: 0; }
.about-grid__goal { background: var(--surface-2); display: flex; flex-direction: column; justify-content: center; gap: 0.7rem; }
.about-grid__goal .eyebrow { color: var(--enlupa-azure); }
.about-grid__goal p { color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem); line-height: 1.3; }

/* ================================================================
   STEPS ("So funktioniert's")
   ================================================================ */
.steps { margin-top: clamp(2.2rem, 5vw, 3.5rem); }
.steps__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 620px) { .steps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .steps__grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--surface); padding: clamp(1.4rem, 2.6vw, 1.9rem);
  display: flex; flex-direction: column; gap: 0.6rem; position: relative; transition: background .4s;
}
.step.is-on { background: var(--surface-2); }
.step__no {
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.1em;
  color: var(--muted); display: flex; align-items: center; gap: 0.6rem;
}
.step__node {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--enlupa-blue);
  transition: background .4s, box-shadow .4s, transform .4s; flex: 0 0 auto;
}
.step.is-on .step__node { background: var(--enlupa-azure); box-shadow: 0 0 14px var(--glow); transform: scale(1.25); }
.step.is-on .step__no { color: var(--enlupa-azure); }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; margin: 0.1rem 0 0; letter-spacing: -0.01em; }
.step p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ================================================================
   PRICING
   ================================================================ */
.price-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 700px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price-tile { background: var(--surface); padding: clamp(1.5rem, 3vw, 2rem); text-align: center; transition: background .3s; }
.price-tile:hover { background: var(--surface-2); }
.price-tile__val { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.3rem); color: var(--enlupa-azure); text-shadow: 0 0 24px var(--glow); }
.price-tile__lbl { margin-top: 0.4rem; color: var(--muted); font-size: 0.92rem; }

.price-cards {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 760px) { .price-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .price-cards--2 { grid-template-columns: repeat(2, 1fr); } }
/* nach den Varianten oben, damit die Einspaltigkeit gewinnt */
@media (min-width: 760px) { .price-cards--stack { grid-template-columns: 1fr; } }
.price-card { background: var(--surface); padding: clamp(1.7rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 0.5rem; transition: background .3s; }
.price-card:hover { background: var(--surface-2); }
.price-card__badge {
  width: 34px; height: 34px; border-radius: 50%; background: var(--glow-soft);
  border: 1px solid var(--hairline); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--enlupa-azure); margin-bottom: 0.4rem;
}
.price-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; margin: 0; }
.price-card__val { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem); }
.price-card p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* Station-Showcase (Partner werden): Produktbild neben den Preisoptionen.
   Gleiche Bildsprache wie das Produktbild im Hero (Glow + Drop-Shadow). */
.station-showcase {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) { .station-showcase { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr); } }
.station-showcase__art { position: relative; display: grid; place-items: center; }
.station-showcase__art img {
  position: relative; width: min(78vw, 420px); height: auto;
  filter: drop-shadow(0 20px 55px rgba(27,130,216,.3));
}
.station-showcase__halo {
  position: absolute; inset: 10% 2%;
  background: radial-gradient(closest-side, var(--glow), transparent 72%);
  filter: blur(8px);
}
.station-showcase__side { display: flex; flex-direction: column; gap: clamp(1.2rem, 3vw, 1.6rem); }
.station-showcase__side .price-cards,
.station-showcase__side .chip-row { margin-top: 0; }

/* Partner-Beleg (Partner werden): echtes Foto einer montierten Station beim Partner. */
.partner-proof {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 3vw, 2rem);
  align-items: center;
}
@media (min-width: 700px) { .partner-proof { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); } }
.partner-proof__photo {
  width: 100%; max-height: 420px; height: clamp(260px, 42vw, 420px);
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); background: var(--surface);
}
.partner-proof__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner-proof__text h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 0 0 0.5rem; }
.partner-proof__text p { color: var(--muted); margin: 0; }

/* ================================================================
   STANDORTE — Foto-Karten
   ================================================================ */
.st-grid {
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 760px) { .st-grid { grid-template-columns: repeat(4, 1fr); } }
.st-card { background: var(--surface); display: flex; flex-direction: column; transition: background .3s; }
.st-card:hover { background: var(--surface-2); }
.st-card__photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink); }
.st-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.st-card:hover .st-card__photo img { transform: scale(1.05); }
.st-card__body { padding: clamp(0.9rem, 2vw, 1.2rem); display: flex; flex-direction: column; gap: 0.2rem; }
.st-card__idx { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: .14em; color: var(--enlupa-azure); text-transform: uppercase; }
.st-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin: 0.1rem 0 0; letter-spacing: -0.01em; }

.st-note {
  margin-top: 1.4rem; padding: clamp(1rem, 2.4vw, 1.3rem) clamp(1.2rem, 3vw, 1.7rem);
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius);
  color: var(--muted); font-size: 0.94rem; display: flex; align-items: center; gap: 0.7rem;
}
.st-note svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--enlupa-azure); }

/* Eine gemeinsame Google-Maps-Einbettung mit allen 4 Standorten
   (kein API-Key nötig — Routen-Kette über die echten Adressen) */
.map-combined {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden;
}
.map-combined iframe {
  display: block; width: 100%; aspect-ratio: 16 / 10; border: 0;
  filter: grayscale(.2) saturate(1.1) invert(0.92) hue-rotate(180deg) contrast(0.92);
}
.map-combined__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline); border-top: 1px solid var(--hairline);
}
@media (min-width: 700px) { .map-combined__list { grid-template-columns: repeat(4, 1fr); } }
.map-combined__item { background: var(--surface); padding: clamp(0.9rem, 2vw, 1.1rem); }
.map-combined__item h3 { font-family: var(--font-display); font-weight: 700; font-size: 0.96rem; margin: 0 0 0.15rem; letter-spacing: -0.01em; }
.map-combined__item p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.map-combined__item a {
  display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.45rem;
  font-size: 0.8rem; color: var(--enlupa-azure);
}
.map-combined__item a:hover { color: var(--text); }

/* ================================================================
   BENTO ("Warum Enlupa" / Mehrwert-Blöcke)
   ================================================================ */
.why-grid {
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why { background: var(--surface); padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 0.55rem; min-height: 170px; transition: background .3s; }
.why:hover { background: var(--surface-2); }
.why__mark { width: 28px; height: 28px; color: var(--enlupa-azure); filter: drop-shadow(0 0 8px var(--glow)); }
.why h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 0.35rem 0 0; letter-spacing: -0.01em; }
.why p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* Kompaktere Icon-Listen (Was wir benötigen / bieten) */
.list-grid { margin-top: clamp(1.8rem, 4vw, 2.6rem); display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 3vw, 2rem); }
@media (min-width: 700px) { .list-grid--2 { grid-template-columns: repeat(2, 1fr); } }
.list-item { display: flex; gap: 1rem; align-items: flex-start; }
.list-item__icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--glow-soft); border: 1px solid var(--hairline);
  display: grid; place-items: center; color: var(--enlupa-azure);
}
.list-item__icon svg { width: 20px; height: 20px; }
.list-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; margin: 0 0 0.35rem; }
.list-item p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.chip-row { margin-top: clamp(1.6rem, 3.5vw, 2.2rem); display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--hairline); background: rgba(255,255,255,.02); color: var(--text);
}
.chip svg { width: 16px; height: 16px; color: var(--enlupa-azure); }

/* ================================================================
   HINWEIS-BOXEN (Klinik / Events Zusatz)
   ================================================================ */
.note-cards { margin-top: clamp(2rem, 5vw, 3rem); display: grid; grid-template-columns: 1fr; gap: clamp(1px, 1px, 1px); background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 780px) { .note-cards { grid-template-columns: repeat(2, 1fr); } }
.note-card { background: var(--surface); padding: clamp(1.5rem, 3vw, 2rem); }
.note-card .eyebrow { margin-bottom: 0.6rem; }
.note-card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ================================================================
   TEAM (Über uns)
   ================================================================ */
.team-grid { margin-top: clamp(2rem, 5vw, 3rem); display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 620px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { background: var(--surface); padding: clamp(1.6rem, 3vw, 2.1rem); display: flex; flex-direction: column; gap: 0.9rem; }
.team-card__avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--glow-soft);
  border: 1px solid var(--hairline); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--enlupa-azure);
}
.team-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 0; }
.team-card__links { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.2rem; }
.team-card__links a {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.86rem;
  padding: 7px 12px; border-radius: 999px; border: 1px solid var(--hairline); color: var(--muted);
  transition: border-color .2s, color .2s;
}
.team-card__links a:hover { border-color: var(--enlupa-azure); color: var(--text); }
.team-card__links svg { width: 14px; height: 14px; }

.soon-panel {
  margin-top: clamp(1.6rem, 4vw, 2.2rem); padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px dashed var(--hairline); border-radius: var(--radius);
  color: var(--muted); font-size: 0.92rem; display: flex; align-items: center; gap: 0.8rem;
}
.soon-panel svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--enlupa-azure); }

.story-block {
  margin-top: clamp(2rem, 5vw, 3rem); background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); max-width: 74ch;
}
.story-block p { color: var(--muted); margin: 0 0 1.1rem; }
.story-block p:last-child { margin-bottom: 0; }

/* ================================================================
   KONTAKTWEGE (Partner werden)
   ================================================================ */
.contact-grid { margin-top: clamp(2.2rem, 5vw, 3.5rem); display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--surface); padding: clamp(1.6rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 0.7rem; transition: background .3s; }
.contact-card:hover { background: var(--surface-2); }
.contact-card__icon { width: 42px; height: 42px; border-radius: 12px; background: var(--glow-soft); border: 1px solid var(--hairline); display: grid; place-items: center; color: var(--enlupa-azure); }
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin: 0.3rem 0 0; }
.contact-card p { color: var(--muted); margin: 0; font-size: 0.9rem; }
.contact-card__people { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.3rem; }
.contact-card__people a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 10px 14px; border-radius: 12px; border: 1px solid var(--hairline); font-size: 0.9rem; color: var(--text);
  transition: border-color .2s, background .2s;
}
.contact-card__people a:hover { border-color: var(--enlupa-azure); background: var(--glow-soft); }
.contact-card__people small { color: var(--muted); font-weight: 400; }

.flow-grid { margin-top: clamp(2rem, 5vw, 3rem); display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px) { .flow-grid { grid-template-columns: repeat(3, 1fr); } }
.flow-step { background: var(--surface); padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 0.6rem; }
.flow-step__no { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--enlupa-azure); text-shadow: 0 0 22px var(--glow); }
.flow-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 0; }
.flow-step p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.foot { border-top: 1px solid var(--hairline); background: linear-gradient(180deg, transparent, rgba(27,130,216,.05)); }
.foot__cta { padding-block: clamp(3rem, 8vw, 5rem); text-align: center; }
.foot__cta .kicker { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--enlupa-azure); }
.foot__cta h2 {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em;
  font-size: clamp(2rem, 1.3rem + 3.6vw, 3.8rem); margin: 1rem 0 1.8rem; line-height: 1.05;
}
.foot__cta h2 span { color: var(--enlupa-azure); text-shadow: 0 0 34px var(--glow); }
.foot__links {
  border-top: 1px solid var(--hairline); padding-block: 2rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.foot__brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.foot__brand svg { width: 24px; height: 24px; filter: drop-shadow(0 0 8px var(--glow)); }
.foot__brand b { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; }
.foot__nav a { color: var(--muted); font-size: 0.92rem; }
.foot__nav a:hover { color: var(--text); }
.foot__bottom { border-top: 1px solid var(--hairline-2); padding-block: 1.2rem; text-align: center; }

/* Kaiserstuhl-Credit — einzige zweite Stelle mit Navy/Gold */
.credit { color: var(--muted); font-size: 0.8rem; }
.credit a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ================================================================
   IMPRESSUM
   ================================================================ */
.imprint-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--hairline); border-radius: 999px; padding: 6px 12px;
}
.imprint-block { margin-top: clamp(2rem, 4vw, 2.6rem); }
.imprint-block h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem); margin: 0 0 0.9rem; letter-spacing: -0.01em; }
.imprint-block dl { margin: 0; display: grid; grid-template-columns: 1fr; gap: 0.25rem 1rem; }
.imprint-block dt { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.9rem; }
.imprint-block dd { margin: 0; color: var(--text); }
.imprint-block a { color: var(--enlupa-azure); }
.imprint-block + .imprint-block { border-top: 1px solid var(--hairline-2); padding-top: clamp(2rem, 4vw, 2.6rem); }

/* ================================================================
   FAQ (falls verwendet)
   ================================================================ */
.faq { margin-top: clamp(2rem, 5vw, 3rem); border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; padding: clamp(1.1rem, 2.6vw, 1.6rem) 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--hairline);
  display: grid; place-items: center; position: relative; transition: border-color .25s, background .25s;
}
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--enlupa-azure); transition: transform .28s ease; }
.faq summary .plus::before { width: 12px; height: 2px; }
.faq summary .plus::after { width: 2px; height: 12px; }
.faq details[open] summary .plus { background: var(--glow-soft); border-color: var(--enlupa-azure); }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { overflow: hidden; color: var(--muted); }
.faq__a p { margin: 0 0 clamp(1.1rem, 2.6vw, 1.5rem); max-width: 62ch; }

.reveal { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .btn, .st-card, .why, .step, .price-tile, .price-card, .contact-card { transition: none; }
}

/* ================================================================
   BATTERIE-SCROLLANZEIGE — gemeinsames Snippet (site.js erzeugt das
   Markup einmalig, keine Duplizierung pro Seite)
   ================================================================ */
.battery-indicator {
  position: fixed; right: 14px; bottom: 14px; z-index: 55;
  width: 46px; height: 24px; padding: 5px 6px;
  background: rgba(10,12,16,.82); border: 1px solid var(--hairline); border-radius: 8px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.battery-indicator svg { width: 100%; height: 100%; overflow: visible; }
.battery-indicator__shell { fill: none; stroke: var(--hairline-2); stroke-width: 1; }
.battery-indicator__tip { fill: var(--hairline-2); }
.battery-indicator__fill { fill: var(--enlupa-azure); transition: width .12s linear; }
.battery-indicator.is-reduced .battery-indicator__fill { transition: none; }
@media (max-width: 480px) { .battery-indicator { right: 10px; bottom: 10px; width: 40px; height: 21px; } }
