/* ============================================================
   WEBDESIGN BENJAMIN — webdesign-benjamin.de
   Statisch, kein Framework. Design über CSS-Variablen.
   Kontraste WCAG AA (≥4,5:1), Gold-Buttons mit Navy-Text.
   ============================================================ */

/* ---------- Lokale Schriften (DSGVO — keine Google-Server) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('fonts/cormorant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('fonts/cormorant-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design-Variablen ---------- */
:root {
  --navy:      #0F2438;   /* dunkelster Ton, Hero/Footer */
  --navy-2:    #16324C;   /* Karten auf dunklem Grund */
  --navy-3:    #1E4265;   /* Linien/Hover auf dunklem Grund */
  --ink:       #172433;   /* Überschriften auf hell */
  --ink-m:     #46566A;   /* Fließtext auf hell (≥4,5:1 auf #fff und #F4F7FA) */
  --gold:      #E9A91C;   /* CTA-Flächen — immer mit Navy-Text */
  --gold-deep: #8A6206;   /* Gold als TEXT auf hell (≥4,5:1) */
  --gold-soft: #F3C35B;   /* Gold als Text auf Navy (≥4,5:1) */
  --paper:     #FFFFFF;
  --surface:   #F4F7FA;
  --line:      #DFE7EE;
  --ok:        #2E7D32;
  --err:       #B3261E;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-s: 10px;
  --shadow: 0 10px 30px rgba(15, 36, 56, .10);
  --maxw: 1140px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-m);
  background: var(--paper);
  overflow-x: hidden;            /* Playbook: kein Querscroll bei 360px */
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); }
h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; }
h1, h2 { font-family: var(--serif); font-weight: 600; }
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-family: var(--sans); font-weight: 700; font-size: 1.08rem; }
p  { margin: 0 0 1em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; min-width: 0; }
section { padding: 88px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head p { font-size: 1.06rem; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);            /* Playbook: Navy auf Gold ≈ 4,9:1, besteht AA */
  box-shadow: 0 8px 22px rgba(233, 169, 28, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(233, 169, 28, .45); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.on-dark .btn--ghost { border-color: var(--navy-3); color: #fff; }
.on-dark .btn--ghost:hover { border-color: var(--gold-soft); }
.btn--big { padding: 18px 36px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.header.scrolled { background: rgba(15, 36, 56, .96); box-shadow: 0 2px 18px rgba(0,0,0,.25); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brandmark { display: flex; flex-direction: column; text-decoration: none; line-height: 1.05; }
.brandmark__top { font-family: var(--sans); font-weight: 800; letter-spacing: .18em; font-size: .95rem; color: #fff; }
.brandmark__sub { font-family: var(--sans); font-weight: 600; letter-spacing: .3em; font-size: .62rem; color: var(--gold-soft); text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: #E6EDF4; text-decoration: none; font-weight: 600; font-size: .93rem; }
.nav__links a:hover { color: var(--gold-soft); }
.nav__links a.nav__cta { color: var(--navy); padding: 10px 20px; font-size: .9rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(233,169,28,.14), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(30,66,101,.55), transparent 60%),
    var(--navy);
  color: #C9D6E2;
  padding: 168px 0 96px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { display: block; color: var(--gold-soft); font-style: italic; }
.hero__lead { max-width: 640px; font-size: 1.14rem; }
.hero__lead strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 10px; }
.hero__note { font-size: .88rem; color: #9FB2C4; }
.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--navy-3);
}
.hero__meta > div { min-width: 0; }
.hero__meta .num { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: #fff; }
.hero__meta .num em { font-style: normal; color: var(--gold-soft); }
.hero__meta .lbl { font-size: .85rem; color: #9FB2C4; }

/* ---------- Trustbar ---------- */
.trustbar { padding: 26px 0; background: #0B1C2C; border-top: 1px solid var(--navy-2); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 28px; }
.trustbar__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #8FA5B8; font-weight: 700; }
.trustbar a, .trustbar span.site { color: #C9D6E2; text-decoration: none; font-weight: 600; font-size: .93rem; }
.trustbar a:hover { color: var(--gold-soft); text-decoration: underline; }

/* ---------- Problem ---------- */
.problem { background: var(--paper); }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cards-3 > * { min-width: 0; }
.pain {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.pain__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  color: var(--gold-deep);
}
.pain h3 { margin-bottom: 8px; }
.pain p { margin: 0; font-size: .97rem; }
.problem__bridge { text-align: center; max-width: 680px; margin: 46px auto 0; font-size: 1.12rem; color: var(--ink); font-weight: 600; }

/* ---------- Angebot (Grand-Slam-Stack) ---------- */
.offer { background: var(--navy); color: #C9D6E2; }
.offer h2, .offer h3 { color: #fff; }
.offer .section-head p { color: #AEBFCE; }
.stack {
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy-2);
  border: 1px solid var(--navy-3);
  border-radius: var(--radius);
  overflow: hidden;
}
.stack__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--navy-3);
}
.stack__row:last-of-type { border-bottom: 0; }
.stack__what { min-width: 0; }
.stack__what h3 { margin: 0 0 4px; font-size: 1.02rem; }
.stack__what p { margin: 0; font-size: .9rem; color: #9FB2C4; }
.stack__val { flex-shrink: 0; font-weight: 700; color: var(--gold-soft); white-space: nowrap; font-size: .95rem; padding-top: 2px; }
.stack__sum {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 26px 28px;
  background: rgba(233, 169, 28, .10);
}
.stack__sum .lbl { font-size: .95rem; color: #C9D6E2; }
.stack__sum .old { text-decoration: line-through; color: #8FA5B8; font-weight: 600; margin-right: 12px; }
.stack__sum .new { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold-soft); }
.offer__cta { text-align: center; margin-top: 40px; }

/* ---------- Referenzen ---------- */
.work { background: var(--surface); }
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.work-grid > * { min-width: 0; }
.site-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.site-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* Mini-Browser-Mockup (rein CSS — jede Karte mit den Farben des Projekts) */
.mock { padding: 14px 14px 0; background: linear-gradient(180deg, #EDF2F7, #E3EAF1); }
.mock__win { border-radius: 10px 10px 0 0; overflow: hidden; box-shadow: 0 -6px 22px rgba(15,36,56,.12); }
.mock__bar { display: flex; gap: 5px; padding: 8px 10px; background: #CBD6E0; }
.mock__bar i { width: 8px; height: 8px; border-radius: 50%; background: #A5B4C2; }
.mock__body { height: 128px; padding: 16px 18px; }
.mock__body .m-eyebrow { width: 42%; height: 6px; border-radius: 3px; opacity: .65; margin-bottom: 10px; }
.mock__body .m-h { width: 78%; height: 13px; border-radius: 4px; margin-bottom: 7px; }
.mock__body .m-h2 { width: 58%; height: 13px; border-radius: 4px; margin-bottom: 14px; }
.mock__body .m-btn { width: 96px; height: 22px; border-radius: 11px; }
.mock__shot { width: 100%; height: auto; display: block; }
.site-card__txt { padding: 20px 22px 22px; }
.site-card__txt h3 { margin-bottom: 4px; }
.site-card__txt p { margin: 0 0 10px; font-size: .92rem; }
.site-card__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: .74rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-m);
}
.chip--score { background: #E8F3E9; border-color: #CBE3CD; color: #205723; }
.chip--live { background: #FDF3DC; border-color: #F2DFB0; color: #7A5311; }

/* ---------- Testimonials ---------- */
.quotes { background: var(--paper); }
.quote-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 960px; margin: 0 auto; }
.quote-grid > * { min-width: 0; }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  position: relative;
}
.quote::before {
  content: '\201E';
  position: absolute; top: 2px; left: 20px;
  font-family: var(--serif);
  font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: .5;
}
.quote p { font-size: 1.02rem; color: var(--ink); font-style: italic; margin: 14px 0 18px; }
.quote footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.quote cite { font-style: normal; font-weight: 700; color: var(--ink); font-size: .93rem; }
.quote cite small { display: block; font-weight: 500; color: var(--ink-m); }
.stars { color: var(--gold-deep); font-size: .95rem; letter-spacing: 2px; white-space: nowrap; }

/* ---------- Ablauf ---------- */
.process { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; counter-reset: step; }
.steps > * { min-width: 0; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step__num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: .93rem; }
.step .step__time { display: inline-block; margin-top: 12px; font-size: .78rem; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Garantien ---------- */
.guarantee { background: var(--navy); color: #C9D6E2; }
.guarantee h2 { color: #fff; }
.guarantee .section-head p { color: #AEBFCE; }
.g-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.g-grid > * { min-width: 0; }
.g-card {
  background: var(--navy-2);
  border: 1px solid var(--navy-3);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.g-card--main { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 18px 40px rgba(0,0,0,.3); }
.g-card__badge {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(233,169,28,.14);
  color: var(--gold-soft);
}
.g-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.g-card p { font-size: .95rem; color: #AEBFCE; margin: 0; }
.g-card p strong { color: var(--gold-soft); }

/* ---------- Preis ---------- */
.pricing { background: var(--paper); }
.price-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start; max-width: 980px; margin: 0 auto; }
.price-wrap > * { min-width: 0; }
.price-card {
  background: var(--navy);
  color: #C9D6E2;
  border-radius: var(--radius);
  padding: 42px 38px;
  box-shadow: var(--shadow);
}
.price-card .eyebrow { color: var(--gold-soft); }
.price-card__num { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; color: #fff; line-height: 1; margin: 6px 0 4px; }
.price-card__num small { font-size: 1.4rem; color: var(--gold-soft); font-family: var(--sans); font-weight: 600; }
.price-card__sub { font-size: .93rem; color: #9FB2C4; margin-bottom: 24px; }
.price-card ul { list-style: none; margin: 0 0 28px; padding: 0; }
.price-card li { padding: 9px 0 9px 32px; position: relative; font-size: .97rem; border-bottom: 1px solid var(--navy-3); }
.price-card li:last-child { border-bottom: 0; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold);
  clip-path: none;
}
.price-card li::after {
  content: ''; position: absolute; left: 5px; top: 17px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}
.compare { padding-top: 8px; }
.compare h3 { font-size: 1.3rem; font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
.compare-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.compare-item:last-child { border-bottom: 0; }
.compare-item h4 { margin: 0 0 4px; font-size: .98rem; color: var(--ink); }
.compare-item p { margin: 0; font-size: .92rem; }

/* ---------- Wachstums-Begleitung (2. Angebot) ---------- */
.growth {
  background:
    radial-gradient(700px 340px at 90% 0%, rgba(233,169,28,.10), transparent 60%),
    var(--paper);
  border-top: 1px solid var(--line);
}
.growth-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.growth-grid > * { min-width: 0; }
.growth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.growth-card h3 { margin-bottom: 8px; }
.growth-card p { margin: 0; font-size: .93rem; }
.growth .offer__cta .btn--ghost { border-color: var(--ink); color: var(--ink); }
.growth .offer__cta .btn--ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

/* ---------- Über mich ---------- */
.about { background: var(--surface); }
.about__grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: center; }
.about__grid > * { min-width: 0; }
.about__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(340px 300px at 70% 20%, rgba(233,169,28,.25), transparent 65%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  display: grid; place-items: center;
  color: var(--gold-soft);
  position: relative;
  overflow: hidden;
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.about__visual .initials { font-family: var(--serif); font-size: 6rem; font-weight: 700; opacity: .9; }
.about__visual .hint {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-size: .75rem; color: #8FA5B8; text-align: center;
}
.about__txt h2 { text-align: left; }
.about__facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__list { max-width: 780px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--gold-deep);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details[open] { border-color: var(--gold); }
.faq .faq__a { padding: 0 22px 20px; font-size: .97rem; }
.faq .faq__a p { margin: 0 0 .6em; }
.faq .faq__a p:last-child { margin: 0; }

/* ---------- Kontakt ---------- */
.contact { background: var(--navy); color: #C9D6E2; }
.contact h2 { color: #fff; }
.contact .section-head p { color: #AEBFCE; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact__grid > * { min-width: 0; }
.contact__info h3 { color: #fff; }
.contact__ways { list-style: none; margin: 26px 0; padding: 0; }
.contact__ways li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--navy-3); }
.contact__ways li:last-child { border-bottom: 0; }
.contact__ways .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--navy-2); color: var(--gold-soft);
}
.contact__ways strong { display: block; color: #fff; font-size: .95rem; }
.contact__ways a { color: var(--gold-soft); text-decoration: none; font-size: .95rem; }
.contact__ways a:hover { text-decoration: underline; }
.contact__ways span.sub { font-size: .88rem; color: #9FB2C4; }

.form {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.form h3 { color: var(--ink); margin-bottom: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__row > * { min-width: 0; }
.form label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin: 0 0 5px; }
.form .field { margin-bottom: 15px; }
.form input[type=text], .form input[type=email], .form input[type=tel],
.form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--sans);
  font-size: .97rem;
  color: var(--ink);
  background: var(--surface);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--ink-m); margin: 4px 0 18px; }
.form .consent-row input { margin-top: 3px; }
.form .consent-row a { color: var(--gold-deep); }
.form button[type=submit] { width: 100%; justify-content: center; border: 0; }
.form__status { margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-s); font-size: .93rem; font-weight: 600; }
.form__status.is-ok  { background: #E8F3E9; color: #205723; }
.form__status.is-err { background: #FBE9E7; color: #8C1D18; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { background: #0B1C2C; color: #8FA5B8; padding: 40px 0; font-size: .88rem; }
.footer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.footer a { color: #C9D6E2; text-decoration: none; margin-left: 18px; }
.footer a:hover { color: var(--gold-soft); }
.footer a:first-child { margin-left: 0; }

/* ---------- Cookie-Consent (nur aktiv, wenn Tracking-IDs gesetzt) ---------- */
.consent {
  position: fixed; z-index: 90;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 620px; margin: 0 auto;
  background: #fff; color: var(--ink-m);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 20px 22px;
}
.consent p { margin: 0 0 14px; font-size: .9rem; }
.consent__btns { display: flex; gap: 10px; }
.consent__btns .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: .92rem; }
.consent__btn-no { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.consent__btn-ok { background: var(--gold); color: var(--navy); }

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

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards-3, .g-grid, .work-grid, .growth-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__grid { grid-template-columns: 1fr; gap: 30px; }
  .about__visual { max-width: 380px; }
  .price-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  section { padding: 64px 0; }
  .nav__links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy);
    padding: 10px 24px 20px;
    box-shadow: 0 18px 30px rgba(0,0,0,.35);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--navy-2); }
  .nav__links a.nav__cta { margin-top: 14px; text-align: center; justify-content: center; display: inline-flex; border-bottom: 0; }
  .header { background: rgba(15, 36, 56, .96); }
  .nav__toggle { display: block; }
  .hero { padding: 130px 0 70px; }
  .hero__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 14px; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cards-3, .g-grid, .work-grid, .growth-grid, .steps, .quote-grid, .form__row { grid-template-columns: 1fr; }
  .stack__row { flex-direction: column; gap: 6px; }
  .stack__sum .new { font-size: 1.6rem; }
  .btn--big { width: 100%; justify-content: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
