/* ============================================================
   SICHER-UNTERWEGS – Website 2.0
   Grünes Markensystem aus Logo · Foto-first · Familienfreundlich & Unternehmerisch
   ============================================================ */

:root {
  /* Logofarben */
  --green:        #5faa24;   /* Logo-Hauptgrün */
  --green-dark:   #2e5f0c;   /* Logo-Dunkelgrün / Schrift */
  --green-mid:    #4a8c1a;
  --green-light:  #edf7e1;
  --green-xlight: #f5fbee;

  /* Kein Fremdakzent – alles im Grün-System */

  /* Neutral */
  --cream:        #fdfcf8;
  --white:        #ffffff;
  --bg-alt:       #f7faf3;
  --text:         #1c2a0e;
  --text-lt:      #526040;
  --text-muted:   #8a9e78;
  --border:       #cce3a8;

  --shadow:       0 2px 16px rgba(46,95,14,.09);
  --shadow-md:    0 4px 24px rgba(46,95,14,.13);
  --shadow-lg:    0 12px 48px rgba(46,95,14,.18);
  --radius:       8px;
  --radius-lg:    14px;
  --max:          1160px;
  --font:         'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typografie ── */
h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.3rem); font-weight: 700; line-height: 1.18; letter-spacing: -.01em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-lt); line-height: 1.7; }

/* ── Layout ── */
.container  { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt   { background: var(--bg-alt); }
.section--cream { background: var(--cream); }
.section-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.section-title { color: var(--text); margin-bottom: 16px; }
.section-sub   { font-size: 1.05rem; max-width: 620px; color: var(--text-lt); line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; margin-bottom: 44px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; transition: all .2s;
  white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(46,95,14,.32); }
.btn--green   { background: var(--green-dark); color: #fff; }
.btn--green:hover { background: #1f4208; transform: translateY(-1px); }
.btn--outline { border: 2px solid var(--green-dark); color: var(--green-dark); }
.btn--outline:hover { background: var(--green-dark); color: #fff; }
.btn--white   { background: #fff; color: var(--green-dark); }
.btn--white:hover { background: var(--green-light); }
.btn--ghost   { border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--lg      { padding: 16px 36px; font-size: 1rem; }

/* ── Tags ── */
.tag {
  display: inline-block; padding: 5px 14px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.tag--green  { background: var(--green-light); color: var(--green-dark); }
.tag--dark   { background: var(--green-dark); color: #fff; }


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 70px;
}
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .88rem; font-weight: 600; color: var(--text-lt); transition: color .15s; }
.nav__links a:hover { color: var(--green-dark); }
.nav__cta { margin-left: 8px; padding: 10px 22px; font-size: .88rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .25s; border-radius: 2px; }
.nav__mobile {
  display: none; background: var(--white); padding: 20px 24px 28px;
  border-top: 1px solid var(--border); box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.nav__mobile a { display: block; color: var(--text-lt); padding: 11px 0; font-size: .97rem; font-weight: 600; border-bottom: 1px solid var(--border); }
.nav__mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero { padding-top: 70px; background: var(--cream); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 124px);
  max-width: var(--max); margin: 0 auto; align-items: center;
}
.hero__text { padding: 60px 56px 60px 24px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green-dark);
  border-radius: 20px; padding: 6px 16px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__title { color: var(--text); margin-bottom: 18px; }
.hero__title span { color: var(--green); }
.hero__sub { font-size: 1.08rem; margin-bottom: 28px; max-width: 480px; }
.hero__checks { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.hero__check {
  display: flex; align-items: center; gap: 12px;
  font-size: .93rem; color: var(--text); font-weight: 500;
}
.hero__check-dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--green); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero__check-dot svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__visual {
  position: relative; height: 100%;
  background: linear-gradient(145deg, var(--green-dark) 0%, #1e4708 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: 60px 40px;
  gap: 24px;
}
.hero__visual::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(95,170,36,.12); pointer-events: none;
}
.hero__book {
  position: relative; z-index: 1; max-width: 320px; width: 100%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,.45);
  transform: rotate(-1.5deg);
  transition: transform .35s;
}
.hero__book:hover { transform: rotate(0deg) scale(1.02); }
.hero__book img { width: 100%; display: block; }
.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.hero__chip {
  background: rgba(255,255,255,.13); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 12px 16px; text-align: center; color: #fff;
}
.hero__chip-num   { font-size: 1.5rem; font-weight: 800; line-height: 1; color: #a8e07a; }
.hero__chip-label { font-size: .7rem; color: rgba(255,255,255,.7); margin-top: 3px; }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__text  { padding: 48px 24px 36px; }
  .hero__visual { padding: 44px 24px 52px; min-height: 400px; }
}


/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar { background: var(--green); padding: 18px 0; }
.trust-bar__inner {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  justify-content: center; align-items: center;
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: #fff; font-size: .87rem; font-weight: 600; }
.trust-dot  { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.45); flex-shrink: 0; }


/* ══════════════════════════════════════════
   BÜCHER SHOWCASE
══════════════════════════════════════════ */
.buecher-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 0; }
.buch-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: box-shadow .25s, transform .25s;
}
.buch-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.buch-card__img { height: 260px; overflow: hidden; }
.buch-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s; }
.buch-card:hover .buch-card__img img { transform: scale(1.05); }
.buch-card__body { padding: 22px 24px 26px; }
.buch-card__tag  { margin-bottom: 10px; }
.buch-card__title { color: var(--text); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.buch-card__desc  { font-size: .87rem; }
.buch-card__highlight { font-size: .82rem; color: var(--green-dark); font-weight: 600; background: var(--green-light); border-radius: 6px; padding: 8px 12px; margin-top: 10px; line-height: 1.5; }
.buch-card__link  { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: .85rem; font-weight: 700; margin-top: 14px; transition: color .15s; }
.buch-card__link:hover { color: var(--green-dark); }
@media (max-width: 700px) { .buecher-grid { grid-template-columns: 1fr; } }
@media (max-width: 960px) and (min-width: 701px) { .buecher-grid { grid-template-columns: 1fr 1fr; } }


/* ══════════════════════════════════════════
   REICHWEITE – FOTO-FEATURE SPLIT
══════════════════════════════════════════ */
.reichweite-split {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-top: 44px;
}
.reichweite-photo { position: relative; min-height: 500px; }
.reichweite-photo img { width: 100%; height: 100%; object-fit: cover; }
.reichweite-content {
  background: var(--green-dark); padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.reichweite-content .section-eyebrow { color: #a8e07a; }
.reichweite-content h2 { color: #fff; margin-bottom: 14px; }
.reichweite-content > p { color: rgba(255,255,255,.78); margin-bottom: 28px; }
.reichweite-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.r-stat {
  background: rgba(255,255,255,.08); border-radius: 8px; padding: 16px;
  border: 1px solid rgba(255,255,255,.1); min-width: 0; overflow: hidden;
}
.r-stat__num   { font-size: 1.8rem; font-weight: 800; color: #a8e07a; line-height: 1; }
.r-stat__label { font-size: .76rem; color: rgba(255,255,255,.62); margin-top: 4px; }
.reichweite-channels { display: flex; flex-direction: column; gap: 10px; }
.r-channel {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
}
.r-channel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
@media (max-width: 760px) {
  .reichweite-split { grid-template-columns: 1fr; }
  .reichweite-photo { min-height: 280px; }
  .reichweite-content { padding: 38px 28px; min-width: 0; width: 100%; box-sizing: border-box; }
  .r-stat { padding: 12px; }
  .r-stat__num { font-size: 1.4rem; }
}


/* ══════════════════════════════════════════
   WARUM – FOTOKARTEN
══════════════════════════════════════════ */
.warum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
.warum-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: box-shadow .25s, transform .25s;
}
.warum-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.warum-card__photo { height: 200px; overflow: hidden; position: relative; }
.warum-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.warum-card:hover .warum-card__photo img { transform: scale(1.06); }
.warum-card__num {
  position: absolute; top: 12px; left: 12px;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.warum-card__body { padding: 22px 22px 26px; }
.warum-card__title { color: var(--text); margin-bottom: 8px; font-size: 1rem; font-weight: 700; }
.warum-card__desc  { font-size: .87rem; }
@media (max-width: 700px) { .warum-grid { grid-template-columns: 1fr; } }
@media (max-width: 960px) and (min-width: 701px) { .warum-grid { grid-template-columns: 1fr 1fr; } }


/* ══════════════════════════════════════════
   ANZEIGENPREISE
══════════════════════════════════════════ */
.preise-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
@media (max-width: 960px) and (min-width: 601px) { .preise-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .preise-cards { grid-template-columns: 1fr; } }
.preis-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
  background: var(--white); position: relative;
}
.preis-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.preis-card.featured { border-color: var(--green-dark); }
.preis-card__badge {
  position: absolute; top: -1px; right: 18px;
  background: var(--green-dark); color: #fff; font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 0 0 6px 6px; letter-spacing: .06em; text-transform: uppercase;
}
.preis-card__head { padding: 22px 22px 14px; background: var(--bg-alt); }
.preis-card__format { font-size: .78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.preis-card__sub { font-size: .82rem; color: var(--text-lt); font-style: italic; margin-bottom: 10px; line-height: 1.4; }
.preis-card__price { display: flex; align-items: baseline; gap: 8px; }
.preis-card__price .now { font-size: 2rem; font-weight: 800; color: var(--green-dark); }
.preis-card__price .was { font-size: .9rem; text-decoration: line-through; color: var(--text-muted); }
.preis-card__netto { font-size: .73rem; color: var(--text-muted); margin-top: 2px; }
.preis-card__body { padding: 18px 22px 22px; }
.preis-card__body ul { display: flex; flex-direction: column; gap: 7px; }
.preis-card__body li { font-size: .86rem; display: flex; align-items: flex-start; gap: 8px; }
.preis-card__body li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.preis-card .btn { margin-top: 18px; width: 100%; justify-content: center; }
.preise-scarcity {
  text-align: center;
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 28px;
  font-size: .88rem;
  color: #7a5800;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}
.preise-scarcity strong { font-weight: 700; }

.preise-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--green-light);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
}

.preise-note { margin-top: 20px; padding: 16px 20px; background: var(--green-light); border-radius: var(--radius); border-left: 3px solid var(--green); }
.preise-note p { font-size: .87rem; color: var(--text); }


/* ══════════════════════════════════════════
   PARTNER-VORTEILE (Polizeiauto-Foto + Liste)
══════════════════════════════════════════ */
.vorteile-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vorteile-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.vorteile-photo img { width: 100%; display: block; }
.vorteile-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.vorteil { display: flex; gap: 16px; align-items: flex-start; }
.vorteil__line { width: 3px; height: 100%; background: var(--green-light); border-radius: 2px; flex-shrink: 0; margin-top: 4px; min-height: 40px; }
.vorteil h4 { color: var(--text); margin-bottom: 3px; font-size: .97rem; }
.vorteil p  { font-size: .87rem; }
@media (max-width: 760px) { .vorteile-split { grid-template-columns: 1fr; gap: 32px; } }


/* ══════════════════════════════════════════
   VIDEO ADD-ON
══════════════════════════════════════════ */
.video-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-top: 52px;
}
.video-banner__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-banner__text {
  background: var(--green-dark); padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.video-banner__text .section-eyebrow { color: #a8e07a; }
.video-banner__text h3  { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.video-banner__socials { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.video-banner__socials svg { width: 24px; height: 24px; color: rgba(255,255,255,.75); transition: color .2s; }
.video-banner__socials svg:hover { color: #a8e07a; }
.video-banner__text p   { color: rgba(255,255,255,.78); margin-bottom: 24px; }
.video-banner__price     { font-size: 2.2rem; font-weight: 800; color: #a8e07a; line-height: 1; margin-bottom: 4px; }
.video-banner__price span { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.6); }
.video-banner__netto     { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 24px; }
@media (max-width: 680px) {
  .video-banner { grid-template-columns: 1fr; }
  .video-banner__photo { min-height: 220px; }
  .video-banner__text { padding: 32px 24px; }
}


/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
@media (min-width: 1100px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { text-align: center; }
.team-card__photo {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s; }
.team-card__photo--placeholder { background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.team-card__photo--placeholder span { font-size: 2.2rem; font-weight: 800; color: var(--green); letter-spacing: .05em; }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card__role { font-size: .75rem; color: var(--green); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; }
.team-card__desc { font-size: .82rem; }
@media (max-width: 700px)  { .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 960px) and (min-width: 701px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }


/* ══════════════════════════════════════════
   ÜBER VINCENT
══════════════════════════════════════════ */
.ueber-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: 52px; align-items: center;
  max-width: 900px; margin: 52px auto 0;
}
.ueber-photo {
  width: 220px; height: 280px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); flex-shrink: 0;
}
.ueber-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ueber-role { font-size: .95rem; font-weight: 700; color: var(--green); margin-bottom: 16px; }
.ueber-text p   { margin-bottom: 12px; }
.ueber-text blockquote {
  margin-top: 18px; padding: 16px 20px; border-left: 3px solid var(--green);
  background: var(--green-light); border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--green-dark); font-weight: 600; font-size: .93rem;
}
@media (max-width: 640px) {
  .ueber-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .ueber-photo { width: 180px; height: 220px; margin: 0 auto; }
  .ueber-text blockquote { text-align: left; }
}


/* ══════════════════════════════════════════
   ONLINE-AUSGABEN
══════════════════════════════════════════ */
.ausgaben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
@media (max-width: 700px) { .ausgaben-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
.ausgabe-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow .2s, transform .2s; background: var(--white);
}
.ausgabe-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ausgabe-card__img { height: 180px; overflow: hidden; }
.ausgabe-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .35s; }
.ausgabe-card:hover .ausgabe-card__img img { transform: scale(1.05); }
.ausgabe-card__body { padding: 14px 16px 18px; }
.ausgabe-card__title { font-size: .93rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ausgabe-card__link  { color: var(--green); font-size: .83rem; font-weight: 700; }
.ausgabe-card__link:hover { color: var(--green-dark); }


/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%; text-align: left; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: .95rem; font-weight: 600; color: var(--text); background: var(--white);
  transition: background .15s;
}
.faq-question:hover { background: var(--green-xlight); }
.faq-item.open .faq-question { background: var(--green-xlight); color: var(--green-dark); }
.faq-icon { font-size: 1.4rem; color: var(--green); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: .9rem; }


/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 0; text-align: center;
}
.cta-band .section-eyebrow { color: #a8e07a; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 540px; margin-inline: auto; margin-bottom: 32px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }


/* ══════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.kontakt-info h2 { color: var(--text); margin-bottom: 14px; }
.kontakt-info p  { margin-bottom: 18px; }
.contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .92rem; color: var(--green-dark); font-weight: 600; }
.kontakt-reply { font-size: .85rem; color: var(--text-muted); margin-bottom: 6px !important; }
.kontakt-socials { display: flex; gap: 14px; margin: 16px 0; }
.kontakt-socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); transition: background .2s, color .2s; }
.kontakt-socials a:hover { background: var(--green); color: #fff; }
.kontakt-socials svg { width: 18px; height: 18px; }
.kontakt-scarcity { margin-top: 20px; padding: 10px 16px; background: #fff8e6; border: 1px solid #f0c040; border-radius: var(--radius); font-size: .84rem; font-weight: 700; color: #7a5800; }
.form-trust { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 12px 0 8px; font-size: .82rem; color: var(--green-dark); font-weight: 600; }
.feedback-box {
  background: var(--green-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; margin-top: 28px;
}
.feedback-box h4 { color: var(--text); margin-bottom: 6px; }
.feedback-box p  { font-size: .86rem; margin-bottom: 14px; }

.kontakt-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md);
}
.kontakt-form h3 { color: var(--text); margin-bottom: 22px; font-size: 1.15rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .83rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font: inherit; font-size: .9rem;
  color: var(--text); background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(95,170,36,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; font-weight: 700; }
.form-note { font-size: .76rem; color: var(--text-muted); margin-top: 10px; text-align: center; }
@media (max-width: 720px) { .kontakt-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--green-dark); color: rgba(255,255,255,.7); padding: 60px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer__brand img { height: 60px; margin-bottom: 16px; }
.footer__brand p { font-size: .86rem; line-height: 1.7; max-width: 260px; color: #fff; }
.footer__col h5 { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a  { display: block; font-size: .85rem; margin-bottom: 9px; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__col span { display: block; font-size: .82rem; margin-bottom: 6px; color: rgba(255,255,255,.55); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer__bottom p { font-size: .8rem; color: #fff; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: .8rem; }
.footer__bottom-links a:hover { color: #fff; }
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer__inner { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; align-items: flex-start; } }


/* ══════════════════════════════════════════
   STICKY CTA (Mobile)
══════════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--green-dark); padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-cta p { color: #fff; font-size: .88rem; font-weight: 600; }
.sticky-cta .btn { padding: 10px 18px; font-size: .85rem; }
@media (min-width: 901px) { .sticky-cta { display: none; } }


/* ══════════════════════════════════════════
   MOBILE OPTIMIERUNGEN
══════════════════════════════════════════ */
@media (max-width: 900px) { body { padding-bottom: 64px; } }

@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .cta-band { padding: 52px 0; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .cta-band__btns { flex-direction: column; align-items: center; }
  .cta-band__btns .btn { width: 100%; max-width: 340px; justify-content: center; }
  .kontakt-form { padding: 24px 18px; }
  .footer { padding: 44px 0 20px; }
}

/* ── PRÄVENTIONSPARTNER TICKER ── */
.partner-ticker {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.partner-ticker__label {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.partner-ticker__wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partner-ticker__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ticker-rtl 110s linear infinite;
}

.partner-ticker__track img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  flex-shrink: 0;
}

/* ── VERBREITUNGS-GALERIE ── */
.verbreitungs-galerie {
  background: var(--bg-alt);
  padding: 40px 0 36px;
}

.verbreitungs-galerie__label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 24px;
}

.verbreitungs-galerie__sub {
  text-align: center;
  font-size: .95rem;
  color: var(--text-lt);
  margin-bottom: 24px;
}

.verbreitungs-galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.verbreitungs-galerie__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s;
}

.verbreitungs-galerie__grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .verbreitungs-galerie__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .verbreitungs-galerie__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── KUNDEN CAROUSEL ── */
.kunden-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.kunden-carousel__track {
  display: flex;
  transition: transform .4s ease;
}

.kunden-carousel__track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.kunden-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--green-dark);
  box-shadow: var(--shadow);
  transition: background .2s;
  z-index: 2;
}

.kunden-carousel__btn:hover { background: #fff; }
.kunden-carousel__btn--prev { left: 12px; }
.kunden-carousel__btn--next { right: 12px; }

.kunden-carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.kunden-carousel__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .2s;
}

.kunden-carousel__dots span.active { background: #fff; }

@keyframes ticker-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Community ── */
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.community-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-lt);
  margin-bottom: 20px;
}

.community-text p:last-child { margin-bottom: 0; }

.community-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.community-images img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .community-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .community-images {
    grid-template-columns: 1fr 1fr;
  }
  .community-images img:last-child {
    grid-column: 1 / -1;
  }
}

