/* ==========================================================================
   Zaunlatten.de — Consolidated Design System
   Extracted from 4 HTML source files, deduplicated, organized
   ========================================================================== */

/* ==========================================================================
   0. @font-face — Self-hosted WOFF2 (DSGV-01, DSGV-04)
   ========================================================================== */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-latin-variable-wghtOnly-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                   U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 200 800;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-latin-variable-wghtOnly-italic.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                   U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('../fonts/dm-sans-latin-variable-wghtOnly-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                   U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   1. CSS Custom Properties — Design Tokens (TMPL-07)
   Identical across all 4 HTML source files
   ========================================================================== */
:root {
    --bg: #f7f9f7;
    --bg2: #ffffff;
    --bg3: #eef4ef;
    --dark: #0c1a0e;
    --dark2: #152718;
    --green: #1e5631;
    --green2: #2d7a47;
    --accent: #4caf72;
    --accent-pale: #e8f5ee;
    --text: #111d13;
    --text2: #4a5e4d;
    --text3: #8a9e8d;
    --border: #dce8de;
    --r: 14px;
    --r-sm: 9px;
    --r-lg: 22px;
    --accent-hover: #5ec882;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ==========================================================================
   2. Reset & Base Typography
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font, 'DM Sans', sans-serif);
    font-size: var(--body-font-size, 1rem);
    line-height: var(--line-height, 1.6);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ==========================================================================
   3. Navigation — shared across all pages
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 clamp(1.5rem, 5vw, 3.5rem);
    transition: background .35s, box-shadow .35s;
}

nav.scrolled {
    background: rgba(12, 26, 14, .92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

/* Reset bare nav styles for WordPress pagination (the_posts_pagination outputs <nav class="navigation">) */
nav.navigation {
    position: static;
    z-index: auto;
    padding: 0;
    transition: none;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.logo-word {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: white;
    letter-spacing: -.02em;
}

.logo-word span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a:hover {
    color: white;
}

/* --- Skip link (accessibility) --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: .75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
    transition: top .15s ease;
}

.skip-link:focus {
    top: 0;
}

/* --- Nav dropdown --- */
.nav-links > li {
    position: relative;
}

/* CSS triangle removed — inline SVG .dropdown-arrow handles the arrow indicator */

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(12, 26, 14, .96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: .5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    transform: translateX(-50%) translateY(8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
    z-index: 300;
    margin-top: 8px;
}

.nav-links > li.has-dropdown:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: .5rem 1.2rem;
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}

.nav-links .nav-dropdown a {
    color: rgba(255, 255, 255, .65);
}

.nav-links .nav-dropdown a:hover {
    background: rgba(76, 175, 114, .12);
    color: white;
}

/* Light mode dropdown */
body.light-mode .nav-dropdown {
    background: rgba(255, 255, 255, .98);
    border-color: var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

body.light-mode .nav-dropdown a {
    color: var(--text2) !important;
}

body.light-mode .nav-dropdown a:hover {
    background: var(--accent-pale);
    color: var(--text) !important;
}

.nav-btn {
    background: var(--accent);
    color: var(--dark);
    padding: .5rem 1rem;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none;
    transition: .2s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* Hide mobile sub-menu toggle on desktop */
.nav-links .sub-menu-toggle { display: none; }
.nav-links .dropdown-arrow { display: inline-block; margin-left: 2px; opacity: .5; transition: transform .2s; }
.nav-links .has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* ==========================================================================
   4. Breadcrumb — shared by subpages
   ========================================================================== */
.breadcrumb {
    background: var(--dark);
    padding: 0 clamp(1.5rem, 5vw, 3.5rem);
}

.bc-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    height: 44px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    flex-wrap: wrap;
}

.bc-inner a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

.bc-inner a:hover {
    color: var(--accent);
}

.bc-sep {
    opacity: .3;
}

.bc-cur,
.bc-current {
    color: rgba(255, 255, 255, .7);
}

/* ==========================================================================
   5. Hero — shared base styles
   ========================================================================== */
.hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(30, 86, 49, .6) 0%, transparent 65%);
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

.glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 114, .16) 0%, transparent 65%);
    bottom: -100px;
    left: 5%;
    z-index: 0;
    animation: glowPulse 11s 2s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(76, 175, 114, .12);
    border: 1px solid rgba(76, 175, 114, .25);
    padding: .38rem 1rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    animation: fadeUp .6s var(--ease) both;
}

.eyebrow-dot,
.edot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -.04em;
    color: white;
    margin-bottom: 1.2rem;
}

.hero-h1 .line {
    display: block;
    animation: fadeUp .7s var(--ease) both;
}

.hero-h1 .line:nth-child(1) { animation-delay: .08s; }
.hero-h1 .line:nth-child(2) { animation-delay: .16s; }
.hero-h1 .line:nth-child(3) { animation-delay: .24s; color: var(--accent); }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2rem;
    animation: fadeUp .7s .3s var(--ease) both;
}

.hero-sub strong {
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .7s .38s var(--ease) both;
}

.btn-hero {
    background: var(--accent);
    color: var(--dark);
    padding: .95rem 1.9rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: .25s var(--ease);
    box-shadow: 0 0 36px rgba(76, 175, 114, .4);
}

.btn-hero:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 56px rgba(76, 175, 114, .55);
}

.btn-ghost,
.btn-hero-ghost {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .8);
    padding: .95rem 1.9rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: .25s var(--ease);
}

.btn-ghost:hover,
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeUp .7s .46s var(--ease) both;
}

.hb {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
}

.hb svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Hero strip — shared by homepage, kunststoff, hamburg */
.hero-strip {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .07);
    border-radius: var(--r);
    overflow: hidden;
    animation: fadeUp .8s .55s var(--ease) both;
}

.hs-item {
    background: rgba(255, 255, 255, .04);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: .9rem;
}

.hs-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(76, 175, 114, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hs-icon svg {
    color: var(--accent);
}

.hs-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: white;
}

.hs-sub {
    font-size: .73rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 1px;
}

/* Search form — 404 + search results */
.search-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: .8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-right: none;
    border-radius: var(--r-sm) 0 0 var(--r-sm);
    background: rgba(255, 255, 255, .06);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, .35);
}

.search-field:focus {
    border-color: var(--accent);
}

.search-submit {
    padding: .8rem 1.5rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s;
}

.search-submit:hover {
    background: var(--accent-hover);
}

/* Clear fixed nav on pages without hero (single, archive, search, page, 404) */
.site-main { padding-top: 70px; }

/* Search form on light backgrounds (search results page) */
.site-main .search-field {
    border-color: var(--border);
    background: white;
    color: var(--text);
}

.site-main .search-field::placeholder {
    color: var(--text3);
}

/* --- Page content typography (Impressum, Datenschutz, etc.) --- */
.page-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin: 2rem 0 .75rem;
}

.page-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    margin: 1.5rem 0 .5rem;
}

.page-content p {
    margin-bottom: .85rem;
}

.page-content ul, .page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: .35rem;
}

.page-content a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: var(--accent);
}

.site-main .search-field:focus {
    border-color: var(--green);
}

/* ==========================================================================
   6. Common / Utility — shared across all pages
   ========================================================================== */
section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.inner {
    max-width: 1160px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--accent-pale);
    padding: .28rem .75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font, 'Plus Jakarta Sans', sans-serif);
    font-weight: var(--heading-font-weight, 700);
}

h2 {
    font-family: var(--heading-font, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--text);
}

h2 .g {
    color: var(--green);
}

.lead {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.7;
    max-width: 580px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ==========================================================================
   7. Sticky CTA Bar — shared by subpages
   ========================================================================== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--dark2);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: .9rem clamp(1.5rem, 5vw, 4rem);
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}

.sticky-bar.show {
    transform: translateY(0);
}

.sticky-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sticky-text {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
}

.sticky-text strong {
    color: white;
}

.sticky-btn {
    background: var(--accent);
    color: var(--dark);
    padding: .7rem 1.5rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .2s var(--ease);
    white-space: nowrap;
}

.sticky-btn:hover {
    background: var(--accent-hover);
}

/* ==========================================================================
   8. Quick Facts Strip — shared by kunststoff + hamburg
   ========================================================================== */
.facts-strip {
    background: var(--dark2);
    padding: 1.6rem clamp(1.5rem, 5vw, 4rem);
}

.facts-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--r);
    overflow: hidden;
}

.fact-item {
    background: var(--dark2);
    padding: 1.2rem 1.4rem;
    text-align: center;
}

.fact-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent);
    line-height: 1;
}

.fact-lbl {
    font-size: .74rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 5px;
}

/* ==========================================================================
   9. Product Cards — shared by homepage, kunststoff, hamburg
   ========================================================================== */
.p-card {
    background: white;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .3s var(--ease);
}

.p-card:hover {
    border-color: var(--green);
    box-shadow: 0 16px 48px rgba(30, 86, 49, .1);
    transform: translateY(-5px);
}

.p-card.top {
    border-color: var(--green);
}

.p-badge {
    background: var(--green);
    color: white;
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem;
}

.p-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.p-card:hover .p-img img {
    transform: scale(1.05);
}

.p-body {
    padding: 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.p-type {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green);
}

.p-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
}

.p-desc {
    font-size: .87rem;
    color: var(--text2);
    line-height: 1.55;
    flex: 1;
}

.p-specs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .3rem;
}

.p-spec {
    font-size: .71rem;
    background: var(--bg3);
    padding: .2rem .55rem;
    border-radius: 100px;
    color: var(--text2);
    font-weight: 500;
}

.p-footer {
    padding: 0 1.5rem 1.5rem;
}

.p-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: .9rem;
}

.p-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
}

.p-price-sub {
    font-size: .73rem;
    color: var(--text3);
    font-weight: 400;
}

.stars {
    color: #f5a623;
    font-size: .88rem;
}

.p-cta {
    display: block;
    text-align: center;
    background: var(--green);
    color: white;
    text-decoration: none;
    padding: .75rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    transition: background .2s, transform .2s;
}

.p-cta:hover {
    background: var(--green2);
    transform: translateY(-1px);
}

/* ==========================================================================
   10. Reviews — shared base styles
   ========================================================================== */
.reviews-section {
    background: white;
}

.rev-header,
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.os,
.rev-score-wrap,
.overall-score {
    text-align: right;
}

.os-num,
.rev-score {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    color: var(--text);
    line-height: 1;
}

.os-stars,
.rev-stars {
    color: #f5a623;
    font-size: 1.2rem;
}

.os-count,
.rev-count {
    font-size: .78rem;
    color: var(--text3);
}

.rev-grid,
.rgrid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rev-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    transition: .25s var(--ease);
}

.rev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(30, 86, 49, .1);
    border-color: var(--accent);
}

.rev-card.featured {
    border-color: var(--green);
    background: white;
}

.rev-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.rev-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.rev-name {
    font-weight: 700;
    font-size: .88rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.rev-meta,
.rev-date {
    font-size: .72rem;
    color: var(--text3);
    margin-top: 1px;
}

.rev-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    color: var(--green);
    font-weight: 600;
    background: var(--accent-pale);
    padding: .15rem .5rem;
    border-radius: 100px;
}

.rev-stars-sm {
    color: #f5a623;
    font-size: .85rem;
}

.rev-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    margin-bottom: .45rem;
}

.rev-text {
    font-size: .87rem;
    color: var(--text2);
    line-height: 1.62;
}

.rev-chip {
    display: inline-block;
    margin-top: .8rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--green);
    background: var(--accent-pale);
    padding: .18rem .55rem;
    border-radius: 100px;
}

.rev-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rev-product {
    font-size: .72rem;
    font-weight: 600;
    color: var(--green);
    background: var(--accent-pale);
    padding: .18rem .55rem;
    border-radius: 100px;
}

.rev-years {
    font-size: .75rem;
    color: var(--text3);
}

/* ==========================================================================
   11. FAQ — shared across all pages
   ========================================================================== */
.faq-section {
    background: var(--bg3);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.faq-left h2 {
    margin: .5rem 0 1rem;
}

.faq-left p {
    color: var(--text2);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-cta,
.faq-cta-il {
    background: var(--green);
    color: white;
    text-decoration: none;
    padding: .85rem 1.5rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s var(--ease);
}

.faq-cta:hover,
.faq-cta-il:hover {
    background: var(--green2);
    transform: translateY(-2px);
}

.faqs {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.faq {
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .2s;
}

.faq.open {
    border-color: var(--green);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.3rem;
    cursor: pointer;
    gap: 1rem;
    width: 100%;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    text-align: left;
    appearance: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    user-select: none;
    background: white;
    transition: color .2s;
}

.faq.open .faq-q {
    color: var(--green);
}

.faq-ico {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .3s var(--ease);
}

.faq.open .faq-ico {
    background: var(--green);
    transform: rotate(45deg);
}

.faq-ico svg {
    width: 12px;
    height: 12px;
    stroke: var(--text);
    stroke-width: 3;
    transition: stroke .2s;
}

.faq.open .faq-ico svg {
    stroke: white;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .42s var(--ease);
}

.faq.open .faq-body {
    max-height: 2000px;
}

.faq-body-inner {
    padding: 0 1.3rem 1.1rem;
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.72;
}

/* ==========================================================================
   12. Final CTA — shared across all pages
   ========================================================================== */
.final {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(30, 86, 49, .55) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 40%, rgba(76, 175, 114, .2) 0%, transparent 45%);
}

.final-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-inner h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.final-inner p {
    color: rgba(255, 255, 255, .55);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.final-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-final {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s var(--ease);
    box-shadow: 0 0 40px rgba(76, 175, 114, .35);
}

.btn-final:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-final-g {
    background: transparent;
    color: rgba(255, 255, 255, .8);
    padding: 1rem 2rem;
    border-radius: var(--r-sm);
    border: 1.5px solid rgba(255, 255, 255, .2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s var(--ease);
}

.btn-final-g:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .07);
}

.final-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ft {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.ft svg {
    color: var(--accent);
}

/* ==========================================================================
   13. Footer — shared across all pages
   ========================================================================== */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 3rem clamp(1.5rem, 5vw, 4rem) 2rem;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, .4);
    font-size: .85rem;
    line-height: 1.65;
    margin-top: .8rem;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer-col a {
    text-decoration: none;
    color: rgba(255, 255, 255, .4);
    font-size: .85rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
}

.affiliate-disc {
    font-size: .73rem;
    color: rgba(255, 255, 255, .25);
    max-width: 600px;
    line-height: 1.55;
}

/* ==========================================================================
   14. Keyframe Animations (TMPL-07)
   ========================================================================== */
@keyframes glowPulse {
    0%, 100% { opacity: .7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.07); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

/* ==========================================================================
   15. PAGE-SPECIFIC: Homepage (zaunlatten-redesign.html)
   ========================================================================== */

/* Homepage hero — full height with product showcase */
.hero--home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px clamp(1.5rem, 6vw, 5rem) clamp(4rem, 8vh, 7rem);
}

.hero--home .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero--home .hero-h1 {
    font-size: clamp(3.4rem, 6.2vw, 5.4rem);
    line-height: 1.01;
    letter-spacing: -.045em;
    margin-bottom: 1.5rem;
}

.hero--home .hero-sub {
    font-size: 1.1rem;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero--home .btn-hero {
    padding: 1rem 2rem;
    box-shadow: 0 0 40px rgba(76, 175, 114, .4);
}

.hero--home .glow-1 {
    width: 800px;
    height: 800px;
}

.hero--home .glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 114, .18) 0%, transparent 65%);
    bottom: -150px;
}

/* Product showcase in hero */
.hero-visual {
    position: relative;
    animation: fadeUp .9s .25s var(--ease) both;
}

.product-showcase {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: visible;
}

.product-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 114, .06) 0%, transparent 60%);
}

.product-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--r);
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

/* Floating cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: var(--r-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.fc1 {
    bottom: -18px;
    left: -28px;
    padding: .9rem 1.1rem;
    min-width: 165px;
    animation: bob1 4s ease-in-out infinite;
}

.fc2 {
    top: -18px;
    right: -24px;
    padding: .75rem 1rem;
    animation: bob2 4s 1.5s ease-in-out infinite;
}

.fc3 {
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    padding: .75rem 1rem;
    animation: bob3 4s .8s ease-in-out infinite;
}

@keyframes bob1 { 0%, 100% { bottom: -18px; } 50% { bottom: -12px; } }
@keyframes bob2 { 0%, 100% { top: -18px; } 50% { top: -24px; } }
@keyframes bob3 { 0%, 100% { top: 50%; } 50% { top: calc(50% - 6px); } }

.fc-label {
    font-size: .68rem;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.fc-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text);
    line-height: 1.1;
}

.fc-sub {
    font-size: .75rem;
    color: var(--green);
    font-weight: 600;
}

.fc-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--text);
    white-space: nowrap;
}

.fc-chip svg {
    color: var(--green);
    flex-shrink: 0;
}

/* Scroll hint — REMOVED: overlaid content awkwardly on mobile and desktop */

/* Why section — homepage */
.why-section {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    padding: 1.8rem;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    transition: .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-pale) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    /* Absolutely-positioned pseudo-elements sit above static-flow children
       in the same stacking context, so without this line the ::before
       overlay captured every click on the card content — including the
       "Im Shop ansehen" product links in .wc-meta. */
    pointer-events: none;
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(30, 86, 49, .1);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.why-icon svg {
    color: var(--green);
}

.why-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: .5rem;
    position: relative;
}

.why-card p {
    font-size: .9rem;
    color: var(--text2);
    line-height: 1.6;
    position: relative;
}

/* Problem section — homepage */
.problem-section {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(30, 86, 49, .35) 0%, transparent 60%);
    pointer-events: none;
}

.problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-left h2 { color: white; margin: .5rem 0; }

.problem-img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
}

.problem-img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
    display: block;
    filter: brightness(.7) saturate(.6);
}

.problem-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 26, 14, .95) 0%, transparent 70%);
    padding: 2rem 1.5rem 1.5rem;
}

.problem-overlay-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.problem-overlay-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
}

.pp-list { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0; }
.pp { display: flex; gap: 1rem; align-items: flex-start; }

.pp-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(76, 175, 114, .12);
    border: 1px solid rgba(76, 175, 114, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.pp-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: white;
    margin-bottom: 2px;
}

.pp-text p { font-size: .85rem; color: rgba(255, 255, 255, .5); line-height: 1.5; }

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 114, .12);
    border: 1px solid rgba(76, 175, 114, .25);
    padding: .6rem 1.1rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--accent);
}

/* Product section — homepage */
.product-section { background: var(--bg); }
.product-header { text-align: center; margin-bottom: 3.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* About section — homepage */
.about-section { background: var(--bg3); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-lg); display: block; box-shadow: 0 24px 60px rgba(30, 86, 49, .15); }
.about-img-thumb { position: absolute; bottom: -20px; right: -20px; width: 44%; border-radius: var(--r); overflow: hidden; box-shadow: 0 10px 36px rgba(0, 0, 0, .15); border: 3px solid white; }
.about-img-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-text h2 { margin: .5rem 0 1rem; }
.about-text .lead { margin-bottom: 1.8rem; }
.fact-rows { display: flex; flex-direction: column; gap: .85rem; }
.fact-row { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1rem; background: white; border-radius: var(--r-sm); border: 1px solid var(--border); }
.fact-key { font-size: .88rem; color: var(--text2); }
.fact-val--home { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .95rem; color: var(--text); text-align: right; max-width: 55%; }

/* ==========================================================================
   16. PAGE-SPECIFIC: Kunststoff-Zaunlatten
   ========================================================================== */

/* Hero — subpage with TOC */
.hero--subpage {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 110px clamp(1.5rem, 6vw, 5rem) clamp(3rem, 6vh, 5rem);
}

.hero--subpage .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero--subpage .hero-h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.6rem);
}

/* TOC card in hero */
.hero-toc { animation: fadeUp .9s .22s var(--ease) both; }
.toc-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r-lg); padding: 1.8rem; backdrop-filter: blur(8px); }
.toc-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .88rem; color: rgba(255, 255, 255, .5); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 1.2rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: .15rem; }
.toc-list a { display: flex; align-items: center; gap: .75rem; text-decoration: none; padding: .65rem .75rem; border-radius: var(--r-sm); color: rgba(255, 255, 255, .7); font-size: .9rem; transition: .2s var(--ease); }
.toc-list a:hover { background: rgba(255, 255, 255, .07); color: white; }
.toc-num { width: 22px; height: 22px; border-radius: 50%; background: rgba(76, 175, 114, .15); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.toc-time { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .08); display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: rgba(255, 255, 255, .35); }

/* What section — kunststoff */
.what-section { background: white; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.what-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(30, 86, 49, .13); position: relative; }
.what-img img { width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; }
.what-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--dark); border-radius: var(--r-sm); padding: .7rem 1rem; color: white; }
.wib-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); margin-bottom: 2px; }
.wib-val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; }
.what-text h2 { margin: .5rem 0 1rem; }
.what-text .lead { margin-bottom: 1.5rem; }
.what-pills { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.pill { padding: .4rem .9rem; border-radius: 100px; font-size: .82rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--text2); transition: .2s; }
.pill.active { background: var(--green); color: white; border-color: var(--green); }

/* Types section — kunststoff */
.types-section { background: var(--bg3); }
.types-header { text-align: center; margin-bottom: 3rem; }
.types-header .lead { margin: .8rem auto 0; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.type-card { background: white; border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border); transition: .3s var(--ease); }
.type-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(30, 86, 49, .1); }
.type-card.best { border-color: var(--green); }
.type-best-badge { background: var(--green); color: white; text-align: center; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .4rem; }
.type-img { aspect-ratio: 16/9; overflow: hidden; }
.type-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.type-card:hover .type-img img { transform: scale(1.05); }
.type-body { padding: 1.4rem 1.5rem; }
.type-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: .4rem; }
.type-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: .5rem; }
.type-desc { font-size: .87rem; color: var(--text2); line-height: 1.55; margin-bottom: 1rem; }
.type-specs { display: flex; flex-direction: column; gap: .4rem; }
.type-spec { display: flex; justify-content: space-between; font-size: .82rem; padding: .45rem 0; border-bottom: 1px solid var(--border); }
.type-spec:last-child { border-bottom: none; }
.type-spec .k { color: var(--text3); }
.type-spec .v { font-weight: 600; color: var(--text); }
.type-spec .v.good { color: var(--green); }
.type-cta { display: block; text-align: center; background: var(--green); color: white; text-decoration: none; padding: .75rem; margin: 1rem 1.5rem 1.5rem; border-radius: var(--r-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .88rem; transition: background .2s, transform .2s; }
.type-cta:hover { background: var(--green2); transform: translateY(-1px); }

/* Guide section — kunststoff */
.guide-section { background: white; }
.guide-layout { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.guide-nav { position: sticky; top: 90px; z-index: 10; }
.guide-nav-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: .8rem; }
.guide-nav-list { list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.guide-nav-list a { display: flex; align-items: center; gap: .6rem; text-decoration: none; padding: .55rem .75rem; border-radius: var(--r-sm); font-size: .88rem; color: var(--text2); transition: .2s; }
.guide-nav-list a:hover { background: var(--bg3); color: var(--green); }
.guide-nav-list a.active { background: var(--accent-pale); color: var(--green); font-weight: 600; }
.guide-nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: .2s; }
.guide-nav-list a.active .guide-nav-dot { background: var(--accent); }
.guide-content { display: flex; flex-direction: column; gap: 3.5rem; }
.guide-block h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--text); margin-bottom: .9rem; padding-top: .5rem; border-top: 2px solid var(--accent-pale); }
.guide-block p { font-size: .95rem; color: var(--text2); line-height: 1.72; margin-bottom: 1rem; }
.guide-block p:last-child { margin-bottom: 0; }
.guide-tip { background: var(--accent-pale); border-left: 3px solid var(--accent); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 1rem 1.2rem; margin: 1rem 0; }
.guide-tip p { font-size: .88rem; color: var(--green); margin: 0; line-height: 1.6; }
.guide-tip strong { color: var(--dark); }
.info-box { background: var(--bg3); border-radius: var(--r); padding: 1.2rem 1.4rem; margin: 1rem 0; }
.info-box-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: .6rem; color: var(--text); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.info-row { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; padding: .4rem .6rem; background: white; border-radius: var(--r-sm); }
.info-row .ik { color: var(--text2); }
.info-row .iv { font-weight: 700; color: var(--text); }
.checklist { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.checklist li { display: flex; align-items: flex-start; gap: .75rem; font-size: .92rem; color: var(--text2); line-height: 1.55; }
.cl-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.cl-icon.g { background: var(--accent-pale); }
.cl-icon.w { background: #fff3cd; }

/* Comparison section — kunststoff */
.compare-section { background: var(--bg3); }
.compare-header { text-align: center; margin-bottom: 3rem; }
.compare-header .lead { margin: .8rem auto 0; }
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: 0 4px 24px rgba(30, 86, 49, .08); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 640px; background: white; border-radius: var(--r-lg); overflow: hidden; }
.compare-table thead th { padding: 1rem 1.2rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .82rem; text-align: center; letter-spacing: .04em; text-transform: uppercase; background: var(--bg3); color: var(--text3); }
.compare-table thead th:first-child { text-align: left; width: 200px; }
.compare-table thead th.col-hero { background: var(--green); color: white; }
.compare-table tbody td { padding: .9rem 1.2rem; border-bottom: 1px solid var(--border); font-size: .88rem; text-align: center; color: var(--text2); }
.compare-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text); background: var(--bg3); }
.compare-table tbody td.hero-col { background: var(--accent-pale); color: var(--text); font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.tick { color: var(--green); font-weight: 700; }
.cross { color: #ccc; }
.mid { color: var(--text3); }

/* Products section — kunststoff */
.products-section { background: white; }
.products-header { text-align: center; margin-bottom: 3.5rem; }
.products-header .lead { margin: .8rem auto 0; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }

/* Calculator section — kunststoff */
.calc-section { background: var(--bg3); }
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.calc-header { margin-bottom: 2rem; }
.calc-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text2); font-family: 'Plus Jakarta Sans', sans-serif; display: flex; justify-content: space-between; align-items: center; }
.rv { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--green); font-size: .95rem; }
.form-group input[type=range] { width: 100%; accent-color: var(--green); height: 4px; cursor: pointer; }
.form-group select { padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .92rem; color: var(--text); background: white; font-family: 'DM Sans', sans-serif; transition: border-color .2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9e8d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; }
.form-group select:focus { outline: none; border-color: var(--green); }
.calc-result { background: var(--dark); border-radius: var(--r-lg); padding: 2.2rem; color: white; position: sticky; top: 90px; }
.calc-result h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 1.5rem; }
.res-row { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: .88rem; }
.res-row .rk { color: rgba(255, 255, 255, .55); }
.res-row .rv2 { font-weight: 600; color: white; }
.res-total { margin-top: 1.5rem; background: var(--green); border-radius: var(--r-sm); padding: 1.1rem 1.4rem; }
.rt-label { font-size: .72rem; opacity: .75; text-transform: uppercase; letter-spacing: .08em; }
.rt-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 2.2rem; line-height: 1.1; }
.rt-sub { font-size: .76rem; opacity: .65; margin-top: 2px; }
.calc-action { margin-top: 1.4rem; }
.calc-action a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--dark); text-decoration: none; padding: .9rem; border-radius: var(--r-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .92rem; transition: .2s var(--ease); }
.calc-action a:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ==========================================================================
   17. PAGE-SPECIFIC: Hamburg (kunststoffzaun-kaufen-hamburg.html)
   ========================================================================== */

/* Hero — hamburg with local card */
.hero--hamburg {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px clamp(1.5rem, 6vw, 5rem) clamp(3rem, 6vh, 5rem);
}

.hero--hamburg .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}

.hero--hamburg .hero-h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.8rem);
    line-height: 1.02;
}

/* Local card in hero */
.hero-local { animation: fadeUp .9s .22s var(--ease) both; }
.local-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r-lg); padding: 2rem; backdrop-filter: blur(8px); position: relative; overflow: hidden; }
.local-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(76, 175, 114, .07) 0%, transparent 55%); }
.local-city-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--dark); padding: .45rem .9rem; border-radius: 100px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .88rem; margin-bottom: 1.4rem; position: relative; }
.local-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r); display: block; margin-bottom: 1.4rem; position: relative; }
.drow-hero { display: flex; align-items: center; gap: .8rem; padding: .9rem 1rem; background: rgba(255, 255, 255, .06); border-radius: var(--r-sm); border: 1px solid rgba(255, 255, 255, .08); margin-bottom: .7rem; position: relative; }
.dicon { width: 34px; height: 34px; background: rgba(76, 175, 114, .15); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dicon svg { color: var(--accent); }
.dlabel { font-size: .68rem; color: rgba(255, 255, 255, .4); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.dval { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: white; font-size: .92rem; margin-top: 1px; }

/* Hamburg has 4 fact items, not 5 */
.hero--hamburg ~ .facts-strip .facts-inner {
    grid-template-columns: repeat(4, 1fr);
}

/* Why local — hamburg (different layout than homepage why) */
.why-grid--hamburg { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-wrap { position: relative; }
.why-img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-lg); display: block; box-shadow: 0 20px 60px rgba(30, 86, 49, .13); }
.climate-badge { position: absolute; bottom: -18px; right: -18px; background: var(--dark); color: white; border-radius: var(--r); padding: 1rem 1.2rem; box-shadow: 0 8px 28px rgba(0, 0, 0, .3); min-width: 180px; }
.cb-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); margin-bottom: 3px; }
.cb-val { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .95rem; color: white; line-height: 1.3; }
.why-text h2 { margin: .5rem 0 1rem; }
.why-text .lead { margin-bottom: 1.2rem; }
.climate-box { background: var(--bg3); border-radius: var(--r); padding: 1.2rem 1.4rem; border-left: 3px solid var(--accent); margin-bottom: 1.8rem; }
.climate-box p { font-size: .9rem; color: var(--text2); line-height: 1.65; }
.climate-box strong { color: var(--text); }

/* Delivery section — hamburg */
.delivery-section { background: var(--bg3); }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 1.8rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .98rem; margin-bottom: 3px; }
.step p { font-size: .87rem; color: var(--text2); line-height: 1.55; }
.dcard { background: var(--dark); border-radius: var(--r-lg); padding: 2rem; color: white; position: sticky; top: 90px; }
.dcard h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: 1.4rem; }
.drow { display: flex; justify-content: space-between; padding: .8rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: .87rem; }
.drow:last-child { border-bottom: none; }
.dk { color: rgba(255, 255, 255, .5); }
.dv { font-weight: 600; color: white; }
.dv.g { color: var(--accent); }
.dcard-cta { margin-top: 1.5rem; }
.dcard-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--dark); text-decoration: none; padding: .95rem; border-radius: var(--r-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .92rem; transition: .2s var(--ease); }
.dcard-cta a:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Why Traplast cards — hamburg */
.why-traplast { background: white; }
.wt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.wt-card { padding: 1.8rem; border-radius: var(--r-lg); border: 1.5px solid var(--border); transition: .3s var(--ease); background: white; position: relative; overflow: hidden; }
.wt-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent-pale) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.wt-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(30, 86, 49, .1); }
.wt-card:hover::before { opacity: 1; }
.wt-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; position: relative; }
.wt-icon svg { color: var(--green); }
.wt-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: .45rem; position: relative; }
.wt-card p { font-size: .88rem; color: var(--text2); line-height: 1.6; position: relative; }

/* Products section — hamburg */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Trust band — hamburg */
.trust-band { background: var(--dark2); padding: 2.2rem clamp(1.5rem, 5vw, 4rem); }
.trust-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.tb-item { text-align: center; }
.tb-icon { width: 48px; height: 48px; background: rgba(255, 255, 255, .07); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin: 0 auto .85rem; }
.tb-icon svg { color: var(--accent); }
.tb-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; color: white; margin-bottom: 3px; }
.tb-sub { font-size: .78rem; color: rgba(255, 255, 255, .4); }

/* Nearby section — hamburg */
.nearby-section { background: var(--bg3); }
.nearby-header { text-align: center; margin-bottom: 2.5rem; }
.ngrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.nearby-card { background: white; border-radius: var(--r); padding: 1.2rem 1rem; text-align: center; border: 1.5px solid var(--border); text-decoration: none; transition: .2s var(--ease); display: block; }
.nearby-card:hover { border-color: var(--green); background: var(--accent-pale); transform: translateY(-3px); }
.ncity { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .95rem; color: var(--text); }
.ndesc { font-size: .75rem; color: var(--text3); margin-top: 3px; }

/* ==========================================================================
   18. PAGE-SPECIFIC: Erfahrungen (nie-mehr-streichen-erfahrungen.html)
   ========================================================================== */

/* Hero — erfahrungen with score card */
.hero--erfahrungen {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 120px clamp(1.5rem, 6vw, 5rem) clamp(3rem, 6vh, 5rem);
}

.hero--erfahrungen .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}

.hero--erfahrungen .hero-h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.04;
}

/* Score card in hero */
.hero-score-wrap { animation: fadeUp .9s .2s var(--ease) both; }
.score-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r-lg); padding: 2rem; backdrop-filter: blur(8px); }
.score-top { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.score-big { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 4rem; color: white; line-height: 1; }
.score-meta { display: flex; flex-direction: column; gap: 4px; }
.score-stars { color: #f5a623; font-size: 1.5rem; letter-spacing: 1px; }
.score-label { font-size: .8rem; color: rgba(255, 255, 255, .5); }
.score-rec { font-size: .85rem; font-weight: 700; color: white; }
.score-bars { display: flex; flex-direction: column; gap: .75rem; }
.sbar { display: flex; align-items: center; gap: .8rem; }
.sbar-label { font-size: .8rem; color: rgba(255, 255, 255, .6); width: 110px; flex-shrink: 0; }
.sbar-track { flex: 1; height: 6px; background: rgba(255, 255, 255, .1); border-radius: 3px; overflow: hidden; }
.sbar-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width 1.2s var(--ease); }
.sbar-val { font-size: .8rem; font-weight: 700; color: white; width: 22px; text-align: right; flex-shrink: 0; }
.score-verdict { margin-top: 1.5rem; padding: 1rem; background: rgba(76, 175, 114, .1); border-radius: var(--r-sm); border: 1px solid rgba(76, 175, 114, .2); }
.score-verdict p { font-size: .82rem; color: rgba(255, 255, 255, .7); line-height: 1.55; }
.score-verdict strong { color: var(--accent); }

/* Summary box — erfahrungen */
.summary-section { background: white; }
.summary-box { border: 2px solid var(--green); border-radius: var(--r-lg); overflow: hidden; }
.summary-head { background: var(--green); padding: 1.2rem 1.8rem; display: flex; align-items: center; gap: .8rem; }
.summary-head h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1rem; color: white; }
.summary-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.summary-col { padding: 1.8rem; }
.summary-col:first-child { border-right: 1px solid var(--border); }
.summary-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 7px; }
.summary-col h4.pro { color: var(--green); }
.summary-col h4.con { color: #c0392b; }
.summary-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.summary-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; color: var(--text2); line-height: 1.5; }
.chk { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.chk.g { background: var(--accent-pale); }
.chk.r { background: #fde8e8; }
.summary-verdict { padding: 1.5rem 1.8rem; background: var(--bg3); border-top: 1px solid var(--border); display: flex; gap: 1.5rem; align-items: center; }
.verdict-score { text-align: center; flex-shrink: 0; }
.verdict-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 2.8rem; color: var(--green); line-height: 1; }
.verdict-stars { color: #f5a623; font-size: 1rem; }
.verdict-lbl { font-size: .72rem; color: var(--text3); text-transform: uppercase; letter-spacing: .06em; }
.verdict-text { font-size: .9rem; color: var(--text2); line-height: 1.65; }
.verdict-text strong { color: var(--text); font-weight: 600; }

/* Spec grid inside summary box — balanced spacing around the green header */
.summary-box > .spec-grid { padding-top: 1.5rem; }
.summary-head + .spec-grid { padding-top: 1.5rem; }
.summary-box > .spec-grid:last-child { margin-bottom: 0; }

/* Comparison table — SEO pages */
.comparison-table { }
.comparison-table table { background: white; }
.comparison-table th { white-space: nowrap; }
.comparison-table td { vertical-align: middle; }

/* Timeline section — erfahrungen */
.timeline-section { background: var(--bg); }
.timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.t-item { position: relative; margin-bottom: 2.2rem; }
.t-dot { position: absolute; left: -2.5rem; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-pale); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; }
.t-dot svg { width: 10px; height: 10px; color: var(--green); }
.t-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 3px; }
.t-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: .4rem; color: var(--text); }
.t-text { font-size: .88rem; color: var(--text2); line-height: 1.6; }
.img-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 16px 48px rgba(30, 86, 49, .12); }
.img-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.img-caption { font-size: .78rem; color: var(--text3); margin-top: .7rem; text-align: center; }

/* Extended reviews — erfahrungen */
.rev-big { grid-column: span 3; background: var(--dark); border-radius: var(--r-lg); padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.rev-big-score { text-align: center; padding: 1.5rem 2rem; background: rgba(255, 255, 255, .05); border-radius: var(--r); border: 1px solid rgba(255, 255, 255, .08); }
.rbs-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 3rem; color: white; line-height: 1; }
.rbs-stars { color: #f5a623; font-size: 1.1rem; margin: .3rem 0; }
.rbs-lbl { font-size: .72rem; color: rgba(255, 255, 255, .4); text-transform: uppercase; letter-spacing: .06em; }
.rev-big-author { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.rba-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.rba-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: white; }
.rba-meta { font-size: .78rem; color: rgba(255, 255, 255, .45); margin-top: 2px; }
.rev-big-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem; color: white; margin-bottom: .8rem; line-height: 1.2; }
.rev-big-text { font-size: .92rem; color: rgba(255, 255, 255, .65); line-height: 1.7; }
.rev-big-product { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.2rem; font-size: .78rem; font-weight: 600; color: var(--accent); background: rgba(76, 175, 114, .1); padding: .3rem .75rem; border-radius: 100px; border: 1px solid rgba(76, 175, 114, .2); }

/* CTA box — erfahrungen */
.cta-box-section { background: var(--bg3); }
.cta-box { background: var(--dark); border-radius: var(--r-lg); padding: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(76, 175, 114, .2) 0%, transparent 65%); pointer-events: none; }
.cta-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.8rem; color: white; margin-bottom: .6rem; position: relative; }
.cta-box p { font-size: .95rem; color: rgba(255, 255, 255, .55); line-height: 1.6; position: relative; max-width: 520px; }
.cta-box-actions { display: flex; flex-direction: column; gap: .8rem; flex-shrink: 0; position: relative; }
.btn-cta-primary { background: var(--accent); color: var(--dark); padding: 1rem 1.8rem; border-radius: var(--r-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: .2s var(--ease); white-space: nowrap; box-shadow: 0 0 30px rgba(76, 175, 114, .3); }
.btn-cta-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-cta-ghost { background: transparent; color: rgba(255, 255, 255, .7); padding: .8rem 1.8rem; border-radius: var(--r-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .88rem; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255, 255, 255, .15); transition: .2s var(--ease); white-space: nowrap; }
.btn-cta-ghost:hover { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .07); }
.cta-trust { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; position: relative; }
.ct { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: rgba(255, 255, 255, .4); }
.ct svg { color: var(--accent); }

/* Comparison section — erfahrungen */
.comparison-section { background: white; }
.comp-header { text-align: center; margin-bottom: 3rem; }
.comp-header .lead { margin: .8rem auto 0; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.comp-card { border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border); }
.comp-card.winner { border-color: var(--green); }
.comp-head { padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.comp-head.dark-head { background: var(--dark); color: white; }
.comp-head.green-head { background: var(--green); color: white; }
.comp-head-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1rem; }
.comp-badge { font-size: .7rem; font-weight: 700; padding: .25rem .7rem; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; }
.comp-badge.loser { background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .7); }
.comp-badge.winner-b { background: var(--accent); color: var(--dark); }
.comp-body { padding: 1.5rem; }
.comp-row { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.comp-row:last-child { border-bottom: none; }
.comp-row .key { color: var(--text2); }
.comp-row .val { font-weight: 600; color: var(--text); }
.comp-row .val.bad { color: #c0392b; }
.comp-row .val.good { color: var(--green); }

/* Product details section — erfahrungen */
.details-section { background: var(--bg3); }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.detail-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(30, 86, 49, .12); }
.detail-img img { width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block; }
.detail-content h2 { margin: .5rem 0 1rem; }
.detail-content .lead { margin-bottom: 1.8rem; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.8rem; }
.spec-item { background: white; border-radius: var(--r-sm); padding: .8rem 1rem; border: 1px solid var(--border); }
.spec-item .sk { font-size: .72rem; color: var(--text3); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.spec-item .sv { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .95rem; color: var(--text); margin-top: 2px; }

/* ============================================================ */
/* SECTION 19 – (Removed: merged into Section 21 responsive)    */
/* ============================================================ */

/* ==========================================================================
   20. Fullscreen Mobile Menu Overlay
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 300;
    background: rgba(12, 26, 14, .97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 4rem 2rem 2rem;
    margin: auto 0;
    min-height: min-content;
}

.mobile-menu-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(12, 26, 14, .8);
    border: none;
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: color .2s;
    z-index: 301;
}

.mobile-menu-close:hover {
    color: white;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mobile-menu-links li {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-menu-links li:last-child {
    border-bottom: none;
}

.mobile-menu-links a {
    display: block;
    padding: 1.1rem 0;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: color .2s;
}

.mobile-menu-links a:hover {
    color: white;
}

.mobile-menu-cta {
    margin-top: 2rem;
    background: var(--accent);
    color: var(--dark);
    padding: .85rem 2rem;
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s var(--ease);
    box-shadow: 0 0 30px rgba(76, 175, 114, .25);
}

.mobile-menu-cta:hover {
    background: var(--accent-hover);
}

/* Mobile sub-menu accordion */
.mobile-menu-links .has-dropdown {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mobile-menu-links .has-dropdown > a {
    flex: 1;
}

/* Hide inline dropdown-arrow in mobile menu (it's inside the <a>) */
.mobile-menu-links .dropdown-arrow {
    display: none;
}

.sub-menu-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    padding: 1.1rem 1rem;
    cursor: pointer;
    transition: color .2s, transform .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-menu-toggle:hover {
    color: rgba(255, 255, 255, .8);
}

.mobile-menu-links .has-dropdown.sub-open > .sub-menu-toggle {
    transform: rotate(180deg);
    color: var(--accent);
}

.mobile-menu-links .nav-dropdown {
    list-style: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: rgba(255, 255, 255, .03);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    /* Override global .nav-dropdown desktop hover-dropdown styles */
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    margin-top: 0;
    min-width: 0;
    z-index: auto;
}

.mobile-menu-links .has-dropdown.sub-open > .nav-dropdown {
    max-height: 800px;
}

.mobile-menu-links .nav-dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.mobile-menu-links .nav-dropdown li:last-child {
    border-bottom: none;
}

.mobile-menu-links .nav-dropdown a {
    display: block;
    padding: .75rem 1.5rem .75rem 2rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    transition: color .2s, padding-left .2s;
}

.mobile-menu-links .nav-dropdown a:hover {
    color: var(--accent);
    padding-left: 2.3rem;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Germany Map SVG — city landing pages */
.germany-map-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.germany-map-svg {
    width: 100%;
    max-width: 360px;
    height: auto;
}

.germany-outline {
    fill: rgba(30, 86, 49, .12);
    stroke: #1e5631;
    stroke-width: 1.5;
    stroke-linejoin: round;
}

body.light-mode .germany-outline {
    fill: rgba(30, 86, 49, .08);
    stroke: #1e5631;
    stroke-width: 1.5;
}

.germany-map-marker {
    fill: #4caf72;
    stroke: #fff;
    stroke-width: 2;
}

body.light-mode .germany-map-marker {
    stroke: #1e5631;
}

.germany-map-pulse {
    opacity: .4;
    animation: mapPulse 2.5s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { r: 16; opacity: .3; }
    50% { r: 24; opacity: .15; }
}

.germany-map-label {
    fill: rgba(255, 255, 255, .9);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

body.light-mode .germany-map-label {
    fill: #1a1a2e;
}

/* ==========================================================================
   21. Responsive Breakpoints (TMPL-06)
   ========================================================================== */
@media (max-width: 1024px) {
    /* Shared */
    .hero-inner { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-strip { grid-template-columns: repeat(2, 1fr); }

    /* Homepage */
    .hero-visual { display: none; }
    .problem-inner,
    .about-grid { grid-template-columns: 1fr; }
    .about-img-thumb { display: none; }

    /* Kunststoff */
    .hero-toc,
    .guide-nav { display: none; }
    .what-grid,
    .calc-wrap,
    .guide-layout { grid-template-columns: 1fr; }
    .facts-inner { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

    /* Hamburg */
    .hero-local { display: none; }
    .why-grid--hamburg,
    .delivery-grid { grid-template-columns: 1fr; }
    .climate-badge { display: none; }
    .trust-inner { grid-template-columns: repeat(2, 1fr); }

    /* Erfahrungen */
    .hero-score-wrap { display: none; }
    .details-grid,
    .timeline-grid,
    .comp-grid { grid-template-columns: 1fr; }
    .rev-big { grid-column: span 1; grid-template-columns: 1fr; }
    .cta-box { grid-template-columns: 1fr; }
    .cta-box-actions { flex-direction: row; flex-wrap: wrap; }
    .summary-body { grid-template-columns: 1fr; }
    .summary-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
    /* Shared */
    .nav-links,
    .nav-btn { display: none; }
    .hamburger { display: flex; }
    .footer-top { grid-template-columns: 1fr; }

    /* Homepage */
    .why-grid,
    .product-grid,
    .rev-grid { grid-template-columns: 1fr; }
    .hero-strip { grid-template-columns: 1fr; }
    .rev-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .rev-score-wrap { text-align: left; }

    /* Homepage: Problem section gap reduction */
    .problem-inner { gap: 2rem; }
    .problem-img-wrap { border-radius: var(--r); overflow: hidden; }

    /* Homepage: About section gap reduction */
    .about-grid { gap: 2rem; }
    .about-img-main { border-radius: var(--r); }

    /* Kunststoff */
    .types-grid,
    .products-grid { grid-template-columns: 1fr; }
    .facts-inner { grid-template-columns: 1fr; }
    .facts-strip { padding: .8rem clamp(1rem, 4vw, 2rem); }
    .fact-item { padding: .8rem 1rem; text-align: left; display: flex; align-items: baseline; gap: .6rem; }
    .fact-val { font-size: 1.2rem; flex-shrink: 0; }
    .fact-lbl { font-size: .75rem; }
    .info-grid { grid-template-columns: 1fr; }

    /* Kunststoff: Type card padding */
    .type-body { padding: 1rem 1.2rem; }
    .type-cta { margin: .8rem 1.2rem 1.2rem; }

    /* Kunststoff: Guide content full width */
    .guide-content { gap: 2.5rem; }

    /* Kunststoff: Calculator */
    .calc-result { position: static; }

    /* Hamburg */
    .wt-grid,
    .pgrid,
    .rgrid { grid-template-columns: 1fr; }
    .os { text-align: left; }

    /* Hamburg/City: Nearby grid 2 columns */
    .ngrid { grid-template-columns: repeat(2, 1fr); }

    /* Hamburg/City: Delivery grid gap */
    .delivery-grid { gap: 2rem; }

    /* Erfahrungen */
    .reviews-grid { grid-template-columns: 1fr; }
    .rev-big { display: flex; flex-direction: column; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .overall-score { text-align: left; }
    .spec-grid { grid-template-columns: 1fr 1fr; }

    /* Erfahrungen: Summary box tighter */
    .summary-head { padding: 1rem 1.2rem; }
    .summary-head h3 { font-size: .95rem; }
    .summary-col { padding: 1.2rem; }
    .summary-verdict { padding: 1.2rem; flex-direction: column; text-align: center; }
    .verdict-num { font-size: 2.2rem; }

    /* Erfahrungen: Timeline gap */
    .timeline-grid { gap: 2rem; }

    /* Erfahrungen: Comparison note box wrap */
    .comp-grid + .reveal { flex-direction: column; }

    /* Erfahrungen: CTA box trust badges wrap */
    .cta-trust { flex-wrap: wrap; }

    /* Erfahrungen: Details grid gap */
    .details-grid { gap: 2rem; }

    /* CTA box full stack */
    .cta-box { padding: 2rem 1.5rem; }
    .cta-box h3 { font-size: 1.4rem; }

    /* Global container padding for tablets */
    .inner { padding-left: 1.25rem; padding-right: 1.25rem; }

    /* Hero strip needs horizontal margin */
    .hero-strip { margin-left: 1rem; margin-right: 1rem; }

    /* Hero badges tighter gap */
    .hero-badges { gap: .8rem; }

    /* Final section buttons stack */
    .final-btns { flex-direction: column; align-items: center; }

    /* Sticky bar text smaller */
    .sticky-text { font-size: .8rem; }
    .sticky-btn { font-size: .78rem; padding: .5rem 1rem; }

    /* BUG-HERO-GAP: Remove min-height, force 1-column, hide visual on mobile */
    .hero--home,
    .hero--hamburg,
    .hero--subpage,
    .hero--erfahrungen { min-height: auto; padding: 100px 1.2rem 3rem; }
    .hero--home .hero-inner,
    .hero--hamburg .hero-inner,
    .hero--subpage .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-visual { display: none; }
    .hero-sub { max-width: 100%; }
    .hero-h1 { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-ctas { flex-direction: column; gap: .75rem; }
    .hero-ctas a { width: 100%; justify-content: center; text-align: center; }

    /* BUG-WHY-CARDS: Ensure cards don't clip on mobile */
    .why-grid { gap: 1.2rem; margin-top: 2rem; }
    .why-card { overflow: visible; }
    .why-icon { width: 48px; height: 48px; }

    /* BUG-PRODUCT-IMAGES: Constrain product image height on single column mobile */
    .p-img { aspect-ratio: 16/8; }
    .product-grid { gap: 1.2rem; }
    .p-card { max-width: 100%; }

    /* BUG-SCORE-CARD: Hero text fills width (display: none already set at 1024px) */
    .hero--erfahrungen .hero-inner { grid-template-columns: 1fr; gap: 0; }
    .hero--erfahrungen .hero-h1 { font-size: clamp(2rem, 7vw, 2.8rem); }

    /* BUG-COMPARISON: Comparison cards stack properly on mobile */
    .comp-grid { gap: 1.5rem; }
    .comp-card { border-radius: var(--r); }
    .comp-row { flex-wrap: wrap; gap: .25rem; }
    .comp-row .key { flex: 1 1 100%; font-size: .8rem; }
    .comp-row .val { flex: 1 1 100%; font-size: .85rem; }
}

/* ==========================================================================
   22. Small Mobile Breakpoint
   ========================================================================== */
@media (max-width: 480px) {
    /* Global spacing reduction */
    section { padding: 3rem 0; }

    /* Hero text sizing */
    .hero-h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .lead { font-size: .85rem; }

    /* Stats strip — prevent overflow on narrow screens */
    .hero-strip { gap: .8rem; }
    .hs-item { padding: .6rem .8rem; }

    /* Facts grid — single column on very small screens */
    .facts-inner { grid-template-columns: 1fr !important; }

    /* Product cards — reduce padding */
    .p-card { padding: 1.2rem; }
    .product-grid { gap: 1rem; }

    /* FAQ — ensure touch-friendly targets */
    .faq-q { padding: 1rem; min-height: 48px; }
    .faq-body-inner { padding: 0 1rem 1rem; }

    /* CTA box — tight mobile layout */
    .cta-box { padding: 1.2rem 1rem; gap: .8rem; }
    .cta-box h3 { font-size: 1.15rem; }
    .cta-box p { font-size: .82rem; }
    .cta-box-actions { flex-direction: column; width: 100%; }
    .btn-cta-primary,
    .btn-cta-ghost { width: 100%; justify-content: center; text-align: center; }

    /* Comparison cards — reduce padding */
    .comp-body { padding: 1rem; }
    .comp-head { padding: .8rem 1rem; }

    /* Reviews — tighter layout */
    .rev-big { padding: 1.2rem; gap: 1rem; }
    .rev-big-score { flex-direction: row; align-items: center; gap: .8rem; }
    .rbs-num { font-size: 1.8rem; }
    .rev-big-title { font-size: 1.05rem; }
    .rev-big-text { font-size: .85rem; }
    .rev-big-author { flex-direction: column; gap: .5rem; }
    .rba-avatar { width: 36px; height: 36px; }
    .rba-name { font-size: .85rem; }
    .rba-meta { font-size: .72rem; }

    /* Timeline — reduce indentation */
    .timeline { padding-left: 2rem; }

    /* Footer — tighter on mobile */
    .footer-inner { padding: 2rem 1rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

    /* Spec grid single column on very small */
    .spec-grid { grid-template-columns: 1fr; }

    /* Nav spacing */
    nav { padding: 0 1rem; }

    /* Trust badges wrap */
    .cta-trust { gap: .5rem .8rem; flex-wrap: wrap; }
    .ct { font-size: .75rem; }

    /* Why grid cards */
    .why-card { padding: 1.2rem; }

    /* Checklist items */
    .chk { width: 16px; height: 16px; }

    /* CRITICAL FIX: .inner needs horizontal padding when section padding is 0 */
    .inner { padding-left: 1rem; padding-right: 1rem; }

    /* Hero horizontal padding increase */
    .hero--home { padding-left: 1.2rem; padding-right: 1.2rem; }
    .hero--subpage,
    .hero--hamburg,
    .hero--erfahrungen { padding-left: 1.2rem; padding-right: 1.2rem; }
    .hero-inner { padding-left: 0; padding-right: 0; }

    /* Hero strip full-width fix */
    .hero-strip { margin-left: 0; margin-right: 0; border-radius: 0; }
    .hs-item { padding: .8rem 1rem; }
    .hs-title { font-size: .82rem; }
    .hs-sub { font-size: .68rem; }

    /* Hero badges wrap better */
    .hero-badges { gap: .6rem .8rem; }
    .hb { font-size: .72rem; }

    /* Hero CTAs stack on small screens */
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn-hero,
    .hero-ctas .btn-hero-ghost,
    .hero-ctas .btn-ghost { text-align: center; justify-content: center; width: 100%; }

    /* Hero eyebrow smaller */
    .hero-eyebrow { font-size: .7rem; padding: .3rem .8rem; }

    /* Hero sub text tighter */
    .hero-sub { font-size: .9rem; }

    /* Facts strip — compact single-column on small mobile */
    .facts-strip { padding: 0; }
    .facts-inner { padding: 0 .8rem; }
    .fact-item { padding: .7rem .8rem; }
    .fact-val { font-size: 1.15rem; }
    .fact-lbl { font-size: .7rem; }

    /* Final section tighter */
    .final { padding: 3rem 1.2rem; }
    .final-inner p { font-size: .92rem; }
    .final-btns { flex-direction: column; align-items: stretch; gap: .8rem; }
    .btn-final,
    .btn-final-g { text-align: center; justify-content: center; width: 100%; }

    /* Sticky bar compact */
    .sticky-bar { padding: .7rem 1rem; }
    .sticky-inner { flex-direction: column; gap: .5rem; text-align: center; }
    .sticky-text { font-size: .75rem; }
    .sticky-btn { width: 100%; text-align: center; justify-content: center; font-size: .78rem; }

    /* Homepage: Why cards tighter */
    .why-grid { gap: 1rem; }
    .why-card h3 { font-size: 1rem; }
    .why-card p { font-size: .85rem; }
    .why-icon { width: 44px; height: 44px; margin-bottom: .8rem; }

    /* Homepage: Problem section mobile */
    .problem-inner { gap: 1.5rem; }
    .pp { gap: .75rem; }
    .pp-num { width: 28px; height: 28px; font-size: .75rem; flex-shrink: 0; }
    .pp-text h4 { font-size: .95rem; }
    .pp-text p { font-size: .85rem; }
    .solution-badge { font-size: .82rem; padding: .6rem 1rem; }

    /* Homepage: About section compact */
    .about-grid { gap: 1.5rem; }
    .about-text .lead { font-size: .88rem; margin-bottom: 1.2rem; }
    .fact-rows { gap: 0; }
    .fact-row { padding: .6rem 0; font-size: .85rem; }

    /* Homepage: Product section */
    .product-header .lead { font-size: .88rem; }
    .p-body { padding: 1rem; }
    .p-footer { padding: 0 1rem 1rem; }
    .p-name { font-size: .95rem; }
    .p-desc { font-size: .82rem; }
    .p-specs { gap: .4rem; }
    .p-spec { font-size: .7rem; padding: .25rem .5rem; }

    /* Kunststoff: Types section compact */
    .types-grid { gap: 1rem; }
    .type-body { padding: 1rem; }
    .type-name { font-size: .95rem; }
    .type-desc { font-size: .82rem; }
    .type-spec { font-size: .78rem; padding: .35rem 0; }
    .type-cta { margin: .8rem 1rem 1rem; padding: .65rem; font-size: .82rem; }
    .type-best-badge { font-size: .65rem; }

    /* Kunststoff: Guide section compact */
    .guide-content { gap: 2rem; }
    .guide-block h3 { font-size: 1.15rem; }
    .guide-block p { font-size: .88rem; }
    .guide-tip { padding: .8rem 1rem; }
    .guide-tip p { font-size: .82rem; }
    .info-box { padding: 1rem; }
    .info-grid { grid-template-columns: 1fr; }
    .checklist li { font-size: .85rem; }

    /* Kunststoff: Comparison table */
    .table-wrap { margin: 0 -1rem; border-radius: 0; }

    /* Kunststoff: Calculator compact */
    .calc-wrap { gap: 2rem; }
    .calc-result { padding: 1.5rem; position: static; }
    .calc-result h3 { font-size: 1.05rem; }
    .res-row { font-size: .82rem; }
    .rt-price { font-size: 1.8rem; }

    /* Kunststoff: Products grid */
    .products-grid { gap: 1rem; }
    .products-header .lead { font-size: .88rem; }

    /* Hamburg/City: Delivery section compact */
    .delivery-grid { gap: 1.5rem; }
    .step { gap: .75rem; }
    .step-num { width: 28px; height: 28px; font-size: .75rem; flex-shrink: 0; }
    .step h4 { font-size: .95rem; }
    .step p { font-size: .85rem; }
    .dcard { padding: 1.5rem; }
    .dcard h3 { font-size: 1.1rem; }
    .drow { font-size: .82rem; padding: .55rem 0; }

    /* Hamburg/City: Why local section */
    .why-grid--hamburg { gap: 1.5rem; }
    .why-text .lead { font-size: .88rem; }
    .climate-box { padding: 1rem; }
    .climate-box p { font-size: .88rem; }

    /* Hamburg/City: WT grid compact */
    .wt-grid { gap: 1rem; }
    .wt-card { padding: 1.2rem; }
    .wt-card h3 { font-size: 1rem; }
    .wt-card p { font-size: .85rem; }

    /* Hamburg/City: Nearby grid compact */
    .ngrid { grid-template-columns: 1fr 1fr; gap: .8rem; }
    .nearby-card { padding: .8rem .6rem; }
    .ncity { font-size: .85rem; }
    .ndesc { font-size: .68rem; }

    /* Hamburg/City: Products section */
    .pgrid { gap: 1rem; }

    /* Homepage: Review section */
    .rev-score-wrap { text-align: left; }
    .rev-score { font-size: 2.4rem; }
    .rev-grid { gap: 1rem; }
    .rev-card { padding: 1.2rem; }
    .rev-text { font-size: .85rem; }
    .rev-chip { font-size: .72rem; }

    /* Erfahrungen: Summary box compact */
    .summary-head { padding: .8rem 1rem; gap: .5rem; }
    .summary-head h3 { font-size: .85rem; }
    .summary-col { padding: 1rem; }
    .summary-col h4 { font-size: .82rem; }
    .summary-list li { font-size: .82rem; gap: 7px; }
    .summary-verdict { padding: 1rem; gap: .8rem; flex-direction: column; text-align: center; }
    .verdict-num { font-size: 2rem; }
    .verdict-text { font-size: .82rem; }

    /* Erfahrungen: Timeline compact */
    .timeline-grid { gap: 1.5rem; margin-top: 2rem; }
    .t-item { margin-bottom: 1.5rem; }
    .t-label { font-size: .7rem; }
    .t-title { font-size: 1rem; }
    .t-text { font-size: .85rem; }
    .img-frame { border-radius: var(--r); overflow: hidden; }
    .img-caption { font-size: .8rem; }

    /* Erfahrungen: Comparison cards compact */
    .comp-grid { gap: 1rem; }
    .comp-head-title { font-size: .95rem; }
    .comp-badge { font-size: .65rem; }
    .comp-row { padding: .55rem .8rem; font-size: .82rem; }

    /* Erfahrungen: Comparison note box */
    .comp-grid + .reveal[style] { flex-direction: column; padding: 1rem; }

    /* Erfahrungen: Reviews grid compact */
    .reviews-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .overall-score { text-align: left; }
    .os-num { font-size: 2.4rem; }
    .reviews-grid { gap: 1rem; }
    .rev-title { font-size: .9rem; }
    .rev-footer { font-size: .72rem; }

    /* Erfahrungen: Details section compact */
    .details-grid { gap: 1.5rem; }
    .detail-img img { border-radius: var(--r); }
    .spec-grid { gap: .5rem; }
    .spec-item { padding: .6rem .8rem; }
    .spec-item .sk { font-size: .65rem; }
    .spec-item .sv { font-size: .85rem; }

    /* Erfahrungen: Inline fazit box */
    .timeline-grid [style*="background:white"] { padding: 1rem !important; }

    /* Erfahrungen: Final section buttons stack */
    .final-btns .btn-final { font-size: .88rem; padding: .9rem 1.5rem; }

    /* BUG-WHY-CARDS: Cards fully visible at small screens */
    .why-card { overflow: visible; min-height: auto; }
    .why-section .inner { overflow: visible; }

    /* BUG-PRODUCT-IMAGES: Tighter product layout on small screens */
    .p-img { aspect-ratio: 16/9; }
    .p-body { padding: 1rem; gap: .4rem; }
    .p-footer { padding: 0 1rem .8rem; }
    .p-name { font-size: .9rem; }

    /* BUG-SCORE-CARD: Erfahrungen hero text sizing for small screens */
    .hero--erfahrungen .hero-h1 { font-size: 1.8rem; }
    .hero--erfahrungen .hero-sub { font-size: .88rem; }

    /* BUG-COMPARISON: Tighter comparison on small screens */
    .comp-head-title { font-size: .9rem; }
    .comp-row { padding: .5rem .8rem; }
    .comp-row .key { font-size: .78rem; }
    .comp-row .val { font-size: .82rem; }

    /* BUG-HERO-GAP: Further reduce hero padding on small screens */
    .hero--home { padding-top: 90px; padding-bottom: 2rem; }
    .hero--hamburg { padding-top: 90px; padding-bottom: 2rem; }
    .hero--erfahrungen { padding-top: 90px; padding-bottom: 2rem; }
}

/* ==========================================================================
   23. Light Mode — Per-page override (body.light-mode)
   Overrides all hardcoded dark sections: nav, hero, breadcrumb, facts,
   sticky bar, final CTA, footer. CSS custom properties in :root stay
   unchanged since they are already light.
   ========================================================================== */

/* --- Nav ----------------------------------------------------------------- */
body.light-mode nav.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

body.light-mode .logo-word {
    color: var(--dark);
}

body.light-mode .nav-links a {
    color: var(--text2);
}

body.light-mode .nav-links a:hover {
    color: var(--text);
}

body.light-mode .hamburger span {
    background: var(--dark);
}

/* --- Breadcrumb ---------------------------------------------------------- */
body.light-mode .breadcrumb {
    background: var(--bg3);
}

body.light-mode .bc-inner {
    color: var(--text3);
}

body.light-mode .bc-inner a {
    color: var(--text3);
}

body.light-mode .bc-inner a:hover {
    color: var(--accent);
}

body.light-mode .bc-cur,
body.light-mode .bc-current {
    color: var(--text);
}

/* --- Hero ---------------------------------------------------------------- */
body.light-mode .hero {
    background: var(--bg);
}

body.light-mode .glow-1 {
    background: radial-gradient(circle, rgba(30, 86, 49, .08) 0%, transparent 65%);
}

body.light-mode .glow-2 {
    background: radial-gradient(circle, rgba(76, 175, 114, .06) 0%, transparent 65%);
}

body.light-mode .hero::before {
    opacity: .015;
}

body.light-mode .hero-eyebrow {
    background: var(--accent-pale);
    border-color: rgba(76, 175, 114, .2);
    color: var(--green);
}

body.light-mode .hero-h1 {
    color: var(--dark);
}

body.light-mode .hero-h1 .line:nth-child(3) {
    color: var(--green);
}

body.light-mode .hero-sub {
    color: var(--text2);
}

body.light-mode .hero-sub strong {
    color: var(--text);
}

body.light-mode .btn-hero {
    box-shadow: 0 0 36px rgba(76, 175, 114, .2);
}

body.light-mode .btn-hero:hover {
    box-shadow: 0 0 56px rgba(76, 175, 114, .3);
}

body.light-mode .btn-ghost,
body.light-mode .btn-hero-ghost {
    background: rgba(0, 0, 0, .04);
    color: var(--text);
    border-color: var(--border);
}

body.light-mode .btn-ghost:hover,
body.light-mode .btn-hero-ghost:hover {
    background: rgba(0, 0, 0, .07);
    border-color: var(--text3);
}

body.light-mode .hb {
    color: var(--text3);
}

/* --- Hero delivery info (city pages) ------------------------------------- */
body.light-mode .drow-hero {
    background: rgba(0, 0, 0, .04);
    border-color: var(--border);
}

body.light-mode .dicon {
    background: rgba(76, 175, 114, .1);
}

body.light-mode .dlabel {
    color: var(--text3);
}

body.light-mode .dval {
    color: var(--text);
}

/* --- Hero strip ---------------------------------------------------------- */
body.light-mode .hero-strip {
    background: var(--border);
}

body.light-mode .hs-item {
    background: var(--bg2);
}

body.light-mode .hs-title {
    color: var(--text);
}

body.light-mode .hs-sub {
    color: var(--text3);
}

/* --- Hero search form (404/search inside hero) --------------------------- */
body.light-mode .hero .search-field {
    border-color: var(--border);
    background: var(--bg2);
    color: var(--text);
}

body.light-mode .hero .search-field::placeholder {
    color: var(--text3);
}

/* --- Hero badges --------------------------------------------------------- */
body.light-mode .hero-badges .hb svg {
    color: var(--green);
}

/* --- Product showcase (homepage hero) ------------------------------------ */
body.light-mode .product-showcase {
    background: rgba(0, 0, 0, .02);
    border-color: var(--border);
}

body.light-mode .product-showcase::before {
    background: linear-gradient(135deg, rgba(76, 175, 114, .04) 0%, transparent 60%);
}

/* --- Score card (Erfahrungen hero) --------------------------------------- */
body.light-mode .score-card {
    background: var(--bg2);
    border-color: var(--border);
}

body.light-mode .score-top {
    border-bottom-color: var(--border);
}

body.light-mode .score-big {
    color: var(--dark);
}

body.light-mode .score-rec {
    color: var(--dark);
}

body.light-mode .score-label {
    color: var(--text3);
}

body.light-mode .sbar-label {
    color: var(--text2);
}

body.light-mode .sbar-track {
    background: var(--border);
}

body.light-mode .sbar-val {
    color: var(--text);
}

body.light-mode .score-verdict {
    background: rgba(76, 175, 114, .08);
    border-color: rgba(76, 175, 114, .18);
}

body.light-mode .score-verdict p {
    color: var(--text2);
}

/* --- Scroll hint — REMOVED (element removed from homepage) --------------- */

/* --- Facts strip --------------------------------------------------------- */
body.light-mode .facts-strip {
    background: var(--bg3);
}

body.light-mode .facts-inner {
    background: var(--border);
}

body.light-mode .fact-item {
    background: var(--bg3);
}

body.light-mode .fact-lbl {
    color: var(--text3);
}

/* --- Sticky CTA bar ------------------------------------------------------ */
body.light-mode .sticky-bar {
    background: rgba(255, 255, 255, .95);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

body.light-mode .sticky-text {
    color: var(--text2);
}

body.light-mode .sticky-text strong {
    color: var(--text);
}

/* --- Final CTA section --------------------------------------------------- */
body.light-mode .final {
    background: var(--bg3);
}

body.light-mode .final::before {
    background: radial-gradient(ellipse at 30% 60%, rgba(30, 86, 49, .06) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 40%, rgba(76, 175, 114, .04) 0%, transparent 45%);
}

body.light-mode .final-inner h2 {
    color: var(--dark);
}

body.light-mode .final-inner p {
    color: var(--text2);
}

body.light-mode .btn-final {
    box-shadow: 0 0 40px rgba(76, 175, 114, .15);
}

body.light-mode .btn-final-g {
    color: var(--text);
    border-color: var(--border);
}

body.light-mode .btn-final-g:hover {
    border-color: var(--text3);
    background: rgba(0, 0, 0, .03);
}

body.light-mode .ft {
    color: var(--text3);
}

/* --- Footer -------------------------------------------------------------- */
body.light-mode footer {
    background: var(--bg2);
    border-top-color: var(--border);
}

body.light-mode .footer-brand p {
    color: var(--text3);
}

body.light-mode .footer-col h4 {
    color: var(--text);
}

body.light-mode .footer-col a {
    color: var(--text3);
}

body.light-mode .footer-col a:hover {
    color: var(--accent);
}

body.light-mode .footer-bottom {
    border-top-color: var(--border);
}

body.light-mode .footer-bottom p {
    color: var(--text3);
}

body.light-mode .affiliate-disc {
    color: var(--text3);
}

body.light-mode .footer-brand .logo-word {
    color: var(--dark);
}

/* ========== 24. Blog System ========== */

/* --- 24a. Blog Grid Layout (overview page) -------------------------------- */
.blog-section { background: var(--bg); padding: clamp(4rem,8vw,7rem) 0; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- 24b. Blog Post Card -------------------------------------------------- */
.blog-card { background: white; border-radius: var(--r-lg); border: 1.5px solid var(--border); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(30,86,49,.1); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: 1.4rem 1.5rem; }
.blog-card-meta { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem; }
.blog-card-meta .tag { font-size: .62rem; padding: .2rem .5rem; }
.blog-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.05rem; line-height: 1.3; margin-bottom: .5rem; }
.blog-card-title a { color: var(--text); text-decoration: none; transition: color .2s; }
.blog-card-title a:hover { color: var(--green); }
.blog-card-excerpt { font-size: .87rem; color: var(--text2); line-height: 1.55; }
.blog-card-readmore { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; color: var(--green); text-decoration: none; margin-top: .8rem; transition: gap .2s; }
.blog-card-readmore:hover { gap: .6rem; }

/* --- 24c. Blog Featured Post Card ----------------------------------------- */
.blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; background: white; border-radius: var(--r-lg); border: 1.5px solid var(--border); overflow: hidden; margin-bottom: 2.5rem; transition: box-shadow .3s var(--ease); }
.blog-featured:hover { box-shadow: 0 16px 48px rgba(30,86,49,.1); }
.blog-featured-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.blog-featured:hover .blog-featured-img img { transform: scale(1.03); }
.blog-featured-body { padding: 2rem 2rem 2rem 0; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-meta { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.blog-featured-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 2.5vw, 1.8rem); line-height: 1.2; margin-bottom: .8rem; }
.blog-featured-title a { color: var(--text); text-decoration: none; transition: color .2s; }
.blog-featured-title a:hover { color: var(--green); }
.blog-featured-excerpt { font-size: .92rem; color: var(--text2); line-height: 1.6; margin-bottom: 1.2rem; }

/* --- 24d. Blog Single Post Layout ----------------------------------------- */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.blog-main { min-width: 0; }
.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-meta { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: .8rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.blog-post-meta .tag { font-size: .62rem; padding: .2rem .5rem; }
.blog-post-h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; color: var(--text); margin: .5rem 0; }
.blog-post-reading { font-size: .78rem; color: var(--text3); display: flex; align-items: center; gap: .3rem; }
.blog-post-featured { margin-bottom: 2.5rem; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 16px 48px rgba(30,86,49,.12); }
.blog-post-featured img { width: 100%; height: auto; display: block; }

/* --- 24e. Blog Entry Content (Gutenberg blocks) --------------------------- */
.entry-content { font-size: .95rem; color: var(--text2); line-height: 1.72; overflow-wrap: break-word; word-wrap: break-word; max-width: 100%; }
.entry-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 2.5rem 0 1rem; }
.entry-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 2rem 0 .8rem; }
.entry-content h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 .6rem; }
.entry-content p { margin-bottom: 1.2rem; }
.entry-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.entry-content a:hover { color: var(--accent); }
.entry-content .wp-block-separator { border: none; border-top: 2px solid var(--border); margin: 2.5rem 0; }

/* Tables with accent border — .wp-block-table is a wrapper div around <table> */
.entry-content .wp-block-table { display: block; overflow-x: auto; max-width: 100%; }
.entry-content .wp-block-table table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--accent); font-size: .9rem; min-width: 480px; }
.entry-content .wp-block-table th { background: var(--green); color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; padding: .8rem 1rem; text-align: left; }
.entry-content .wp-block-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--text2); }
.entry-content .wp-block-table tr:last-child td { border-bottom: none; }
.entry-content .wp-block-table tr:nth-child(even) td { background: var(--bg); }

/* Blockquotes with green side stripe */
.entry-content blockquote, .entry-content .wp-block-quote { border-left: 4px solid var(--accent); padding: 1.2rem 1.5rem; margin: 2rem 0; background: var(--accent-pale); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-style: italic; color: var(--text); }
.entry-content .wp-block-pullquote { border: none; padding: 2rem; margin: 2.5rem 0; text-align: center; }
.entry-content .wp-block-pullquote blockquote { border-left: none; background: none; padding: 0; text-align: center; font-size: 1.2rem; font-weight: 600; }
.entry-content .wp-block-pullquote cite { display: block; margin-top: .8rem; font-size: .85rem; color: var(--text3); font-style: normal; }

/* Dark code blocks */
.entry-content pre { background: var(--dark); color: #e0e8e2; padding: 1.5rem; border-radius: var(--r); overflow-x: auto; font-size: .85rem; line-height: 1.6; }
.entry-content code { font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace; font-size: .88em; }
.entry-content :not(pre) > code { background: var(--bg3); padding: .15rem .4rem; border-radius: 4px; color: var(--green); }

/* Custom bullet lists */
.entry-content ul { list-style: none; padding-left: 1.5rem; }
.entry-content ul li { position: relative; padding-left: 0; margin-bottom: .4rem; }
.entry-content ul li::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; margin-right: .8rem; margin-left: -1.5rem; vertical-align: middle; }
.entry-content ol { padding-left: 1.5rem; }
.entry-content ol li { margin-bottom: .4rem; }
.entry-content ol li::marker { color: var(--green); font-weight: 700; }

/* Images with border-radius and shadow */
.entry-content img { max-width: 100%; height: auto; }
.entry-content .wp-block-image img { border-radius: var(--r); box-shadow: 0 8px 32px rgba(30,86,49,.1); }
.entry-content .wp-block-image figcaption { text-align: center; font-size: .82rem; color: var(--text3); margin-top: .6rem; }
.entry-content .wp-block-gallery { gap: 1rem; }

/* --- 24e-extra. Blog Content Visual Elements ----------------------------- */

/* Info box */
.entry-content .blog-info-box { display: flex; gap: 1rem; background: var(--accent-pale); border-left: 4px solid var(--accent); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 1.2rem 1.5rem; margin: 2rem 0; }
.entry-content .blog-info-box-icon { font-size: 1.4rem; flex-shrink: 0; }
.entry-content .blog-info-box-content { font-size: .92rem; line-height: 1.6; color: var(--text); }

/* Warning box */
.entry-content .blog-warning-box { display: flex; gap: 1rem; background: #fff8e1; border-left: 4px solid #f9a825; border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 1.2rem 1.5rem; margin: 2rem 0; }
.entry-content .blog-warning-box .blog-info-box-icon { font-size: 1.4rem; flex-shrink: 0; }
.entry-content .blog-warning-box .blog-info-box-content { font-size: .92rem; line-height: 1.6; color: var(--text); }

/* Comparison table — wrapper is a <div class="wp-block-table blog-compare-table"> around <table> */
.entry-content .blog-compare-table { display: block; overflow-x: auto; margin: 2rem 0; max-width: 100%; }
.entry-content .blog-compare-table table { width: 100%; border-collapse: collapse; border: 1.5px solid var(--accent); min-width: 480px; }
.entry-content .blog-compare-table th { background: var(--green); color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; padding: .8rem 1rem; text-align: left; white-space: nowrap; }
.entry-content .blog-compare-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); }
.entry-content .blog-compare-table .pro { color: var(--green); font-weight: 600; }
.entry-content .blog-compare-table .con { color: #c62828; font-weight: 600; }
.entry-content .blog-compare-table .mid { color: var(--text3); }

/* Numbered steps */
.entry-content .blog-steps { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.entry-content .blog-step { display: flex; gap: 1rem; background: white; border: 1.5px solid var(--border); border-radius: var(--r); padding: 1.2rem 1.5rem; }
.entry-content .blog-step-num { width: 38px; height: 38px; min-width: 38px; border-radius: 50%; background: var(--green); color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.entry-content .blog-step-content h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.entry-content .blog-step-content p { margin: 0; font-size: .92rem; }

/* Highlight quote */
.entry-content .blog-highlight { position: relative; text-align: center; padding: 2.5rem 2rem; margin: 2.5rem 0; background: var(--dark); border-radius: var(--r-lg); color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 700; line-height: 1.4; }
.entry-content .blog-highlight::before { content: '\201C'; font-size: 4rem; color: var(--accent); position: absolute; top: .5rem; left: 1.5rem; line-height: 1; }

/* Inline CTA box */
.entry-content .blog-cta-box { background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%); border-radius: var(--r-lg); padding: 2rem; margin: 2.5rem 0; text-align: center; color: white; }
.entry-content .blog-cta-tag { display: inline-block; background: rgba(255,255,255,.15); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .3rem .8rem; border-radius: var(--r-sm); margin-bottom: .8rem; }
.entry-content .blog-cta-text { font-size: 1.05rem; margin-bottom: 1.2rem; color: rgba(255,255,255,.85); }
.entry-content .blog-cta-btn { display: inline-flex; gap: .5rem; background: white; color: var(--green); padding: .8rem 1.8rem; border-radius: var(--r-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .95rem; text-decoration: none; transition: all .2s; }
.entry-content .blog-cta-btn:hover { background: var(--accent-pale); transform: translateY(-2px); }

/* Pro/Con list */
.entry-content .blog-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.entry-content .blog-pros, .entry-content .blog-cons { background: white; border: 1.5px solid var(--border); border-radius: var(--r); padding: 1.2rem 1.5rem; }
.entry-content .blog-pros-title, .entry-content .blog-cons-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .95rem; margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; }
.entry-content .blog-pros-title { color: var(--green); }
.entry-content .blog-cons-title { color: #c62828; }

/* Takeaway box */
.entry-content .blog-takeaway { background: var(--dark); border-radius: var(--r-lg); padding: 1.5rem 2rem; margin: 2rem 0; color: white; }
.entry-content .blog-takeaway strong { color: var(--accent); }

/* --- 24f. Blog Sidebar and Widgets ---------------------------------------- */
.blog-sidebar { position: sticky; top: 100px; }
.blog-widget { background: white; border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.blog-widget-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--accent); }
.blog-widget-cats { list-style: none; padding: 0; margin: 0; }
.blog-widget-cats li { border-bottom: 1px solid var(--border); }
.blog-widget-cats li:last-child { border-bottom: none; }
.blog-widget-cats a { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; color: var(--text2); text-decoration: none; font-size: .88rem; transition: color .2s; }
.blog-widget-cats a:hover { color: var(--green); }
.blog-widget-count { background: var(--green); color: #fff; font-size: .7rem; font-weight: 700; padding: .15rem .5rem; border-radius: var(--r-sm); }
.blog-widget-recent { list-style: none; padding: 0; margin: 0; }
.blog-widget-recent li { padding: .6rem 0; border-bottom: 1px solid var(--border); }
.blog-widget-recent li:last-child { border-bottom: none; }
.blog-widget-recent a { color: var(--text); text-decoration: none; font-size: .88rem; font-weight: 600; display: block; transition: color .2s; }
.blog-widget-recent a:hover { color: var(--green); }
.blog-widget-date { font-size: .75rem; color: var(--text3); margin-top: .2rem; }
.blog-widget-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.blog-widget-tag { display: inline-block; background: var(--bg); border: 1px solid var(--border); color: var(--text2); font-size: .78rem; padding: .3rem .7rem; border-radius: var(--r-sm); text-decoration: none; transition: background .2s, color .2s, border-color .2s; }
.blog-widget-tag:hover { background: var(--green); color: #fff; border-color: var(--green); }
.blog-search-form { display: flex; gap: .5rem; max-width: 100%; }
.blog-search-input { flex: 1; min-width: 0; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: .6rem .8rem; font-size: .88rem; color: var(--text); font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .2s; box-sizing: border-box; }
.blog-search-input:focus { border-color: var(--green); }
.blog-search-btn { background: var(--green); color: #fff; border: none; border-radius: var(--r-sm); padding: .6rem 1rem; font-size: .85rem; font-weight: 700; cursor: pointer; transition: background .2s; font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; flex-shrink: 0; box-sizing: border-box; }
.blog-search-btn:hover { background: var(--accent); }

/* --- 24g. Blog Post Navigation (prev/next) — REMOVED per user request ---- */

/* --- 24h. Blog Related Posts Section -------------------------------------- */
.blog-related { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.blog-related-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }
.blog-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- 24i. Blog "Mehr laden" Button ---------------------------------------- */
.blog-loadmore-wrap { text-align: center; margin-top: 3rem; }
.blog-loadmore { display: inline-flex; align-items: center; gap: .5rem; background: var(--green); color: #fff; border: none; border-radius: var(--r-sm); padding: .8rem 2rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .1s; }
.blog-loadmore:hover { background: var(--accent); }
.blog-loadmore:active { transform: scale(.97); }
.blog-loadmore:disabled { opacity: .6; cursor: not-allowed; }

/* --- 24j. Blog Archive Page ----------------------------------------------- */
.archive-section { background: var(--bg); padding: clamp(4rem,8vw,7rem) 0; }
.archive-header { margin-bottom: 2.5rem; }
.archive-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.9rem,4vw,2.9rem); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; color: var(--text); margin: .5rem 0; }
.archive-pagination { margin-top: 3rem; text-align: center; }
.archive-pagination .nav-links { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.archive-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-sm); font-size: .88rem; font-weight: 600; text-decoration: none; color: var(--text2); background: white; border: 1.5px solid var(--border); transition: all .2s; }
.archive-pagination .page-numbers.current, .archive-pagination .page-numbers:hover { background: var(--green); color: #fff; border-color: var(--green); }
.archive-pagination .prev, .archive-pagination .next { width: auto; padding: 0 1rem; }

/* --- 24 Responsive: Blog at 1024px ---------------------------------------- */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-body { padding: 1.5rem; }
    .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- 24 Responsive: Blog at 768px ----------------------------------------- */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .blog-featured-title { font-size: 1.3rem; }
    .blog-post-h1 { font-size: 1.6rem; }
    .blog-related-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .entry-content .wp-block-table table { font-size: .82rem; }
    .entry-content .wp-block-table th, .entry-content .wp-block-table td { padding: .5rem .7rem; }
}

/* --- 24 Responsive: Blog at 480px ----------------------------------------- */
@media (max-width: 480px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-body { padding: 1rem 1.2rem; }
    .blog-featured-body { padding: 1.2rem; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-widget { padding: 1.2rem; }
    .blog-search-form { flex-direction: column; }
    .entry-content pre { padding: 1rem; font-size: .8rem; }
    /* Table scroll handled globally — reduce font/padding at 480px */
    .entry-content .wp-block-table table { font-size: .82rem; }
    .entry-content .wp-block-table th, .entry-content .wp-block-table td { padding: .5rem .7rem; }
    .entry-content .blog-compare-table th, .entry-content .blog-compare-table td { padding: .5rem .7rem; font-size: .82rem; }
    .entry-content .blog-pros-cons { grid-template-columns: 1fr; }
    .entry-content .blog-step { flex-direction: column; }
    .entry-content .blog-highlight { font-size: 1.05rem; padding: 2rem 1.5rem; }
    .entry-content .blog-cta-box { padding: 1.5rem; }
    .entry-content .blog-info-box { flex-direction: column; gap: .5rem; }
}
