/* ============================================================
   SOCKEN24 — Main Stylesheet
   Font: Inter (Google Fonts)
   Brand: #3B35E8 | BG: #F3F2FE
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    --brand:        #3B35E8;
    --brand-dark:   #2b26b8;
    --brand-light:  #F3F2FE;
    --brand-mid:    #eeedfb;
    --text:         #0f0e1a;
    --text-body:    #374151;
    --muted:        #6b7280;
    --bg:           #ffffff;
    --surface:      #f9f9f9;
    --border:       #e5e7eb;
    --accent:       #10b981;
    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
    --shadow:       0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
    --transition:   .2s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; min-height: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body > main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; color: var(--text); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.25; color: var(--text); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); }
p  { line-height: 1.7; }

.text-brand { color: var(--brand); }

/* ════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: invert(1);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-body);
    transition: color var(--transition);
    white-space: nowrap;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
    background: var(--brand);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .875rem;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero {
    background: var(--brand-light);
    padding: 72px 0 0;
    text-align: center;
    overflow: hidden;
}

/* Badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 53, 232, .08);
    border: 1px solid rgba(59, 53, 232, .18);
    color: var(--brand);
    font-size: .82rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
    letter-spacing: .01em;
}

.hero h1 {
    max-width: 820px;
    margin: 0 auto 20px;
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* CTA Group */
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59,53,232,.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    border: 1.5px solid var(--text);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-secondary:hover { background: var(--text); color: #fff; }

.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--brand);
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    border: 1.5px solid var(--brand);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-outline-brand:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-body);
}
.trust-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Hero image card */
.hero-card {
    position: relative;
    background: #f2ede3;
    border-radius: var(--radius-lg);
    border: 1.5px dashed rgba(59,53,232,.2);
    overflow: hidden;
    height: 340px;
    max-width: 960px;
    margin: 0 auto 64px;
}

.hero-price-badge {
    position: absolute;
    top: 50%;
    left: 40px;
    background: var(--brand);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 190px;
    text-align: center;
    z-index: 2;
    transform: translateY(-50%) rotate(-5deg);
    transform-origin: center left;
}
.hero-price-badge .price-main {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1px;
}
.hero-price-badge .price-line {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.hero-price-badge .price-guarantee {
    margin-top: 12px;
    font-weight: 700;
}

.hero-sock-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

/* ════════════════════════════════════════════════════════════
   LOGO STRIP / KUNDENSECTION
   ════════════════════════════════════════════════════════════ */
.logo-strip {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.logo-strip-label {
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Infinite ticker */
.ticker-wrapper {
    overflow: hidden;
    position: relative;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.ticker {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 22s linear infinite;
}
.ticker-wrapper:hover .ticker {
    animation-play-state: paused;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-logo {
    height: 36px;
    width: auto;
    filter: grayscale(1);
    opacity: .55;
    flex-shrink: 0;
    margin-right: 64px;
    transition: opacity var(--transition), filter var(--transition);
}
.ticker-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ════════════════════════════════════════════════════════════
   PRODUKTE — Sport & Klassisch
   ════════════════════════════════════════════════════════════ */
.products { padding: 80px 0; background: var(--bg); }
.section-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
}
.section-header {
    max-width: 600px;
    margin-bottom: 56px;
    margin-left: auto;
    margin-right: auto;
}
.section-header p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 1.05rem;
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
/* Shared badge slot height — keep image rows aligned on both cards.
   Badge has padding 7px top/bottom + ~1.25rem line-height ≈ 38px rendered. */
.product-card {
    --badge-slot: 38px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* 2px border on both cards so featured & non-featured have identical
       outer box dimensions; the non-featured one is transparent. */
    border: 2px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--bg);
    position: relative;
    display: flex;
    flex-direction: column;
    /* Reserve the same vertical space at the top on BOTH cards so the
       image (and everything below it) starts at the same Y on both. */
    padding-top: var(--badge-slot);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card--featured {
    border-color: var(--brand);
}
.product-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* Pin to the card edge regardless of the 2px border above. */
    margin: -2px -2px 0 -2px;
    height: var(--badge-slot);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    padding: 0 16px;
    text-align: center;
}
.product-card-img {
    aspect-ratio: 4/3;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card-img img {
    width: 75%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
/* Body uses a grid so title / price / divider / features / button rows
   align horizontally between cards regardless of content length. */
.product-card-body {
    padding: 24px 28px 28px;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    flex: 1;
}
.product-card-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.product-card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 16px;
}
.product-card-price span {
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted);
}
.product-card-divider {
    border: none;
    border-top: 1.5px dashed var(--border);
    margin-bottom: 16px;
}
.product-card-features {
    list-style: none;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card-features li {
    font-size: .9rem;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}
.product-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: .8rem;
}
.product-card-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
    box-sizing: border-box;
    align-self: end;
}

/* ════════════════════════════════════════════════════════════
   USPs / WARUM SOCKEN24
   ════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   PREISKALKULATOR
   ════════════════════════════════════════════════════════════ */
.calculator { padding: 80px 0; background: var(--brand-light); }
.calculator .section-header p { color: var(--muted); margin-top: 10px; font-size: 1.05rem; }
.calc-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.calc-field label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 8px;
}
.calc-field select,
.calc-field input[type="number"] {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--surface);
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.calc-field select:focus,
.calc-field input[type="number"]:focus { border-color: var(--brand); }
.calc-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--brand-light);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 16px;
}
.calc-result-label { font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.calc-price { font-size: 2.2rem; font-weight: 800; color: var(--brand); line-height: 1.1; margin-bottom: 4px; }
.calc-total { font-size: .85rem; color: var(--muted); }
.calc-cta { white-space: nowrap; flex-shrink: 0; }
.calc-disclaimer { text-align: center; font-size: .8rem; color: var(--muted); font-style: italic; }

.usps { padding: 80px 0; background: var(--bg); }
.usps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.usp-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.usp-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.usp-icon {
    width: 48px; height: 48px;
    background: rgba(59, 53, 232, .1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.usp-card h3 { margin-bottom: 8px; font-size: 1rem; }
.usp-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS / PROZESS
   ════════════════════════════════════════════════════════════ */
.process { padding: 80px 0; background: var(--brand-light); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--brand);
    opacity: .2;
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 56px; height: 56px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.step h3 { font-size: .95rem; margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS / REVIEWS
   ════════════════════════════════════════════════════════════ */
.reviews { padding: 80px 0; background: var(--surface); }

.reviews-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 56px;
}
.reviews-stat { text-align: center; }
.reviews-stat-score {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}
.reviews-stat-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.reviews-stat-hearts {
    color: var(--brand);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
}
.reviews-stat-label { font-size: .85rem; color: var(--muted); font-weight: 500; }
.reviews-stat-divider { width: 1px; height: 60px; background: var(--border); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; flex: 1; }
.review-author { font-size: .8rem; font-weight: 600; color: var(--text); margin-top: auto; }
.review-meta { font-size: .75rem; color: var(--muted); margin-top: 2px; }

/* ════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════ */
.cta-band {
    padding: 80px 0;
    background: var(--brand);
    text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-band .btn-white {
    background: #fff;
    color: var(--brand);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.cta-band .btn-white:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    transform: translateY(-2px);
}
.cta-band-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.cta-band-trust span {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq { padding: 80px 0; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { margin-top: 48px; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 0;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--brand); }
.faq-icon {
    width: 24px; height: 24px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.faq-answer {
    display: none;
    padding: 0 0 22px;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,.7);
    padding: 60px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-logo { display: inline-flex; margin-bottom: 16px; }
.footer-logo-img {
    height: 30px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
}
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: .8rem;
}
.footer-rating .stars { color: #f59e0b; }
.footer-col h4 {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
    font-size: .875rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════
   SUBPAGE HERO
   ════════════════════════════════════════════════════════════ */
.subpage-hero { background: var(--brand-light); padding: 80px 0; }
.subpage-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); /* 60/40: mehr Platz für Text, minmax(0) verhindert overflow durch lange Wörter */
    gap: 60px;
    align-items: center;
}
.subpage-hero-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}
.subpage-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
}
.subpage-hero h1 em { color: var(--brand); font-style: normal; }
.subpage-hero-bullets { margin-bottom: 32px; }
.subpage-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .95rem;
    color: var(--text-body);
    margin-bottom: 10px;
}
.subpage-hero-bullets li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 700;
    flex-shrink: 0;
}
.subpage-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.subpage-hero-trust { font-size: .8rem; color: var(--muted); }
.subpage-hero-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.subpage-hero-img {
    width: 100%;
    object-fit: cover;
    max-height: 480px;
    display: block;
}
.subpage-hero-img--zoom {
    transform: scale(1.17);
    transform-origin: center 30%;
}
.subpage-hero-badge {
    position: absolute;
    top: 24px;
    left: 16px;
    background: var(--brand);
    color: #fff;
    border-radius: var(--radius);
    padding: 12px 18px;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: var(--shadow-lg);
}
.subpage-hero-badge small {
    display: block;
    font-size: .75rem;
    font-weight: 400;
    opacity: .88;
    margin-top: 2px;
}
.subpage-hero-badge .badge-check {
    display: block;
    font-size: .72rem;
    opacity: .85;
    margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   SCROLL STEPS
   ════════════════════════════════════════════════════════════ */
.scroll-steps { padding: 100px 0; background: var(--bg); }
.scroll-steps-header { text-align: center; margin-bottom: 64px; }
.scroll-steps-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 12px; }
.scroll-steps-title em { color: var(--brand); font-style: normal; }
.scroll-steps-subtitle { font-size: .95rem; color: var(--muted); }
.scroll-steps-list {
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}
.scroll-steps-list::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 8px;
    bottom: 40px;
    width: 1px;
    background: var(--border);
}
.scroll-step {
    position: relative;
    padding-bottom: 56px;
    opacity: .18;
    transition: opacity .6s ease;
}
.scroll-step:last-child { padding-bottom: 0; }
.scroll-step.visible { opacity: 1; }
.scroll-step-dot {
    position: absolute;
    left: -42px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg);
    transition: background .4s;
    z-index: 1;
}
.scroll-step.visible .scroll-step-dot { background: var(--brand); }
.scroll-step-num {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--muted);
    position: absolute;
    left: -80px;
    top: 2px;
    width: 28px;
    text-align: right;
}
.scroll-step.visible .scroll-step-num { color: var(--brand); }
.scroll-step-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.scroll-step-content p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.scroll-step-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: .72rem;
    font-weight: 600;
    border-radius: 4px;
    padding: 3px 9px;
    margin-top: 10px;
}

/* ════════════════════════════════════════════════════════════
   CALCULATOR ADVANCED (SPORT)
   ════════════════════════════════════════════════════════════ */
.calc-adv-section { padding: 80px 0; background: var(--brand-light); }
.calc-adv-section .section-header { text-align: center; max-width: 100%; margin-bottom: 48px; }
.calc-adv-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.calc-adv-img-wrap {
    flex: 0 0 44%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    /* height set dynamically by JS to match controls */
}
.calc-adv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.calc-adv-controls { flex: 1; padding: 8px 0; display: flex; flex-direction: column; }
.calc-adv-output { margin-top: auto; }
.calc-adv-cta { display: block; width: 100%; text-align: center; box-sizing: border-box; }
.calc-adv-field { margin-bottom: 28px; }
.calc-adv-field-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.calc-adv-qty-row { display: flex; justify-content: space-between; align-items: baseline; }
.calc-adv-qty-val { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.calc-adv-qty-input-wrap { display: flex; align-items: baseline; gap: 6px; }
.calc-adv-qty-input {
    width: 72px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    font-family: inherit;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    text-align: right;
    background: #fff;
}
.calc-adv-qty-input:focus { outline: none; border-color: var(--brand); }
.calc-adv-qty-input-wrap span { font-size: .85rem; color: var(--muted); }
.calc-variant-btns {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.calc-variant-btn {
    flex: 1;
    padding: 10px 14px;
    border: none;
    background: #fff;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}
.calc-variant-btn + .calc-variant-btn { border-left: 1.5px solid var(--border); }
.calc-variant-btn small { display: block; font-size: .7rem; font-weight: 400; margin-top: 2px; }
.calc-variant-btn.active { background: var(--brand); color: #fff; }
.calc-variant-btn:disabled { cursor: not-allowed; opacity: .45; }
.calc-variant-btn:disabled.active { background: #fff; color: var(--muted); }
.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    outline: none;
    cursor: pointer;
    margin-bottom: 6px;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand);
    cursor: pointer;
}
.calc-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand);
    border: none;
    cursor: pointer;
}
.calc-slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    color: var(--muted);
}
.calc-pkg-btns { display: flex; gap: 8px; }
.calc-pkg-btn {
    flex: 1;
    padding: 9px 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}
.calc-pkg-btn .pkg-name { font-size: .8rem; font-weight: 600; color: var(--text); display: block; }
.calc-pkg-btn .pkg-price { font-size: .7rem; color: var(--muted); display: block; margin-top: 2px; }
.calc-pkg-btn.active { border-color: var(--brand); background: #fff; }
.calc-adv-output { padding-top: 8px; }
.calc-adv-summary-box {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
}
.calc-adv-summary-divider { height: 1px; background: var(--border); margin: 10px 0; }
.calc-adv-out-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.calc-adv-out-row:last-child { margin-bottom: 0; }
.calc-adv-out-label { font-size: .85rem; color: var(--muted); }
.calc-adv-out-pp { font-size: 1rem; font-weight: 600; color: var(--text); }
.calc-adv-out-total { font-size: 1.7rem; font-weight: 800; color: var(--brand); }
.calc-adv-savings {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    font-size: .75rem;
    font-weight: 600;
    border-radius: 4px;
    padding: 3px 9px;
    margin-bottom: 10px;
}
.calc-adv-disclaimer { font-size: .72rem; color: var(--muted); line-height: 1.5; margin-bottom: 20px; }

/* ════════════════════════════════════════════════════════════
   PRICE PAGE — TABS + COMPARISON TABLE
   ════════════════════════════════════════════════════════════ */
.price-hero { background: var(--brand-light); padding: 80px 0; }
.price-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.price-hero-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.price-hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.1; color: var(--text); margin-bottom: 32px; }
.price-hero h1 em { color: var(--brand); font-style: normal; }
.price-hero-img-wrap { position: relative; }
.price-hero-img { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: var(--radius-lg); }

/* Form card in hero */
.price-hero .preisliste-form-card { box-shadow: 0 8px 40px rgba(59,53,232,.12); }
.preisliste-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.preisliste-field-row .preisliste-field { margin-bottom: 0; }

/* Muster variant selector */
.muster-type-label { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.muster-type-btns { display: flex; gap: 8px; margin-bottom: 12px; }
.muster-type-btn { flex: 1; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--text); cursor: pointer; transition: all var(--transition); text-align: center; }
.muster-type-btn.active { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }

/* Comparison table */
.price-table-section { padding: 80px 0; background: var(--surface); }
.price-table-section .section-header { text-align: center; max-width: 100%; margin-bottom: 48px; }
.price-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.price-table thead th { padding: 16px 24px; text-align: left; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); background: #fff; border-bottom: 2px solid var(--border); }
.price-table thead th:first-child { color: var(--muted); }
.price-table thead th.col-sport { color: var(--brand); }
.price-table thead th.col-klassisch { color: var(--brand); }
.price-table tbody td { padding: 14px 24px; border-bottom: 1px solid var(--border); background: #fff; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody td:first-child { color: var(--muted); font-weight: 500; }
.price-table tbody td:not(:first-child) { font-weight: 600; color: var(--text); }
.price-table tbody tr.row-highlight td { background: var(--brand-light); }
.price-table tbody tr.row-highlight td:not(:first-child) { color: var(--brand); }
.price-table-note { font-size: .78rem; color: var(--muted); margin-top: 16px; text-align: center; }
.price-cobranding-note { margin-top: 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: flex-start; gap: 12px; }
.price-cobranding-note-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.price-cobranding-note p { font-size: .85rem; color: var(--text-body); line-height: 1.6; margin: 0; }
.price-cobranding-note strong { color: var(--brand); }

/* Email capture / PDF price list */
.preisliste-section { padding: 80px 0; background: var(--brand-light); }
.preisliste-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.preisliste-text h2 { font-size: 2rem; font-weight: 900; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.preisliste-text h2 em { color: var(--brand); font-style: normal; }
.preisliste-text p { font-size: .95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0; }
.preisliste-items { list-style: none; margin: 20px 0 0; display: flex; flex-direction: column; gap: 8px; }
.preisliste-items li { font-size: .9rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 8px; }
.preisliste-items li::before { content: "✓"; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.preisliste-form-card { background: #fff; border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-lg); }
.preisliste-form-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.preisliste-form-card p { font-size: .85rem; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.preisliste-field { margin-bottom: 12px; }
.preisliste-field label { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.preisliste-field input,
.preisliste-field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .9rem; color: var(--text); background: var(--bg); box-sizing: border-box; transition: border-color var(--transition); }
.preisliste-field input:focus,
.preisliste-field select:focus { outline: none; border-color: var(--brand); }
.preisliste-submit { display: block; width: 100%; margin-top: 16px; }
.preisliste-consent { font-size: .72rem; color: var(--muted); line-height: 1.5; margin-top: 14px; }
.preisliste-consent a { color: var(--brand); text-decoration: underline; }
.preisliste-checkbox-row { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 4px; }
.preisliste-checkbox-row input[type=checkbox] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.preisliste-checkbox-row label { font-size: .78rem; color: var(--text-body); line-height: 1.5; cursor: pointer; }
.preisliste-checkbox-row a { color: var(--brand); }
.preisliste-hp { display: none !important; }
.preisliste-turnstile { margin: 12px 0 4px; }
.preisliste-return-note { background: #fff7ed; border: 1px solid #fed7aa; color: #c2410c; font-size: .78rem; line-height: 1.5; border-radius: 8px; padding: 10px 12px; margin-bottom: 16px; }
.preisliste-success { display: none; text-align: center; padding: 20px 0; }
.preisliste-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.preisliste-success h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.preisliste-success p { font-size: .85rem; color: var(--muted); }

@media (max-width: 768px) {
    .price-hero { padding: 48px 0; }
    .price-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .price-hero h1 { font-size: 2.2rem; }
    .price-hero-img { height: 280px; }
    .preisliste-inner { grid-template-columns: 1fr; gap: 40px; }
    .preisliste-field-row { grid-template-columns: 1fr; }
    .price-hero-text { text-align: center; }
    .price-hero-text .subpage-hero-bullets li,
    .price-hero-text ul li { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   NACHHALTIGKEIT
   ════════════════════════════════════════════════════════════ */
.nachhaltigkeit { padding: 80px 0; background: #f0faf4; }
.nachhaltigkeit .section-header { text-align: center; max-width: 100%; margin-bottom: 48px; }
.nachhaltigkeit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nachhaltigkeit-card { background: #fff; border-radius: var(--radius); padding: 28px 24px; }
.nachhaltigkeit-icon { margin-bottom: 16px; color: var(--brand); }
.nachhaltigkeit-icon svg { width: 36px; height: 36px; }
.nachhaltigkeit-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.nachhaltigkeit-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   DESIGN HELP
   ════════════════════════════════════════════════════════════ */
.design-help { padding: 80px 0; background: var(--bg); }
.design-help .section-header { text-align: center; max-width: 100%; margin-bottom: 56px; }
.design-help-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 48px;
}
.design-help-step { flex: 1; text-align: center; padding: 0 16px; }
.design-help-icon {
    width: 72px;
    height: 72px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.design-help-icon svg { width: 30px; height: 30px; stroke: var(--brand); fill: none; stroke-width: 1.8; }
.design-help-step h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.design-help-step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.design-help-arrow {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--brand);
    padding-top: 20px;
    font-weight: 300;
}
.design-help-cta { text-align: center; }

/* ════════════════════════════════════════════════════════════
   GRÖSSENTABELLE
   ════════════════════════════════════════════════════════════ */
.groessen { padding: 80px 0; background: var(--brand-light); }
.groessen-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 24px; }
.groessen-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: stretch; }
.groessen-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.groessen-table { width: 100%; border-collapse: collapse; }
.groessen-table thead th {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 12px;
    text-align: left;
    border-bottom: 2px solid var(--border);
    background: rgba(255,255,255,.6);
}
.groessen-table tbody td { padding: 10px 12px; font-size: .875rem; color: var(--text-body); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.4); white-space: nowrap; }
.groessen-table tbody tr.highlight td { background: rgba(59,53,232,.06); color: var(--brand); font-weight: 600; }
.size-pill { display: inline-block; background: var(--border); color: var(--text-body); font-size: .7rem; font-weight: 700; border-radius: 3px; padding: 2px 6px; }
.highlight .size-pill { background: var(--brand); color: #fff; }
.groessen-bar-wrap { display: flex; align-items: center; gap: 8px; }
.groessen-bar { height: 4px; border-radius: 2px; background: var(--border); flex-shrink: 0; }
.highlight .groessen-bar { background: var(--brand); }
.groessen-note { font-size: .75rem; color: var(--muted); margin-top: 16px; font-style: italic; line-height: 1.5; }
.groessen-img { width: 100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover; display: block; box-shadow: var(--shadow); }

/* ════════════════════════════════════════════════════════════
   ANFRAGE SECTION
   ════════════════════════════════════════════════════════════ */
.anfrage-section {
    background: var(--brand);
    padding: 100px 0;
}
.anfrage-header {
    text-align: center;
    margin-bottom: 48px;
}
.anfrage-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.anfrage-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
}
.anfrage-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 48px 40px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}
.anfrage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.anfrage-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.anfrage-row .anfrage-field { margin-bottom: 0; }
.anfrage-field label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--muted);
}
.anfrage-field input,
.anfrage-field select {
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition);
    outline: none;
}
.anfrage-field input:focus,
.anfrage-field select:focus { border-color: var(--brand); }
.anfrage-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    font-size: .9rem;
    color: var(--muted);
    transition: border-color var(--transition), background var(--transition);
    line-height: 1.7;
}
.anfrage-upload:hover { border-color: var(--brand); background: var(--brand-light); }
.anfrage-upload.dragover { border-color: var(--brand); background: var(--brand-light); }
.anfrage-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    background: var(--brand);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: -.01em;
}
.anfrage-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.anfrage-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.anfrage-trust {
    text-align: center;
    font-size: .8rem;
    color: var(--muted);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .products-grid        { grid-template-columns: 1fr; }
    .usps-grid            { grid-template-columns: 1fr 1fr; }
    .process-steps        { grid-template-columns: 1fr 1fr; }
    .reviews-grid         { grid-template-columns: 1fr; }
    .reviews-stats        { flex-direction: column; gap: 24px; }
    .reviews-stat-divider { width: 60px; height: 1px; }
    .footer-grid          { grid-template-columns: 1fr 1fr; }
    .nav-links            { display: none; }
    .nav-toggle           { display: flex; }
    .hero-card            { height: 260px; }
    .hero-price-badge     { left: 20px; min-width: 160px; padding: 14px 18px; }
    .subpage-hero-inner   { grid-template-columns: 1fr; }
    .subpage-hero-badge   { left: 12px; }
    .subpage-hero-text    { text-align: center; }
    .subpage-hero-bullets li { justify-content: center; }
    .subpage-hero-ctas    { justify-content: center; }
    .calc-adv-card        { flex-direction: column; }
    .calc-adv-img-wrap    { flex: none; width: 100%; min-height: 280px; }
    .nachhaltigkeit-grid  { grid-template-columns: 1fr; gap: 12px; }
    .groessen-inner       { grid-template-columns: 1fr; }
    .groessen-img         { display: none; }
    .design-help-steps    { flex-direction: column; align-items: center; gap: 24px; }
    .design-help-arrow    { transform: rotate(90deg); padding: 0; }
}
@media (max-width: 600px) {
    .usps-grid        { grid-template-columns: 1fr; }
    .process-steps    { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .footer-grid      { grid-template-columns: 1fr; }
    .hero-ctas        { flex-direction: column; align-items: center; }
    .hero-card        { height: 220px; }
    .hero-price-badge { left: 12px; min-width: 130px; padding: 12px 14px; font-size: .8rem; }
    .anfrage-card     { padding: 28px 20px 24px; }
    .anfrage-row      { grid-template-columns: 1fr; }
    /* CTA-Buttons gleich breit stapeln statt unterschiedlich breit nebeneinander */
    .subpage-hero-ctas { flex-direction: column; }
    .subpage-hero-ctas .btn-primary,
    .subpage-hero-ctas .btn-outline-brand { width: 100%; justify-content: center; }
    /* Kalkulator-Slider: größeres Touch-Target auf Mobile (war 18px, zu klein) */
    .calc-slider { padding: 12px 0; }
    .calc-slider::-webkit-slider-thumb { width: 28px; height: 28px; }
    .calc-slider::-moz-range-thumb { width: 28px; height: 28px; }
}

/* ════════════════════════════════════════════════════════════
   RATGEBER / BLOG ARTICLE
   ════════════════════════════════════════════════════════════ */
.article-wrap { padding: 40px 0 80px; }
.article-col  { max-width: 700px; margin: 0 auto; }

/* Breadcrumb */
.article-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted); margin-bottom: 28px; flex-wrap: wrap; }
.article-breadcrumb a { color: var(--muted); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--brand); }
.article-breadcrumb span { opacity: .5; }

/* Header */
.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: 2.4rem; font-weight: 900; line-height: 1.15; color: var(--text); margin-bottom: 16px; }
.article-subtitle { font-size: 1.05rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 20px; font-size: .78rem; color: var(--muted); flex-wrap: wrap; }
.article-meta-item { display: flex; align-items: center; gap: 5px; }
.article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

/* TOC + Takeaways card */
.article-toc-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 56px; }
.article-toc-col { padding: 24px 28px; }
.article-toc-col:first-child { border-right: 1.5px solid var(--border); }
.article-toc-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.article-toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.article-toc-list a { font-size: .85rem; color: var(--brand); text-decoration: none; display: block; }
.article-toc-list a:hover { text-decoration: underline; }
.article-takeaways { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.article-takeaways li { font-size: .85rem; color: var(--text-body); line-height: 1.5; display: flex; gap: 8px; }
.article-takeaways li::before { content: "→"; color: var(--brand); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Body text */
.article-body h2 { font-size: 1.55rem; font-weight: 800; color: var(--text); margin: 48px 0 16px; line-height: 1.25; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.article-body p { font-size: .975rem; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--brand); text-decoration: underline; }
/* Globaler Reset setzt padding/margin auf 0 — ohne list-style-position:inside
   würden die Zahlen-Marker außerhalb der Content-Box sitzen und auf schmalen
   Viewports am Rand abgeschnitten wirken. */
.article-body ol { list-style-position: inside; padding-left: .25em; }
.article-body ol li { margin-bottom: 10px; line-height: 1.6; }

/* Stats row */
.article-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 32px 0; }
.article-stat { background: #fff; padding: 20px 16px; text-align: center; }
.article-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--brand); display: block; line-height: 1; }
.article-stat-label { font-size: .72rem; color: var(--muted); margin-top: 6px; line-height: 1.4; display: block; }

/* Definition list */
.article-def-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.article-def-item { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: .875rem; align-items: baseline; }
.article-def-item:last-child { border-bottom: none; }
.article-def-key { font-weight: 700; color: var(--text); }
.article-def-val { color: var(--text-body); line-height: 1.55; }

/* Img placeholder */
.img-placeholder { background: var(--surface); border: 1.5px dashed var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 32px 20px; color: var(--muted); font-size: .78rem; font-style: italic; text-align: center; width: 100%; aspect-ratio: 16/9; box-sizing: border-box; }

/* Ideas section */
.ideas-section { background: var(--surface); padding: 72px 0; }
.ideas-section .article-col { max-width: 700px; }
.ideas-section-header { margin-bottom: 36px; text-align: center; }
.ideas-section-header h2 { font-size: 1.8rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.ideas-section-header p { font-size: .9rem; color: var(--muted); }
.ideas-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ideas-grid-1 { margin-bottom: 16px; }
.idea-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.idea-card-img { position: relative; }
.idea-card-num { position: absolute; bottom: -16px; left: 16px; width: 32px; height: 32px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; z-index: 1; }
.idea-card-body { padding: 28px 20px 20px; }
.idea-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.idea-card-body p { font-size: .84rem; color: var(--text-body); line-height: 1.6; margin-bottom: 14px; }
.idea-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.idea-tag { font-size: .7rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.idea-tag--green { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }

/* Featured idea card */
.idea-card--featured { border: 2px solid var(--brand); position: relative; }
.idea-card--featured-badge { position: absolute; top: 16px; left: 16px; background: var(--brand); color: #fff; font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.idea-featured-inner { display: grid; grid-template-columns: 1fr 1fr; }
.idea-featured-img-wrap { position: relative; }
.idea-featured-body { padding: 36px 28px 28px; }
.idea-featured-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.idea-featured-body p { font-size: .875rem; color: var(--text-body); line-height: 1.65; margin-bottom: 16px; }
.idea-featured-checks { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.idea-featured-checks li { font-size: .84rem; color: var(--text-body); display: flex; gap: 7px; }
.idea-featured-checks li::before { content: "✓"; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.idea-featured-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.idea-featured-cta { font-size: .9rem; font-weight: 700; color: var(--brand); text-decoration: none; display: inline-block; margin-bottom: 6px; }
.idea-featured-cta:hover { text-decoration: underline; }
.idea-featured-note { font-size: .72rem; color: var(--muted); }

/* Anlass table */
.anlass-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin: 24px 0; }
.anlass-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.anlass-table th { padding: 12px 16px; text-align: left; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--surface); border-bottom: 2px solid var(--border); }
.anlass-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-body); vertical-align: top; line-height: 1.5; }
.anlass-table tr:last-child td { border-bottom: none; }
.anlass-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
.anlass-table td:last-child { white-space: nowrap; color: var(--muted); font-size: .82rem; }
.anlass-table a { color: var(--brand); text-decoration: none; font-weight: 600; }
.anlass-table-note { font-size: .72rem; color: var(--muted); font-style: italic; margin-top: 8px; }

/* Tax section */
.steuer-section { margin: 56px 0; background: var(--brand-light); border: 1px solid rgba(59,53,232,.15); border-radius: var(--radius-lg); padding: 40px 44px; }
.steuer-section-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(59,53,232,.1); color: var(--brand); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.steuer-section h2 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.steuer-rules { list-style: none; border: 1px solid rgba(59,53,232,.12); border-radius: var(--radius); overflow: hidden; margin: 24px 0; background: #fff; }
.steuer-rule { display: flex; gap: 12px; padding: 14px 20px; border-bottom: 1px solid rgba(59,53,232,.08); font-size: .875rem; color: var(--text-body); line-height: 1.55; align-items: flex-start; }
.steuer-rule:last-child { border-bottom: none; }
.steuer-rule::before { content: "✓"; color: var(--brand); font-size: .9rem; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.steuer-highlight { background: #fff; border: 1px solid rgba(59,53,232,.12); border-left: 4px solid var(--brand); border-radius: var(--radius); padding: 20px 24px; margin: 20px 0; font-size: .875rem; color: var(--text-body); line-height: 1.7; }
.steuer-highlight-label { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); margin-bottom: 6px; }
.steuer-section h2 { text-align: center; }
.steuer-actions { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.steuer-link { display: inline-flex; align-items: center; gap: 6px; background: var(--brand); color: #fff !important; font-weight: 700; font-size: .875rem; padding: 11px 22px; border-radius: var(--radius); text-decoration: none !important; transition: all var(--transition); white-space: nowrap; }
.steuer-link:hover { background: #2f2acc; }
.steuer-disclaimer { font-size: .72rem; color: var(--muted); font-style: italic; margin: 0; }

/* Article inline CTA */
.article-cta-section { background: var(--surface); padding: 72px 0; }
.article-cta-section .section-header { margin-bottom: 40px; }
.article-cta-box { background: var(--brand); border-radius: var(--radius-lg); padding: 40px 44px; text-align: center; }
.article-cta-box h3 { color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.article-cta-box p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 24px; }
.article-cta-box .btn-cta-white { display: inline-block; background: #fff; color: var(--brand); font-weight: 700; font-size: .95rem; padding: 14px 28px; border-radius: var(--radius); text-decoration: none; transition: all var(--transition); }
.article-cta-box .btn-cta-white:hover { background: var(--brand-light); }
.article-cta-note { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 10px; }

/* Anbieter section */
.anbieter-section { background: #fff; padding: 72px 0; border-top: 1px solid var(--border); }
.anbieter-section .article-col h2 { font-size: 1.55rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.anbieter-section .article-col p { font-size: .875rem; color: var(--muted); margin-bottom: 32px; }
.anbieter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.anbieter-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; }
.anbieter-icon { font-size: 1.4rem; margin-bottom: 12px; display: block; }
.anbieter-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.anbieter-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.anbieter-card a { color: var(--brand); font-weight: 600; text-decoration: none; }

/* 3 Steps article */
.steps-article-section { padding: 72px 0; background: var(--surface); border-top: 1px solid var(--border); }
.steps-article-section .article-col h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.steps-article-section .article-col p { font-size: .875rem; color: var(--muted); margin-bottom: 32px; }
.steps-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-article-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; }
.step-article-num { width: 36px; height: 36px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; margin-bottom: 16px; }
.step-article-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-article-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.step-article-card a { color: var(--brand); font-weight: 600; text-decoration: none; }

/* Article reviews */
.article-reviews-section { padding: 72px 0; background: var(--text); }
.article-reviews-section h2 { font-size: 1.4rem; font-weight: 800; color: #fff; text-align: center; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.article-reviews-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 40px; flex-wrap: wrap; }
.article-reviews-stat { text-align: center; }
.article-reviews-stat-num { font-size: 2rem; font-weight: 900; color: #fff; display: block; }
.article-reviews-stars { color: #f59e0b; font-size: .9rem; display: block; margin: 4px 0; }
.article-reviews-stat-label { font-size: .75rem; color: rgba(255,255,255,.6); }
.article-reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.article-reviews-grid-1 { margin-bottom: 16px; }
.article-review-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 24px; }
.article-review-stars { color: #f59e0b; font-size: .85rem; margin-bottom: 12px; }
.article-review-text { font-size: .875rem; color: rgba(255,255,255,.85); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.article-review-author { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 768px) {
    .article-header h1   { font-size: 1.8rem; }
    .article-toc-card    { grid-template-columns: 1fr; }
    .article-toc-col:first-child { border-right: none; border-bottom: 1.5px solid var(--border); }
    .article-stats       { grid-template-columns: 1fr; }
    .ideas-grid-2        { grid-template-columns: 1fr; }
    .idea-featured-inner { grid-template-columns: 1fr; }
    .anbieter-grid       { grid-template-columns: 1fr 1fr; }
    .steps-article-grid  { grid-template-columns: 1fr; }
    .article-reviews-grid { grid-template-columns: 1fr; }
    .steuer-section      { padding: 28px 24px; }
    .article-cta-box     { padding: 28px 20px; }
}
@media (max-width: 600px) {
    .anbieter-grid       { grid-template-columns: 1fr; }
    .article-reviews-stats { gap: 24px; }
    .article-def-item    { grid-template-columns: 1fr; }
}

/* ─── Newsletter ─────────────────────────────────────── */
.newsletter-section { background: var(--brand-light); padding: 80px 0; border-top: 1px solid rgba(59,53,232,.1); border-bottom: 1px solid rgba(59,53,232,.1); }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-icon { font-size: 2.2rem; margin-bottom: 12px; }
.newsletter-inner h2 { font-size: 1.9rem; font-weight: 900; color: var(--text); margin: 8px 0 12px; }
.newsletter-inner p { font-size: .9rem; color: var(--text-body); line-height: 1.65; margin-bottom: 20px; }
.newsletter-tags { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.newsletter-tag { display: inline-flex; align-items: center; gap: 4px; background: rgba(59,53,232,.1); color: var(--brand); font-size: .75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.newsletter-row { display: flex; gap: 8px; max-width: 440px; margin: 0 auto 12px; }
.newsletter-input { flex: 1; padding: 13px 16px; border: 1.5px solid rgba(59,53,232,.2); border-radius: var(--radius); font-size: .9rem; color: var(--text); background: #fff; outline: none; transition: border-color var(--transition); }
.newsletter-input:focus { border-color: var(--brand); }
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-btn { display: inline-flex; align-items: center; white-space: nowrap; background: var(--brand); color: #fff; font-weight: 700; font-size: .875rem; padding: 13px 20px; border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition); }
.newsletter-btn:hover { background: #2f2acc; }
.newsletter-consent { font-size: .72rem; color: var(--muted); line-height: 1.5; }
.newsletter-consent a { color: var(--brand); }
.newsletter-success { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 24px; }
.newsletter-success-icon { font-size: 2rem; }
.newsletter-success strong { font-size: 1.05rem; color: var(--text); }
.newsletter-success p { font-size: .85rem; color: var(--muted); margin: 0; }
@media (max-width: 600px) {
    .newsletter-row { flex-direction: column; }
    .newsletter-btn { justify-content: center; }
}

/* ─── Blog Overview ───────────────────────────────────── */
.blog-hero { padding: 72px 0 48px; text-align: center; }
.blog-hero h1 { font-size: 2.2rem; font-weight: 900; color: var(--text); margin: 12px 0; }
.blog-hero p { font-size: .95rem; color: var(--muted); max-width: 460px; margin: 0 auto; }

.blog-section { padding: 0 0 96px; }

.blog-featured-card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; text-decoration: none; color: inherit; transition: box-shadow var(--transition); margin-bottom: 56px; }
.blog-featured-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); }
.blog-featured-img { position: relative; min-height: 340px; background: var(--surface); }
.blog-featured-img .img-placeholder { height: 100%; min-height: 340px; border-radius: 0; aspect-ratio: unset; }
.blog-featured-cat { position: absolute; top: 16px; left: 16px; background: var(--brand); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.blog-featured-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); margin-bottom: 12px; }
.blog-featured-title { font-size: 1.45rem; font-weight: 900; color: var(--text); line-height: 1.25; margin-bottom: 14px; }
.blog-featured-excerpt { font-size: .88rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }
.blog-featured-meta { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--muted); margin-bottom: 24px; }
.blog-featured-cta { display: inline-flex; align-items: center; gap: 6px; background: var(--brand); color: #fff; font-weight: 700; font-size: .875rem; padding: 12px 22px; border-radius: var(--radius); align-self: flex-start; }
.blog-featured-card:hover .blog-featured-cta { background: #2f2acc; }

.blog-grid-label { font-size: .85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.blog-card-img { position: relative; aspect-ratio: 16/9; background: var(--surface); overflow: hidden; }
.blog-card-img .img-placeholder { height: 100%; aspect-ratio: unset; border-radius: 0; min-height: 0; }
.blog-card-cat { position: absolute; top: 12px; left: 12px; background: var(--brand); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-title { font-size: .95rem; font-weight: 800; color: var(--text); line-height: 1.35; margin-bottom: 8px; }
.blog-card-excerpt { font-size: .82rem; color: var(--text-body); line-height: 1.6; margin-bottom: 12px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { font-size: .72rem; color: var(--muted); margin-bottom: 14px; }
.blog-card-cta { display: inline-flex; align-items: center; gap: 4px; color: var(--brand); font-weight: 700; font-size: .82rem; }
.blog-card:hover .blog-card-cta { text-decoration: underline; }

@media (max-width: 900px) {
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-img { min-height: 220px; }
    .blog-featured-img .img-placeholder { min-height: 220px; }
    .blog-featured-body { padding: 28px; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .blog-hero h1 { font-size: 1.7rem; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ── Legal Pages (AGB, Impressum, Datenschutz) ── */
.legal-section { padding: 72px 0 96px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h1 { font-size: 2.2rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.legal-subtitle { font-size: .9rem; color: var(--muted); margin-bottom: 48px; }
.legal-wrap h2 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin: 36px 0 10px; padding-top: 24px; border-top: 1px solid var(--border); }
.legal-wrap h2:first-of-type { border-top: none; }
.legal-wrap p { font-size: .92rem; color: var(--text-body); line-height: 1.75; margin-bottom: 10px; }
.legal-wrap ul { margin: 8px 0 12px 20px; }
.legal-wrap ul li { font-size: .92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 4px; }
.legal-block { margin-bottom: 28px; }
.legal-block p { margin-bottom: 4px; }
.legal-block strong { color: var(--text); font-weight: 700; }
.datenschutz-content h1 { font-size: 2.2rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.datenschutz-content h2 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin: 36px 0 10px; padding-top: 24px; border-top: 1px solid var(--border); }
.datenschutz-content p { font-size: .92rem; color: var(--text-body); line-height: 1.75; margin-bottom: 10px; }
.datenschutz-content ul { margin: 8px 0 12px 20px; }
.datenschutz-content ul li { font-size: .92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 4px; }
.datenschutz-content b { font-weight: 700; color: var(--text); }
.datenschutz-content a { color: var(--brand); word-break: break-all; }
.datenschutz-content #itkanzlei_txt_copyright { font-size: .75rem; color: var(--muted); margin-top: 48px; padding-top: 16px; border-top: 1px solid var(--border); }
