/* ============================================================
   webseite.cloud — Landingpage für Handwerk & lokale Betriebe
   Design-System: warmer heller Grund, Tiefgrün-Akzent,
   warme humanistische Sans. Mobil zuerst.
   ============================================================ */

:root {
  /* --- Farben (Tweak-gesteuert: --accent, --font) --- */
  --bg:          #f6f3ea;   /* warmer heller Hintergrund */
  --surface:     #ffffff;
  --surface-2:   #fbf9f2;   /* leicht getönte Karte */
  --ink:         #1b1a15;   /* warmes Beinahe-Schwarz */
  --ink-2:       #56524a;   /* gedämpfter Text */
  --ink-3:       #8a847a;   /* Hinweise / Labels */
  --line:        #e6dfd1;   /* Haarlinien */
  --line-strong: #d8d0bf;

  --accent:      #2f5a45;   /* Tiefgrün (Wald) */
  --accent-700:  #244736;
  --accent-900:  #1a3527;
  --accent-100:  #e8efe9;   /* heller Grünschleier */
  --accent-050:  #f0f4ef;
  --on-accent:   #f6f3ea;

  --font: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* --- Form --- */
  --r:    16px;
  --r-sm: 11px;
  --r-lg: 24px;
  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 56px);

  --shadow-sm: 0 1px 2px rgba(26,32,24,.05);
  --shadow:    0 2px 4px rgba(26,32,24,.04), 0 14px 34px rgba(31,52,39,.07);
  --shadow-lg: 0 4px 8px rgba(26,32,24,.05), 0 26px 60px rgba(31,52,39,.12);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

@media (max-width: 600px) { body { font-size: 16.5px; } }

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }

/* --- Layout-Hilfen --- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(56px, 9vw, 116px);
}
.section--tight { padding-block: clamp(44px, 7vw, 84px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Typografie --- */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.45rem, 6.6vw, 4.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.95rem, 4.2vw, 3.05rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); letter-spacing: -.015em; }
p  { margin: 0; }
.lead {
  font-size: clamp(1.12rem, 2.3vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
  text-wrap: pretty;
}
.muted { color: var(--ink-2); }
.section-head { max-width: 760px; }
.section-head h2 { margin-top: 18px; }
.section-head p  { margin-top: 20px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font: inherit;
  font-weight: 600;
  font-size: 1.04rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent-700); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(0,0,0,.02); }
.btn--light {
  background: var(--surface);
  color: var(--accent-900);
  border-color: var(--line);
}
.btn--light:hover { box-shadow: var(--shadow); }
.btn--lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.1rem; }
.btn--block { display: flex; width: 100%; }

.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--ink);
  font-weight: 800; letter-spacing: -.02em; font-size: 1.16rem;
}
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  font-size: 1.05rem; font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.brand .dim { color: var(--ink-3); font-weight: 600; }
.header-nav {
  display: flex; align-items: center; gap: 30px;
}
.header-nav a.navlink {
  text-decoration: none; color: var(--ink-2);
  font-weight: 500; font-size: .98rem;
  transition: color .15s var(--ease);
}
.header-nav a.navlink:hover { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: .98rem;
}
.header-phone svg { color: var(--accent); }
.header-phone span { white-space: nowrap; }
@media (max-width: 1024px) {
  .header-nav { display: none; }
}
@media (max-width: 600px) {
  .header-phone span { display: none; }
  .header-inner { height: 64px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(36px, 6vw, 70px); padding-bottom: clamp(44px, 7vw, 90px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px;
  background: var(--accent-100);
  color: var(--accent-900);
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 { margin-top: 24px; }
.hero h1 .hl { color: var(--accent); }
.hero-sub { margin-top: 26px; max-width: 30ch; }
.hero-actions {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-reassure {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: .96rem; color: var(--ink-2);
}
.hero-reassure span { display: inline-flex; align-items: center; gap: 8px; }
.hero-reassure svg { color: var(--accent); flex: none; }

/* Browser-Mockup */
.mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(.4deg);
}
.mock-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.mock-dots { display: flex; gap: 7px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 50%; background: #dcd5c7; }
.mock-url {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: .82rem; color: var(--ink-2);
  font-family: "Figtree", sans-serif;
}
.mock-url svg { color: var(--accent); flex: none; }
.mock-slot { width: 100%; height: 360px; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-sub { max-width: 46ch; }
  .mock { transform: none; max-width: 560px; }
  .mock-slot { height: 300px; }
}
@media (max-width: 520px) { .mock-slot { height: 230px; } }

/* Logo-Streifen unter Hero */
.trustline {
  margin-top: clamp(44px, 6vw, 76px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 34px;
  color: var(--ink-3);
  font-size: .95rem;
}
.trustline strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   Problem
   ============================================================ */
.problem { background: var(--surface); border-block: 1px solid var(--line); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.problem-points { margin-top: 30px; display: grid; gap: 20px; }
.problem-point {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
}
.problem-point .pico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-050); color: var(--accent);
  border: 1px solid var(--line);
}
.problem-point h4 { font-size: 1.08rem; font-weight: 700; margin: 0 0 3px; letter-spacing: -.01em; }
.problem-point p { color: var(--ink-2); font-size: 1rem; }

/* Vorher/Nachher Visual */
.ba {
  display: grid; gap: 16px;
}
.ba-card {
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface-2);
}
.ba-card header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px;
  font-size: .82rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.ba-old header { color: #9a7b3e; }
.ba-new header { color: var(--accent); }
.ba-tag { font-size: .72rem; padding: 3px 9px; border-radius: 999px; font-weight: 700; letter-spacing: .02em; text-transform: none; }
.ba-old .ba-tag { background: #f3ead4; color: #8a6d2e; }
.ba-new .ba-tag { background: var(--accent-100); color: var(--accent-900); }
.ba-body { padding: 18px; }
/* "2008er" Seite */
.old-site { font-family: "Times New Roman", Times, serif; color: #2a2a2a; }
.old-site .os-h { font-size: 1.3rem; color: #1a3a7a; text-decoration: underline; font-weight: 700; }
.old-site .os-rule { height: 4px; background: repeating-linear-gradient(90deg,#1a3a7a 0 10px,#b00 10px 20px); margin: 10px 0; }
.old-site .os-row { display: flex; gap: 10px; margin-top: 10px; }
.old-site .os-img { width: 80px; height: 56px; background: #d7d2c4; border: 2px ridge #aaa; display: grid; place-items: center; color: #777; font-size: .7rem; }
.old-site .os-txt { font-size: .78rem; line-height: 1.4; color: #444; }
.old-site .os-link { color: #1a3a7a; text-decoration: underline; font-size: .78rem; }
.old-site .os-counter { margin-top: 10px; font-size: .68rem; color: #888; }
/* moderne Seite */
.new-site .ns-nav { display: flex; gap: 14px; align-items: center; font-size: .72rem; color: var(--ink-2); }
.new-site .ns-logo { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); }
.new-site .ns-spacer { flex: 1; }
.new-site .ns-pill { background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: .68rem; font-weight: 600; }
.new-site .ns-hero { margin-top: 14px; }
.new-site .ns-hero b { display: block; font-size: 1.15rem; letter-spacing: -.02em; }
.new-site .ns-hero span { display: block; font-size: .78rem; color: var(--ink-2); margin-top: 4px; }
.new-site .ns-row { display: flex; gap: 10px; margin-top: 14px; }
.new-site .ns-card { flex: 1; height: 50px; border-radius: 9px; background: var(--accent-050); border: 1px solid var(--line); }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; } }

/* ============================================================
   So läuft es — Schritte
   ============================================================ */
.steps-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px 30px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  font-size: 1.25rem; font-weight: 800;
  margin-bottom: 22px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-2); }
.step__free { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 700; color: var(--accent); }
.step__free svg { flex: none; }
.step-connector {
  position: absolute; top: 54px; right: -18px; z-index: 2;
  color: var(--line-strong);
}
.steps-payoff {
  margin-top: 34px;
  display: flex; align-items: center; gap: 16px;
  background: var(--accent-050);
  border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
  border-radius: var(--r);
  padding: 22px 26px;
}
.steps-payoff .chk { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; }
.steps-payoff p { font-size: 1.08rem; }
.steps-payoff strong { font-weight: 800; }
@media (max-width: 820px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ============================================================
   Was Sie bekommen — Features
   ============================================================ */
.features { background: var(--surface); border-block: 1px solid var(--line); }
.features-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 34px 30px;
  transition: background .2s var(--ease);
}
.feature:hover { background: var(--surface-2); }
.feature .fico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--accent-050); color: var(--accent);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  margin-bottom: 20px;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 9px; }
.feature p { color: var(--ink-2); font-size: 1rem; }
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Preise
   ============================================================ */
.pricing-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 30px);
  align-items: start;
}
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.plan--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.plan--featured::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--accent);
  pointer-events: none;
}
.plan-flag {
  position: absolute; top: -14px; left: 34px;
  background: var(--accent); color: var(--on-accent);
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  padding: 7px 16px; border-radius: 999px;
  box-shadow: var(--shadow);
}
.plan-kicker { font-size: .9rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.plan--featured .plan-kicker { color: var(--accent); }
.plan-name { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin-top: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-top: 20px; }
.plan-price .amt { font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan-price .per { color: var(--ink-2); font-weight: 500; font-size: 1.02rem; }
.plan-tagline { margin-top: 14px; color: var(--ink-2); font-size: 1.02rem; }
.plan-divider { height: 1px; background: var(--line); margin: 26px 0; }
.plan-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.plan-list li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: 1rem; color: var(--ink); }
.plan-list svg { color: var(--accent); flex: none; margin-top: 3px; }
.plan-list li.dim { color: var(--ink-3); }
.plan-list li.dim svg { color: var(--ink-3); }
.plan-foot { margin-top: 28px; }
.plan-note { margin-top: 14px; font-size: .85rem; color: var(--ink-3); line-height: 1.5; }
.pricing-assure {
  margin-top: 28px; text-align: center;
  font-size: 1rem; color: var(--ink-2);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.pricing-assure svg { color: var(--accent); }
@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
}

/* TJA-2075: €99/Mo als führende Hauptkarte, Einmalkauf gleichwertig daneben */
.plan--lead {
  transform: translateY(-6px);
  z-index: 1;
}
.plan--lead .plan-name { font-size: 1.62rem; }
.plan--alt {
  background: var(--surface);
}
@media (min-width: 821px) {
  .pricing-grid { align-items: stretch; }
  .plan--lead { order: -1; }
  .plan--alt  { order: 1; }
}
@media (max-width: 820px) {
  .plan--lead { order: -1; }
  .plan--alt  { order: 1; }
}
/* Tweak overrides remain compatible */

/* Tweak: Preise gestapelt */
body.pricing-stacked .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
body.pricing-stacked .plan--featured { order: -1; }

/* ============================================================
   Vertrauen — Referenzen
   ============================================================ */
.refs { background: var(--surface); border-block: 1px solid var(--line); }
.refs-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ref-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ref-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ref-slot { width: 100%; height: 150px; }
.ref-meta { padding: 14px 16px; }
.ref-meta b { display: block; font-weight: 700; font-size: .98rem; letter-spacing: -.01em; }
.ref-meta span { font-size: .85rem; color: var(--ink-3); }
.about {
  margin-top: 44px;
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
  background: var(--accent-050);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 34px;
}
.about-photo { width: 96px; height: 96px; border-radius: 50%; flex: none; }
.about p { color: var(--ink-2); font-size: 1.08rem; line-height: 1.55; }
.about p strong { color: var(--ink); font-weight: 700; }
.about .sig { margin-top: 12px; font-weight: 700; color: var(--ink); }
.about .sig span { color: var(--ink-3); font-weight: 500; }
@media (max-width: 900px) { .refs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .about { grid-template-columns: 1fr; text-align: left; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 820px; margin-inline: auto; margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  background: none; border: 0; cursor: pointer;
  font: inherit; color: var(--ink);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem); font-weight: 700; letter-spacing: -.01em;
  padding: 26px 48px 26px 0;
  position: relative;
  display: flex; align-items: center; gap: 14px;
}
.faq-q .qmark { color: var(--accent); font-weight: 800; flex: none; }
.faq-icon {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  color: var(--accent);
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-icon, .faq-item.is-open .faq-icon { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease);
}
.faq-a-inner {
  padding: 0 60px 28px 0;
  color: var(--ink-2);
  font-size: 1.05rem; line-height: 1.65;
}
.faq-a-inner p + p { margin-top: 12px; }

/* ============================================================
   Abschluss-CTA + Kontakt
   ============================================================ */
.closer { background: var(--accent); color: var(--on-accent); }
.closer .wrap { position: relative; }
.closer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.closer h2 { color: var(--on-accent); }
.closer .lead { color: color-mix(in srgb, var(--on-accent) 82%, transparent); margin-top: 22px; }
.closer-contacts { margin-top: 32px; display: grid; gap: 18px; }
.closer-contact {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--on-accent);
  font-size: 1.12rem; font-weight: 600;
}
.closer-contact .cc-ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
}
.closer-contact span small { display: block; font-size: .8rem; font-weight: 500; color: color-mix(in srgb, var(--on-accent) 70%, transparent); letter-spacing: .02em; }

/* Formular-Karte */
.form-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.45rem; }
.form-card .fc-sub { color: var(--ink-2); margin-top: 8px; margin-bottom: 24px; font-size: 1rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .92rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--accent); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-100);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.has-error input, .field.has-error textarea { border-color: #b4513f; background: #fbf1ee; }
.field-error { display: none; color: #b4513f; font-size: .85rem; margin-top: 6px; font-weight: 500; }
.field.has-error .field-error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; font-size: .88rem; color: var(--ink-2); margin: 6px 0 22px; line-height: 1.45; }
.form-consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.form-success {
  display: none;
  text-align: center; padding: 18px 0;
}
.form-success.show { display: block; }
.form-success .fs-ico { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-100); color: var(--accent); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-2); }
@media (max-width: 860px) {
  .closer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 5vw, 60px);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
}
.footer .brand { margin-bottom: 14px; }
.footer-blurb { color: var(--ink-2); font-size: .98rem; max-width: 34ch; }
.footer-col h5 { margin: 0 0 14px; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { text-decoration: none; color: var(--ink-2); font-size: .98rem; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .9rem; color: var(--ink-3);
}
.ph {
  /* Platzhalter-Markierung */
  border: 1px dashed color-mix(in srgb, var(--accent) 40%, var(--line));
  border-radius: 6px;
  background: repeating-linear-gradient(135deg, transparent 0 9px, color-mix(in srgb, var(--accent) 6%, transparent) 9px 18px);
}
.ph-tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .72rem; color: var(--accent-900);
  background: var(--accent-100);
  padding: 2px 7px; border-radius: 5px;
  letter-spacing: .01em;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* Image-Slot Platzhalter-Look an Marke anpassen */
image-slot {
  background: var(--surface-2);
  color: var(--accent-900);
  border-radius: var(--r);
  display: block;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
