/* ==========================================================================
   smartwatch-fitnesstracker.de – Stylesheet
   Farben & Abstände zentral über CSS-Variablen änderbar (siehe :root)
   ========================================================================== */

:root {
  --navy-950: #070d1a;
  --navy-900: #0b1324;
  --navy-800: #121d36;
  --navy-700: #1c2a4a;
  --lime: #b8f13a;
  --lime-600: #9bd41c;
  --teal: #19c2a8;
  --coral: #ff6b57;

  --bg: #f5f7fa;
  --surface: #ffffff;
  --ink: #0e1726;
  --ink-2: #334055;
  --muted: #5d6879;
  --line: #e3e7ee;

  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 24px;
  --shadow: 0 1px 2px rgba(14, 23, 38, .06), 0 8px 24px rgba(14, 23, 38, .06);
  --shadow-lg: 0 20px 50px rgba(7, 13, 26, .18);

  --container: 1200px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--white { background: var(--surface); }
.section--dark { background: var(--navy-900); color: #dfe6f3; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #a9b4c8; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--lime); color: var(--navy-900); padding: 8px 14px; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  background: transparent; color: inherit; white-space: nowrap;
  transition: transform .15s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--lime); color: var(--navy-900); }
.btn--primary:hover { background: #c9f75f; }
.btn--ghost { border-color: rgba(255,255,255,.25); color: #fff; }
.btn--ghost:hover { border-color: #fff; }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 19, 36, .88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }

.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.logo-mark { width: 38px; height: 38px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.logo-text span { font-size: .72rem; color: #93a0b8; letter-spacing: .06em; text-transform: uppercase; }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.main-nav a {
  display: block; padding: 10px 14px; border-radius: 999px;
  color: #c8d1e1; text-decoration: none; font-weight: 600; font-size: .94rem; white-space: nowrap;
  transition: color .2s, background-color .2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.07); }
.main-nav .nav-cta { margin-left: 8px; }
.main-nav .nav-cta a { background: var(--lime); color: var(--navy-900); }
.main-nav .nav-cta a:hover { background: #c9f75f; color: var(--navy-900); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15); background: transparent; color: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1140px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 72px 0 auto 0;
    background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 12px 16px 24px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .main-nav .nav-cta { margin: 10px 0 0; }
  .main-nav .nav-cta a { text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(25,194,168,.22), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(184,241,58,.12), transparent 60%),
    var(--navy-900);
  color: #dfe6f3;
  padding: clamp(56px, 8vw, 100px) 0 clamp(72px, 9vw, 120px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--lime); }
.hero-lead { font-size: 1.18rem; color: #b6c1d4; max-width: 580px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-badges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-badges li { display: flex; align-items: center; gap: 8px; font-size: .95rem; color: #c8d1e1; }
.hero-badges svg { width: 20px; height: 20px; color: var(--lime); flex: none; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.watch { width: min(100%, 420px); filter: drop-shadow(0 40px 60px rgba(0,0,0,.45)); }
.ring-progress { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: ring-fill 1.8s cubic-bezier(.2,.8,.2,1) forwards; }
.ring-progress.r2 { animation-delay: .2s; }
.ring-progress.r3 { animation-delay: .4s; }
@keyframes ring-fill { to { stroke-dashoffset: var(--offset); } }
.pulse-line { stroke-dasharray: 260; stroke-dashoffset: 260; animation: pulse-draw 2.6s ease-in-out infinite; }
@keyframes pulse-draw { 0% { stroke-dashoffset: 260; } 60%, 100% { stroke-dashoffset: 0; } }

.stat-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(18,29,54,.85); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 10px 14px; border-radius: 14px; color: #fff; font-size: .85rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.stat-chip b { display: block; font-size: 1.05rem; }
.stat-chip small { color: #93a0b8; }
.stat-chip .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.stat-chip .dot svg { width: 18px; height: 18px; }
.chip-1 { top: 12%; left: -2%; }
.chip-2 { bottom: 14%; right: -2%; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .watch { width: min(62%, 280px); }
  .chip-1 { left: 0; } .chip-2 { right: 0; }
  .stat-chip { font-size: .78rem; padding: 8px 10px; }
  .stat-chip b { font-size: .92rem; }
  .stat-chip .dot { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
  .logo-text strong { font-size: .92rem; }
  .logo-text span { display: none; }
  .hero-actions .btn { width: 100%; white-space: normal; }
}

/* ---------- Kategorien ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 28px 24px 24px; text-decoration: none; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cat-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.cat-icon svg { width: 28px; height: 28px; }
.cat-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .95rem; }
.cat-link svg { width: 16px; height: 16px; transition: transform .2s; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }
.bg-lime { background: #eefcd0; color: #4b6b05; }
.bg-teal { background: #d8f6f1; color: #0d7c6b; }
.bg-coral { background: #ffe6e2; color: #c23b28; }
.bg-navy { background: #e2e8f5; color: var(--navy-700); }

@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- Wearable-Finder ---------- */
.finder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.finder-intro p { color: #a9b4c8; }
.finder-intro ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.finder-intro li { display: flex; gap: 12px; align-items: flex-start; color: #c8d1e1; }
.finder-intro li svg { width: 22px; height: 22px; color: var(--lime); flex: none; margin-top: 2px; }

.finder-card {
  background: var(--navy-800); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-l); padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow-lg);
}
.finder-progress { display: flex; gap: 6px; margin-bottom: 26px; }
.finder-progress span { height: 5px; flex: 1; border-radius: 5px; background: rgba(255,255,255,.1); transition: background .3s; }
.finder-progress span.is-done { background: var(--lime); }
.finder-step { border: 0; padding: 0; margin: 0; }
.finder-step[hidden] { display: none; }
.finder-step legend { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 6px; padding: 0; }
.finder-step .hint { color: #93a0b8; font-size: .95rem; margin-bottom: 20px; }
.options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option label {
  display: flex; align-items: center; gap: 12px; height: 100%;
  padding: 16px; border-radius: 14px; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03);
  color: #dfe6f3; font-weight: 600; transition: border-color .2s, background .2s;
}
.option label:hover { border-color: rgba(255,255,255,.3); }
.option input:checked + label { border-color: var(--lime); background: rgba(184,241,58,.08); color: #fff; }
.option input:focus-visible + label { outline: 3px solid var(--teal); outline-offset: 2px; }
.option .emoji { font-size: 1.4rem; line-height: 1; }
.finder-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.finder-nav .btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; }

.finder-result[hidden] { display: none; }
.finder-result .result-tag {
  display: inline-block; background: var(--lime); color: var(--navy-900);
  font-weight: 800; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
.finder-result h3 { font-size: 1.6rem; color: #fff; }
.finder-result p { color: #b6c1d4; }
.finder-result ul { padding-left: 1.2em; color: #c8d1e1; margin: 0 0 22px; }
.finder-result .result-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 960px) { .finder { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 480px) { .options { grid-template-columns: 1fr; } }

/* ---------- Vergleichstabelle ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-l); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
.compare { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare th, .compare td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { background: var(--navy-900); color: #fff; font-size: 1rem; }
.compare thead th:first-child { color: #93a0b8; font-weight: 600; font-size: .9rem; }
.compare tbody th { font-weight: 700; color: var(--ink-2); width: 22%; font-size: .95rem; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:nth-child(even) { background: #fafbfc; }
.compare td { color: var(--ink-2); font-size: .97rem; }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.pill--good { background: #e3f8e0; color: #1f7a18; }
.pill--mid { background: #fff3d6; color: #8a5a00; }
.pill--low { background: #ffe6e2; color: #b0301d; }

/* ---------- Produktkarten ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.product:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-media {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center;
  background: linear-gradient(135deg, #eef2f8, #dfe6f2);
}
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.product-media .ph { width: 90px; height: 90px; color: #9aa7bd; }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy-900); color: var(--lime);
  font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 8px;
}
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: .8rem; font-weight: 700; color: var(--teal); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.product-body h3 { margin-bottom: 8px; }
.product-body > p { color: var(--muted); font-size: .95rem; }
.product-specs { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.product-specs li { font-size: .8rem; font-weight: 600; color: var(--ink-2); background: var(--bg); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }
.product-actions { margin-top: auto; display: grid; gap: 10px; }
.affiliate-note { font-size: .85rem; color: var(--muted); margin-top: 26px; text-align: center; }

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- Testmethode ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding: 28px 24px; border-radius: var(--radius-l);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-size: 2.4rem; font-weight: 800; color: var(--lime); line-height: 1; margin-bottom: 18px;
  letter-spacing: -.03em;
}
.step p { color: #a9b4c8; font-size: .96rem; margin: 0; }
@media (max-width: 1024px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Ratgeber / Artikel ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: box-shadow .2s, transform .2s; }
.post:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post-thumb { aspect-ratio: 16 / 9; display: grid; place-items: center; position: relative; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-thumb svg { width: 64px; height: 64px; opacity: .9; }
.thumb-1 { background: linear-gradient(135deg, #0b1324, #1c2a4a); color: var(--lime); }
.thumb-2 { background: linear-gradient(135deg, #0d7c6b, #19c2a8); color: #fff; }
.thumb-3 { background: linear-gradient(135deg, #ff6b57, #ff9a5a); color: #fff; }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.post-meta .cat { font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .06em; }
.post-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.read-more { font-weight: 700; font-size: .93rem; display: inline-flex; align-items: center; gap: 6px; }
.read-more svg { width: 16px; height: 16px; transition: transform .2s; }
.post:hover .read-more svg { transform: translateX(4px); }
.section-foot { margin-top: 36px; text-align: center; }

@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* ---------- Marken ---------- */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; padding: 0; margin: 0; }
.brands li a, .brands li span {
  display: block; padding: 12px 22px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 700; color: var(--ink-2); text-decoration: none; font-size: .98rem;
  transition: border-color .2s, color .2s;
}
.brands li a:hover { border-color: var(--ink); color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--bg); font-size: 1.3rem; font-weight: 600;
  transition: transform .2s, background .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--lime); }
.faq details p { color: var(--ink-2); margin: 0 0 20px; }
@media (max-width: 960px) { .faq-wrap { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--lime), #7fe7c4);
  border-radius: var(--radius-l); padding: clamp(32px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  color: var(--navy-900);
}
.cta-band h2 { margin-bottom: 6px; }
.cta-band p { margin: 0; font-size: 1.08rem; color: #1c2a4a; max-width: 560px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #93a0b8; padding: 72px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-about p { margin-top: 18px; max-width: 340px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: #b6c1d4; text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; font-size: .85rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 16px; font-size: .85rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Unterseiten (Impressum, Artikel, 404) ---------- */
.page-hero { background: var(--navy-900); color: #dfe6f3; padding: 56px 0 48px; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0; }
.page-hero p { color: #a9b4c8; margin: 12px 0 0; max-width: 720px; }
.breadcrumb { font-size: .88rem; color: #93a0b8; margin-bottom: 16px; }
.breadcrumb a { color: #b6c1d4; text-decoration: none; }
.breadcrumb a:hover { color: var(--lime); }
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.7rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.5em; }
.prose a { color: #0d7c6b; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--bg); }
.infobox { background: #eefcd0; border-left: 4px solid var(--lime-600); padding: 18px 22px; border-radius: 0 var(--radius-s) var(--radius-s) 0; margin: 1.5em 0; }
.infobox p:last-child { margin: 0; }
.placeholder { background: #fff3d6; padding: 0 4px; border-radius: 4px; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .ring-progress { stroke-dashoffset: var(--offset); }
  .pulse-line { stroke-dashoffset: 0; }
}

/* ---------- Erweiterungen: Über uns, FAQ, Kontakt ---------- */
.lead-block { max-width: 760px; font-size: 1.12rem; color: var(--ink-2); }
.value-card { cursor: default; }
.value-card:hover { transform: none; box-shadow: none; border-color: var(--line); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list svg { width: 22px; height: 22px; color: var(--teal); flex: none; margin-top: 3px; }
.section--dark .check-list svg { color: var(--lime); }
.criteria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.criteria div { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; }
.criteria h3 { font-size: 1.02rem; margin-bottom: 6px; }
.criteria p { color: #a9b4c8; font-size: .93rem; margin: 0; }
@media (max-width: 900px) { .criteria { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .criteria { grid-template-columns: 1fr; } }
.operator-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 28px; }
.operator-card h3 { margin-bottom: 4px; }
.operator-card p { color: var(--muted); }

.faq-nav { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 40px; }
.faq-nav a { display: block; padding: 10px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 700; text-decoration: none; color: var(--ink-2); font-size: .95rem; }
.faq-nav a:hover { border-color: var(--ink); color: var(--ink); }
.faq-group { scroll-margin-top: 96px; margin-bottom: 48px; }
.faq-group > h2 { font-size: 1.5rem; margin-bottom: 18px; }
.faq details p a, .faq details li a { color: #0d7c6b; }
.faq details ul { color: var(--ink-2); margin: 0 0 20px; padding-left: 1.2em; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 28px 24px; }
.contact-card p { color: var(--muted); font-size: .96rem; flex: 1; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.mail-big { display: inline-block; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; color: var(--ink); text-decoration: none; border-bottom: 3px solid var(--lime); word-break: break-all; }
.mail-big:hover { color: #0d7c6b; }

.footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.prose, .page-hero h1 { overflow-wrap: break-word; hyphens: auto; }
