/* =====================================================================
   Photovoltaik Botta — Stylesheet
   Design: "Trust & Authority" + Lead-Form  |  Nachtblau + Solargold
   Hand-crafted, kein Build-Step nötig.  © Betriebsautomatik
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Design Tokens                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Brand */
  --navy-900: #08203b;
  --navy-800: #0b2a4a;
  --navy-700: #103a63;
  --navy-600: #16487a;
  --navy-500: #1d5c9a;

  --gold-500: #f5b301;
  --gold-400: #ffc52e;
  --gold-300: #ffd766;
  --gold-glow: rgba(245, 179, 1, .35);

  /* Signatur "Sonnenlicht" — warmes Licht als durchgehendes Motiv */
  --sun-core: #ffdf8a;          /* warmer Lichtkern */
  --sun-warm: rgba(255, 199, 92, .9);
  --sun-wash: rgba(255, 196, 84, .16);  /* weicher Licht-Schein */
  --sun-beam: rgba(255, 214, 130, .10); /* Godray-Strahl */
  --sun-edge: rgba(255, 226, 160, .55); /* Lichtkante auf Karten */

  --bordeaux: #8c2233;

  --white: #ffffff;
  --paper: #f7f9fc;
  --mist: #eef2f7;
  --line: #e2e8f1;

  --ink-900: #0d1b2a;
  --ink-700: #34465b;
  --ink-500: #5f7186;
  --ink-300: #93a2b4;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--paper);
  --fg: var(--ink-900);
  --muted: var(--ink-500);
  --primary: var(--navy-800);
  --accent: var(--gold-500);
  --accent-ink: #2a1d00;
  --border: var(--line);
  --success: #1f9d57;

  /* Type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(13, 27, 42, .06), 0 2px 6px rgba(13, 27, 42, .05);
  --shadow-md: 0 8px 24px rgba(13, 27, 42, .08), 0 2px 8px rgba(13, 27, 42, .05);
  --shadow-lg: 0 24px 60px rgba(8, 32, 59, .18);
  --shadow-gold: 0 14px 30px rgba(245, 179, 1, .35);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------ */
/* 2. Reset & base                                                     */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -.015em; color: var(--ink-900); font-optical-sizing: auto; }
h2 { font-size: clamp(2.05rem, 4.4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); letter-spacing: -.01em; font-weight: 600; }
p { color: var(--ink-700); }

/* ------------------------------------------------------------------ */
/* 3. Layout helpers                                                   */
/* ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); color: #dfe8f3; position: relative; overflow: hidden; }
.section--navy::before { /* warmes Sonnenlicht von oben + Tiefe (Signatur) */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 520px at 84% -22%, var(--sun-wash), transparent 58%),
    radial-gradient(700px 420px at 88% -10%, rgba(245,179,1,.16), transparent 60%),
    radial-gradient(620px 520px at -5% 112%, rgba(29,92,154,.42), transparent 62%);
}
.section--navy::after { /* feines Solar-Panel-Raster */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .05;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(85% 75% at 50% 0%, #000, transparent 82%);
  -webkit-mask-image: radial-gradient(85% 75% at 50% 0%, #000, transparent 82%);
}
.section--navy > * { position: relative; z-index: 1; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b6c6dc; }

.navy-watermark {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../img/logo-transparent.webp") center / clamp(280px, 32%, 520px) no-repeat;
  opacity: .08;
  mix-blend-mode: screen;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bordeaux);
}
.eyebrow::before { /* Sonnen-Marker: glühender Lichtpunkt (Signatur) */
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--sun-core), var(--gold-500) 72%);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, .16), 0 0 12px 1px var(--gold-glow);
}
.section--navy .eyebrow { color: var(--gold-400); }
.section--navy .eyebrow::before { box-shadow: 0 0 0 3px rgba(245, 179, 1, .22), 0 0 16px 2px var(--gold-glow); }

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.075rem; }

.lede { font-size: 1.125rem; color: var(--ink-700); }

/* ------------------------------------------------------------------ */
/* 4. Buttons & chips                                                  */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: var(--r-pill); border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; line-height: 1; letter-spacing: -.005em;
  min-height: 52px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--gold-500); color: var(--accent-ink); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(245,179,1,.45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--navy-800); border-color: var(--border); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }
.btn--wa { background: #25d366; color: #073d22; }
.btn--wa:hover { background: #2ee874; transform: translateY(-2px); }

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: .85rem; font-weight: 500; color: #e8f0fa;
}
.chip svg { width: 1.05em; height: 1.05em; color: var(--gold-400); flex: none; }

.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .8rem; border-radius: var(--r-pill);
  background: var(--mist); color: var(--navy-700);
  font-size: .8rem; font-weight: 600; font-family: var(--font-body);
}

/* ------------------------------------------------------------------ */
/* 5. Top utility bar                                                  */
/* ------------------------------------------------------------------ */
.topbar {
  background: var(--navy-900); color: #aebfd4;
  font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: .4rem; color: #cdd9e8; font-weight: 500; }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 14px; height: 14px; color: var(--gold-400); }
.topbar__left { display: flex; gap: 1.4rem; }
.topbar__right { display: flex; gap: 1.4rem; }
.topbar__meta { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 860px) { .topbar__left .topbar__meta { display: none; } }
@media (max-width: 560px) { .topbar { display: none; } }

/* ------------------------------------------------------------------ */
/* 6. Header / Nav                                                     */
/* ------------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; gap: 2rem; min-height: 78px; }
.nav__logo { display: flex; align-items: center; gap: .7rem; flex: none; }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav__links a {
  padding: .55rem .85rem; border-radius: var(--r-sm); font-weight: 500;
  font-size: .95rem; color: var(--ink-700); transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--navy-800); background: var(--mist); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-weight: 700; color: var(--navy-800); font-size: 1.02rem; }
.nav__phone svg { width: 18px; height: 18px; color: var(--gold-500); }

.nav__toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: var(--r-sm); background: #fff; align-items: center; justify-content: center; }
.nav__toggle svg { width: 26px; height: 26px; color: var(--navy-800); }

@media (max-width: 1024px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav { gap: 1rem; }
  .nav__cta .btn--nav-hide { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--navy-900);
  color: #fff; padding: 1.25rem var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transform: translateX(100%); transition: transform .35s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__top img { height: 42px; background: #fff; border-radius: 8px; padding: 4px 8px; }
.mobile-menu__close { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-sm); background: transparent; display: flex; align-items: center; justify-content: center; }
.mobile-menu__close svg { width: 26px; height: 26px; color: #fff; }
.mobile-menu__links { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu__links a { padding: .9rem .25rem; font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu__foot { margin-top: auto; display: grid; gap: .75rem; }

/* ------------------------------------------------------------------ */
/* 7. Hero                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background-color: var(--navy-900);
  color: #eaf1fa;
}
.hero::before { /* Foto-Hintergrund mit dunklem Navy-Overlay */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(900px 520px at 82% -12%, rgba(245,179,1,.26), transparent 60%),
    linear-gradient(102deg, rgba(7,26,48,.96) 0%, rgba(9,32,59,.88) 42%, rgba(11,42,74,.6) 78%, rgba(16,72,122,.4) 100%),
    url("../img/haus-de.webp");
  background-size: cover; background-position: center 55%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; transform: none; } }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after { /* feine Panel-Raster-Textur */
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .06; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 70% 30%, #000, transparent 75%);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center; padding-block: clamp(1.4rem, 2.6vw, 2.6rem);
}
.hero__rating { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.hero__stars { display: inline-flex; gap: 2px; color: var(--gold-400); }
.hero__stars svg { width: 18px; height: 18px; }
.hero__rating span { font-size: .9rem; color: #c2d2e6; }
.hero__rating b { color: #fff; }

.hero h1 { font-size: clamp(1.7rem, 6.4vw, 2.95rem); color: #fff; line-height: 1.06; overflow-wrap: break-word; }
.hero h1 .grad { color: var(--gold-400); }
.hero__sub { margin-top: 1rem; font-size: clamp(1rem, 1.5vw, 1.15rem); color: #c4d4e8; max-width: 40ch; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.hero__trust { display: flex; gap: 1.8rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; }
.hero__trust .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: #fff; line-height: 1; }
.hero__trust .lbl { font-size: .82rem; color: #a9bdd6; margin-top: .35rem; }

/* Lead form card */
.lead-card {
  position: relative; z-index: 2; background: #fff; color: var(--ink-900);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border: 1px solid rgba(255,255,255,.5);
}
.lead-card__badge { display: inline-flex; align-items: center; gap: .5rem; background: #fff7e0; color: #8a6400; border: 1px solid #ffe4a3; padding: .4rem .8rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 700; font-family: var(--font-body); }
.lead-card__badge svg { width: 1em; height: 1em; }
.lead-card h3 { margin-top: .7rem; font-size: 1.35rem; }
.lead-card p.small { font-size: .9rem; color: var(--muted); margin-top: .3rem; }

/* ------------------------------------------------------------------ */
/* 8. Forms                                                            */
/* ------------------------------------------------------------------ */
.form { display: grid; gap: .75rem; margin-top: 1rem; }
.field { display: grid; gap: .3rem; }
.field label { font-size: .85rem; font-weight: 600; font-family: var(--font-head); color: var(--ink-700); }
.field label .req { color: var(--bordeaux); }
.field input, .field select, .field textarea {
  width: 100%; padding: .65rem .9rem; border: 1px solid #cfd9e6; border-radius: var(--r-sm);
  font: inherit; font-size: 1rem; color: var(--ink-900); background: #fff; min-height: 46px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(29,92,154,.16);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--muted); }
.form__consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--navy-700); }
.form__note { font-size: .8rem; color: var(--muted); text-align: center; }
.form__msg { display: none; padding: .9rem 1rem; border-radius: var(--r-sm); font-size: .92rem; font-weight: 500; }
.form__msg.is-ok { display: block; background: #e7f6ee; color: #136c3c; border: 1px solid #b6e3c8; }
.form__msg.is-err { display: block; background: #fdecec; color: #962020; border: 1px solid #f4c5c5; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--bordeaux); }
.field__err { display: none; font-size: .78rem; color: var(--bordeaux); font-weight: 600; }
.field--error .field__err { display: block; }

/* ------------------------------------------------------------------ */
/* 9. Generic cards & grids                                            */
/* ------------------------------------------------------------------ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4deea; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .96rem; }
.icon-badge {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-500)); color: var(--gold-400);
  margin-bottom: 1.2rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.icon-badge svg { width: 28px; height: 28px; }
.card__list { margin-top: 1rem; display: grid; gap: .55rem; }
.card__list li { position: relative; padding-left: 1.7rem; font-size: .92rem; color: var(--ink-700); }
.card__list li svg { position: absolute; left: 0; top: 3px; width: 1.05rem; height: 1.05rem; color: var(--success); }

/* ------------------------------------------------------------------ */
/* 10. Benefits                                                        */
/* ------------------------------------------------------------------ */
.benefit { display: flex; gap: 1.1rem; align-items: flex-start; }
.benefit__icon { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: #fff7e0; color: #b07d00; border: 1px solid #ffe6a8; }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.benefit p { font-size: .94rem; }

/* ------------------------------------------------------------------ */
/* 11. Manufacturer logos                                              */
/* ------------------------------------------------------------------ */
.brands-panel {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.brands { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 1rem; }
.brand-pill {
  display: inline-flex; align-items: center; gap: .7rem; padding: .8rem 1.3rem;
  border: 1px solid var(--border); border-radius: var(--r-pill); background: #fff; box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--navy-800); letter-spacing: -.01em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.brand-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d4deea; }
.brand-pill__m {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1rem; font-weight: 800;
  color: var(--gold-400); background: linear-gradient(150deg, var(--navy-700), var(--navy-500));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.brand-pill__t { font-size: .72rem; font-weight: 500; color: var(--muted); font-family: var(--font-body); display: block; line-height: 1.25; text-align: left; }
.brand-pill__t b { display: block; line-height: 1.1; font-size: 1.02rem; color: var(--navy-800); }

/* Echte Logo-Leiste auf Navy: einheitlich weiße Logos, mit Wortmarken-Fallback */
.logostrip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.8rem, 4vw, 3.8rem); }
.brandlogo { height: 48px; display: flex; align-items: center; justify-content: center; }
.brandlogo img {
  max-height: 48px; max-width: 150px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .78;     /* zwingt jedes Logo zu sauberem Weiß */
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.brandlogo:hover img { opacity: 1; transform: translateY(-2px); }
.brandlogo__txt { display: none; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -.01em; color: #e8f0fa; opacity: .8; transition: opacity .2s; }
.brandlogo:hover .brandlogo__txt { opacity: 1; }
.brandlogo.no-img img { display: none; }
.brandlogo.no-img .brandlogo__txt { display: block; }
.brandlogo--lg { height: 72px; }
.brandlogo--lg img { max-height: 72px; max-width: 220px; }

/* ------------------------------------------------------------------ */
/* 12. Process / timeline                                              */
/* ------------------------------------------------------------------ */
.section--process { position: relative; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%); }
.section--process::before { content: ""; position: absolute; z-index: 0; width: 640px; height: 640px; top: -280px; left: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(245,179,1,.12), transparent 70%); pointer-events: none; }
.section--process::after { content: ""; position: absolute; z-index: 0; width: 700px; height: 700px; bottom: -320px; right: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(29,92,154,.12), transparent 70%); pointer-events: none; }
.section--process > .container { position: relative; z-index: 1; }

.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.step {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem 1.7rem; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.step::before { /* Gold-Akzentbalken oben (rollt beim Hover aus) */
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.step::after { /* große geisterhafte Schrittnummer */
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; right: 1.1rem; bottom: .2rem; pointer-events: none;
  font-family: var(--font-head); font-weight: 800; font-size: 4.6rem; line-height: 1;
  color: rgba(16, 58, 99, .055);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4deea; }
.step:hover::before { transform: scaleX(1); }
.step .icon-badge { margin-bottom: 1.1rem; }
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; position: relative; }
.step p { font-size: .94rem; position: relative; max-width: 32ch; }

/* ------------------------------------------------------------------ */
/* 13. References / projects                                           */
/* ------------------------------------------------------------------ */
.project { overflow: hidden; padding: 0; }
.project__img { aspect-ratio: 4 / 3; background: linear-gradient(150deg, var(--navy-700), var(--navy-500)); position: relative; display: grid; place-items: center; color: rgba(255,255,255,.5); }
.project__img .ph { display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .82rem; }
.project__img svg { width: 40px; height: 40px; }
.project__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.symbolbild {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  background: rgba(8,32,59,.72); color: #dbe7f5; font-size: .64rem; font-weight: 600;
  font-family: var(--font-body); padding: .25rem .6rem; border-radius: var(--r-pill);
  letter-spacing: .05em; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.18);
}
.project__body { padding: 1.5rem 1.6rem 1.7rem; }
.project__kwp { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--navy-800); line-height: 1; }
.project__kwp span { font-size: .95rem; color: var(--muted); font-weight: 600; }
.project__meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .9rem; font-size: .88rem; color: var(--ink-700); }
.project__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.project__meta svg { width: 1rem; height: 1rem; color: var(--navy-500); }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.4rem 1rem; border-radius: var(--r-md); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--gold-400); line-height: 1; }
.stat .lbl { margin-top: .5rem; font-size: .9rem; color: #b6c6dc; }

/* ------------------------------------------------------------------ */
/* 14. Testimonials                                                    */
/* ------------------------------------------------------------------ */
.review { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.review__stars { display: inline-flex; gap: 2px; color: var(--gold-500); margin-bottom: .9rem; }
.review__stars svg { width: 18px; height: 18px; }
.review p { font-size: 1.02rem; color: var(--ink-900); font-weight: 500; }
.review__author { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; gap: .7rem; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-700); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.review__author b { display: block; font-size: .95rem; }
.review__author small { color: var(--muted); }
.google-badge { display: inline-flex; align-items: center; gap: .7rem; padding: .8rem 1.3rem; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.google-badge .g { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.google-badge .g b:nth-child(1){color:#4285F4}.google-badge .stars{color:var(--gold-500); display:inline-flex; gap:1px}
.google-badge .stars svg{width:16px;height:16px}

/* ------------------------------------------------------------------ */
/* 15. About / owner                                                   */
/* ------------------------------------------------------------------ */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__photo { aspect-ratio: 4/5; border-radius: var(--r-lg); background: linear-gradient(150deg, var(--navy-800), var(--navy-600)); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display: grid; place-items: center; color: rgba(255,255,255,.55); }
.about__photo .ph { display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .85rem; text-align: center; padding: 1rem; }
.about__photo svg { width: 46px; height: 46px; }
.about__quote { margin: 1.5rem 0; padding: 1.25rem 1.5rem; border-left: 4px solid var(--gold-500); background: var(--bg-alt); border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 1.1rem; font-style: italic; color: var(--navy-800); }
.about__creds { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }

/* Certificates */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cert {
  display: flex; gap: .9rem; align-items: center; padding: 1.1rem 1.2rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.cert:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert__icon { flex: none; width: 44px; height: 44px; border-radius: 11px; background: #fff7e0; color: #b07d00; display: grid; place-items: center; border: 1px solid #ffe6a8; }
.cert__icon svg { width: 24px; height: 24px; }
.cert b { font-family: var(--font-head); font-size: .98rem; display: block; }
.cert small { color: var(--muted); font-size: .8rem; }

/* ------------------------------------------------------------------ */
/* 16. Service area                                                    */
/* ------------------------------------------------------------------ */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.area__cities { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.area__cities .tag { background: rgba(255,255,255,.08); color: #dbe7f5; border: 1px solid rgba(255,255,255,.16); }
.area__map { aspect-ratio: 16/12; border-radius: var(--r-lg); background:
  radial-gradient(circle at 60% 40%, rgba(245,179,1,.25), transparent 55%),
  linear-gradient(160deg, var(--navy-700), var(--navy-900)); border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center; position: relative; overflow: hidden; }
.area__map .pin { color: var(--gold-400); }
.area__map .pin svg { width: 54px; height: 54px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)); }
.area__map .radius { position: absolute; width: 60%; aspect-ratio: 1; border: 2px dashed rgba(245,179,1,.5); border-radius: 50%; }

/* ------------------------------------------------------------------ */
/* 17. FAQ                                                             */
/* ------------------------------------------------------------------ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }
.faq__item { border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: box-shadow .2s; }
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__q { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy-800); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .ico { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; transition: transform .25s var(--ease), background .2s; }
.faq__q .ico svg { width: 16px; height: 16px; color: var(--navy-700); }
.faq__item[open] .faq__q .ico { transform: rotate(45deg); background: var(--gold-400); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--ink-700); }
.faq__a p { font-size: .98rem; }

/* ------------------------------------------------------------------ */
/* 18. CTA contact section                                             */
/* ------------------------------------------------------------------ */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.contact__methods { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact__method { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.3rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); }
.contact__method:hover { border-color: var(--gold-400); }
.contact__method .ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: rgba(245,179,1,.14); color: var(--gold-400); display: grid; place-items: center; }
.contact__method .ic svg { width: 24px; height: 24px; }
.contact__method small { color: #a9bdd6; display: block; font-size: .8rem; }
.contact__method b { color: #fff; font-size: 1.05rem; font-family: var(--font-head); }
.contact .lead-card { color: var(--ink-900); }

/* ------------------------------------------------------------------ */
/* 19. Footer                                                          */
/* ------------------------------------------------------------------ */
.footer { background: var(--navy-900); color: #9fb2c9; padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer__logo { display: inline-block; }
.footer__logo img { height: 56px; width: auto; }
.footer p { color: #9fb2c9; font-size: .92rem; margin-top: 1rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-body); color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { display: grid; gap: .65rem; }
.footer ul a { font-size: .92rem; transition: color .15s; }
.footer ul a:hover { color: var(--gold-400); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-400); flex: none; margin-top: 3px; }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.footer__bottom a:hover { color: var(--gold-400); }

/* ------------------------------------------------------------------ */
/* 20. Floating WhatsApp                                               */
/* ------------------------------------------------------------------ */
.fab { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: transform .2s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 32px; height: 32px; }

/* ------------------------------------------------------------------ */
/* 21. Scroll reveal                                                   */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ------------------------------------------------------------------ */
/* 22. Legal pages                                                     */
/* ------------------------------------------------------------------ */
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .8rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; margin-bottom: .5rem; }
.legal p, .legal li { color: var(--ink-700); margin-bottom: .8rem; font-size: 1rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal a { color: var(--navy-600); text-decoration: underline; }
.legal .back { display: inline-flex; align-items: center; gap: .4rem; color: var(--navy-600); font-weight: 600; margin-bottom: 2rem; }
.legal strong { color: var(--ink-900); }

/* ------------------------------------------------------------------ */
/* 23. Responsive                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .lead-card { max-width: 540px; }
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 420px; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .area { grid-template-columns: 1fr; }
  .area__map { order: -1; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; line-height: 1.1; }
  .hero__trust { gap: 1.2rem 1.6rem; }
  .hero__chips { gap: .5rem; }
  .hero__chips .chip { max-width: 100%; font-size: .8rem; padding: .45rem .75rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .btn { width: 100%; }
  .nav__cta .btn { width: auto; }
}

/* ------------------------------------------------------------------ */
/* 24. Premium-Feinschliff                                             */
/* ------------------------------------------------------------------ */

/* Button-Druck-Feedback + sanfter Gold-Verlauf */
.btn:active { transform: translateY(0) scale(.98) !important; }
.btn--primary {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  position: relative; overflow: hidden;
}
.btn--primary::after { /* dezenter Glanz beim Hover */
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn--primary:hover::after { left: 140%; }
@media (prefers-reduced-motion: reduce) { .btn--primary::after { display: none; } }

/* Karten: feiner oberer Lichtsaum + tiefere Hover-Elevation */
.card, .lead-card, .review, .cert, .step {
  position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, var(--shadow-sm);
}
.lead-card {
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, var(--shadow-lg);
}
.card:hover { box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, var(--shadow-lg); }

/* Sektions-Tiefe + Sonnenstrahlen-Akzent in hellen Bereichen (Signatur) */
.section--alt { position: relative; overflow: hidden; }
.section--alt::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -150px; right: -150px; width: 560px; height: 560px;
  background:
    repeating-conic-gradient(from 198deg at 70% 30%,
      rgba(245,179,1,.14) 0deg 1.3deg, transparent 1.3deg 12deg),
    radial-gradient(circle at 70% 30%, rgba(245,179,1,.16), transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 2%, transparent 66%);
  mask-image: radial-gradient(circle at 70% 30%, #000 2%, transparent 66%);
}
/* abwechselnd: jede zweite helle Sektion bekommt die Strahlen links unten,
   damit es über die Seite hinweg lebendig und nicht schematisch wirkt */
.section--alt:nth-of-type(even)::before {
  top: auto; right: auto; bottom: -150px; left: -150px;
  background:
    repeating-conic-gradient(from 18deg at 30% 70%,
      rgba(245,179,1,.13) 0deg 1.3deg, transparent 1.3deg 12deg),
    radial-gradient(circle at 30% 70%, rgba(245,179,1,.14), transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 30% 70%, #000 2%, transparent 66%);
  mask-image: radial-gradient(circle at 30% 70%, #000 2%, transparent 66%);
}
.section--alt > .container { position: relative; z-index: 1; }

/* Sanfter Übergang Hero → nächste Sektion */
.hero { box-shadow: 0 40px 80px -40px rgba(8,32,59,.5); }

/* Animierte Zähler: bis JS lädt sichtbar halten */
.count { font-variant-numeric: tabular-nums; }

/* Footer-Logo edler */
.footer__logo { transition: transform .25s var(--ease); }
.footer__logo:hover { transform: translateY(-2px); }

/* ---------- Bild + Text (2-Spalten, z. B. Vorteile) ---------- */
.media-split { display: grid; grid-template-columns: minmax(280px, .82fr) 1.18fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.media-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.media-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.media-photo:hover img { transform: scale(1.05); }
.media-photo__badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
}
.media-photo__badge .n { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy-800); line-height: 1; }
.media-photo__badge .t { font-size: .78rem; color: var(--muted); line-height: 1.2; }
.benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }

/* Editoriale Index-Liste (statt Icon-Grid) */
.bindex { margin-top: 1.9rem; border-top: 1px solid var(--line); list-style: none; padding: 0; }
.bindex li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: baseline;
  padding: 1.15rem .2rem; border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease), background .3s var(--ease);
}
.bindex li:hover { padding-left: .7rem; background: linear-gradient(90deg, rgba(245,179,1,.07), transparent 80%); }
.bindex__n {
  font-family: var(--font-head); font-weight: 500; font-size: 1.45rem; line-height: 1;
  color: var(--gold-500); font-variant-numeric: tabular-nums; font-feature-settings: "tnum";
  transition: color .25s var(--ease);
}
.bindex li:hover .bindex__n { color: var(--bordeaux); }
.bindex h3 { font-size: 1.18rem; margin-bottom: .2rem; }
.bindex p { font-size: .96rem; color: var(--ink-700); }

/* Versetzter Gold-Rahmen hinter dem Foto (editoriales Stilmittel) */
.media-frame { position: relative; }
.media-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  transform: translate(16px, 16px); border: 1.5px solid var(--gold-500);
  border-radius: var(--r-lg); opacity: .55;
}
.media-frame .media-photo { position: relative; z-index: 1; }
@media (max-width: 560px) { .media-frame::before { transform: translate(10px, 10px); } }

@media (max-width: 1024px) {
  .media-split { grid-template-columns: 1fr; }
  .media-photo { max-width: 520px; margin-inline: auto; aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) { .benefits-list { grid-template-columns: 1fr; } }

/* ---------- Illustration + Ablauf-Flow (So funktioniert's) ---------- */
.funktion-split { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.illu { position: relative; }
.illu::before {
  content: ""; position: absolute; inset: -6% -4%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle at 60% 45%, rgba(245,179,1,.18), transparent 65%);
  pointer-events: none;
}
.illu img { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 22px 44px rgba(8,32,59,.16)); }
.flowlist { display: grid; gap: 1.2rem; }
@media (max-width: 900px) { .funktion-split { grid-template-columns: 1fr; } .illu { order: -1; max-width: 560px; margin-inline: auto; } }

/* ---------- Vollbild-Bildband mit Overlay ---------- */
.imageband { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.imageband::before {
  content: ""; position: absolute; inset: 0; z-index: -1; transform: scale(1.04);
  background-image:
    linear-gradient(100deg, rgba(8,32,59,.88) 0%, rgba(9,32,59,.74) 55%, rgba(11,42,74,.55) 100%),
    url("../img/haus-modern-de.webp");
  background-size: cover; background-position: center 65%;
}
.imageband__inner { max-width: 880px; padding-block: clamp(4rem, 8vw, 7rem); }
.imageband h2 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem); }
.imageband p { font-size: 1.15rem; max-width: 60ch; }
.imageband .eyebrow { color: var(--gold-400); }
.band-features { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.band-feature {
  display: flex; align-items: center; gap: .7rem; padding: .85rem 1.3rem;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--r-pill); backdrop-filter: blur(6px);
  font-weight: 600; font-size: 1rem; color: #fff;
}
.band-feature svg { width: 1.35em; height: 1.35em; color: var(--gold-400); flex: none; }
.imageband__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.imageband p { color: #cddcec; font-size: 1.1rem; margin-top: 1rem; }
.imageband .hero__chips { margin-top: 1.8rem; }

/* ---------- Sticky Mobile-CTA-Leiste ---------- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(13,27,42,.10);
}
.mobilebar .btn { flex: 1; min-height: 50px; padding-inline: .8rem; font-size: .95rem; }
.mobilebar .btn--call { background: var(--navy-800); color: #fff; }
@media (max-width: 720px) {
  .mobilebar { display: flex; }
  .fab { display: none; }            /* runder WhatsApp-Button auf Mobile durch Leiste ersetzt */
  body { padding-bottom: 74px; }     /* Platz für die Leiste */
}

/* =====================================================================
   SIGNATUR "SONNENLICHT" — durchgehendes Licht-/Sonnen-Motiv
   Premium & ruhig: warmer Bildlook (Golden Hour), Lichtkanten, Sonnenbogen.
   ===================================================================== */

/* 1) Golden-Hour-Bildlook — alle Inhaltsfotos bekommen warmes Licht,
      statt des kühlen Blaus, das Wettbewerber-Stockfotos prägt. Sehr dezent. */
.media-photo, .project__img { position: relative; isolation: isolate; }
.media-photo img, .project__img img {
  filter: saturate(1.04) contrast(1.02) brightness(1.01);
}
.media-photo::after, .project__img::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  /* warmer Lichteinfall oben-rechts + sanfter Schatten unten-links */
  background:
    radial-gradient(120% 90% at 88% 4%, var(--sun-wash), transparent 52%),
    linear-gradient(196deg, transparent 58%, rgba(8, 24, 44, .14) 100%);
  mix-blend-mode: multiply; opacity: .9;
}
/* Badge muss über dem Lichtschleier bleiben */
.media-photo__badge { z-index: 3; }

/* 2) Lichtkante — feiner warmer Streif auf der Oberkante erhabener Karten,
      als würde Sonnenlicht von oben auftreffen. Nur auf Schlüssel-Flächen. */
.lead-card, .review, .calc-card, .media-photo, .cert {
  position: relative;
}
.lead-card::before, .calc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; z-index: 2;
  border-radius: var(--r-lg) var(--r-lg) 0 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--sun-edge) 22%, var(--sun-edge) 78%, transparent);
  opacity: .8;
}

/* 3) Sonnenbogen — die EINE Signatur-Geste: ein feiner goldener Bogen mit
      glühendem Sonnenpunkt. Nur im Hero, daher besonders statt repetitiv. */
.sun-arc {
  position: absolute; top: clamp(40px, 5vw, 64px); left: 0; right: 0; z-index: 2;
  width: 100%; height: clamp(120px, 16vw, 200px); pointer-events: none; overflow: visible;
}
.sun-arc svg { width: 100%; height: 100%; overflow: visible; }
.sun-arc .arc { fill: none; stroke: url(#sunArcGrad); stroke-width: 1.75; stroke-linecap: round; }
.sun-arc .sun {
  fill: var(--sun-core);
  filter: drop-shadow(0 0 10px rgba(255, 199, 92, .9)) drop-shadow(0 0 26px rgba(245, 179, 1, .55));
}
@media (prefers-reduced-motion: no-preference) {
  .sun-arc .sun { animation: sunPulse 6s var(--ease) infinite; transform-origin: center; transform-box: fill-box; }
}
@keyframes sunPulse { 0%, 100% { opacity: .92; } 50% { opacity: 1; } }
@media (max-width: 760px) { .sun-arc { display: none; } }

/* ------------------------------------------------------------------ */
/* Team-Sektion                                                         */
/* ------------------------------------------------------------------ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 760px; margin-inline: auto; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); }
.team-card__photo { width: 120px; height: 120px; border-radius: 50%; background: var(--mist); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; overflow: hidden; }
.team-card__photo svg { width: 40px; height: 40px; color: var(--muted); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy-800); margin-bottom: .2rem; }
.team-card__role { font-size: .82rem; color: var(--gold-600); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .85rem; }
.team-card__bio { font-size: .92rem; color: var(--ink-500); line-height: 1.65; margin: 0; }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; max-width: 340px; } }

/* ------------------------------------------------------------------ */
/* Referenzen – Hazar Slideshow                                         */
/* ------------------------------------------------------------------ */
.project__img--slider { position: relative; overflow: hidden; }
.project__img--slider .slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .6s ease; }
.project__img--slider .slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.project__img--slider .slide.active { opacity: 1; }
.slide__tag { position: absolute; top: .7rem; left: .7rem; background: rgba(11,42,74,.85); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px; }
.slide__tag--after { background: var(--gold-500); color: var(--navy-800); }

/* ------------------------------------------------------------------ */
/* Referenzen – kompakte zweite Reihe                                   */
/* ------------------------------------------------------------------ */
.project--sm .project__img { height: 160px; }
.project--sm .project__body { padding: .9rem 1.1rem 1.1rem; }
.project--sm .project__kwp { font-size: 1.45rem; }
.project--sm h3 { font-size: 1rem; margin-top: .4rem !important; }
