/* ============================================================
   WebYeah – Landingpage Stylesheet
   Mood: Hell/Warm/Corporate · Orange (#FF6B00) + Grün (#22C55E)
   ============================================================ */

:root {
  --bg: #FDFBF7;
  --bg-soft: #F6F0E6;
  --surface: #FFFFFF;
  --ink: #12241A;
  --ink-2: #1E3628;
  --ink-soft: #4A5A50;
  --line: #E8E0D2;
  --orange: #FF6B00;
  --orange-deep: #E85D00;
  --orange-soft: #FFE9D9;
  --green: #22C55E;
  --green-deep: #16A34A;
  --green-soft: #E4F9EC;
  --gold: #F7B32B;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 70px -24px rgba(18, 36, 26, .22);
  --shadow-card: 0 12px 40px -14px rgba(18, 36, 26, .14);
  --shadow-btn: 0 10px 26px -10px rgba(255, 107, 0, .5);
  --font-head: "Plus Jakarta Sans", "Avenir Next", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-h: 74px;
  --space-section: clamp(84px, 11vw, 150px);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--green-deep); text-decoration: none; }
a:hover { color: var(--orange-deep); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

section { padding-block: var(--space-section); position: relative; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
  border: 1px solid rgba(34, 197, 94, .25);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow.orange { color: var(--orange-deep); background: var(--orange-soft); border-color: rgba(255, 107, 0, .25); }

.h2 { font-size: clamp(30px, 4.6vw, 52px); }
.h2 .mark { color: var(--orange); }
.grad-light { color: var(--green); }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 60ch; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 18px 30px;
  min-height: 54px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,.68,.35,1), box-shadow .25s, background-color .25s, color .25s;
  will-change: transform;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--orange-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(255,107,0,.55); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--green); color: var(--green-deep); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { color: var(--orange-deep); transform: translateY(-2px); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav-wrap {
  position: fixed;
  inset-inline: 0;
  top: 14px;
  z-index: 100;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px 0 22px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 224, 210, .8);
  border-radius: 100px;
  box-shadow: 0 14px 40px -18px rgba(18, 36, 26, .25);
  transition: height .3s, box-shadow .3s;
}
.nav.is-scrolled { height: 62px; box-shadow: 0 10px 30px -14px rgba(18,36,26,.3); }
.nav-logo { display: inline-flex; align-items: center; flex: none; }
.nav-logo img { height: 40px; width: auto; flex-shrink: 0; }
.nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  transition: background-color .2s, color .2s;
}
.nav-links a:hover { background: var(--green-soft); color: var(--green-deep); }
.nav-cta { white-space: nowrap; padding: 14px 22px; min-height: 46px; font-size: 15px; }

.nav-menu { display: none; }

.nav-burger {
  display: none;
  width: 46px; height: 46px;
  border: none; background: transparent; cursor: pointer;
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 22px; height: 2.5px; border-radius: 2px;
  background: var(--ink); position: relative; transition: transform .3s, opacity .3s;
}
.nav-burger span::before { position: absolute; top: -7px; }
.nav-burger span::after { position: absolute; top: 7px; }
.nav.menu-open .nav-burger span { background: transparent; }
.nav.menu-open .nav-burger span::before { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--nav-h) + clamp(60px, 9vw, 110px));
  padding-bottom: clamp(60px, 8vw, 110px);
  min-height: min(88vh, 860px);
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(58% 50% at 84% 4%, rgba(255, 107, 0, .1), transparent 68%),
    radial-gradient(50% 44% at 6% 92%, rgba(34, 197, 94, .09), transparent 70%),
    var(--bg);
}
.hero-inner { position: relative; }
.hero-copy { max-width: min(520px, 45%); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  border-radius: 100px;
  padding: 9px 18px 9px 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.hero-badge .g { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.hero-badge .g b:nth-child(1) { color: #4285F4; } .hero-badge .g b:nth-child(2) { color: #EA4335; }
.hero-badge .g b:nth-child(3) { color: #FBBC05; } .hero-badge .g b:nth-child(4) { color: #4285F4; }
.hero-badge .g b:nth-child(5) { color: #34A853; } .hero-badge .g b:nth-child(6) { color: #EA4335; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 78px);
  margin-bottom: 22px;
}
.hero h1 .grad { color: var(--orange); }
.hero-sub { font-size: clamp(17px, 2.1vw, 21px); color: var(--ink-soft); max-width: 54ch; margin-bottom: 34px; }
.hero-sub b { color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust-faces { display: flex; }
.trust-faces img {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid var(--bg);
  object-fit: cover;
  margin-right: -12px;
  background: #fff;
}
.hero-trust span { font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.hero-trust .check { color: var(--green); font-weight: 700; }

.hero-visual { position: relative; }
.hero-visual .collage {
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 60px rgba(18, 36, 26, .16));
}
.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 14px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
}
.hero-chip .ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; flex: none;
}
.hero-chip small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--ink-soft); font-size: 12.5px; line-height: 1.3; }
.chip-price { top: 6%; right: -2%; }
.chip-price .ico { background: var(--orange-soft); color: var(--orange-deep); }
.chip-seo { bottom: 10%; left: -4%; }
.chip-seo .ico { background: var(--green-soft); color: var(--green-deep); }

/* ---------- Marquee ---------- */
.marquee-band {
  padding: 22px 0;
  background: var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
  margin-block: 10px 0;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 46px; padding-right: 46px; will-change: transform; }
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: #F3EFE6;
  display: inline-flex; align-items: center; gap: 46px;
}
.marquee-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); display: inline-block; }
.marquee-track .dot.g { background: var(--green); }

/* ---------- USP ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.usp-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.22,.68,.35,1), box-shadow .35s;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.usp-ico {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.usp-ico svg { width: 26px; height: 26px; }
.usp-card:nth-child(odd) .usp-ico { background: var(--orange-soft); color: var(--orange-deep); }
.usp-card:nth-child(even) .usp-ico { background: var(--green-soft); color: var(--green-deep); }
.usp-card h3 { font-size: 20px; margin-bottom: 8px; }
.usp-card p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Ablauf ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange);
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -6px rgba(255, 107, 0, .5);
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.step .dur {
  display: inline-block; margin-top: 14px;
  font-size: 12.5px; font-weight: 700;
  color: var(--green-deep); background: var(--green-soft);
  border-radius: 100px; padding: 5px 12px;
}

/* ---------- Flagship-Projekte ---------- */
.flagship { overflow: clip; }
.flag-list { display: grid; gap: clamp(72px, 9vw, 128px); }

.flag-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.flag-card:nth-child(even) .flag-visual { order: 2; }

/* --- Visual: Browser + überlappendes Phone --- */
.flag-visual { position: relative; padding-bottom: 62px; padding-left: 58px; }
.flag-card:nth-child(even) .flag-visual { padding-left: 0; padding-right: 58px; }

.flag-browser {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.flag-browser .browser-bar { border-bottom: 1px solid var(--line); }
.flag-shot {
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.flag-shot img {
  width: 100%;
  display: block;
  transition: transform 7s cubic-bezier(.16,.5,.22,1);
}
.flag-card:hover .flag-shot img { transform: translateY(calc(-1 * var(--pan, 40%))); }

.flag-phone {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(112px, 12.5vw, 152px);
  border-radius: 24px;
  padding: 6px;
  background: #171B18;
  box-shadow: 0 26px 50px -18px rgba(18, 36, 26, .5), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.flag-card:nth-child(even) .flag-phone { left: auto; right: 0; }
.flag-phone-screen {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 390 / 640;
  background: #fff;
  position: relative;
}
.flag-phone-screen img {
  width: 100%;
  display: block;
  transition: transform 7s cubic-bezier(.16,.5,.22,1);
}
.flag-card:hover .flag-phone-screen img { transform: translateY(calc(-1 * var(--mpan, 34%))); }
.flag-phone::before {
  content: "";
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.3);
  z-index: 2;
}

/* --- Info-Spalte --- */
.flag-info { max-width: 46ch; }
.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border-radius: 100px;
  padding: 7px 15px;
  margin-bottom: 16px;
}
.flag-badge .beam {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 0, .55);
  animation: flagBeam 2.4s ease-out infinite;
}
@keyframes flagBeam {
  0%   { box-shadow: 0 0 0 0 rgba(255, 107, 0, .5); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}
.flag-info h3 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 6px; }
.flag-role {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.flag-info > p { color: var(--ink-soft); font-size: 16.5px; }

.flag-metrics {
  list-style: none;
  margin: 26px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.flag-metrics li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.flag-metrics b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  white-space: nowrap;
}
.flag-metrics b .unit { font-size: .6em; color: var(--orange-deep); margin-left: 2px; }
.flag-metrics li > span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 500;
}
.flag-metrics b .unit { display: inline; }
.flag-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.flag-tags span {
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--green-deep);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 6px 13px;
}
.flag-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
  transition: color .2s, gap .2s;
}
.flag-link:hover { color: var(--orange-deep); gap: 14px; }

@media (max-width: 1080px) {
  .flag-card { grid-template-columns: 1fr; gap: 30px; }
  .flag-card:nth-child(even) .flag-visual { order: 0; padding-right: 0; padding-left: 40px; }
  .flag-card:nth-child(even) .flag-phone { right: auto; left: 0; }
  .flag-info { max-width: none; }
}
@media (max-width: 640px) {
  .flag-visual, .flag-card:nth-child(even) .flag-visual { padding-left: 0; padding-bottom: 62px; }
  .flag-phone, .flag-card:nth-child(even) .flag-phone { left: 12px; right: auto; width: 116px; }
  .flag-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .flag-metrics li { padding: 13px 8px; }
  .flag-metrics span { font-size: 11px; }
}

/* ---------- Arbeiten / Referenzen ---------- */
.works { background: var(--bg-soft); }
.works-deck { display: grid; gap: 26px; grid-template-columns: repeat(6, 1fr); }
.work-card {
  grid-column: span 2;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,.68,.35,1), box-shadow .35s;
}
.work-card:nth-child(1), .work-card:nth-child(2) { grid-column: span 3; }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.browser-frame { position: relative; background: #ECE6DA; }
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #F7F3EB;
  border-bottom: 1px solid var(--line);
}
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #DED5C4; }
.browser-bar i:nth-child(1) { background: #F87171; }
.browser-bar i:nth-child(2) { background: var(--gold); }
.browser-bar i:nth-child(3) { background: #34D399; }
.browser-bar .url {
  margin-left: 10px;
  font-size: 11.5px; color: var(--ink-soft);
  background: #fff; border-radius: 6px;
  padding: 3px 10px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 65%;
}
.shot-clip { overflow: hidden; aspect-ratio: 16 / 10.6; position: relative; }
.work-card:nth-child(n+3) .shot-clip { aspect-ratio: 16 / 11.4; }
.shot-clip img {
  width: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 6s cubic-bezier(.16,.5,.22,1);
}
.work-card:hover .shot-clip img { transform: translateY(calc(-1 * var(--pan, 46%))); }
.work-meta { padding: 20px 24px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.work-meta h3 { font-size: 17.5px; margin: 0; }
.work-meta small { display: block; color: var(--ink-soft); font-size: 13px; font-weight: 500; margin-top: 3px; }
.work-tag {
  flex: none;
  font-size: 12px; font-weight: 700;
  font-family: var(--font-head);
  color: var(--orange-deep); background: var(--orange-soft);
  padding: 6px 12px; border-radius: 100px;
}
.work-card:nth-child(even) .work-tag { color: var(--green-deep); background: var(--green-soft); }
.works-more { margin-top: 34px; text-align: center; }
.works-more p { color: var(--ink-soft); font-size: 15px; margin-bottom: 0; }
.works-more b { color: var(--ink); }

/* ---------- Sonderangebot ---------- */
.offer {
  background: var(--ink);
  color: #F3EFE6;
  overflow: clip;
}
.offer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 88% 10%, rgba(255, 107, 0, .14), transparent 70%),
    radial-gradient(44% 54% at 6% 92%, rgba(34, 197, 94, .14), transparent 70%);
  pointer-events: none;
}
.offer .eyebrow { background: rgba(255, 107, 0, .16); color: #FFB37E; border-color: rgba(255, 107, 0, .35); }
.offer .h2 { color: #fff; }
.offer .lead { color: #C9C2B4; }
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.price-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .5);
  position: relative;
}
.price-flag {
  position: absolute; top: -18px; right: 28px;
  background: var(--green);
  color: #0B2413;
  font-family: var(--font-head);
  font-weight: 800; font-size: 14px;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 10px 24px -8px rgba(34, 197, 94, .55);
}
.price-line { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin: 6px 0 4px; }
.price-old { font-size: clamp(20px, 2.6vw, 26px); color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--orange); text-decoration-thickness: 3px; }
.price-new {
  font-family: var(--font-head);
  font-size: clamp(56px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
}
.price-new sup { font-size: .38em; font-weight: 800; color: var(--orange-deep); top: -1.2em; }
.price-note { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }
.price-note b { color: var(--green-deep); }
.check-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; font-weight: 500; }
.check-list .ck {
  flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-deep);
  display: grid; place-items: center;
  margin-top: 1px;
}
.check-list .ck svg { width: 13px; height: 13px; }
.price-cta { width: 100%; }
.price-sub { text-align: center; font-size: 13px; color: var(--ink-soft); margin: 12px 0 0; }
.offer-phone { position: relative; }
.offer-phone img {
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 36px 60px rgba(0, 0, 0, .45));
}
.offer-compare {
  margin-top: 26px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 14.5px;
  color: #C9C2B4;
}
.offer-compare b { color: #fff; }

/* ---------- Über ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.about-copy .lead { margin-bottom: 24px; }
.about-points { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.about-points .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); color: var(--green-deep); display: grid; place-items: center; margin-top: 2px; }
.about-points .ck svg { width: 14px; height: 14px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 20px 26px;
  text-align: center;
}
.stat b {
  display: block;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.stat b .u { color: var(--orange-deep); }
.stat > span {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 500;
}
.stat b span { display: inline; font-size: inherit; }
.stat b .u { font-size: .58em; }
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.about-brandcard {
  position: absolute; bottom: -24px; left: -20px;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
}
.about-brandcard img { height: 34px; width: auto; border-radius: 0; box-shadow: none; }
.about-brandcard span { font-size: 13px; color: var(--ink-soft); font-weight: 600; line-height: 1.35; }

/* ---------- Bewertungen ---------- */
.reviews { background: var(--bg-soft); }
.reviews-intro { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.gbadge {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px 22px;
}
.gbadge .g { font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.gbadge .g b:nth-child(1){color:#4285F4}.gbadge .g b:nth-child(2){color:#EA4335}.gbadge .g b:nth-child(3){color:#FBBC05}.gbadge .g b:nth-child(4){color:#4285F4}.gbadge .g b:nth-child(5){color:#34A853}.gbadge .g b:nth-child(6){color:#EA4335}
.gbadge .score { font-family: var(--font-head); font-weight: 800; font-size: 26px; }
.gbadge .meta { font-size: 13px; color: var(--ink-soft); line-height: 1.3; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-card blockquote { margin: 0; font-size: 15.5px; color: var(--ink-2); flex: 1; }
.review-who { display: flex; align-items: center; gap: 12px; }
.review-who .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 16px;
}
.review-who b { font-size: 14.5px; display: block; }
.review-who small { color: var(--ink-soft); font-size: 12.5px; }
.review-glogo { width: 22px; height: 22px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.faq-q .plus {
  flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-deep);
  display: grid; place-items: center;
  transition: transform .3s, background-color .3s, color .3s;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--orange-soft); color: var(--orange-deep); }
.faq-a { height: 0; overflow: hidden; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: 15.5px; max-width: 65ch; }
.faq-a-inner a { font-weight: 600; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.contact-side .lead { margin-bottom: 28px; }
.contact-points { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 16px; }
.contact-points li { display: flex; gap: 14px; align-items: center; font-weight: 600; font-family: var(--font-head); }
.contact-points .ico {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-deep);
}
.contact-points li:first-child .ico { background: var(--orange-soft); color: var(--orange-deep); }
.contact-points small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--ink-soft); font-size: 13.5px; }
.contact-points a { color: inherit; }
.contact-points a:hover { color: var(--orange-deep); }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 44px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px; font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink-2);
}
.field label .req { color: var(--orange-deep); }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .2);
}
.form-note { font-size: 12.5px; color: var(--ink-soft); margin: 14px 0 0; }
.form-note a { font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #C9C2B4;
  padding: 64px 0 34px;
  margin-top: 0;
}
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 34ch; margin: 0; }
.footer-col h4 { color: #fff; font-size: 14.5px; margin-bottom: 14px; letter-spacing: .04em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: #C9C2B4; font-size: 14.5px; }
.footer-col a:hover { color: var(--orange); }
.footer-base {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-base a { color: #C9C2B4; }
.footer-base a:hover { color: var(--orange); }

/* ---------- Reveal-Zustände (JS setzt Animationen) ---------- */
html.js .reveal { opacity: 0; }
html.js .reveal-clip { clip-path: inset(0 0 100% 0); }
html.no-js .reveal, html.no-js .reveal-clip { opacity: 1; clip-path: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal-clip { opacity: 1 !important; clip-path: none !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .works-deck { grid-template-columns: repeat(2, 1fr); }
  .work-card, .work-card:nth-child(1), .work-card:nth-child(2) { grid-column: span 1; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-bottom: clamp(250px, 60vw, 360px);
  }
  .hero-copy { max-width: none; }
  .hero-sub { font-size: 16.5px; line-height: 1.55; margin-bottom: 26px; }
  .hero-badge { margin-bottom: 20px; }
  .hero h1 { margin-bottom: 18px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-menu {
    position: fixed;
    top: calc(var(--nav-h) + 24px);
    inset-inline: 16px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    padding: 18px;
    display: none;
    z-index: 99;
  }
  .nav-menu.open { display: block; }
  .nav-menu a {
    display: block;
    padding: 15px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-weight: 700; font-size: 17px;
    color: var(--ink);
  }
  .nav-menu a:active, .nav-menu a:hover { background: var(--green-soft); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 560px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .chip-price { right: 2%; }
  .chip-seo { left: 0; }
  .offer-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .offer-phone { max-width: 420px; margin-inline: auto; }
  .about-visual { max-width: 560px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .nav-cta { display: none; }
  .nav { padding-right: 8px; }
  .hero-badge { font-size: 12.5px; padding: 8px 14px 8px 10px; gap: 7px; }
  .hero-badge .g { font-size: 14px; }
  .usp-grid, .steps, .review-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .price-cta { font-size: 15px; }
  .hero-chip { padding: 10px 14px; font-size: 13.5px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat:last-child { grid-column: span 2; }
  .footer-grid { flex-direction: column; }
  .about-brandcard { left: 8px; }
}

/* ---------- Sternchen / Fußnote im Angebot ---------- */
.star { color: var(--orange); font-weight: 800; }
.price-foot {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ---------- CTA im Referenz-Bereich ---------- */
.works-cta { margin-top: clamp(44px, 6vw, 72px); }
.works-cta-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 44px) clamp(26px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.works-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 130% at 96% 8%, rgba(255, 107, 0, .09), transparent 68%);
  pointer-events: none;
}
.works-cta-copy { position: relative; max-width: 46ch; }
.works-cta-copy h3 { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 8px; }
.works-cta-copy p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.works-cta-actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- WhatsApp-Button ---------- */
.btn-wa {
  background: #25D366;
  color: #08331B;
  box-shadow: 0 10px 26px -10px rgba(37, 211, 102, .55);
}
.btn-wa:hover {
  background: #1FBA59;
  color: #08331B;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(37, 211, 102, .6);
}
.btn-wa svg { flex: none; }

/* ---------- Schwebender Schnellkontakt ---------- */
.quick-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(18, 36, 26, .55);
  transition: transform .25s cubic-bezier(.22,.68,.35,1), box-shadow .25s, background-color .25s;
}
.qc-btn svg { width: 24px; height: 24px; flex: none; }
.qc-wa { background: #25D366; color: #08331B; }
.qc-wa:hover { background: #1FBA59; color: #08331B; transform: translateY(-3px); }
.qc-call { background: var(--orange); color: #fff; }
.qc-call:hover { background: var(--orange-deep); color: #fff; transform: translateY(-3px); }
.qc-label { white-space: nowrap; }

@media (max-width: 900px) {
  .quick-contact { right: 14px; bottom: 14px; flex-direction: row-reverse; }
  .qc-btn { height: 54px; width: 54px; padding: 0; justify-content: center; }
  .qc-label { display: none; }
}
@media (max-width: 640px) {
  .works-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .works-cta-actions { width: 100%; flex-direction: column; }
  .works-cta-actions .btn { width: 100%; }
}



/* ---------- Angebot: echtes Kundenprojekt im Phone ---------- */
.offer-phone-frame {
  width: min(300px, 74%);
  margin-inline: auto;
  border-radius: 40px;
  padding: 9px;
  background: #171B18;
  box-shadow: 0 40px 70px -24px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255,255,255,.1);
  position: relative;
}
.offer-phone-frame::before {
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 6px;
  border-radius: 100px;
  background: rgba(255,255,255,.28);
  z-index: 2;
}
.offer-phone-screen { border-radius: 32px; overflow: hidden; aspect-ratio: 390 / 780; background: #fff; }
.offer-phone-screen img { width: 100%; display: block; }
.offer-phone-cap {
  text-align: center;
  margin: 22px 0 0;
  font-size: 13.5px;
  color: #C9C2B4;
}
.offer-phone-cap b { color: #fff; }

/* ---------- Über: Kundenseite im Rahmen ---------- */
.about-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.about-frame .browser-bar { border-bottom: 1px solid var(--line); }
.about-shot { aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-soft); }
.about-shot img { width: 100%; display: block; }

@media (max-width: 900px) {
}

/* ---------- Link zum Google-Profil ---------- */
.gbadge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--green-deep);
  transition: gap .2s, color .2s;
}
.gbadge-link:hover { color: var(--orange-deep); gap: 10px; }
.gbadge > div { display: flex; flex-direction: column; }

/* Hero-Shot exakt 16:10 wie der Screenshot */

/* ---------- Flagship: kurze (16:10) und lange Screenshots gemeinsam handhaben ---------- */
.flag-shot img {
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}
.flag-phone-screen img {
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Badge-Varianten */
.flag-badge { white-space: nowrap; }
.flag-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--green-deep);
  background: var(--green-soft);
  border-radius: 100px;
  padding: 9px 16px;
  margin: 0;
}

/* ================= FLAGSHIP-SLIDER ================= */
.flag-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.flag-tabs::-webkit-scrollbar { display: none; }
.flag-tab {
  flex: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1;
  padding: 14px 20px;
  min-height: 46px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s, color .25s, border-color .25s, transform .25s;
}
.flag-tab:hover { border-color: var(--green); color: var(--green-deep); }
.flag-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.flag-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.flag-slider::-webkit-scrollbar { display: none; }

.flag-track { display: flex; }
.flag-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding-inline: max(24px, calc((100vw - 1200px) / 2));
}
.flag-slide .flag-card { margin: 0; }

/* Pfeile + Punkte */
.flag-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 44px);
}
.flag-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: background-color .25s, color .25s, transform .25s, opacity .25s;
}
.flag-arrow svg { width: 22px; height: 22px; }
.flag-arrow:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.flag-arrow[disabled] { opacity: .35; cursor: default; transform: none; }
.flag-arrow[disabled]:hover { background: var(--surface); color: var(--ink); }
.flag-dots { display: flex; gap: 9px; }
.flag-dot {
  width: 9px; height: 9px;
  border-radius: 100px;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: width .3s, background-color .3s;
}
.flag-dot.is-active { width: 30px; background: var(--orange); }

.flag-more { margin-top: clamp(26px, 3.5vw, 40px); text-align: center; }

@media (max-width: 1080px) {
  .flag-slide { padding-inline: 24px; }
}
@media (max-width: 640px) {
  .flag-slide { padding-inline: 16px; }
  .flag-tab { font-size: 13.5px; padding: 12px 16px; }
  .flag-more .btn { width: 100%; }
}

/* ---------- Angebot: schräg gestelltes Handy ---------- */
.offer-phone { perspective: 1400px; }
.offer-phone-frame {
  transform: rotateY(-17deg) rotateX(4deg) rotateZ(-3deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.22,.68,.35,1);
  box-shadow: -28px 46px 80px -26px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(255,255,255,.12);
}
.offer-phone:hover .offer-phone-frame { transform: rotateY(-9deg) rotateX(2deg) rotateZ(-1deg); }
@media (prefers-reduced-motion: reduce) {
  .offer-phone-frame, .offer-phone:hover .offer-phone-frame { transform: none; transition: none; }
}
@media (max-width: 640px) {
  .offer-phone-frame { transform: rotateY(-11deg) rotateZ(-2deg); }
}

/* ---------- Unterseite: alle Referenzen ---------- */
.ref-page { padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px)); background: var(--bg); }
.ref-page .works-cta { margin-top: clamp(48px, 6vw, 80px); }

/* Footer-Logo als Link */
.footer-logo { display: inline-block; transition: opacity .25s; }
.footer-logo:hover { opacity: .8; }
.footer-brand .footer-logo img { margin-bottom: 14px; }

/* SplitText-Masken dürfen Unterlängen (g, y, p) nicht kappen */
.split-done, .split-done * { overflow: visible !important; }

/* ================= HERO: einzelne Projekt-Fenster ================= */
.hero-tiles {
  position: absolute;
  top: 0; bottom: 0; right: 0; left: 49%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-inner { z-index: 1; }
.ht {
  position: absolute;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #F7F3EB;
  line-height: 0;
  box-shadow:
    0 30px 60px -24px rgba(18, 36, 26, .38),
    0 4px 14px -6px rgba(18, 36, 26, .16),
    0 0 0 1px rgba(18, 36, 26, .06);
  will-change: transform;
}
.ht img { width: 100%; display: block; vertical-align: top; }
.ht-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  padding: 0 9px;
  background: #F7F3EB;
  border-bottom: 1px solid rgba(18, 36, 26, .07);
}
.ht-bar i { width: 5px; height: 5px; border-radius: 50%; background: #DED5C4; }
.ht-bar i:nth-child(1) { background: #F87171; }
.ht-bar i:nth-child(2) { background: var(--gold); }
.ht-bar i:nth-child(3) { background: #34D399; }

/* Anordnung Desktop */
.ht-1 { width: 53%; left: 3%;  top: 14%; transform: rotate(-3deg); z-index: 5; }
.ht-2 { width: 43%; left: 49%; top: 1%;  transform: rotate(4deg);  z-index: 3; }
.ht-3 { width: 49%; left: 23%; top: 51%; transform: rotate(-2deg); z-index: 6; }
.ht-4 { width: 33%; left: 4%;  top: 63%; transform: rotate(3deg);  z-index: 4; }
.ht-5 { width: 38%; left: 70%; top: 27%; transform: rotate(-5deg); z-index: 2; }
.ht-6 { width: 40%; left: 62%; top: 73%; transform: rotate(2deg);  z-index: 1; }

@media (max-width: 1200px) {
  .hero-tiles { left: 53%; }
  .ht-1 { width: 64%; } .ht-3 { width: 62%; } .ht-4 { width: 38%; }
}
@media (max-width: 900px) {
  .hero-tiles { left: 0; top: auto; bottom: 0; height: clamp(240px, 56vw, 340px); }
  .ht-1 { width: 56%; left: 2%;  top: 4%;  transform: rotate(-3deg); }
  .ht-2 { width: 46%; left: 56%; top: 5%;  transform: rotate(4deg);  }
  .ht-3 { width: 52%; left: 24%; top: 40%; transform: rotate(-2deg); }
  .ht-4 { width: 33%; left: 3%;  top: 50%; transform: rotate(3deg);  }
  .ht-5, .ht-6 { display: none; }
}
@media (max-width: 640px) {
  .hero-tiles { height: clamp(220px, 58vw, 320px); }
  .ht { border-radius: 10px; }
  .ht-bar { height: 15px; }
  .ht-4 { display: none; }
}

/* ================= FORMULAR: Honeypot, Datenschutz, Danke ================= */
.hp-feld { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ds-zeile {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 20px;
}
.ds-zeile input[type="checkbox"] {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  accent-color: var(--green-deep);
  cursor: pointer;
}
.ds-zeile label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.ds-zeile a { font-weight: 600; }
.netto { font-size: 12.5px; color: var(--ink-soft); }

.form-danke { text-align: center; }
.danke-ic {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.danke-ic svg { width: 30px; height: 30px; }
.form-danke h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 10px; }
.form-danke p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }
.danke-sig { font-family: var(--font-head); font-weight: 700; color: var(--ink) !important; margin-top: -2px; }
.danke-aktionen { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ================= STICKY-LEISTE (mobil) ================= */
.mcta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px -12px rgba(18, 36, 26, .22);
  transform: translateY(105%);
  transition: transform .35s cubic-bezier(.22,.68,.35,1);
}
.mcta.sichtbar { transform: translateY(0); }
.mcta-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.mcta-txt b { font-family: var(--font-head); font-size: 15.5px; color: var(--ink); white-space: nowrap; }
.mcta-txt span { font-size: 12px; color: var(--ink-soft); }
.mcta-btn { flex: none; min-height: 48px; padding: 14px 20px; font-size: 15px; }

/* ================= COOKIE-HINWEIS ================= */
.cookie-banner {
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 120;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 60px -20px rgba(18, 36, 26, .5);
  padding: 20px 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.cookie-banner.sichtbar { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-banner p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-banner b { color: var(--ink); }
.cb-knoepfe { display: flex; gap: 10px; flex-wrap: wrap; }
.cb-knoepfe .btn { flex: 1; min-width: 140px; min-height: 48px; padding: 14px 18px; font-size: 14.5px; }
.cb-nein { background: var(--bg-soft); color: var(--ink); }
.cb-nein:hover { background: var(--line); color: var(--ink); }

@media (max-width: 900px) {
  .mcta { display: flex; }
  /* Schnellkontakt-Knöpfe über die Leiste heben */
  .quick-contact { bottom: 84px; }
  .cookie-banner { bottom: 84px; }
}
@media (max-width: 380px) {
  .mcta-txt span { display: none; }
}
.form-fehler { color: #C2410C !important; font-weight: 600; }

/* ================= RECHTSSEITEN ================= */
.legal { padding-top: calc(var(--nav-h) + clamp(56px, 8vw, 96px)); padding-bottom: clamp(70px, 9vw, 120px); }
.legal .container { max-width: 800px; }
.legal h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 34px; }
.legal h2 { font-size: clamp(20px, 2.4vw, 25px); margin-top: 46px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; }
.legal strong { color: var(--ink); }
.legal ul { padding-left: 22px; margin-bottom: 1em; }
.legal li { margin-bottom: 8px; }
.legal a { font-weight: 600; }

/* Unterseiten-Titel nutzt die H2-Optik, ist aber semantisch H1 */
h1.h2 { font-size: clamp(30px, 4.6vw, 52px); }
