/*
  KonzeptGrün-Galabau — Garten- & Landschaftsbau Limburgerhof
  Premium-Redesign: Konzept "Bold Contemporary" + Foto-Hero, Karussell,
  Bild-Akkordeon & schwebende Bildkompositionen.
  Reines HTML/CSS + minimales Vanilla-JS. DSGVO: Fonts self-hosted, kein CDN.
  Fonts: Archivo (Display) + Inter (Body). Palette: Gartengrün + Gold.
*/

/* ---------- Fonts (self-hosted, woff2) ---------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/inter-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/archivo-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/archivo-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/archivo-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/archivo-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 900; font-display: swap; src: url("/assets/fonts/archivo-latin-900-normal.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --green: #2f5d3a;
  --green-2: #3a7249;
  --green-soft: #eef3ee;
  --green-d: #16271d;
  --green-dd: #0e1b14;
  --gold: #c98a1a;
  --gold-d: #a16207;

  --ink: #14130f;
  --muted: #63605a;
  --paper: #faf9f5;
  --paper-2: #f1efe8;
  --line: #e4e0d6;
  --white: #fff;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --max: 1280px;
  --r: 26px;
  --r-sm: 16px;
  --shadow: 0 30px 70px -30px rgba(14,27,20,.45);
  --shadow-sm: 0 12px 34px -16px rgba(14,27,20,.30);
  --ring: 3px solid var(--gold);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink);
  background: var(--paper); line-height: 1.65; font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }
.narrow { max-width: 820px; }
.center { text-align: center; }

/* ---------- Kicker / Pill-Eyebrow ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-d);
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
  background: var(--green-soft); border: 1px solid #dbe6dc;
  padding: .55rem 1.05rem; border-radius: 999px;
}
.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.6; }

/* ---------- Section frame ---------- */
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.alt { background: var(--paper-2); }
.dark { background: var(--green-d); color: #eef2ec; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .lead, .dark p { color: #bcc8bd; }
.sec-head { max-width: 760px; margin: 0 0 3rem; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 1rem 0 .8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .01em; padding: 1rem 1.5rem; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent; transition: all .2s ease;
}
.btn .arr { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--green); flex: 0 0 auto; transition: transform .2s ease; }
.btn:hover .arr { transform: translate(2px,-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-2); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #1c1405; }
.btn-gold .arr { background: rgba(0,0,0,.18); color: #1c1405; }
.btn-gold:hover { background: #d8971f; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost .arr { background: rgba(255,255,255,.2); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline .arr { background: var(--green); color: #fff; }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: .75rem 1rem; z-index: 1000; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: var(--ring); outline-offset: 3px; border-radius: 6px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 1rem; transition: max-width .4s cubic-bezier(.22,.61,.36,1), min-height .3s ease, background .3s ease, border-radius .4s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease; border: 1px solid transparent; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.01em; color: #fff; }
.brand .mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand strong { color: #9fd1ab; font-weight: 800; }
/* Logo-Bild: über dunklem Hero weiß, auf heller Pille/Unterseite farbig */
.brand-logo { height: 46px; width: auto; display: block; }
.site-header .brand-logo { filter: brightness(0) invert(1); transition: filter .3s ease; }
.site-header.is-scrolled .brand-logo { filter: none; }
body.subpage .site-header .brand-logo { filter: none; }
.site-footer .brand-logo { height: 52px; filter: brightness(0) invert(1); }
.site-nav { display: none; gap: 2rem; }
.site-nav a { font-weight: 600; font-size: .96rem; color: rgba(255,255,255,.85); position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--gold); transition: width .25s ease; }
.site-nav a:hover { color: #fff; } .site-nav a:hover::after { width: 100%; }
.header-cta { display: none; }
.header-cta.btn { padding: .5rem .5rem .5rem 1.05rem; font-size: .82rem; gap: .5rem; }
.header-cta .arr { width: 24px; height: 24px; }
/* scrolled state — Header wird zur schwebenden Pille */
.site-header.is-scrolled { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; padding-top: 12px; }
.site-header.is-scrolled .header-inner {
  max-width: 1120px; margin: 0 auto; min-height: 76px;
  background: rgba(255,255,255,.48);
  backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-radius: 999px; border-color: rgba(255,255,255,.6);
  padding: .55rem .7rem .55rem 1.6rem;
  box-shadow: 0 20px 48px -18px rgba(14,27,20,.40), inset 0 1px 0 rgba(255,255,255,.7);
}
.site-header.is-scrolled .brand { color: var(--ink); }
.site-header.is-scrolled .brand strong { color: var(--green); }
.site-header.is-scrolled .site-nav a { color: var(--muted); }
.site-header.is-scrolled .site-nav a:hover { color: var(--ink); }
@media (min-width: 960px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { padding: 0; }
.hero-card {
  position: relative; margin: 0 auto; max-width: 1440px;
  min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden;
  border-radius: 0 0 var(--r) var(--r);
}
.hero-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(14,27,20,.86) 0%, rgba(14,27,20,.55) 42%, rgba(14,27,20,.12) 72%),
    linear-gradient(0deg, rgba(14,27,20,.82) 0%, transparent 46%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 0 clamp(2.5rem,5vw,4.5rem); color: #fff; }
.hero .kicker { color: #d8c08a; }
.hero h1 { color: #fff; margin: 1.4rem 0 0; max-width: 16ch; }
.hero h1 em { font-style: normal; color: #9fd1ab; }
.hero .lead { color: rgba(255,255,255,.9); max-width: 50ch; margin: 1.6rem 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.6rem,4vw,3.4rem); margin-top: 3rem; }
.hero-stats .s .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3rem); line-height: 1; color: #fff; }
.hero-stats .s .n span { color: var(--gold); }
.hero-stats .s .l { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .35rem; letter-spacing: .02em; }

/* ---------- Value props ---------- */
/* Trust-Leiste */
.trust-wrap { background: var(--green-d); color: #fff; margin-top: clamp(2rem, 4vw, 3.5rem); }
.trust-bar { list-style: none; margin: 0; padding: 1.4rem 0; display: grid; gap: .9rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }
.trust-bar li { display: flex; align-items: center; justify-content: center; gap: .7rem; font-size: .96rem; color: #cdd9ce; }
@media (min-width: 760px) { .trust-bar li + li { border-left: 1px solid rgba(255,255,255,.14); } }
.trust-bar svg { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; }
.trust-bar strong { color: #fff; font-family: var(--font-display); font-weight: 700; }
.trust-marquee { display: none; overflow: hidden; padding: .95rem 0; }
.trust-track { display: flex; width: max-content; white-space: nowrap; animation: marquee 24s linear infinite; }
.trust-track span { display: inline-flex; align-items: center; font-size: .92rem; color: #cdd9ce; padding: 0 1.05rem; }
.trust-track span::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: .5rem; }
.trust-track b { color: #fff; font-family: var(--font-display); font-weight: 700; margin-right: .3rem; }

.values { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.value::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--green) 25%, var(--line)); }
.value:hover::before { transform: scaleX(1); }
.value .vnum { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--green-soft); color: var(--green); font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; margin-bottom: 1.1rem; }
.value h3 { margin: 0 0 .5rem; font-size: 1.3rem; letter-spacing: -.01em; }
.value p { color: var(--muted); margin: 0; }

/* ---------- Problem + floating images ---------- */
.split { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 940px) { .split { grid-template-columns: 1.02fr .98fr; gap: 4rem; } }
.problem-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.1rem; }
.problem-list li { position: relative; padding-left: 2rem; color: var(--ink); }
.problem-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: .8rem; height: .8rem; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }

.float-imgs { position: relative; min-height: 460px; }
.float-imgs img { position: absolute; border-radius: var(--r-sm); box-shadow: var(--shadow); object-fit: cover; }
.float-imgs .fi-1 { width: 60%; aspect-ratio: 4/5; top: 0; left: 0; z-index: 1; }
.float-imgs .fi-2 { width: 56%; aspect-ratio: 3/4; right: 0; bottom: 0; z-index: 2; border: 6px solid var(--paper); }
.badge-rot { position: absolute; left: 52%; top: 48%; transform: translate(-50%,-50%); z-index: 3; width: 132px; height: 132px; border-radius: 999px; background: var(--green-dd); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); }
.badge-rot .spin { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.badge-rot .spin text { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; letter-spacing: .14em; fill: #cfe0d2; text-transform: uppercase; }
.badge-rot .leaf { width: 30px; height: 30px; color: #9fd1ab; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Carousel (Lösung) ---------- */
.carousel { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 940px) { .carousel { grid-template-columns: 1fr 132px; gap: 2.2rem; align-items: stretch; } }
.car-stage { position: relative; border-radius: var(--r); overflow: hidden; height: clamp(340px, 42vw, 500px); box-shadow: var(--shadow); background: var(--green-soft); }
.car-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; pointer-events: none; }
.car-slide.active { opacity: 1; pointer-events: auto; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; }
.car-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,27,20,.78), transparent 55%); }
.car-cap { position: absolute; left: 1.8rem; bottom: 1.8rem; z-index: 2; color: #fff; }
.car-cap .cn { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.car-cap h3 { font-size: 1.45rem; margin-top: .3rem; color: #fff; }
.car-tabs { display: flex; flex-direction: row; gap: 1rem; }
@media (min-width: 940px) { .car-tabs { flex-direction: column; } }
.car-tab {
  flex: 1; background: none; border: 0; border-top: 2px solid var(--line);
  padding: 1rem .4rem; text-align: left; cursor: pointer; font-family: var(--font-display);
  display: flex; align-items: flex-start; gap: .6rem; color: var(--muted); transition: color .2s, border-color .2s;
}
@media (min-width: 940px) { .car-tab { writing-mode: vertical-rl; transform: rotate(180deg); border-top: 0; border-left: 2px solid var(--line); padding: .4rem 1rem; align-items: center; } }
.car-tab .tn { font-weight: 800; font-size: 2rem; line-height: 1; }
.car-tab .tt { font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; }
.car-tab[aria-selected="true"] { color: var(--green); border-color: var(--gold); }

/* ---------- Akkordeon (Leistungen) ---------- */
.acc { display: grid; gap: 2.2rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 940px) { .acc { grid-template-columns: .92fr 1.08fr; gap: 3rem; align-items: start; } }
.acc-media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
@media (min-width: 940px) { .acc-media { position: sticky; top: 110px; } }
.acc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; }
.acc-media img.active { opacity: 1; }
.acc-list { display: grid; gap: 0; }
.acc-item { border-top: 1px solid var(--line); }
.acc-item:last-child { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 1rem; padding: 1.4rem 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); text-align: left;
}
.acc-head .ah-ic { flex: 0 0 auto; width: 30px; height: 30px; color: var(--green); }
.acc-head .ah-t { flex: 1; }
.acc-head .ah-pm { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.acc-head .ah-pm::before, .acc-head .ah-pm::after { content: ""; position: absolute; background: var(--gold-d); border-radius: 2px; left: 50%; top: 50%; transition: transform .25s ease; }
.acc-head .ah-pm::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.acc-head .ah-pm::after { width: 2px; height: 16px; transform: translate(-50%,-50%); }
.acc-item.open .ah-pm::after { transform: translate(-50%,-50%) scaleY(0); }
.acc-item.open .acc-head { color: var(--green); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-body .inner { padding: 0 0 1.5rem 2.6rem; color: var(--muted); }

/* ---------- Vergleich ---------- */
.compare { display: grid; gap: 1.6rem; grid-template-columns: 1fr; margin-top: 1.5rem; align-items: stretch; }
@media (min-width: 820px) { .compare { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }
.vs-card { position: relative; border-radius: var(--r); padding: 2.4rem 2.2rem; display: flex; flex-direction: column; }
.vs-others { background: var(--paper-2); border: 1px solid var(--line); }
.vs-us { background: linear-gradient(165deg, #20382a 0%, #0e1b14 100%); color: #fff; box-shadow: var(--shadow); border: 1px solid rgba(201,138,26,.45); }
.vs-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.7rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.vs-us .vs-head { border-color: rgba(255,255,255,.16); }
.vs-mark { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 11px; background: rgba(159,209,162,.16); color: #9fd1ab; display: grid; place-items: center; }
.vs-mark svg { width: 22px; height: 22px; }
.vs-tag { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.vs-us .vs-tag { color: #fff; }
.vs-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--gold); color: #1c1405; font-family: var(--font-display); font-weight: 800; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; padding: .42rem .85rem; border-radius: 999px; }
.vs-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.vs-list li { display: flex; align-items: flex-start; gap: .9rem; }
.vs-ic { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; margin-top: 2px; }
.vs-ic svg { width: 15px; height: 15px; }
.vs-x { background: #f1ddd6; color: #b3492f; }
.vs-check { background: rgba(159,209,162,.2); color: #9fd1ab; }
.vs-list strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; margin-bottom: .15rem; }
.vs-others strong { color: var(--ink); }
.vs-us strong { color: #fff; }
.vs-list small { font-size: .92rem; }
.vs-others small { color: var(--muted); }
.vs-us small { color: #bcc8bd; }

/* ---------- Vorteile ---------- */
.benefits { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .benefits { grid-template-columns: repeat(3,1fr); } }
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 2.2rem 1.9rem; transition: transform .2s, box-shadow .2s, border-color .2s; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--green) 25%, var(--line)); }
.benefit .bic { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(150deg, var(--green), var(--green-2)); color: #fff; display: grid; place-items: center; margin-bottom: 1.3rem; box-shadow: 0 10px 22px -10px rgba(47,93,58,.6); }
.benefit .bic svg { width: 28px; height: 28px; }
.benefit h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.benefit p { color: var(--muted); margin: 0; }

/* ---------- Projekte ---------- */
.proj-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 760px) { .proj-grid { grid-template-columns: repeat(3,1fr); } }
.proj { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.proj img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proj:hover img { transform: scale(1.07); }
.proj::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,27,20,.9) 4%, rgba(14,27,20,.15) 48%, transparent 70%); }
.proj .pinfo { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 2; color: #fff; }
.proj .ptag { font-family: var(--font-display); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); }
.proj h3 { color: #fff; font-size: 1.5rem; margin: .35rem 0 .5rem; }
.proj p { color: rgba(255,255,255,.82); font-size: .92rem; margin: 0; }

/* ---------- Bewertungen ---------- */
.stars { display: inline-flex; gap: .25rem; color: var(--gold); }
.stars svg { width: 20px; height: 20px; }
section[aria-labelledby="bewertungen-title"] .container { text-align: center; max-width: 1500px; }

.testimonials { display: grid; gap: 1.8rem; grid-template-columns: 1fr; margin-top: 2.6rem; text-align: left; }
@media (min-width: 760px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testi { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--green) 28%, var(--line)); }
.testi-quote { position: absolute; top: -.6rem; right: .9rem; font-family: var(--font-display); font-weight: 900; font-size: 6rem; line-height: 1; color: var(--green-soft); z-index: 0; pointer-events: none; }
.testi .stars { order: 1; position: relative; z-index: 1; }
.testi blockquote { order: 2; position: relative; z-index: 1; margin: 0; font-size: 1.02rem; line-height: 1.62; color: var(--ink); }
.testi figcaption { order: 3; display: flex; align-items: center; gap: .85rem; margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.testi-avatar { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 999px; color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; }
.testi-who { display: flex; flex-direction: column; line-height: 1.25; }
.testi-who strong { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.testi-who small { color: var(--muted); font-size: .82rem; }

/* ---------- Marquee ---------- */
.marquee { background: var(--green); color: #fff; padding: 1rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; padding: 0 1.4rem; opacity: .95; }
.marquee-track span::before { content: "✦"; padding-right: 1.4rem; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Prozess ---------- */
.steps { display: grid; gap: 1.4rem; grid-template-columns: 1fr; margin-top: 2.5rem; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(3,1fr); } }
.step { position: relative; padding: 1.8rem; border-radius: var(--r-sm); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); }
.step::before { counter-increment: step; content: counter(step,decimal-leading-zero); font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.step h3 { font-size: 1.15rem; color: #fff; margin-bottom: .4rem; }
.step p { margin: 0; color: #bcc8bd; font-size: .96rem; }

/* ---------- 3 Schritte ---------- */
.three { display: grid; gap: 1.6rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 820px) { .three { grid-template-columns: repeat(3,1fr); } }
.three .s3 { text-align: center; padding: 1.6rem; }
.three .badge { width: 70px; height: 70px; margin: 0 auto 1.2rem; border-radius: 999px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; }
.three .badge svg { width: 32px; height: 32px; }
.three h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.three p { color: var(--muted); margin: 0; }

/* ---------- Über uns ---------- */
.about-media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1/1; }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about blockquote { margin: 1.6rem 0 0; padding-left: 1.2rem; border-left: 3px solid var(--gold); font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: 1.2rem; color: var(--green); }
.about .sig { margin-top: 1rem; color: var(--muted); font-weight: 600; }

/* ---------- Standort ---------- */
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--green); }
.contact-list small { display: block; color: var(--muted); font-weight: 400; }
.map-card { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 4/3; min-height: 360px; background: var(--green-soft); }
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .5rem; padding: 1.8rem; background: linear-gradient(160deg, var(--green-soft), #dbe6dc); }
.map-pin { width: 58px; height: 58px; border-radius: 999px; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); margin-bottom: .3rem; }
.map-pin svg { width: 28px; height: 28px; }
.map-addr { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin: 0; }
.map-note { font-size: .8rem; color: var(--muted); max-width: 36ch; margin: .2rem 0 .6rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 2.5rem auto 0; display: grid; gap: .9rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 0 1.4rem; transition: box-shadow .25s, border-color .25s; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: #cdd9ce; }
.faq summary { list-style: none; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; padding: 1.3rem 2rem 1.3rem 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--gold-d); transition: transform .2s; }
.faq details[open] summary { color: var(--green); }
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 0 1.3rem; color: var(--muted); }

/* ---------- CTA Band ---------- */
.cta-band { position: relative; isolation: isolate; text-align: center; color: #fff; overflow: hidden; }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,27,20,.9), rgba(14,27,20,.84)); }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #cdd9ce; max-width: 56ch; margin: 1.2rem auto 2rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Form ---------- */
.form-wrap { display: grid; gap: 2.5rem; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 920px) { .form-wrap { grid-template-columns: 1.1fr .9fr; } }
.form { display: grid; gap: 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 2rem; box-shadow: var(--shadow-sm); }
.form .row2 { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form .row2 { grid-template-columns: 1fr 1fr; } }
.form label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: .35rem; }
.form input, .form select, .form textarea { width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 12px; font: inherit; background: var(--white); color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--green); outline: var(--ring); outline-offset: 1px; }
.form textarea { min-height: 120px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); font-weight: 400; }
.form .consent input { width: auto; margin-top: .3rem; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-status { font-weight: 600; min-height: 1.2em; margin: 0; }
.form-status.error { color: #b3492f; }
.form-status.success { color: #1e8e3e; }
.contact-aside h3 { font-size: 1.4rem; margin-bottom: .6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dd); color: #b6c3b8; padding: 4rem 0 1.6rem; }
.footer-top { display: grid; gap: 2.4rem; grid-template-columns: 1fr; margin-bottom: 2.5rem; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.5fr 1fr 1.3fr; } }
.site-footer .brand { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-links a:hover, .site-footer address a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between; align-items: center; font-size: .88rem; }
.footer-bottom nav { display: flex; gap: 1.2rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Unterseiten (Header immer solide, kein Hero) ---------- */
body.subpage .site-header { background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 6px 30px -14px rgba(14,27,20,.18); }
body.subpage .site-header .brand { color: var(--ink); }
body.subpage .site-header .brand strong { color: var(--green); }
body.subpage .site-header .site-nav a { color: var(--muted); }
body.subpage .site-header .site-nav a:hover { color: var(--ink); }
.subpage-hero { padding: clamp(7rem, 12vw, 9rem) 0 4rem; text-align: center; }

/* ---------- Legal ---------- */
.legal { padding: clamp(7rem, 12vw, 9rem) 0 4rem; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.legal .muted { color: var(--muted); font-size: .9rem; }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--green), var(--gold)); z-index: 200; transition: width .1s linear; }

/* ---------- Reveal-Animationen ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
html.js [data-reveal-group] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
html.js [data-reveal-group].is-visible > * { opacity: 1; transform: none; }
html.js [data-reveal-group].is-visible > *:nth-child(2) { transition-delay: .08s; }
html.js [data-reveal-group].is-visible > *:nth-child(3) { transition-delay: .16s; }
html.js [data-reveal-group].is-visible > *:nth-child(4) { transition-delay: .24s; }
html.js [data-reveal-group].is-visible > *:nth-child(5) { transition-delay: .32s; }
html.js [data-reveal-group].is-visible > *:nth-child(6) { transition-delay: .40s; }

/* ---------- Cookie-Banner ---------- */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 300;
  max-width: 760px; margin: 0 auto; background: var(--green-dd); color: #dbe6dc;
  border-radius: var(--r-sm); box-shadow: var(--shadow); padding: 1.2rem 1.4rem;
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  transform: translateY(140%); transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.cookie.show { transform: none; }
.cookie p { margin: 0; font-size: .9rem; line-height: 1.55; flex: 1 1 300px; color: #c4d2c6; }
.cookie a { color: #fff; text-decoration: underline; }
.cookie-btns { display: flex; gap: .6rem; flex: 0 0 auto; }
.cookie .btn { padding: .7rem 1.15rem; font-size: .85rem; }
.cookie .btn-ghost { border-color: rgba(255,255,255,.4); }
@media (max-width: 560px) { .cookie-btns { width: 100%; } .cookie-btns .btn { flex: 1; justify-content: center; } }

/* ---------- Funnel (mehrstufiges Formular) ---------- */
.funnel-intro { max-width: 760px; margin: 0 auto; text-align: center; }
.funnel {
  max-width: 760px; margin: 2.4rem auto 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.8rem);
}
.funnel-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.funnel-count { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-d); white-space: nowrap; }
.funnel-bar { flex: 1; height: 7px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.funnel-bar > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 999px; transition: width .4s ease; }
.fq { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.7rem); line-height: 1.18; margin: 0 0 1.4rem; letter-spacing: -.01em; }
.fq small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .98rem; color: var(--muted); margin-top: .5rem; letter-spacing: 0; }
.f-field { margin-bottom: 1rem; }
.f-field > label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.f-field input, .f-field select, .f-field textarea { width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 12px; font: inherit; background: var(--white); color: var(--ink); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--green); outline: var(--ring); outline-offset: 1px; }
.f-field textarea { min-height: 120px; resize: vertical; }
.f-row { display: grid; gap: 1rem; }
@media (min-width: 560px) { .f-row.cols2 { grid-template-columns: 1fr 1fr; } .f-row.cols3 { grid-template-columns: auto 1fr 1fr; } }
.f-options { display: grid; gap: .7rem; }
.f-opt {
  display: flex; align-items: center; gap: .85rem; text-align: left; width: 100%;
  padding: 1rem 1.1rem; border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--white); cursor: pointer; font: inherit; color: var(--ink); transition: border-color .15s, background .15s, box-shadow .15s;
}
.f-opt:hover { border-color: var(--green); background: var(--green-soft); }
.f-opt .chk { width: 24px; height: 24px; flex: 0 0 auto; border: 2px solid var(--line); display: grid; place-items: center; color: transparent; transition: all .15s; }
.f-opt[data-multi="0"] .chk { border-radius: 999px; }
.f-opt[data-multi="1"] .chk { border-radius: 7px; }
.f-opt.selected { border-color: var(--green); background: var(--green-soft); box-shadow: inset 0 0 0 1px var(--green); }
.f-opt.selected .chk { background: var(--green); border-color: var(--green); color: #fff; }
.f-opt .chk svg { width: 14px; height: 14px; }
.geo-btn { display: inline-flex; align-items: center; gap: .5rem; margin-top: .8rem; background: var(--green-soft); color: var(--green); border: 1px solid #cfe0d2; border-radius: 999px; padding: .7rem 1.1rem; font-family: var(--font-display); font-weight: 700; font-size: .85rem; cursor: pointer; }
.geo-btn:hover { background: #e2ecdf; }
.geo-btn svg { width: 16px; height: 16px; }
.geo-status { font-size: .82rem; color: var(--muted); margin: .6rem 0 0; min-height: 1.1em; }
.f-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--muted); margin-top: 1.2rem; }
.f-consent input { width: auto; margin-top: .25rem; }
.f-err { color: #b3492f; font-size: .85rem; font-weight: 600; margin: .8rem 0 0; min-height: 1.1em; }
.f-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.f-back { background: none; border: 0; color: var(--muted); cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; }
.f-back:hover { color: var(--ink); }
.f-back[hidden] { visibility: hidden; }
.funnel .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.funnel-done { text-align: center; padding: 1.5rem 0 1rem; }
.funnel-done .fd-badge { width: 78px; height: 78px; margin: 0 auto 1.4rem; border-radius: 999px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; animation: fdpop .5s cubic-bezier(.2,.9,.3,1.3); }
.funnel-done .fd-badge svg { width: 40px; height: 40px; }
.funnel-done h3 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin-bottom: .8rem; }
.funnel-done p { color: var(--muted); max-width: 46ch; margin: 0 auto 1em; }
.funnel-done a { color: var(--green); font-weight: 600; }
@keyframes fdpop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   MOBILE-OPTIMIERUNG
   ============================================================ */

/* Hamburger-Menü */
.nav-toggle { display: none; }
.nav-cta { display: none; }

@media (max-width: 959px) {
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 48px; height: 48px; padding: 0 12px; background: transparent; border: 0; cursor: pointer; flex: 0 0 auto; }
  .nav-toggle span { height: 2.5px; width: 100%; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease, background .3s ease; }
  .site-header.is-scrolled .nav-toggle span, body.subpage .nav-toggle span, .site-header.nav-open .nav-toggle span { background: var(--ink); }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Nav wächst im Header-Fluss nach unten – Header behält die Pillen-Form */
  .header-inner { flex-wrap: wrap; row-gap: 0; transition: none; }
  .site-nav { display: flex; order: 5; flex: 1 0 100%; flex-direction: column; gap: 0; max-height: 0; overflow: hidden; visibility: hidden; padding: 0; transition: max-height .35s ease, padding .35s ease, visibility 0s linear .35s; }
  .site-header.nav-open .site-nav { max-height: 460px; visibility: visible; padding: .35rem 0 .6rem; transition: max-height .35s ease, padding .35s ease, visibility 0s; }
  .site-nav a { color: var(--ink); padding: .92rem .4rem; font-size: 1.05rem; font-weight: 600; border-top: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-nav a:first-child { border-top: 0; }
  .site-nav a:hover { color: var(--green); }
  .site-nav .nav-cta { display: inline-flex; justify-content: center; margin-top: .8rem; border-top: 0; color: #fff !important; }

  /* Offener Header: gleiche abgerundete Pillen-Form, wächst animiert nach unten */
  .site-header.nav-open { padding-top: 12px; }
  .site-header.nav-open .header-inner {
    max-width: none; width: auto; margin: 0 14px; min-height: 60px;
    background: rgba(255,255,255,.98); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
    border: 1px solid var(--line); border-radius: 26px;
    box-shadow: 0 18px 40px -20px rgba(14,27,20,.34);
    padding: .35rem 1rem .55rem 1.3rem;
  }
  .site-header.nav-open .brand-logo { filter: none; }
}

/* min-width-Fixes gegen Overflow (Grid-/Flex-Kinder dürfen schrumpfen) */
.carousel, .car-stage, .car-tabs, .car-tab, .map-card, .acc, .acc-media, .split, .form-wrap { min-width: 0; }

@media (max-width: 700px) {
  body { overflow-x: hidden; }
  section { padding: 2.8rem 0; }
  .container { padding: 0 18px; }
  .sec-head { margin-bottom: 1.8rem; }
  h1 { font-size: clamp(2.05rem, 8.5vw, 2.6rem); }
  .lead { font-size: 1.05rem; }
  .btn { padding: .9rem 1.25rem; font-size: .9rem; }

  /* Hero */
  .hero-card { min-height: 86vh; border-radius: 0 0 20px 20px; }
  .hero-cta { gap: .7rem; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-stats { gap: 1.3rem 1.6rem; margin-top: 2rem; }

  /* Trust-Leiste */
  .trust-wrap { margin-top: 2rem; }
  .trust-bar { padding: 1.1rem 0; gap: .7rem; }
  .trust-bar li { justify-content: flex-start; }

  /* Value-Cards */
  .values { gap: 1rem; }
  .value, .benefit, .testi, .vs-card { padding: 1.6rem 1.4rem; }
  .benefits { gap: 1rem; }

  /* Karussell */
  .carousel { gap: 1.1rem; margin-top: 1.6rem; }
  .car-stage { height: 290px; border-radius: 18px; }
  .car-tabs { gap: .5rem; }
  .car-tab { flex-direction: column; align-items: flex-start; gap: .15rem; padding: .7rem .35rem; }
  .car-tab .tn { font-size: 1.5rem; }
  .car-tab .tt { font-size: .68rem; letter-spacing: .03em; line-height: 1.18; }
  .car-cap { left: 1.2rem; bottom: 1.2rem; }
  .car-cap .cn { font-size: 2rem; }
  .car-cap h3 { font-size: 1.15rem; }

  /* Akkordeon */
  .acc { gap: 1.4rem; margin-top: 1.6rem; }
  .acc-media { aspect-ratio: 4/3; }
  .acc-head { font-size: 1.1rem; padding: 1.1rem 0; }
  .acc-body .inner { padding-left: 2.4rem; }

  /* Vergleich gestapelt */
  .compare { gap: 1.1rem; }

  /* Projekte */
  .proj-grid { gap: 1.1rem; margin-top: 1.6rem; }
  .proj { aspect-ratio: 4/5; }
  .proj h3 { font-size: 1.3rem; }

  /* Bewertungen */
  .testimonials { gap: 1.1rem; margin-top: 1.8rem; }
  .testi-quote { font-size: 4.5rem; }

  /* Schwebende Bilder */
  .split { gap: 2rem; }
  .float-imgs { min-height: 340px; }
  .float-imgs .fi-1 { width: 62%; }
  .float-imgs .fi-2 { width: 56%; }
  .badge-rot { width: 102px; height: 102px; }
  .badge-rot .spin text { font-size: 11px; }
  .badge-rot .leaf { width: 24px; height: 24px; }

  /* Standort */
  .map-card { aspect-ratio: 4/3; min-height: 0; }

  /* Prozess / Schritte */
  .steps { gap: 1rem; margin-top: 1.6rem; }
  .step { padding: 1.4rem; }
  .three { gap: 1.2rem; margin-top: 1.6rem; }

  /* Funnel */
  .funnel { padding: 1.5rem 1.2rem; }
  .fq { font-size: 1.18rem; }
  .f-opt { padding: .9rem 1rem; }

  /* CTA-Band */
  .cta-band .lead { margin-bottom: 1.6rem; }

  /* Footer */
  .site-footer { padding: 3rem 0 1.4rem; }
  .footer-top { gap: 2rem; }
}

@media (max-width: 380px) {
  .car-tab .tt { font-size: .62rem; }
}

/* Trust-Leiste als durchlaufender Banner auf Mobil */
@media (max-width: 759px) {
  .trust-desktop { display: none; }
  .trust-marquee { display: block; }
}

/* Glas-Pille schmaler & mit Rand auf Mobil/Tablet */
@media (max-width: 959px) {
  .site-header.is-scrolled:not(.nav-open) .header-inner { max-width: none; width: auto; margin: 0 14px; padding: .35rem .4rem .35rem 1.15rem; min-height: 60px; }
}

@media (max-width: 700px) {
  /* Hero: Statistik in einer Reihe, Buttons gestapelt & lesbar */
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
  .hero-stats .s .n { font-size: 1.85rem; }
  .hero-stats .s .l { font-size: .74rem; }
  .hero-cta { flex-direction: column; gap: .7rem; }
  .hero-cta .btn { width: 100%; }
  .btn-ghost { background: rgba(14,27,20,.42); border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

  /* Vergleich: "Empfohlen"-Badge auf eigener Zeile (2 Zeilen) */
  .vs-badge { position: static; align-self: flex-start; margin-bottom: 1.1rem; }

  /* Bewertungen: seitlicher Slider mit breiten Karten */
  .testimonials { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1rem; margin: 1.8rem -18px 0; padding: .4rem 18px 1.4rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .testimonials::-webkit-scrollbar { display: none; }
  .testi { flex: 0 0 86%; scroll-snap-align: center; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html.js [data-reveal], html.js [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
}
