/* ===================================================================
   Technikretter – Stylesheet
   Premium, cleanes Design im Stil moderner B2B-/Service-Websites
   =================================================================== */

/* ---------- Schriften (lokal gehostet, DSGVO-freundlich) ---------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/manrope.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('assets/fonts/sora.woff2') format('woff2');
}

:root {
  /* Farben – abgeleitet aus dem Technikretter-Logo (dunkles Blau + Grün) */
  --bg:        #ffffff;
  --bg-alt:    #f2f5fb;
  --ink:       #0b1538;   /* dunkles Logo-Blau für Text */
  --ink-soft:  #44506b;
  --line:      #e1e6f1;

  --brand:     #4faf2c;   /* Logo-Grün = Aktion / sofortige Hilfe */
  --brand-dk:  #3c8a20;
  --brand-tint:#eaf6e2;

  --blue:      #15299c;   /* Logo-Blau (Verläufe / Akzente) */
  --navy:      #0a1742;   /* dunkelstes Logo-Blau (Hero, Footer) */
  --navy-2:    #0e2060;

  /* Form & Effekte */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 50px -20px rgba(11,18,32,.25);
  --shadow-sm: 0 8px 24px -12px rgba(11,18,32,.22);
  --maxw:      1180px;

  --font:      'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display:   'Sora', var(--font);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--display); line-height: 1.12; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #062b0e; box-shadow: 0 12px 28px -10px rgba(79,175,44,.55); }
.btn--primary:hover { background: var(--brand-dk); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.25); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.1rem; font-size: .92rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand-dk); transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #c8d0e2; font-size: .85rem; }
.topbar__inner { display: flex; gap: 1.75rem; justify-content: center; align-items: center; height: 40px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.topbar__link { color: #fff; font-weight: 600; }
.topbar__link:hover { color: var(--brand); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: 0 8px 30px -18px rgba(11,18,32,.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1.5rem; }

.logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.03em; }
.logo__img { width: 64px; height: auto; display: block; }
.logo__text strong { color: var(--brand-dk); font-weight: 800; }
.logo--light .logo__text { color: #fff; }
.logo--light .logo__img {
  box-sizing: content-box;
  background: #fff;
  padding: 6px 10px;
  border-radius: 11px;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,.5);
}
.logo--light .logo__text strong { color: var(--brand); }

.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav__link { font-weight: 600; color: var(--ink-soft); position: relative; padding: .25rem 0; white-space: nowrap; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--brand); transition: width .2s ease; }
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }
.nav__link--accent {
  color: var(--brand-dk); font-weight: 700; border: 1.5px solid var(--brand);
  border-radius: 999px; padding: .35rem .9rem; white-space: nowrap; flex-shrink: 0;
}
.nav__link--accent::after { display: none; }
.nav__link--accent:hover { background: var(--brand-tint); color: var(--brand-dk); }
.nav__link--mobile-cta { display: none; } /* nur im mobilen Klappmenü sichtbar */

.header__actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(79,175,44,.26), transparent 60%),
    radial-gradient(820px 500px at 6% 112%, rgba(33,58,168,.45), transparent 55%),
    linear-gradient(160deg, #0a1742 0%, #0e2060 58%, #0a1742 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(900px 500px at 70% 0%, #000, transparent 75%);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(79,175,44,.16), transparent 60%),
    linear-gradient(90deg, rgba(7,15,46,.7) 0%, rgba(7,15,46,.28) 48%, rgba(7,15,46,.12) 100%),
    linear-gradient(160deg, rgba(8,18,54,.9) 0%, rgba(9,20,60,.8) 50%, rgba(7,14,44,.95) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 92px 24px 104px; }
.hero__content { max-width: 720px; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1.1rem;
}
.hero .eyebrow { color: #8be86a; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 800; }
.hero__title .grad { background: linear-gradient(110deg, #5aa6ff, #7fe34c); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #c3cce0; max-width: 600px; margin: 1.5rem 0 2.2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; }
.hero__trust li { font-size: .95rem; color: #aab4cd; }
.hero__trust strong { display: block; font-family: var(--display); font-size: 1.5rem; color: #fff; }

/* Google-Bewertungs-Badge im Hero */
.hero__rating {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 2.6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  padding: .65rem 1.15rem; border-radius: 999px; color: #fff;
  transition: background .2s ease, transform .15s ease, border-color .2s ease;
}
.hero__rating:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }
.hero__rating-stars { color: #ffb400; letter-spacing: 2px; font-size: 1.05rem; }
.hero__rating-text { font-size: .95rem; color: #d8deec; }
.hero__rating-text strong { color: #fff; font-weight: 700; }

/* ---------- Stat band ---------- */
.band { background: var(--navy-2); color: #fff; border-top: 1px solid rgba(255,255,255,.07); }
.band__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding: 34px 24px; }
.stat { text-align: center; padding: .5rem; }
.stat__num { display: block; font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--brand); }
.stat__label { font-size: .9rem; color: #aab4cd; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; }
.section__sub { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.section--alt .card { background: #fff; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.7rem;
  border-radius: 15px; background: var(--brand-tint); margin-bottom: 1.2rem;
}
.card__title { font-size: 1.3rem; margin-bottom: .6rem; }
.card__text { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.2rem; }
.card__link { font-weight: 700; color: var(--brand-dk); }
.card__link:hover { color: var(--ink); }
.card--feature { background: linear-gradient(160deg, #0a1742, #16266b); color: #fff; border-color: transparent; }
.card--feature .card__text { color: #c3cce0; }
.card--feature .card__icon { background: rgba(79,175,44,.2); }
.card--feature .card__link { color: var(--brand); }
.card__badge {
  position: absolute; top: 20px; right: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; background: var(--brand); color: #04361f; padding: .3rem .7rem; border-radius: 999px;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.steps.steps--detailed { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.steps--detailed .step { padding: 26px 18px; }
.step__text strong { color: var(--ink); font-weight: 700; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.step__num { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--brand); display: block; margin-bottom: .8rem; }
.step__title { font-size: 1.2rem; margin-bottom: .5rem; overflow-wrap: break-word; hyphens: auto; }
.steps--detailed .step__title { font-size: 1.1rem; }
.step__text { color: var(--ink-soft); font-size: .98rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about + .about { margin-top: 72px; }
.about--flip { grid-template-columns: 1.05fr 1fr; }
.about__photo { margin: 0; position: relative; }
.about__photo--chips .about__chip { position: absolute; }
.about__photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__heading { font-size: 1.35rem; margin: 1.7rem 0 .6rem; }
.about__content .about__heading:first-child { margin-top: 0; }
.about__statement { font-weight: 700; color: var(--ink); font-size: 1.12rem; margin: 1.4rem 0 1.6rem; }
.about__visual {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(160deg, #0a1742, #16266b);
  display: grid; place-items: center; box-shadow: var(--shadow); overflow: hidden;
}
.about__visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 280px at 70% 20%, rgba(79,175,44,.34), transparent 70%);
}
.about__emoji { font-size: 6rem; position: relative; z-index: 1; }
.about__chip {
  position: absolute; z-index: 2; background: #fff; color: var(--ink); font-weight: 700; font-size: .9rem;
  padding: .6rem 1rem; border-radius: 12px; box-shadow: var(--shadow-sm);
}
.about__chip--1 { top: 24px; left: 24px; }
.about__chip--2 { bottom: 24px; right: 24px; color: var(--brand-dk); }
.about__text { color: var(--ink-soft); font-size: 1.08rem; margin: 1.2rem 0 1.6rem; }
.about__heading + .about__text { margin-top: 0; }
.ticks { display: grid; gap: .8rem; margin-bottom: 2rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--ink); font-weight: 500; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand-dk); display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}

/* ---------- Werkstatt-Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery__item {
  margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1/1; box-shadow: var(--shadow-sm); background: var(--bg-alt);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  color: #fff; font-size: .9rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(7,15,40,.78));
}

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.review__stars { color: #ffb400; letter-spacing: 3px; margin-bottom: 1rem; }
.review blockquote { margin: 0 0 1.2rem; font-size: 1.05rem; color: var(--ink); }
.review figcaption { font-weight: 700; color: var(--ink-soft); }
.reviews__cta { text-align: center; margin-top: 44px; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__lead { color: var(--ink-soft); font-size: 1.1rem; margin: 1rem 0 2rem; }
.contact__list { display: grid; gap: 1rem; }
.contact__list li { display: flex; align-items: center; gap: .9rem; font-size: 1.05rem; }
.contact__list a:hover { color: var(--brand-dk); }
.contact__ico { width: 40px; height: 40px; display: grid; place-items: center; background: var(--brand-tint); border-radius: 11px; flex-shrink: 0; }

.contact__direct {
  margin-top: 2rem; background: var(--brand-tint); border: 1px solid rgba(79,175,44,.35);
  border-radius: var(--radius-sm); padding: 1.15rem 1.3rem;
}
.contact__direct p { margin: 0 0 .55rem; color: var(--ink); font-size: 1rem; }
.contact__direct-link { font-weight: 700; color: var(--brand-dk); }
.contact__direct-link:hover { color: var(--ink); }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
/* Honeypot: für Menschen unsichtbar, Bots füllen es aus */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: .8rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-alt); color: var(--ink); transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(79,175,44,.18);
}
.field textarea { resize: vertical; }
.form__note { margin-top: 1rem; font-weight: 600; color: var(--brand-dk); text-align: center; }

/* ---------- Zielgruppen-Weiche ---------- */
.audience__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.audience__card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 36px; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.audience__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.audience__card--b2b { background: linear-gradient(165deg, #0a1742, #16266b); border-color: transparent; color: #fff; }
.audience__icon {
  width: 72px; height: 72px; display: grid; place-items: center; font-size: 2.1rem;
  border-radius: 18px; background: var(--brand-tint); margin-bottom: 1.3rem;
}
.audience__card--b2b .audience__icon { background: rgba(79,175,44,.2); }
.audience__title { font-size: 1.5rem; margin-bottom: .7rem; }
.audience__text { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 1.8rem; max-width: 360px; }
.audience__card--b2b .audience__text { color: #c3cce0; }

/* ---------- B2B-Teaser ---------- */
.b2b {
  position: relative; color: #fff; padding: 92px 0;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(79,175,44,.18), transparent 60%),
    linear-gradient(160deg, #0a1742 0%, #0e2060 60%, #0a1742 100%);
}
.b2b__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.b2b__lead { color: #c3cce0; font-size: 1.12rem; margin: 1.2rem 0 1.8rem; }
.ticks--light li { color: #eaf0fb; }
.ticks--light li::before { background: rgba(79,175,44,.22); color: #8be86a; }
.b2b__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.b2b__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.b2b__stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 26px 20px; text-align: center;
}
.b2b__num { display: block; font-family: var(--display); font-weight: 800; font-size: 1.8rem; color: var(--brand); }
.b2b__label { font-size: .9rem; color: #aab4cd; }

/* ---------- Standort-Karte ---------- */
.map {
  margin-top: 64px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-alt);
}
.map__placeholder { padding: 64px 24px; text-align: center; }
.map__icon { font-size: 2.4rem; display: block; margin-bottom: .8rem; }
.map__title { font-size: 1.5rem; margin-bottom: .4rem; }
.map__address { color: var(--ink-soft); margin: 0 0 1.6rem; }
.map__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.map__note { font-size: .82rem; color: var(--ink-soft); margin-top: 1.4rem; }
.map iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #aab4cd; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 24px 40px; }
.footer__brand p { margin-top: 1rem; max-width: 280px; font-size: .95rem; }

/* Social-Media-Icons */
.social { display: flex; gap: 12px; margin-top: 1.3rem; }
.social a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #c8d0e2;
  transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
}
.social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.footer__col h4 { color: #fff; font-family: var(--font); font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col a, .footer__col span { display: block; color: #aab4cd; margin-bottom: .6rem; font-size: .95rem; }
.footer__col a:hover { color: var(--brand); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__barinner { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-size: .85rem; flex-wrap: wrap; gap: .5rem; }
.footer__legal a { margin-left: 1.2rem; }
.footer__legal a:hover { color: var(--brand); }

/* ---------- Service-Unterseiten ---------- */
.hero--sub .hero__inner { padding: 64px 24px 72px; }
.narrow { max-width: 800px; margin-left: auto; margin-right: auto; }

.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 52px 18px 20px; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 700; color: var(--brand-dk);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 20px 18px; margin: 0; color: var(--ink-soft); }

/* ---------- Legal-Seiten ---------- */
.legal { padding: 56px 0 96px; }
.legal__inner { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 .6rem; }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
.legal p { color: var(--ink-soft); margin: .4rem 0; }
.legal ul { list-style: disc; padding-left: 1.4rem; color: var(--ink-soft); margin: .5rem 0 1rem; }
.legal ul li { margin: .3rem 0; }
.legal a { color: var(--brand-dk); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal__note {
  background: #fff8e6; border: 1px solid #ffe39a; color: #7a5b00 !important;
  padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; margin: 1rem 0 2rem;
}
.legal__meta { margin-top: 2.5rem; font-size: .9rem; }

/* ---------- Reveal-Animation ---------- */
.section__head, .card, .step, .review, .about__content, .about__media, .contact__info, .contact__form, .gallery__item {
  opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease;
}
.is-visible { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .section__head, .card, .step, .review, .about__content, .about__media, .contact__info, .contact__form, .gallery__item { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .hero__video { display: none; }   /* statt Bewegung das Poster/den Verlauf zeigen */
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards, .steps, .reviews, .gallery { grid-template-columns: repeat(2,1fr); }
  .about, .about--flip, .contact__grid, .b2b__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { order: 2; }
  .about + .about { margin-top: 56px; }
  .band__grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .topbar { display: none; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 8px 24px 20px; transform: translateY(-120%);
    transition: transform .3s ease; box-shadow: var(--shadow); max-height: calc(100vh - 74px); overflow: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: .9rem 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav__link--accent { padding: .8rem 1rem; margin-top: .9rem; text-align: center; }
  .nav__link--mobile-cta {
    display: block; background: var(--brand); color: #04361f; font-weight: 700;
    text-align: center; border-radius: 999px; padding: .85rem 1rem;
    margin-top: .9rem; border-bottom: none;
  }
  .nav__link--mobile-cta::after { display: none; }
  .nav-toggle { display: flex; }
  .header__actions .btn--sm { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .cards, .steps, .reviews, .field-row, .audience__grid { grid-template-columns: 1fr; }
  .gallery { gap: 12px; }
  .gallery__item figcaption { font-size: .8rem; padding: 20px 10px 8px; }
  .hero__inner { padding: 64px 24px 72px; }
  .hero__trust { gap: 1.6rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__barinner { flex-direction: column; }
}
