/* ========================================
   COMPARISON PAGE STYLES
   Matches Hawaa Design System
======================================== */

/* ---- HEADER — transparent on hero, white on scroll ---- */
.header .logo-img {
    transition: filter 0.3s ease;
}

.header.scrolled .logo-img {
    filter: none;
}

/* ---- HERO ---- */
.cmp-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ink);
}

/* Particle canvas */
.cmp-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Headline — staggered CSS reveal, readable from the first frame */
.cmp-hero-headline {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 580px;
    width: 90%;
}

@keyframes cmp-hero-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cmp-hero-eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--teal-on-dark);
    margin-bottom: 18px;
    opacity: 0;
    animation: cmp-hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.cmp-hero-headline-1 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--on-ink);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: cmp-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.cmp-hero-headline-1 .italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.cmp-hero-headline-2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    margin: 20px auto 0;
    max-width: 480px;
    opacity: 0;
    animation: cmp-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .cmp-hero-eyebrow,
    .cmp-hero-headline-1,
    .cmp-hero-headline-2,
    .cmp-hero-deck,
    .cmp-hero-scroll-indicator {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* Scroll indicator */
.cmp-hero-scroll-indicator {
    position: absolute;
    bottom: 158px;
    right: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: cmp-hero-fade 1s ease 0.7s forwards;
}

@keyframes cmp-hero-fade {
    to { opacity: 1; }
}

.cmp-hero-scroll-track {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.cmp-hero-scroll-segment {
    width: 1px;
    height: 12px;
    background: var(--teal-on-dark);
    position: absolute;
    top: -12px;
    left: 0;
    animation: cmp-scroll-pulse 2s ease-in-out infinite;
}

@keyframes cmp-scroll-pulse {
    0% { top: -12px; }
    100% { top: 40px; }
}

.cmp-hero-scroll-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
}

/* Compare deck — label + auto-scrolling "vs" cards */
.cmp-hero-deck {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    animation: cmp-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.cmp-hero-deck-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
    padding: 0 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.cmp-hero-deck-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.cmp-hero-carousel-wrapper {
    overflow: hidden;
    /* top inset so the hover lift is never clipped */
    padding: 6px 12px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.cmp-hero-carousel {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: cmp-card-scroll 34s linear infinite;
}

@keyframes cmp-card-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .cmp-hero-carousel {
        animation: none;
    }

    .cmp-hero-carousel-wrapper {
        overflow-x: auto;
    }
}

.cmp-hero-card {
    flex: 0 0 168px;
    min-height: 98px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

/* Hover effects only on real pointer devices — on touch, iOS makes
   :hover stick after a tap, leaving cards lifted and clipped */
@media (hover: hover) and (pointer: fine) {
    .cmp-hero-carousel:hover {
        animation-play-state: paused;
    }

    .cmp-hero-card:hover {
        transform: translateY(-3px);
        border-color: rgba(79, 196, 184, 0.45);
        background: rgba(255, 255, 255, 0.08);
    }

    .cmp-hero-card:hover .cmp-hero-card-vs {
        color: var(--teal-on-dark);
        border-color: rgba(79, 196, 184, 0.4);
    }

    .cmp-hero-card:hover .cmp-hero-card-arrow {
        color: var(--teal-on-dark);
        transform: translate(2px, -2px);
    }
}

/* Touch feedback: press in place, never lift */
.cmp-hero-card:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
}

.cmp-hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cmp-hero-card-vs {
    font-family: 'Outfit', sans-serif;
    font-size: 0.56rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9999px;
    padding: 3px 9px;
    line-height: 1;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cmp-hero-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.28);
    transition: color 0.3s ease, transform 0.3s ease;
}

.cmp-hero-card-arrow svg {
    width: 15px;
    height: 15px;
}

.cmp-hero-card-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cmp-hero-card-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--on-ink);
    line-height: 1.25;
}

.cmp-hero-card-model {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.35;
}

/* ---- HERO RESPONSIVE ---- */
@media (min-width: 640px) {
    .cmp-hero-headline-1 {
        font-size: 3rem;
    }

    .cmp-hero-headline-2 {
        font-size: 1rem;
    }

    .cmp-hero-card {
        flex: 0 0 178px;
    }
}

@media (min-width: 768px) {
    .cmp-hero-headline {
        left: 48px;
        transform: translateY(-50%);
        text-align: left;
        max-width: 620px;
    }

    .cmp-hero-headline-1 {
        font-size: 3.5rem;
    }

    .cmp-hero-headline-2 {
        font-size: 1rem;
        margin-left: 0;
        margin-right: 0;
    }

    .cmp-hero-deck-label {
        padding: 0 48px;
    }

    .cmp-hero-carousel-wrapper {
        padding: 0 16px;
    }

    .cmp-hero-carousel {
        gap: 16px;
    }

    .cmp-hero-card {
        flex: 0 0 192px;
        min-height: 106px;
    }

    .cmp-hero-scroll-indicator {
        right: 48px;
        bottom: 172px;
    }
}

@media (min-width: 1024px) {
    .cmp-hero-headline {
        left: 64px;
    }

    .cmp-hero-headline-1 {
        font-size: 4.5rem;
    }

    .cmp-hero-headline-2 {
        font-size: 1rem;
        margin-top: 24px;
    }

    .cmp-hero-deck-label {
        padding: 0 64px;
    }

    .cmp-hero-card {
        flex: 0 0 210px;
        min-height: 112px;
        padding: 14px 18px 16px;
    }

    .cmp-hero-scroll-indicator {
        right: 64px;
    }
}

/* ---- SHARED SECTION STYLES ---- */
.cmp-section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.cmp-section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-deep);
    margin-bottom: 10px;
}

.cmp-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 32px;
}

.cmp-section-title .italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

@media (min-width: 768px) {
    .cmp-section-container {
        padding: 0 24px;
    }

    .cmp-section-title {
        font-size: 2rem;
    }
}

/* ========================================
   HAWAA vs HONEYWELL — COMPARISON TABLE
   Mobile-first 3-column flat layout
   Hawaa column = continuous dark block
======================================== */
.cmp-vs {
    padding: 60px 0 56px;
    background: var(--mist);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cmp-vs.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .cmp-vs {
        padding: 80px 0 72px;
    }
}

.cmp-vs-subtext {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-top: -20px;
    margin-bottom: 36px;
}

/* ========================================
   COMPARISON — Mila-style two-column layout
   Left: fixed Hawaa Edge panel (light gray).
   Right: rival product cards, scroll horizontally.
   All columns share fixed row heights so every
   label/value pair aligns across columns.
======================================== */
.cmp-compare-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .cmp-compare-wrapper {
        padding: 0 24px;
    }
}

.cmp-compare {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

/* ---- Columns (shared by Hawaa + rivals) ---- */
.cmp-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 18px 12px 22px;
    box-sizing: border-box;
}

.cmp-col--hawaa {
    flex: 0 0 47%;
    max-width: 47%;
    background: var(--teal-tint);
    border-radius: 24px;
}

/* The scroller itself is the rounded paper panel; rival columns slide
   inside it. Keeping radius/border on the container (not the cards)
   means nothing "flashes" at the edges while switching rivals. */
.cmp-scroll {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: var(--paper);
    border: 1px solid var(--ink-line-soft);
    border-radius: 24px;
}

.cmp-scroll::-webkit-scrollbar {
    display: none;
}

.cmp-col--rival {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

/* Hairline between rival columns when two are visible side by side */
.cmp-col--rival + .cmp-col--rival {
    border-left: 1px solid var(--ink-line-soft);
}

@media (min-width: 768px) {
    .cmp-col {
        padding: 22px 16px 26px;
    }

    .cmp-col--hawaa {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .cmp-col--rival {
        flex: 0 0 300px;
    }
}

/* ---- Badge slot (keeps figures aligned) ---- */
.cmp-col-badge-slot {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cmp-col-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink);
    background: var(--mist-deep);
    padding: 5px 13px;
    border-radius: 9999px;
    white-space: nowrap;
}

/* ---- Product image / silhouette ---- */
.cmp-col-figure {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cmp-col-figure img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cmp-col-figure--rival {
    color: var(--ink-faint);
}

.cmp-col-figure--rival svg {
    width: auto;
    height: 124px;
}

@media (min-width: 768px) {
    .cmp-col-figure {
        height: 156px;
    }

    .cmp-col-figure--rival svg {
        height: 138px;
    }
}

/* ---- Product name ---- */
.cmp-col-head {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 6px;
}

.cmp-col-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.cmp-col-model {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--ink-soft);
    margin-top: 2px;
}

@media (min-width: 768px) {
    .cmp-col-brand {
        font-size: 1.3rem;
    }
}

/* ---- Group heading (repeated per column, aligned) ---- */
.cmp-grouphead {
    height: 38px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--teal-deep);
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--ink-line-soft);
}

/* ---- Metric cell: label above, value below (centered) ---- */
.cmp-cell {
    height: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
}

.cmp-cell-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.25;
}

.cmp-cell-sub {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--ink-soft);
}

.cmp-cell-val {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
}

/* value states */
.cmp-cell-val--hawaa {
    color: var(--ink);
}

.cmp-cell-val--win {
    color: var(--teal-deep);
}

.cmp-cell-val--neutral {
    color: var(--ink-soft);
}

.cmp-cell-val--lose {
    color: var(--ink-faint);
    font-weight: 600;
}

/* total row emphasis */
.cmp-cell--total {
    border-top: 1px solid var(--ink-line-soft);
    margin-top: 2px;
}

.cmp-cell--total .cmp-cell-val {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .cmp-cell-label {
        font-size: 0.78rem;
    }

    .cmp-cell-val {
        font-size: 0.95rem;
    }

    .cmp-cell--total .cmp-cell-val {
        font-size: 1.05rem;
    }
}

/* ---- Switcher (Mila-style arrows) ---- */
.cmp-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.cmp-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    border: 1px solid var(--ink-line);
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink);
    transition: all 0.2s ease;
}

.cmp-arrow:hover:not(:disabled) {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--on-ink);
    transform: scale(1.05);
}

.cmp-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.cmp-arrow svg {
    width: 20px;
    height: 20px;
}

.cmp-index {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    min-width: 50px;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ---- Summary: savings + verdict ---- */
.cmp-summary {
    max-width: 600px;
    margin: 26px auto 0;
    text-align: center;
}

/* Crossfade while switching rivals — no hard blink */
.cmp-summary-inner {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cmp-summary-inner.is-switching {
    opacity: 0;
    transform: translateY(6px);
}

@media (prefers-reduced-motion: reduce) {
    .cmp-summary-inner {
        transition: opacity 0.2s ease;
    }

    .cmp-summary-inner.is-switching {
        transform: none;
    }
}

/* Savings card — filled teal panel, clear hierarchy */
.cmp-save {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 22px 24px 24px;
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-deep-press) 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 124, 113, 0.22);
}

.cmp-save::after {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 65%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.cmp-save-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.68);
}

.cmp-save-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: #fff;
}

.cmp-save-note {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: 420px;
}

@media (min-width: 640px) {
    .cmp-save-amount {
        font-size: 2.4rem;
    }
}

.cmp-footnote {
    margin: 14px 0 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.5;
}

.cmp-verdict {
    margin-top: 22px;
}

@media (min-width: 640px) {
    .cmp-verdict .cmp-vs-verdict-line {
        font-size: 0.88rem;
    }
}

/* ---- VERDICT BAR (stacked, button below) ---- */
.cmp-vs-verdict-bar {
    padding: 16px 0 20px;
    margin-top: 4px;
}

.cmp-vs-verdict-line {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 0 0 14px;
}

.cmp-vs-verdict-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: none;
    border: 1.5px solid var(--ink-line);
    border-radius: 9999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cmp-vs-verdict-btn:hover {
    border-color: var(--teal-deep);
    color: var(--teal-deep);
}

/* ---- VERDICT POPUP OVERLAY ---- */
.cmp-vs-verdict-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cmp-vs-verdict-overlay.active {
    display: flex;
    opacity: 1;
}

.cmp-vs-verdict-popup {
    background: var(--paper);
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px 24px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 25px 60px var(--shadow-tint-lg);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.cmp-vs-verdict-overlay.active .cmp-vs-verdict-popup {
    transform: scale(1);
}

@media (min-width: 640px) {
    .cmp-vs-verdict-popup {
        padding: 36px 32px;
    }
}

.cmp-vs-verdict-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 5;
}

.cmp-vs-verdict-close:hover {
    background: #e5e7eb;
}

.cmp-vs-verdict-close svg {
    width: 18px;
    height: 18px;
    color: var(--ink-soft);
}

/* Popup content — white background */
.cmp-vs-verdict-popup-body .cmp-vs-popup-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.cmp-vs-verdict-popup-body .cmp-vs-popup-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 16px;
}

.cmp-vs-verdict-popup-body .cmp-vs-popup-context {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cmp-vs-verdict-popup-body .cmp-vs-popup-pitch {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cmp-vs-verdict-popup-body .cmp-vs-popup-closer {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- BOTTOM CTA — deeper tint so it reads as its own section ---- */
.cmp-bottom-cta {
    padding: 60px 0;
    background: var(--mist-deep);
    text-align: center;
}

.cmp-bottom-cta .cmp-section-title {
    margin-bottom: 12px;
}

.cmp-bottom-cta-desc {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 28px;
    line-height: 1.5;
}

.cmp-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cmp-cta-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--teal-deep);
    border: 1px solid var(--teal-deep);
    border-radius: 9999px;
    color: var(--on-teal);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px var(--shadow-cta);
}

.cmp-cta-buy:hover {
    background: var(--teal-deep-hover);
    box-shadow: 0 4px 16px var(--shadow-cta);
    transform: scale(1.02);
}

.cmp-cta-secondary-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--ink);
    border-radius: 9999px;
    color: var(--on-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cmp-cta-secondary-dark:hover {
    background: var(--ink);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .cmp-bottom-cta {
        padding: 80px 0;
    }
}
