/* ── TOKENS ── */
        :root {
            --green: #16a34a;
            --green-dark: #15803d;
            --green-light: #f0fdf4;

            /* CTA button colors (overridden by cta_color setting) */
            --cta-bg: #16a34a; --cta-bg-hover: #15803d; --cta-text: #fff; --cta-shadow: rgba(22,163,74,.4);
            --dark: #1a1a1a;
            --mid: #444;
            --muted: #777;
            --border: #e8e8e8;
            --bg: #ffffff;
            --bg-alt: #f7f8f9;
            --red: #e53935;
            --yellow: #f5a623;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-pill: 9999px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
            --shadow-md: 0 6px 24px rgba(0,0,0,.10);
            --shadow-green: 0 8px 28px rgba(22,163,74,.35);
            --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* ── RESET ── */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: var(--font);
            font-size: 17px;
            line-height: 1.75;
            color: var(--dark);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 0;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--green); text-decoration: none; }

        /* ── URGENCY TICKER ── */
        .urgency-bar {
            background: var(--dark);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .03em;
            text-align: center;
            padding: 9px 16px;
        }
        .urgency-bar .ticker-inner { display: inline-block; animation: pulse-opacity 2s ease infinite alternate; }
        @keyframes pulse-opacity { from { opacity: 1; } to { opacity: .7; } }

        /* ── HEADER ── */
        .site-header {
            background: #fff;
            border-bottom: 3px solid var(--green);
            position: sticky;
            top: 0;
            z-index: 200;
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
            height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .site-logo {
            font-size: 18px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -.5px;
            text-transform: uppercase;
            line-height: 1.1;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;  /* image + "Official Site" both flush-left */
        }
        .site-logo img {
            height: 40px;
            width: auto;
            max-width: 240px;
            object-fit: contain;
            display: block;
        }
        .site-logo small {
            display: block;
            font-size: 10px;
            font-weight: 500;
            color: var(--muted);
            text-transform: none;
            letter-spacing: .02em;
            margin-top: 4px;
        }
        .header-badge {
            background: var(--green-light);
            color: var(--green-dark);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(22,163,74,.2);
            white-space: nowrap;
        }

        /* ── LAYOUT ── */
        .page-wrapper {
            max-width: 1160px;
            margin: 0 auto;
            padding: 20px 20px 60px;
            display: grid;
            grid-template-columns: 1fr 304px;
            gap: 48px;
            align-items: start;
        }

        /* ── MAIN CONTENT ── */
        .main-content { min-width: 0; }

        .article-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #888;
            background: #fff;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
            border: 1px solid #e0e0e0;
        }

        .main-content h1 {
            font-size: clamp(24px, 5vw, 40px);
            font-weight: 800;
            line-height: 1.18;
        }
        .main-content h1 strong {
            font-weight: inherit;
            color: inherit;
            color: var(--dark);
            margin-bottom: 16px;
            letter-spacing: -.5px;
        }
        .subheadline {
            font-size: clamp(20px, 3vw, 26px);
            font-style: italic;
            color: var(--mid);
            margin-bottom: 14px;
            line-height: 1.5;
            font-weight: 400;
        }

        /* Aggregate review row */
        .review-aggregate {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-pill);
            padding: 6px 14px;
            margin-bottom: 14px;
            font-size: 13px;
        }
        .review-aggregate .stars { color: var(--yellow); letter-spacing: 1px; font-size: 14px; }
        .review-aggregate .score { font-weight: 800; color: var(--dark); }
        .review-aggregate .count { color: var(--muted); }

        /* Trust strip - above fold */
        .trust-strip {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .trust-strip-badge {
            font-size: 12px;
            font-weight: 600;
            color: var(--green-dark);
            background: var(--green-light);
            border: 1px solid rgba(22,163,74,.18);
            padding: 5px 12px;
            border-radius: var(--radius-pill);
            white-space: nowrap;
        }

        .byline {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .byline-divider { color: var(--border); }

        /* ── SHARE BAR ── */
        .share-bar {
            display: flex;
            gap: 6px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .share-btn {
            flex: 1 1 60px;
            padding: 9px 6px;
            text-align: center;
            color: #fff;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: opacity .18s, transform .1s;
            white-space: nowrap;
            min-width: 64px;
        }
        .share-btn:hover { opacity: .85; transform: translateY(-1px); color: #fff; text-decoration: none; }
        .share-fb  { background: #1877f2; }
        .share-tw  { background: #111; }
        .share-msg { background: #0084ff; }
        .share-wa  { background: #25d366; }
        .share-pin { background: #e60023; }

        article ol, article ul, .article-body ol, .article-body ul,
        .mechanism-box ol, .mechanism-box ul,
        .section-content ol, .section-content ul { margin: 16px 0; padding-left: 1.5em; }
        article li, .article-body li, .mechanism-box li,
        .section-content li { margin-bottom: 10px; line-height: 1.7; }

.ei-inner { display: flex; align-items: stretch; }
        .ei-image { flex: 0 0 200px; overflow: hidden; }
        .ei-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .ei-content { flex: 1; padding: 32px 28px; }
        .ei-mobile-only { display: none; }
        @media (max-width: 520px) {
            .ei-inner { flex-direction: column; }
            .ei-desktop-only { display: none; }
            .ei-mobile-only { display: block; }
            .ei-content { text-align: center !important; padding: 24px 20px; }
        }
        .hero-image {
            width: 100%;
            border-radius: var(--radius-md);
            margin-bottom: 28px;
            box-shadow: var(--shadow-md);
        }
        video.hero-image, video.body-image, video.section-image {
            display: block;
        }
        .body-image {
            width: 100%;
            border-radius: var(--radius-md);
            margin: 24px 0;
            box-shadow: var(--shadow-sm);
        }

        /* ── BODY COPY ── */
        .main-content p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 22px;
            color: #333;
        }
        .main-content strong { color: var(--dark); font-weight: 700; }
        .main-content h2 {
            font-size: clamp(22px, 3.5vw, 32px);
            font-weight: 800;
            color: var(--dark);
            margin: 40px 0 16px;
            line-height: 1.25;
            letter-spacing: -.3px;
        }
        .main-content h3 {
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 700;
            color: var(--dark);
            margin: 28px 0 10px;
        }
        .section-divider {
            border: none;
            height: 1px;
            background: var(--border);
            margin: 36px 0;
            opacity: .6;
        }

        /* ── IMITATION WARNING TIP BOX ── */
        .imitation-tip-box {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: #fffbea;
            border: 1.5px solid #f0c040;
            border-left: 5px solid #f0a000;
            border-radius: 8px;
            padding: 14px 18px;
            margin: 28px 0 0;
            font-size: 14px;
            color: #5a4000;
            font-style: italic;
            line-height: 1.6;
        }
        .imitation-tip-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
        .imitation-tip-box p { margin: 0; }

        /* ── UNIQUE MECHANISM BOX ── */
        .mechanism-box {
            background: var(--bg-alt);
            border-left: 4px solid var(--green);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            padding: 22px 24px;
            margin: 28px 0;
        }
        .mechanism-box h3 {
            margin: 0 0 10px;
            font-size: 19px;
            font-weight: 800;
            color: var(--dark);
        }
        .mechanism-box .mechanism-body { font-size: 16px; color: var(--mid); line-height: 1.75; margin: 0; }
        .mechanism-box .mechanism-body p { margin: 0 0 16px; font-size: 16px; color: var(--mid); }
        .mechanism-box .mechanism-body p:last-child { margin-bottom: 0; }
        /* When a paragraph starts directly with <strong> (e.g. "Step 1: …",
           "Βήμα 1: …", "Schritt 1: …"), render the bold lead as its own
           visual line with a darker colour. Keeps the step title visually
           distinct from the description text that follows. Only matches
           <p> whose first content token is <strong>, not mid-paragraph
           bold inside narrative text. */
        .mechanism-box .mechanism-body p.step-line > strong:first-child {
            display: block;
            margin-bottom: 2px;
            color: var(--dark);
            font-size: 17px;
        }

        /* ── SCARCITY NOTICE ── */
        .scarcity-notice {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff8e1;
            border: 1px solid #ffe082;
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
            color: #7a5c00;
            margin: -16px 0 20px;
        }
        .scarcity-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--red);
            flex-shrink: 0;
            animation: blink 1.2s ease infinite;
        }
        @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

        /* ── CTA BUTTON ── */
        .cta-banner, .cta-banner-secondary {
            display: block;
            background: var(--cta-bg);
            color: var(--cta-text);
            text-align: center;
            padding: 20px 32px;
            border-radius: 8px;
            font-size: clamp(20px, 3vw, 26px);
            font-weight: 800;
            margin: 32px 0;
            transition: background .18s, transform .12s, box-shadow .18s;
            cursor: pointer;
            box-shadow: 0 8px 24px var(--cta-shadow);
            position: relative;
            overflow: hidden;
            letter-spacing: .03em;
            word-spacing: .05em;
        }
        .cta-banner::after, .cta-banner-secondary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 40%;
            height: 200%;
            background: rgba(255,255,255,.18);
            transform: skewX(-20deg);
            animation: shine 3.5s ease infinite;
        }
        @keyframes shine { 0% { left: -60%; } 60% { left: 120%; } 100% { left: 120%; } }
        .cta-banner:hover, .cta-banner-secondary:hover {
            background: var(--cta-bg-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 36px var(--cta-shadow);
            color: var(--cta-text);
            text-decoration: none;
        }
        .cta-banner-secondary { font-size: clamp(18px, 2.5vw, 23px); padding: 18px 30px; }
        .cta-sub {
            display: block;
            font-size: 12px;
            font-weight: 500;
            opacity: .85;
            margin-top: 4px;
            letter-spacing: .02em;
            word-spacing: normal;
        }

        /* ── BENEFITS ── */
        .benefits-grid { display: flex; flex-direction: column; gap: 14px; margin: 8px 0 14px; }
        .benefit-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--bg-alt);
            border-radius: var(--radius-sm);
            padding: 18px 20px;
            border: 1px solid var(--border);
            transition: box-shadow .18s, transform .15s;
        }
        .benefit-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
        .benefit-icon { font-size: 26px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
        .benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0 0 4px; }
        .benefit-card p { font-size: 15px; color: var(--mid); margin: 0; line-height: 1.6; }
        .benefits-img-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
        .benefits-img-pair img { width: 100%; border-radius: var(--radius-sm); object-fit: cover; aspect-ratio: 16/10; }
        @media (max-width: 600px) { .benefits-img-pair { grid-template-columns: 1fr; } }

        /* ── HOW-TO STEPS ── */
        .steps-list { display: flex; flex-direction: column; gap: 20px; margin: 8px 0 32px; }
        .step-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: var(--bg-alt);
            border-radius: var(--radius-md);
            padding: 20px;
            border: 1px solid var(--border);
        }
        .step-badge {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow-green);
        }
        .step-body { flex: 1; }
        .step-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
        .step-card p { font-size: 15px; color: var(--mid); margin: 0; line-height: 1.6; }
        .step-img { width: 100%; border-radius: var(--radius-sm); margin-top: 12px; }

        /* ── FAQ ── */
        .faq-section { margin: 12px 0 36px; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 4px;
            cursor: pointer;
            font-size: 17px;
            font-weight: 600;
            color: var(--dark);
            user-select: none;
            gap: 12px;
        }
        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            transition: background .18s, transform .25s;
        }
        .faq-item.open .faq-icon { background: var(--green); color: #fff; transform: rotate(45deg); }
        .faq-answer {
            display: none;
            padding: 0 4px 18px;
            font-size: 16px;
            color: var(--mid);
            line-height: 1.75;
        }
        .faq-item.open .faq-answer { display: block; }

        /* ── WARNING BOX ── */
        .warning-box {
            border: 2px solid #e6c546;
            border-radius: var(--radius-md);
            padding: 24px 28px;
            margin: 32px 0;
            background: #fffbf0;
        }
        .warning-box h3 { color: #8a6d1b; font-size: 20px; margin: 0 0 10px 0; }
        .warning-box p { font-size: 16px; color: #6b5c2e; margin: 0; }

        /* ── TESTIMONIALS ── */
        .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0 32px; }
        .testimonial-card {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 22px;
        }
        .t-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .t-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .t-avatar-img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .t-meta { flex: 1; }
        .t-product-thumb { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
        .t-name { font-size: 15px; font-weight: 700; color: var(--dark); }
        .t-location { font-size: 12px; color: var(--muted); margin-top: 1px; }
        .t-stars { color: var(--yellow); font-size: 13px; margin-top: 3px; }
        .t-text { font-style: italic; font-size: 15px; color: #444; line-height: 1.65; }
        .t-verified {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            color: var(--green-dark);
            background: var(--green-light);
            padding: 2px 8px;
            border-radius: var(--radius-pill);
            margin-top: 4px;
        }
        .t-text::before { content: '\201C'; }
        .t-text::after  { content: '\201D'; }

        /* ── OFFER BOX ── */
        .offer-box {
            background: linear-gradient(135deg, var(--green-light) 0%, #fff 100%);
            border: 2px solid rgba(22,163,74,.3);
            border-radius: var(--radius-md);
            padding: 32px;
            margin: 32px 0;
            text-align: center;
        }
        .offer-box h3 { color: var(--green-dark); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
        .offer-box-compact { padding: 24px; margin-top: 24px; }
        .offer-box-compact-text { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
        .price-row { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; margin-bottom: 8px; }
        .price-discount {
            display: inline-block;
            background: #fff5f5;
            color: var(--red);
            padding: 10px 28px;
            border: 2px dashed var(--red);
            border-radius: 6px;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 1.5px;
            font-family: 'Courier New', Courier, monospace;
            position: relative;
        }
        .price-discount::before {
            content: '✓ ';
            font-family: system-ui, sans-serif;
        }
        .price-auto-note { font-size: 16px; color: var(--green-dark); font-weight: 700; margin-top: 6px; letter-spacing: 0.3px; }
        .guarantee-text { font-size: 14px; color: var(--muted); margin-top: 8px; }
        .offer-urgency-text { font-size: 15px; font-weight: 600; color: var(--mid); margin: 10px 0 4px; }
        .offer-scarcity-text { font-size: 14px; color: var(--red); font-weight: 600; margin-bottom: 4px; }

        /* Countdown timer */
        .countdown-wrap { margin: 16px 0 8px; }
        .countdown-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
        .countdown {
            display: inline-flex;
            gap: 8px;
            justify-content: center;
        }
        .cd-block {
            background: var(--dark);
            color: #fff;
            border-radius: 8px;
            padding: 8px 14px;
            min-width: 56px;
            text-align: center;
        }
        .cd-num { font-size: 24px; font-weight: 800; line-height: 1; display: block; font-variant-numeric: tabular-nums; }
        .cd-unit { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: .6; margin-top: 2px; display: block; }
        .cd-sep { font-size: 24px; font-weight: 800; color: var(--dark); align-self: center; line-height: 1; }

        .trust-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
        .trust-badge {
            font-size: 12px;
            font-weight: 600;
            color: var(--mid);
            background: #fff;
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ── SIDEBAR ── */
        .sidebar {
            position: sticky; top: 74px;
            max-height: calc(100vh - 90px);
            display: flex; flex-direction: column;
        }
        .sidebar-inner { flex: 1; overflow: hidden; min-height: 0; }
        .sidebar-card {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow-sm);
        }
        .sidebar-card h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 14px; letter-spacing: -.2px; }
        .sidebar-headline {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
        }
        .sidebar-headline:last-child { border-bottom: none; padding-bottom: 0; }
        .sidebar-headline-icon { color: var(--green); flex-shrink: 0; margin-top: 1px; }
        .sidebar-review {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 14px;
            margin-bottom: 10px;
        }
        .sidebar-review:last-of-type { margin-bottom: 0; }
        .sidebar-stars { color: var(--yellow); font-size: 12px; margin-bottom: 5px; }
        .sidebar-review-text { font-style: italic; font-size: 14px; color: #444; line-height: 1.6; }
        .sidebar-review-expandable { cursor: pointer; }
        .sidebar-review-expandable .sidebar-review-text {
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
            overflow: hidden; text-overflow: ellipsis;
        }
        .sidebar-review-expandable::after {
            content: attr(data-more); display: block; font-size: 11px; color: var(--green);
            font-weight: 600; margin-top: 4px; font-style: normal;
        }
        .sidebar-review-expandable.expanded .sidebar-review-text {
            display: block; -webkit-line-clamp: unset; overflow: visible;
        }
        .sidebar-review-expandable.expanded::after { content: attr(data-less); }
        .sidebar-reviewer { font-size: 13px; font-weight: 700; color: var(--dark); margin-top: 8px; }
        .sidebar-cta {
            display: block;
            background: var(--cta-bg);
            color: var(--cta-text);
            text-align: center;
            padding: 17px 20px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 800;
            transition: background .18s, transform .12s, box-shadow .18s;
            cursor: pointer;
            box-shadow: 0 8px 24px var(--cta-shadow);
            letter-spacing: -.1px;
            margin-top: 4px;
        }
        .sidebar-cta:hover { background: var(--cta-bg-hover); transform: translateY(-2px); box-shadow: 0 12px 36px var(--cta-shadow); color: var(--cta-text); text-decoration: none; }

        /* ── STICKY MOBILE CTA ── */
        .sticky-mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 12px 16px;
            background: #fff;
            box-shadow: 0 -4px 20px rgba(0,0,0,.12);
        }
        .sticky-mobile-cta a {
            display: block;
            background: var(--cta-bg);
            color: var(--cta-text);
            text-align: center;
            padding: 16px 20px;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 800;
            box-shadow: 0 8px 24px var(--cta-shadow);
            position: relative;
            overflow: hidden;
        }
        .sticky-mobile-cta a::after {
            content: '';
            position: absolute;
            top: -50%; left: -60%;
            width: 40%; height: 200%;
            background: rgba(255,255,255,.18);
            transform: skewX(-20deg);
            animation: shine 3.5s ease infinite;
        }
        .sticky-mobile-cta a:hover { color: #fff; text-decoration: none; background: var(--green-dark); }

        /* ── FOOTER ── */
        .site-footer {
            background: #1e1e1e;
            color: #aaa;
            padding: 48px 20px 32px;
            font-size: 12.5px;
            line-height: 1.85;
            margin-top: 60px;
        }
        .footer-inner { max-width: 800px; margin: 0 auto; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 20px; margin-bottom: 20px; }
        .footer-links a { color: #ccc; font-weight: 600; font-size: 13px; transition: color .15s; }
        .footer-links a:hover { color: #fff; }
        .footer-disclaimer { color: #777; font-size: 12px; margin-top: 12px; }
        .footer-ad-label {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #555;
            border: 1px solid #444;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
        }

        /* ── USP INLINE ── */
        .usp-inline { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
        .check-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 3px;
        }
        .usp-inline .usp-text { flex: 1; }
        .usp-inline strong { display: block; font-size: 16px; font-weight: 700; color: var(--dark); }
        .usp-inline span { font-size: 15px; color: var(--mid); }

        /* ── RESPONSIVE ── */
        @media (max-width: 880px) {
            .page-wrapper { grid-template-columns: 1fr; gap: 0; padding: 20px 16px 48px; }
            .sidebar { display: none; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .sticky-mobile-cta { display: block; }
            .site-footer { padding-bottom: 100px; }
        }
        @media (max-width: 600px) {
            /* H1 bumped from 24→28px so it clearly dominates H2 on mobile.
               H2 clamped down so it can't exceed 20px (clamp() default
               allowed 22-32px which collapsed hierarchy at 360-400px). */
            .main-content h1 { font-size: 28px; line-height: 1.15; margin-bottom: 12px; }
            .main-content h2 { font-size: 20px !important; line-height: 1.3; margin-top: 28px; }
            .main-content p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
            /* Share bar hidden on mobile - paid-traffic visitors don't share
               articles; the bar just eats ~56px of fold space for zero lift. */
            .share-bar { display: none !important; }
            .cta-banner, .cta-banner-secondary {
                font-size: 18px;
                padding: 20px 20px;
                min-height: 56px; /* thumb-friendly */
            }
            .offer-box { padding: 22px 16px; }
            .step-card { flex-direction: column; gap: 12px; }
            .step-badge { width: 38px; height: 38px; font-size: 17px; }
            .benefit-card { padding: 14px 16px; }
            .mechanism-box { padding: 16px 18px; }
            .section-divider { margin: 24px 0; }
            .trust-strip { gap: 6px; }
            .trust-strip-badge { font-size: 11px; padding: 4px 9px; }
            .testimonial-card { padding: 16px; }
        }

#cf-consent-banner{position:fixed;bottom:0;left:0;right:0;z-index:999999;
  background:#1a1a2e;color:#e0e0e0;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-size:14px;line-height:1.5;box-shadow:0 -4px 20px rgba(0,0,0,.3);
  border-top:1px solid rgba(255,255,255,.08)}
.cf-cb-inner{max-width:1200px;margin:0 auto;padding:20px 24px;display:flex;
  align-items:center;gap:24px;flex-wrap:wrap}
.cf-cb-text{flex:1;min-width:280px}
.cf-cb-text p{margin:0 0 6px}
.cf-cb-text a{color:#7c9edc;text-decoration:underline}
.cf-cb-text a:hover{color:#a5c0f0}
.cf-cb-actions{display:flex;gap:10px;flex-shrink:0;flex-wrap:wrap}
.cf-cb-btn{padding:10px 22px;border:none;border-radius:6px;font-size:14px;
  font-weight:600;cursor:pointer;white-space:nowrap;transition:background .15s,transform .1s}
.cf-cb-btn:active{transform:scale(.97)}
.cf-cb-btn-accept{background:#4CAF50;color:#fff}
.cf-cb-btn-accept:hover{background:#43A047}
.cf-cb-btn-reject{background:transparent;color:#ccc;border:1px solid rgba(255,255,255,.2)}
.cf-cb-btn-reject:hover{background:rgba(255,255,255,.06);color:#fff}
.cf-cb-btn-manage{background:transparent;color:#ccc;border:1px solid rgba(255,255,255,.2)}
.cf-cb-btn-manage:hover{background:rgba(255,255,255,.06);color:#fff}
#cf-consent-modal{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000000;
  display:flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}
.cf-cm-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6)}
.cf-cm-dialog{position:relative;background:#fff;color:#333;border-radius:12px;
  max-width:560px;width:calc(100% - 32px);max-height:85vh;overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.3);display:flex;flex-direction:column}
.cf-cm-header{display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px 16px;border-bottom:1px solid #eee}
.cf-cm-header h3{margin:0;font-size:18px;font-weight:700;color:#1a1a2e}
.cf-cm-close-btn{background:none;border:none;font-size:24px;color:#999;cursor:pointer;
  padding:0 4px;line-height:1}
.cf-cm-close-btn:hover{color:#333}
.cf-cm-body{padding:16px 24px;overflow-y:auto;flex:1}
.cf-cm-category{padding:14px 0;border-bottom:1px solid #f0f0f0}
.cf-cm-category:last-child{border-bottom:none}
.cf-cm-cat-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.cf-cm-cat-title{font-size:15px;font-weight:600;color:#1a1a2e}
.cf-cm-always-on{font-size:12px;color:#4CAF50;font-weight:600;background:#e8f5e9;
  padding:3px 10px;border-radius:10px}
.cf-cm-cat-desc{font-size:13px;color:#666;margin:0;line-height:1.5}
.cf-cm-footer{display:flex;gap:10px;padding:16px 24px;border-top:1px solid #eee;
  justify-content:flex-end}
.cf-cm-footer .cf-cb-btn-accept{background:#4CAF50;color:#fff}
.cf-cm-footer .cf-cb-btn-manage{background:#f5f5f5;color:#333;border:1px solid #ddd}
.cf-cm-footer .cf-cb-btn-manage:hover{background:#eee}
.cf-cm-toggle{position:relative;display:inline-block;width:48px;height:26px}
.cf-cm-toggle input{opacity:0;width:0;height:0}
.cf-cm-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;
  background:#ccc;border-radius:26px;transition:background .2s}
.cf-cm-slider::before{content:'';position:absolute;height:20px;width:20px;left:3px;bottom:3px;
  background:#fff;border-radius:50%;transition:transform .2s;box-shadow:0 1px 3px rgba(0,0,0,.2)}
.cf-cm-toggle input:checked + .cf-cm-slider{background:#4CAF50}
.cf-cm-toggle input:checked + .cf-cm-slider::before{transform:translateX(22px)}
@media(max-width:640px){
  .cf-cb-inner{flex-direction:column;text-align:center;padding:16px}
  .cf-cb-actions{justify-content:center;width:100%}
  .cf-cb-btn{flex:1;min-width:0;padding:10px 12px;font-size:13px}
  .cf-cm-dialog{max-height:90vh}
  .cf-cm-footer{flex-direction:column}
  .cf-cm-footer .cf-cb-btn{width:100%}
}