/* ==========================================================================
   VogelSPOT – gemeinsames Stylesheet
   Aus index.html ausgelagert (Design-System aus vogelspot.de abgeleitet).
   Zusätzliche Komponenten für Themen-, FAQ- und Rechtsseiten am Ende.
   ========================================================================== */

/* ===== Fonts (selbst gehostet, DSGVO-konform) =====
   font-display: swap statt optional – "optional" lässt den Browser den Font
   bei jedem frischen Seitenload per Heuristik überspringen (nicht nur beim
   Cache-Status), Zielfont erschien dann erst nach Reload. "swap" tauscht
   den Font zuverlässig ein, sobald er geladen ist (leichtes FOUT statt
   dauerhaft falscher Font). */
@font-face { font-family: 'Titillium Web'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/TitilliumWeb-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Titillium Web'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/TitilliumWeb-SemiBold.woff2') format('woff2'); }
@font-face { font-family: 'Titillium Web'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/TitilliumWeb-Bold.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/Roboto-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/Roboto-Medium.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/Roboto-Bold.woff2') format('woff2'); }

/* ===== Design-Tokens (aus vogelspot.de abgeleitet) ===== */
:root {
  --green: #66c430;        /* Markengrün (Theme, Themenleiste) */
  --green-dark: #55a428;   /* Aktiv-Zustand Themenleiste */
  --green-tint: #eaf7e0;   /* Heller Grünton für Icon-Kacheln, Badges */
  --petrol: #007c9a;       /* Primär-Buttons */
  --petrol-dark: #00637b;
  --dark: #343a40;         /* Überschriften, dunkle Flächen (dezentes Anthrazit statt Blauton) */
  --text: #343a40;         /* Fließtext */
  --text-muted: #5c666e;   /* Meta-Angaben, sekundärer Text */
  --gray-bg: #f3f5f6;      /* Sektionshintergrund */
  --footer-bg: #343a40;
  --white: #ffffff;
  --radius-btn: 8px;
  --radius-card: 10px;
  --shadow-card: 0 1px 3px rgba(0,0,0,.06);
  --shadow-card-hover: 0 6px 16px rgba(0,0,0,.09);
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', -apple-system, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
h1, h2, h3 { font-family: 'Titillium Web', 'Roboto', sans-serif; color: var(--dark); line-height: 1.25; }
h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
a { color: var(--petrol); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; scroll-margin-top: 90px; }
.section-alt { background: var(--gray-bg); }
.section-intro { max-width: 800px; margin: 12px auto 0; text-align: center; }

/* Buttons (Button-Styles der Header-Variante 1b, sitesweit) */
.btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius-btn); font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 1.05rem; text-decoration: none; border: 2px solid transparent; transition: filter .15s ease; cursor: pointer; }
.btn-primary, .btn-green { background: var(--green); border-color: var(--green); color: #122A06; }
.btn-primary:hover, .btn-green:hover { filter: brightness(.94); }
.btn-secondary { background: #fff; border-color: #fff; color: #0E1A10; }
.btn-secondary:hover { filter: brightness(.94); }
.btn-outline { background: transparent; border-color: var(--green); color: #243026; }
.btn-outline:hover { background: var(--green); color: #122A06; }

/* ===== Top-Bar: Login & Registrierung ===== */
.topbar { background: var(--dark); color: var(--white); font-size: .9rem; }
.topbar .container { display: flex; align-items: center; justify-content: flex-end; gap: 22px; padding-top: 7px; padding-bottom: 7px; min-height: 24px; }
.topbar a { color: var(--white); text-decoration: none; font-weight: 500; }
.topbar a:hover { text-decoration: underline; }

/* ===== Header + Hauptnavigation ===== */
.main-nav ul { list-style: none; display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a { display: block; padding: 8px 14px; text-decoration: none; color: var(--dark); font-family: 'Titillium Web', sans-serif; font-weight: 600; font-size: .98rem; border-radius: 6px; transition: background .15s ease, color .15s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--green); color: var(--white); }
.nav-toggle { display: none; background: none; border: 1px solid #d3d8dc; border-radius: 6px; padding: 8px 10px; font-size: 1.2rem; color: var(--dark); }

/* Burger ab 1080px: mit dem langen Reiter "ADR-Schulungsbescheinigung" passt
   das Hauptmenue darunter nicht mehr in eine Zeile und der Sticky-Header
   wuerde zweizeilig werden. */
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid #e6e9ec; box-shadow: 0 8px 16px rgba(0,0,0,.08); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 10px 20px; }
}

/* ===== Navbar neu (Startseite, Header Variante 1b) ===== */
.navbar { background: #fff; border-bottom: 1px solid #E6E6E2; position: sticky; top: 0; z-index: 50; }
.navbar-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 40px; }
.navbar-logo img { height: 38px; width: auto; display: block; }
.navbar .main-nav a { color: #243026; font-size: 15px; font-weight: 500; }
.navbar .main-nav a:hover, .navbar .main-nav a[aria-current="page"] { background: transparent; color: #3e8c1c; }
.navbar .main-nav a:focus-visible { outline: 2px solid #243026; outline-offset: 2px; }

/* Top-Bar: Anmelden/Registrieren als kleine Buttons (Button-Styles der Header-Variante 1b) */
.topbar-cta { padding: 6px 14px; font-size: .85rem; font-weight: 600; border-radius: 6px; text-decoration: none; display: inline-block; font-family: 'Roboto', sans-serif; transition: filter .15s ease; }
.topbar-cta.primary { background: #66C430; color: #122A06; }
.topbar-cta.secondary { background: #fff; color: #0E1A10; }
.topbar-cta:hover { filter: brightness(.94); text-decoration: none; }
.topbar-cta:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 1024px) {
  .navbar-inner { padding: 14px 20px; }
}

/* ===== Hero neu (Header Variante 1b, für alle Seiten mit Foto-Hero) ===== */
.hero-new { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; padding: 0; }
.hero-new-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Innerer Rahmen auf Seitenbreite begrenzt, damit das Panel bei voller
   Bildschirmbreite nicht am Viewport-Rand klebt, sondern am Rand des
   Content-Bereichs (wie Navbar/Container) ausgerichtet bleibt. */
.hero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.hero-panel { margin: 48px 0; max-width: 560px; padding: 40px 40px 44px; display: flex; flex-direction: column; gap: 20px; background: rgba(14,26,16,.9); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border-radius: 12px; }
.hero-panel h1 { color: #fff; font-size: 40px; line-height: 1.15; text-wrap: pretty; text-shadow: none; margin: 0; }
.hero-panel p { color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.6; text-shadow: none; margin: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .hero-inner { padding: 0 24px; }
  .hero-panel { margin: 32px 0; }
  .hero-panel h1 { font-size: 34px; }
}
@media (max-width: 640px) {
  .hero-new { min-height: auto; display: block; }
  .hero-new-bg { position: static; width: 100%; height: 200px; }
  .hero-inner { padding: 0; }
  .hero-panel { margin: 0; border-radius: 0; max-width: none; padding: 32px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ===== Themen-Karten ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 40px; }
.card { background: var(--white); border: 1px solid #e6e9ec; border-radius: var(--radius-card); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform .15s ease, box-shadow .15s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.card img { height: 190px; object-fit: cover; width: 100%; }
.card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-size: 1.25rem; }
.card-body p { font-size: .96rem; flex: 1; }
.card-meta { font-size: .88rem; color: var(--text-muted); }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.card-actions .btn { padding: 8px 20px; font-size: .93rem; }

/* ===== Funktionen ===== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 40px; }
.feature { background: var(--white); border-radius: var(--radius-card); padding: 26px 24px; box-shadow: var(--shadow-card); transition: transform .15s ease, box-shadow .15s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--green-tint); margin-bottom: 16px; }
.feature-icon svg { width: 26px; height: 26px; color: var(--petrol); }
.feature h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature p { font-size: .95rem; color: var(--text-muted); }

/* ===== Schritte ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 40px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 22px; background: var(--gray-bg); border-radius: var(--radius-card); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 22px; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--white); font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: 1.15rem; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .94rem; }

/* ===== Trainer ===== */
.trainer-box { background: var(--dark); color: var(--white); border-radius: var(--radius-card); padding: 44px 40px; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.trainer-box h2 { color: var(--white); margin-bottom: 10px; }
.trainer-box p { max-width: 680px; }
.badge-free { display: inline-block; background: var(--green); color: var(--white); font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: .85rem; padding: 3px 12px; border-radius: 12px; margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase; }

/* ===== FAQ ===== */
.faq-list { max-width: 860px; margin: 36px auto 0; }
.faq-list details { background: var(--white); border: 1px solid #e6e9ec; border-radius: 8px; margin-bottom: 12px; }
.faq-list summary { cursor: pointer; padding: 16px 20px; font-family: 'Titillium Web', sans-serif; font-weight: 600; color: var(--dark); font-size: 1.02rem; list-style: none; position: relative; padding-right: 44px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--green); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list .faq-answer { padding: 0 20px 18px; font-size: .96rem; }
.faq-list .faq-answer p + p { margin-top: 10px; }
.faq-list .faq-answer ul { margin: 10px 0 0 20px; }
.faq-more { text-align: center; margin-top: 22px; }

/* ===== CTA-Band ===== */
.cta-band { background: var(--green); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { max-width: 700px; margin: 0 auto 24px; }
.cta-band .btn-primary { background: var(--white); border-color: var(--white); color: var(--dark); font-weight: 700; }
.cta-band .btn-primary:hover { background: var(--dark); border-color: var(--dark); color: var(--white); filter: none; }

/* Foto-Variante des CTA-Bands (Startseite): Button bleibt Grün/Dunkeltext,
   da hier kein grüner Flächenhintergrund mehr für Kontrast sorgt. */
.cta-band-photo { background: linear-gradient(rgba(10,14,10,.55), rgba(10,14,10,.82)), url('../img/home-vogelspot.jpg') center/cover no-repeat; }
.cta-band-photo .btn-primary { background: var(--green); border-color: var(--green); color: #122A06; font-weight: 600; }
.cta-band-photo .btn-primary:hover { filter: brightness(.94); background: var(--green); border-color: var(--green); color: #122A06; }

/* ===== Footer ===== */
.site-footer { background: #0E1A10; color: rgba(255,255,255,.7); font-size: .93rem; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-top { display: flex; flex-wrap: wrap; gap: 48px; padding: 64px 0 40px; }
.footer-brand { flex: 0 0 260px; }
.footer-logo-box { display: inline-flex; background: #fff; border-radius: 12px; padding: 14px 18px; }
.footer-logo-box img { height: 40px; width: auto; }
.footer-brand p { margin-top: 16px; max-width: 230px; color: rgba(255,255,255,.6); }
.footer-nav-cols { flex: 1 1 480px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer h3 { color: var(--green); font-family: 'Titillium Web', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; text-align: left; font-size: .86rem; color: rgba(255,255,255,.45); }

@media (max-width: 700px) {
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-nav-cols { grid-template-columns: 1fr; }
}

/* Barrierefreiheit */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--dark); color: var(--white); padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--petrol); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ==========================================================================
   Zusätzliche Komponenten für Unterseiten (Themen, FAQ, Recht)
   ========================================================================== */

/* Breadcrumb */
.breadcrumb { background: var(--gray-bg); border-bottom: 1px solid #e6e9ec; font-size: .9rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.breadcrumb li + li::before { content: "›"; color: #9aa2a9; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--dark); }

/* Zweispaltiges Layout: Fließtext + Angebots-Box */
.content-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .content-split { grid-template-columns: 1fr; } }

/* Fließtext-Bereich */
.prose h2 { margin-bottom: 14px; }
.prose h3 { margin: 26px 0 8px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose .lead { font-size: 1.12rem; }
.disclaimer { font-size: .9rem; color: var(--text-muted); border-left: 3px solid #d3d8dc; padding: 4px 0 4px 16px; margin-top: 20px; }

/* Angebots-Box (Preis + CTA), sticky in der Seitenspalte */
.offer-box { background: var(--white); border: 1px solid #e6e9ec; border-radius: var(--radius-card); padding: 26px 24px; box-shadow: 0 1px 3px rgba(0,0,0,.06); position: sticky; top: 92px; }
.offer-box h3 { margin-bottom: 12px; }
.offer-price { font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--dark); line-height: 1.1; }
.offer-price small { display: block; font-size: .85rem; font-weight: 400; color: var(--text-muted); margin-top: 4px; }
.offer-meta { list-style: none; margin: 18px 0; font-size: .93rem; }
.offer-meta li { padding: 7px 0; border-bottom: 1px solid #eef1f3; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.offer-meta li:last-child { border-bottom: 0; }
.offer-meta span { color: var(--text-muted); }
.offer-meta .offer-submeta { flex-basis: 100%; font-size: .78rem; color: var(--text-muted); text-align: right; margin-top: -2px; }
.offer-box .btn { display: block; text-align: center; }

/* Modulliste (Gefahrgut: mehrere ADR-Module) */
.module-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.module { background: var(--white); border: 1px solid #e6e9ec; border-radius: var(--radius-card); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.module h3 { font-size: 1.1rem; }
.module .module-price { font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--dark); }
.module .module-price small { font-size: .82rem; font-weight: 400; color: var(--text-muted); }
.module .module-meta { font-size: .82rem; color: var(--text-muted); margin-top: -4px; }
.module p { font-size: .93rem; flex: 1; }
.module .btn { align-self: flex-start; padding: 8px 20px; font-size: .93rem; }

/* Cross-Sell-Hinweis */
.cross-sell { background: var(--gray-bg); border-radius: var(--radius-card); padding: 20px 24px; margin-top: 28px; font-size: .95rem; }
.cross-sell strong { font-family: 'Titillium Web', sans-serif; }

/* FAQ: Sprungnavigation nach Kategorien */
.faq-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.faq-nav a { text-decoration: none; background: var(--gray-bg); border: 1px solid #e6e9ec; border-radius: 999px; padding: 7px 16px; font-size: .9rem; font-weight: 500; color: var(--dark); }
.faq-nav a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.faq-group { max-width: 860px; margin: 44px auto 0; scroll-margin-top: 90px; }
.faq-group > h2 { text-align: left; padding-bottom: 6px; border-bottom: 2px solid var(--green); }

/* Fachexperten-Box (ersetzt den langen Fachautoren-Disclaimer) */
.expert-box { display: flex; gap: 16px; align-items: flex-start; background: var(--green-tint); border: 1px solid #d3ecc2; border-radius: var(--radius-card); padding: 18px 20px; margin-top: 24px; }
.expert-box .expert-icon { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--white); }
.expert-box .expert-icon svg { width: 24px; height: 24px; color: var(--green-dark); }
.expert-box strong { display: block; font-family: 'Titillium Web', sans-serif; font-size: 1.02rem; color: var(--dark); margin-bottom: 4px; }
.expert-box p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* Themengebiete-Box (Liste der Sachgebiete mit Fragenanzahl) */
.topics-box { background: var(--white); border: 1px solid #e6e9ec; border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 26px 24px; margin-top: 32px; }
.topics-box h3 { margin-bottom: 6px; }
.topics-box .topics-intro { font-size: .93rem; color: var(--text-muted); margin-bottom: 14px; }
.topics-box ul { list-style: none; margin: 0; padding: 0; }
.topics-box li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 9px 0; border-bottom: 1px solid #eef1f3; font-size: .95rem; }
.topics-box li:last-child { border-bottom: 0; }
.topics-box .topic-count { flex: 0 0 auto; font-family: 'Titillium Web', sans-serif; font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.topics-box .topics-summary-list { list-style: none; margin: 4px 0 0; padding: 10px 0 0; border-top: 1px dashed #d3d8dc; }
.topics-box .topics-summary-list li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 9px 0; font-size: .95rem; }

/* "Ihr Weg zum Erfolg": Üben – Testen – Kontrollieren – Austauschen – Bestehen */
.path-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 36px; counter-reset: pathstep; }
.path-step { position: relative; background: var(--white); border: 1px solid #e6e9ec; border-radius: var(--radius-card); padding: 20px 16px 16px; text-align: center; }
.path-step::before { counter-increment: pathstep; content: counter(pathstep); position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--white); font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; }
.path-step h3 { font-size: 1.02rem; margin-bottom: 2px; }
.path-step p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.path-step.path-goal { background: var(--dark); border-color: var(--dark); }
.path-step.path-goal h3 { color: var(--white); }
.path-step.path-goal p { color: rgba(255,255,255,.75); }

/* Preisdarstellung brutto/netto gleichwertig (wie im Shop) */
.offer-price-dual { list-style: none; margin: 0 0 4px; padding: 0; }
.offer-price-dual li { font-family: 'Titillium Web', sans-serif; font-weight: 700; font-size: 1.45rem; color: var(--dark); line-height: 1.3; }
.offer-price-dual li small { font-size: .85rem; font-weight: 400; color: var(--text-muted); margin-left: 6px; }

/* Footer: Marken-Logos in Negativ + Social-Icons */
.footer-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.footer-logos img { height: 34px; width: auto; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); transition: background .15s ease; }
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }

/* Rechtsseiten (Impressum, Datenschutz, Nutzungsbedingungen) */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { margin-bottom: 24px; }
.legal h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 22px; }
.legal li { margin-bottom: 6px; }
.legal address { font-style: normal; }
.notice { background: #fff8e6; border: 1px solid #f0d98a; border-radius: 8px; padding: 16px 20px; margin-bottom: 24px; font-size: .95rem; }

/* ===== App-Showcase: Laptop mit Screenshot-Slider ===== */
.showcase { text-align: center; }
.showcase .section-intro { margin-bottom: 40px; }
.laptop { max-width: 680px; margin: 0 auto; }
.laptop__lid {
  position: relative;
  background: #23282d;
  border-radius: 14px 14px 0 0;
  padding: 14px 14px 20px;
  box-shadow: var(--shadow-card-hover);
}
.laptop__lid::before { /* Kamera */
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: #454c53;
}
.laptop__screen {
  position: relative; aspect-ratio: 146 / 100; width: 100%;
  background: #000; border-radius: 4px; overflow: hidden;
}
.laptop__screen .slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
/* Fallback ohne JS: erste Ansicht sichtbar. JS setzt danach inline transforms. */
.laptop__screen .slide.is-active { transform: translateX(0); }
.laptop__deck { /* Unterteil / Scharnier */
  position: relative; height: 16px; width: 112%; margin-left: -6%;
  background: linear-gradient(#d3d8dc, #b3bbc1);
  border-radius: 0 0 12px 12px;
}
.laptop__deck::after { /* Aussparung */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 6px; background: #9aa2a9; border-radius: 0 0 6px 6px;
}
.showcase-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px;
}
.showcase-dots { display: flex; gap: 10px; }
.showcase-dots button {
  width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%;
  background: #c2c9ce; cursor: pointer; transition: background .2s, transform .2s;
}
.showcase-dots button:hover { background: var(--petrol); }
.showcase-dots button[aria-current="true"] { background: var(--petrol); transform: scale(1.25); }
.showcase-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0; border: 1px solid #c2c9ce; border-radius: 50%;
  background: var(--white); color: var(--petrol); cursor: pointer; transition: border-color .2s, color .2s;
}
.showcase-play:hover { border-color: var(--petrol); color: var(--petrol-dark); }
.showcase-play svg { width: 15px; height: 15px; }
@media (max-width: 600px) { .laptop__deck { height: 12px; } .laptop__lid { padding: 9px 9px 14px; } }
@media (prefers-reduced-motion: reduce) { .laptop__screen .slide { transition: none; } }

