/* ============================================================
           MVK AWARD LAYER · "Miete vs. Kauf" · page-scoped, mono
           Cornerstone Website-mieten-vs-kaufen (Design-Parity W1)
           ============================================================ */
        :root { --mvk-ink: #0a0a0c; }

        /* ---------- Duell-Hero (dark stage) ---------- */
        .mvk-hero {
            position: relative;
            background: var(--mvk-ink);
            border-bottom: none;
            padding: clamp(116px, 13vw, 168px) 0 clamp(48px, 6.5vw, 80px);
            overflow: clip;
            isolation: isolate;
        }
        .mvk-hero::after {
            content: "";
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 60vmax;
            height: 60vmax;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,.07), transparent 60%);
            filter: blur(50px);
            pointer-events: none;
            z-index: 0;
        }
        .mvk-wm {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(8rem, 22vw, 19rem);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.02em;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(255,255,255,.06);
            pointer-events: none;
            user-select: none;
            z-index: 0;
            white-space: nowrap;
        }
        .mvk-hero .container { position: relative; z-index: 1; }
        .mvk-hero .breadcrumb { color: rgba(255,255,255,.45); }
        .mvk-hero .breadcrumb a { color: rgba(255,255,255,.7); }
        .mvk-hero .breadcrumb a:hover { color: #fff; }
        .mvk-hero .pillar-hero-eyebrow {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.18);
            color: rgba(255,255,255,.8);
        }
        .mvk-hero h1 {
            color: #fff;
            font-size: clamp(2rem, 4.8vw, 3.7rem);
            line-height: 1.06;
            letter-spacing: -.035em;
            font-weight: 900;
            text-wrap: balance;
        }
        .mvk-hero h1 .mvk-x { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.85); }
        .mvk-hero .pillar-hero-sub { color: rgba(255,255,255,.7); }
        .mvk-hero .pillar-hero-checklist li { color: rgba(255,255,255,.75); }
        .mvk-hero .pillar-hero-checklist li::before { color: rgba(255,255,255,.85); }
        .mvk-hero .pillar-hero-cta { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; will-change: transform; }
        .mvk-ctawrap { position: relative; display: inline-flex; isolation: isolate; }
        .mvk-ctawrap::before {
            content: "";
            position: absolute;
            inset: -7px;
            border-radius: 16px;
            background: conic-gradient(from 180deg, transparent 0 40%, rgba(255,255,255,.75) 50%, transparent 60% 100%);
            filter: blur(10px);
            opacity: .7;
            z-index: -1;
            pointer-events: none;
        }
        @media (prefers-reduced-motion: no-preference) {
            .mvk-ctawrap::before { animation: mvkBeam 5.5s linear infinite; }
            @keyframes mvkBeam { to { transform: rotate(1turn); } }
            /* H1 = LCP-Kandidat: transform-only, nie opacity:0 (REV-229-Lehre) */
            .mvk-hero h1 { animation: mvkSlide .8s cubic-bezier(.22,1,.36,1) backwards .05s; }
            @keyframes mvkSlide { from { transform: translateY(16px); } }
            .mvk-hero .breadcrumb, .mvk-hero .pillar-hero-eyebrow,
            .mvk-hero .pillar-hero-sub, .mvk-hero .pillar-hero-checklist, .mvk-hero .mvk-ctawrap {
                animation: mvkUp .8s cubic-bezier(.22,1,.36,1) backwards;
            }
            .mvk-hero .pillar-hero-sub { animation-delay: .14s; }
            .mvk-hero .pillar-hero-checklist { animation-delay: .2s; }
            .mvk-hero .mvk-ctawrap { animation-delay: .26s; }
            .mvk-hero .pillar-hero-aside { animation: mvkIn 1s cubic-bezier(.22,1,.36,1) .2s backwards; }
            @keyframes mvkUp { from { opacity: 0; transform: translateY(18px); } }
            @keyframes mvkIn { from { opacity: 0; transform: translateY(24px) scale(.98); } }
        }

        /* Scoreboard (hero aside): Miete durchgestrichen, Kauf-Karte = Sieger */
        .mvk-hero .pillar-hero-stat-stack {
            background: transparent;
            padding: 0;
            border: none;
            box-shadow: none;
            display: grid;
            gap: 10px;
        }
        .mvk-hero .pillar-hero-stat-card {
            position: relative;
            padding: 18px 20px;
            background: rgba(255,255,255,.04);
            border: 1px dashed rgba(255,255,255,.25);
            border-radius: var(--radius-lg);
            transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s ease;
            will-change: transform;
        }
        .mvk-hero .pillar-hero-stat-card:nth-child(2) {
            border: 1px solid rgba(255,255,255,.5);
            background: rgba(255,255,255,.07);
            box-shadow: 0 18px 50px -22px rgba(0,0,0,.8);
        }
        .mvk-hero .pillar-hero-stat-card::after {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: .58rem;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: rgba(255,255,255,.4);
        }
        .mvk-hero .pillar-hero-stat-card:nth-child(1)::after { content: "Miete"; }
        .mvk-hero .pillar-hero-stat-card:nth-child(2)::after { content: "Kauf"; color: #fff; }
        .mvk-hero .pillar-hero-stat-card:nth-child(3)::after { content: "Ersparnis"; }
        .mvk-hero .stat-num { color: #fff; }
        .mvk-hero .pillar-hero-stat-card:nth-child(1) .stat-num { color: rgba(255,255,255,.55); text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: rgba(255,255,255,.4); }
        .mvk-hero .stat-label { color: rgba(255,255,255,.6); }

        /* ---------- Duell-Ticker ---------- */
        .mvk-ticker {
            overflow: clip;
            background: var(--white);
            border-block: 1px solid rgba(17,17,17,.08);
            padding: 11px 0;
            user-select: none;
        }
        .mvk-ticker-track { display: flex; width: max-content; }
        .mvk-ticker span {
            white-space: nowrap;
            font-size: clamp(.82rem, 1.4vw, 1rem);
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(17,17,17,.3);
            padding-right: 14px;
        }
        .mvk-ticker span i {
            font-style: normal;
            color: rgba(17,17,17,.5);
            padding: 0 10px;
        }
        @media (prefers-reduced-motion: no-preference) {
            .mvk-ticker-track { animation: mvkTick 38s linear infinite; }
            @keyframes mvkTick { to { transform: translateX(-50%); } }
        }

        /* ---------- Akt-Nummern ---------- */
        main { counter-reset: mvkact; }
        .pillar-section:not(.pillar-section--final-cta):has(h2[id]) .pillar-section-header { counter-increment: mvkact; position: relative; }
        .pillar-section:not(.pillar-section--final-cta):has(h2[id]) .pillar-section-header::before {
            content: counter(mvkact, decimal-leading-zero);
            position: absolute;
            top: -52px;
            left: 50%;
            transform: translateX(-50%);
            font-size: clamp(4rem, 9vw, 6.5rem);
            font-weight: 900;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1px rgba(17,17,17,.14);
            pointer-events: none;
            user-select: none;
            z-index: 0;
            font-variant-numeric: tabular-nums;
        }
        .pillar-section-header > * { position: relative; z-index: 1; }
        .pillar-section { overflow: clip; position: relative; padding-top: clamp(44px, 5.5vw, 78px); padding-bottom: clamp(44px, 5.5vw, 78px); }
        .pillar-section-header { margin-bottom: clamp(24px, 3.5vw, 40px); }

        /* ---------- Vergleichstabelle: GW-Sieger-Spalte ---------- */
        .pricing-table th:last-child, .pricing-table td:last-child {
            background: var(--mvk-ink);
            color: #fff;
        }
        .pricing-table td:last-child { border-bottom-color: rgba(255,255,255,.12); }
        .pricing-table tbody tr:hover td:not(:last-child) { background: rgba(17,17,17,.03); }
        .pricing-table tr.highlight-row td { font-weight: 800; }

        /* ---------- Bilanz-Karte statt rotgruener comparison-box (mono) ---------- */
        .comparison-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--white);
            border: 1px solid rgba(17,17,17,.12);
            border-radius: var(--radius-lg);
            overflow: clip;
            box-shadow: 0 28px 66px -46px rgba(10,10,12,.5);
        }
        @media (max-width: 720px) { .comparison-box { grid-template-columns: 1fr; } }
        .comparison-side { padding: clamp(26px, 3.2vw, 40px); background: none; border: none; }
        .comparison-side--negative { background: rgba(17,17,17,.025); border-right: 1px solid rgba(17,17,17,.1); }
        @media (max-width: 720px) { .comparison-side--negative { border-right: none; border-bottom: 1px solid rgba(17,17,17,.1); } }
        .comparison-side--positive { background: var(--mvk-ink); }
        .comparison-side h4 {
            display: flex;
            align-items: center;
            gap: 11px;
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            margin: 0 0 8px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(17,17,17,.12);
        }
        .comparison-side h4::before {
            width: 24px; height: 24px; border-radius: 50%; flex: 0 0 auto;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: .86rem; font-weight: 800; line-height: 1;
        }
        .comparison-side--negative h4 { color: var(--text-light); }
        .comparison-side--negative h4::before { content: "\2715"; border: 1.5px solid rgba(17,17,17,.3); color: var(--dark); }
        .comparison-side--positive h4 { color: #fff; border-bottom-color: rgba(255,255,255,.16); }
        .comparison-side--positive h4::before { content: "\2713"; background: #fff; color: var(--mvk-ink); }
        .comparison-side ul { list-style: none; margin: 0; padding: 0; }
        .pillar-section .comparison-box .comparison-side ul > li {
            position: relative;
            padding: 13px 0 13px 28px;
            border-bottom: 1px solid rgba(17,17,17,.06);
            line-height: 1.6;
            font-size: .94rem;
            margin: 0;
            color: var(--text);
        }
        .pillar-section .comparison-box .comparison-side ul > li:last-child { border-bottom: none; padding-bottom: 0; }
        .pillar-section .comparison-box .comparison-side ul > li::before {
            position: absolute; left: 0; top: 14px;
            font-weight: 800; font-size: .9rem; line-height: 1;
        }
        .pillar-section .comparison-box .comparison-side--negative ul > li::before { content: "\2715"; color: var(--text-lighter); }
        .pillar-section .comparison-box .comparison-side--positive ul > li { color: rgba(255,255,255,.78); border-bottom-color: rgba(255,255,255,.1); }
        .pillar-section .comparison-box .comparison-side--positive ul > li::before { content: "\2713"; color: #fff; }
        .pillar-section .comparison-box .comparison-side--positive ul > li a { color: #fff; }

        /* ---------- Pro/Contra-Chips (4 Lese-Sektionen, CSS-only) ---------- */
        .pillar-section:has(#vorteile-website-mieten) .pillar-section-body ul,
        .pillar-section:has(#nachteile-website-mieten) .pillar-section-body ul,
        .pillar-section:has(#vorteile-website-kaufen) .pillar-section-body ul,
        .pillar-section:has(#nachteile-website-kaufen) .pillar-section-body ul {
            list-style: none;
            padding: 0;
            margin: 18px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        @media (max-width: 760px) {
            .pillar-section:has(#vorteile-website-mieten) .pillar-section-body ul,
            .pillar-section:has(#nachteile-website-mieten) .pillar-section-body ul,
            .pillar-section:has(#vorteile-website-kaufen) .pillar-section-body ul,
            .pillar-section:has(#nachteile-website-kaufen) .pillar-section-body ul { grid-template-columns: 1fr; }
        }
        .pillar-section:has(#vorteile-website-mieten) .pillar-section-body ul > li,
        .pillar-section:has(#nachteile-website-mieten) .pillar-section-body ul > li,
        .pillar-section:has(#vorteile-website-kaufen) .pillar-section-body ul > li,
        .pillar-section:has(#nachteile-website-kaufen) .pillar-section-body ul > li {
            position: relative;
            padding: 14px 16px 14px 46px;
            border: 1px solid rgba(17,17,17,.12);
            border-radius: 14px;
            background: var(--white);
            line-height: 1.6;
            margin: 0;
            transition: border-color .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
        }
        .pillar-section:has(#vorteile-website-mieten) .pillar-section-body ul > li:hover,
        .pillar-section:has(#nachteile-website-mieten) .pillar-section-body ul > li:hover,
        .pillar-section:has(#vorteile-website-kaufen) .pillar-section-body ul > li:hover,
        .pillar-section:has(#nachteile-website-kaufen) .pillar-section-body ul > li:hover { border-color: rgba(17,17,17,.3); transform: translateY(-2px); }
        .pillar-section:has(#vorteile-website-mieten) .pillar-section-body ul > li::before,
        .pillar-section:has(#nachteile-website-mieten) .pillar-section-body ul > li::before,
        .pillar-section:has(#vorteile-website-kaufen) .pillar-section-body ul > li::before,
        .pillar-section:has(#nachteile-website-kaufen) .pillar-section-body ul > li::before {
            position: absolute;
            left: 15px;
            top: 15px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: .72rem;
            font-weight: 800;
        }
        .pillar-section:has(#vorteile-website-mieten) .pillar-section-body ul > li::before,
        .pillar-section:has(#vorteile-website-kaufen) .pillar-section-body ul > li::before {
            content: "\2713";
            background: var(--mvk-ink);
            color: #fff;
        }
        .pillar-section:has(#nachteile-website-mieten) .pillar-section-body ul > li::before,
        .pillar-section:has(#nachteile-website-kaufen) .pillar-section-body ul > li::before {
            content: "\2715";
            border: 1.5px solid rgba(17,17,17,.3);
            color: var(--dark);
        }

        /* ---------- Rechenbeispiel: Kosten-Karten + Ersparnis-Showpiece ---------- */
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box {
            background: var(--white);
            border: 1px solid rgba(17,17,17,.12);
            border-radius: var(--radius-lg);
            padding: clamp(24px, 3vw, 34px);
            margin-top: 18px;
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: .82rem;
            font-weight: 800;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--dark);
            margin: 0 0 14px;
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box h3::after {
            content: "";
            flex: 1;
            height: 1px;
            background: rgba(17,17,17,.1);
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box--highlight {
            border: 1.5px solid var(--dark);
            box-shadow: 0 28px 66px -46px rgba(10,10,12,.5);
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box--highlight .vs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin: 20px 0;
        }
        @media (max-width: 640px) { .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box--highlight .vs { grid-template-columns: 1fr; } }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box--highlight .vs > div {
            border: 1px solid rgba(17,17,17,.12);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .cost-box--highlight .vs > div:last-child {
            background: var(--mvk-ink);
            border-color: var(--mvk-ink);
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .price-tag {
            display: block;
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 900;
            letter-spacing: -.03em;
            line-height: 1;
            color: var(--dark);
            font-variant-numeric: tabular-nums;
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .vs > div:first-child .price-tag {
            color: var(--text-lighter);
            text-decoration: line-through;
            text-decoration-thickness: 3px;
            text-decoration-color: rgba(17,17,17,.3);
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .vs > div:last-child .price-tag { color: #fff; }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .price-label {
            display: block;
            margin-top: 10px;
            font-size: .82rem;
            font-weight: 600;
            color: var(--text-light);
            line-height: 1.45;
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .vs > div:last-child .price-label { color: rgba(255,255,255,.65); }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .savings-result {
            margin: 0;
            padding: 16px 0 0;
            background: none;
            border-radius: 0;
            border-top: 1px solid rgba(17,17,17,.1);
            font-weight: 700;
            color: var(--dark);
            text-align: center;
        }
        .pillar-section:has(#kostenrechnung-das-rechenbeispiel) .savings-result strong { color: var(--dark); }

        /* ---------- Nacht-Akt: Unsere Empfehlung ---------- */
        .pillar-section.mvk-night {
            background: var(--mvk-ink) !important;
            position: relative;
            overflow: clip;
        }
        .mvk-night::after {
            content: "Kaufen";
            position: absolute;
            right: -16px;
            bottom: -28px;
            font-size: clamp(5rem, 14vw, 11rem);
            font-weight: 900;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: .01em;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,.07);
            pointer-events: none;
            user-select: none;
        }
        .pillar-section.mvk-night .container { position: relative; z-index: 1; }
        .pillar-section.mvk-night .pillar-section-header::before { -webkit-text-stroke-color: rgba(255,255,255,.12) !important; }
        .pillar-section.mvk-night .pillar-section-eyebrow { color: rgba(255,255,255,.55); }
        .pillar-section.mvk-night h2 { color: #fff; }
        .pillar-section.mvk-night .pillar-section-sub { color: rgba(255,255,255,.6); }
        .pillar-section.mvk-night .pillar-section-body p { color: rgba(255,255,255,.72); }
        .pillar-section.mvk-night .pillar-section-body p strong { color: #fff; }
        .pillar-section.mvk-night .pillar-section-body p a { color: #fff; }
        .pillar-section.mvk-night .pillar-section-body ul {
            list-style: none;
            padding: 0;
            margin: 18px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        @media (max-width: 760px) { .pillar-section.mvk-night .pillar-section-body ul { grid-template-columns: 1fr; } }
        .pillar-section.mvk-night .pillar-section-body ul li {
            position: relative;
            color: rgba(255,255,255,.75);
            padding: 13px 16px 13px 44px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 14px;
            background: rgba(255,255,255,.04);
            line-height: 1.6;
            margin: 0;
            transition: border-color .3s ease, background .3s ease;
        }
        .pillar-section.mvk-night .pillar-section-body ul li:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }
        .pillar-section.mvk-night .pillar-section-body ul li strong { color: #fff; }
        .pillar-section.mvk-night .pillar-section-body ul li a { color: #fff; }
        .pillar-section.mvk-night .pillar-section-body ul li::before {
            content: "\2713";
            position: absolute;
            left: 14px;
            top: 13px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #fff;
            color: var(--mvk-ink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: .72rem;
            font-weight: 800;
        }
        .pillar-section.mvk-night .icon-grid-item {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius-lg);
            transition: border-color .3s ease, background .3s ease;
        }
        .pillar-section.mvk-night .icon-grid-item:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }
        .pillar-section.mvk-night .icon-grid-item h4 { color: #fff; }
        .pillar-section.mvk-night .icon-grid-item p { color: rgba(255,255,255,.65); }
        .pillar-section.mvk-night .icon-grid-item .icon-wrap { background: rgba(255,255,255,.12); }

        /* ---------- Karten-Politur ---------- */
        .pillar-section:not(.mvk-night) .highlight-box {
            border: 1px solid rgba(17,17,17,.12);
            border-left: 4px solid var(--dark);
            border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
        }
        .pillar-section-cta .btn-primary { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; will-change: transform; }

        /* ---------- Final: dunkler Schluss-Akt ---------- */
        .pillar-section--final-cta { background: var(--mvk-ink) !important; position: relative; overflow: clip; padding: clamp(64px,9vw,112px) 0 !important; }
        .pillar-section--final-cta::before {
            content: "Kaufen";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            font-size: clamp(7rem, 20vw, 17rem);
            font-weight: 900;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: -.02em;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,.05);
            pointer-events: none;
            user-select: none;
            z-index: 0;
            white-space: nowrap;
        }
        .pillar-section--final-cta .container { position: relative; z-index: 1; }
        .pillar-section--final-cta .cta-box h2 { color: #fff !important; }
        .pillar-section--final-cta .cta-box h3 { color: rgba(255,255,255,.8) !important; }
        .pillar-section--final-cta .cta-box > p, .pillar-section--final-cta .cta-box p { color: rgba(255,255,255,.7) !important; }
        .pillar-section--final-cta .cta-box .btn-primary { background: #fff !important; color: var(--mvk-ink) !important; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; will-change: transform; }
        .pillar-section--final-cta .cta-box .btn-primary:hover { box-shadow: 0 16px 40px -16px rgba(255,255,255,.4); }
        /* Einziger Schluss-CTA: Zweitaktion + Vertrauenszeile aus der frueheren footer-cta. */
        .pillar-section--final-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
        .pillar-section--final-cta .cta-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 999px; font-weight: 600; text-decoration: none; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); transition: background .3s ease, border-color .3s ease; }
        .pillar-section--final-cta .cta-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.55); color: #fff; }
        .pillar-section--final-cta .footer-cta-trust { margin-top: 30px; }

        /* ---------- Reveals ---------- */
        @supports (animation-timeline: view()) {
            @media (prefers-reduced-motion: no-preference) {
                .icon-grid-item, .highlight-box, .comparison-box, .cost-box,
                .pillar-section.mvk-night .pillar-section-body ul li {
                    animation: mvkRise .9s cubic-bezier(.22,1,.36,1) both;
                    animation-timeline: view();
                    animation-range: entry 0% entry 38%;
                }
                @keyframes mvkRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
            }
        }

        @media (max-width: 720px) {
            .mvk-wm { font-size: clamp(4.5rem, 22vw, 7rem); }
            .pillar-section:not(.pillar-section--final-cta):has(h2[id]) .pillar-section-header::before { font-size: clamp(3.2rem, 16vw, 4.5rem); top: -32px; }
        }
