/* components.css - migrated from inline <style> blocks in _includes/components/**
   Each section below is one macro's CSS, ported verbatim (no rule changes).
   Purged/minified/hashed by scripts/build-theme-css.js, same as the sitewide theme files. */

/* ==== _includes/components/micros/trust/disclosure.njk ==== */
/* --- SCOPED TRUST CSS --- */
.td-container { margin: 25px 0 35px 0; }

.td-box {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
    padding: 18px 24px;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

/* Badge Style */
.td-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: 1px solid #bae6fd;
}

/* Pulse Animation for "Verified" */
.td-pulse {
    width: 6px; height: 6px; background-color: #0ea5e9; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    animation: td-pulse-anim 2s infinite;
}
@keyframes td-pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

/* Text Styling */
.td-text strong { color: #0f172a; font-weight: 700; }
.td-text { margin: 0; }

/* Desktop: Side-by-side */
@media (min-width: 600px) {
    .td-box { flex-direction: column; align-items: center; }
    .td-badge { margin-right: 15px; flex-shrink: 0; }
}

/* --- THEME VARIANTS --- */

/* Coupon (Green) */
.td-box.coupon { border-left-color: #10b981; background-color: #f0fdf4; }
.td-box.coupon .td-badge { background-color: #d1fae5; color: #047857; border-color: #6ee7b7; }
.td-box.coupon .td-pulse { background-color: #10b981; }

/* Warning (Red) */
.td-box.warning { border-left-color: #ef4444; background-color: #fef2f2; }
.td-box.warning .td-badge { background-color: #fee2e2; color: #b91c1c; border-color: #fca5a5; }

/* Tutorial (Purple) */
.td-box.tutorial { border-left-color: #8b5cf6; background-color: #faf5ff; }
.td-box.tutorial .td-badge { background-color: #f3e8ff; color: #6b21a8; border-color: #d8b4fe; }

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .td-box { background-color: #1e293b; color: #e2e8f0; border-left-color: #38bdf8; border-right: 1px solid #334155; border-top: 1px solid #334155; border-bottom: 1px solid #334155; }
    .td-text strong { color: #fff; }
    .td-badge { background-color: #0f172a; color: #38bdf8; border-color: #0ea5e9; }
    
    .td-box.coupon { background-color: #064e3b; border-left-color: #34d399; }
    .td-box.warning { background-color: #450a0a; border-left-color: #f87171; }
}

/* ==== _includes/components/footer/default.njk ==== */
/* =========================================================
       ULTRA-LIGHTWEIGHT SEO FAT FOOTER
       ========================================================= */
    .site-footer {
        background-color: #0b1332; /* Your brand dark blue */
        color: #d1d5db;
        font-family: 'Roboto Condensed', Arial, sans-serif;
        padding: 60px 20px 20px;
        border-top: 6px solid #f16334; /* Your brand orange highlight */
        margin-top: 40px;
    }
    .footer-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 32px;
    }
    
    /* Brand & Disclosure Column */
    .footer-brand img {
        max-width: 180px;
        height: auto;
        margin-bottom: 20px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }
    .footer-brand p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
        color:white;
    }
    .footer-disclosure {
        font-size: 13px;
        color: #8b92a5;
        background: rgba(255,255,255,0.03);
        padding: 12px;
        border-radius: 6px;
        border-left: 3px solid #f16334;
    }

    /* Link Columns */
    .footer-heading {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-links li {
        margin-bottom: 12px;
    }
    .footer-links a {
        color: #a1a1aa;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.2s ease, transform 0.2s ease;
        display: inline-block;
    }
    .footer-links a:hover {
        color: #f16334;
        transform: translateX(3px); /* Smooth nudge effect */
    }

    /* Footer Bottom (Copyright & Legal) */
    .footer-bottom {
        max-width: 1200px;
        margin: 50px auto 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }
    .footer-bottom-links a {
        color: #a1a1aa;
        margin-left: 20px;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-bottom-links a:hover {
        color: #ffffff;
    }

    /* =========================================================
       MOBILE RESPONSIVENESS
       ========================================================= */
    @media (max-width: 991px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
        }
    }
    @media (max-width: 576px) {
        .footer-grid {
            grid-template-columns: 1fr; /* 1 column on mobile */
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        .footer-bottom-links a {
            margin: 0 10px;
            display: inline-block;
        }
    }

/* ==== _includes/components/micros/entry-header/default.njk ==== */
.atf-disclosure{display:flex;align-items:center;gap:8px;justify-content:center;max-width:620px;margin:16px auto 8px;padding:8px 14px;background:#f0f9ff;border:1px solid #bae6fd;border-radius:8px;font-size:.82rem;line-height:1.45;color:#0c4a6e;text-align:left}
                .atf-disclosure svg{flex-shrink:0;width:14px;height:14px;color:#0284c7}
                .atf-disclosure strong{color:#0c4a6e;font-weight:700}
                .atf-disclosure a{color:#0369a1;text-decoration:underline}
                .atf-disclosure a:hover{color:#075985}
                @media(max-width:520px){.atf-disclosure{font-size:.78rem;padding:8px 12px}}
                


                .th-author-block{display:flex;align-items:center;gap:14px;max-width:560px;margin:18px auto 6px;padding:14px 18px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;text-align:left}
                .th-author-block .th-photo{flex-shrink:0;width:64px;height:64px;border-radius:50%;overflow:hidden;border:2px solid #059669}
                .th-author-block .th-photo img{width:100%;height:100%;object-fit:cover;display:block}
                .th-author-meta{flex:1;min-width:0;line-height:1.35}
                .th-author-name{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:1rem;color:#0f172a;margin:0}
                .th-author-name a{color:#0f172a;text-decoration:none}
                .th-author-name a:hover{color:#059669}
                .th-author-role{font-size:.78rem;color:#475569;margin:2px 0 4px;font-weight:500}
                .th-author-line{display:flex;flex-wrap:wrap;align-items:center;gap:10px;font-size:.78rem;color:#64748b}
                .th-author-line .th-updated{color:#059669;font-weight:600}
                .th-author-line .th-verified{display:inline-flex;align-items:center;gap:4px;color:#065f46;font-weight:700;background:#d1fae5;padding:3px 10px;border-radius:12px;border:1px solid #a7f3d0}
                .th-author-line .th-verified svg{width:11px;height:11px;color:#059669}
                .th-author-line a{color:#2563eb;text-decoration:none;display:inline-flex;align-items:center;gap:4px}
                .th-author-line a:hover{text-decoration:underline}
                .th-author-line svg{width:12px;height:12px;vertical-align:-1px}
                @media(max-width:520px){.th-author-block{flex-direction:row;gap:12px;padding:12px 14px}.th-author-block .th-photo{width:52px;height:52px}.th-author-name{font-size:.95rem}}

/* ==== _includes/components/micros/img-sizes/default.njk ==== */
.loader {
            width: 120px;
            height: 120px;
            z-index: 100;
            animation: jump 0.8s ease-in infinite;
        }
        #loader .loader path,
        #no-support .loader path {
            stroke: #fff;
        }
        #loader .loader .cloud,
        #no-support .loader .cloud {
            fill: #2e71ff;
        }
        #loader .shadow,
        #no-support .shadow {
            position: absolute;
            z-index: -1;
            top: 80px;
            left: 0;
            display: block;
            border-radius: 100%;
            height: 20px;
            width: 120px;
            background: #000;
            opacity: 0.3;
            animation: scale-shadow 0.8s ease-in infinite;
        }

        @keyframes jump {
            0% {
                transform: translateY(0) scale(1.15,.8);
            }
            20% {
                transform: translateY(-35px) scaleY(1.1);
            }
            50% {
                transform: translateY(-50px) scale(1);
            }
            80% {
                transform: translateY(-35px) scale(1);
            }
            to {
                transform: translateY(0) scale(1.15,.8);
            }
        }
        @keyframes scale-shadow {
            0% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.2;
                transform: scale(.5);
            }
            to {
                opacity: 0.3;
                transform: scale(1);
            }
        }

/* ==== _includes/components/micros/trust/changelog.njk ==== */
.th-changelog{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:18px 22px;margin:24px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.th-cl-header{display:flex;align-items:center;gap:8px;margin-bottom:12px;padding-bottom:10px;border-bottom:1px solid #f1f5f9}
.th-cl-dot{width:8px;height:8px;border-radius:50%;background:#10b981;box-shadow:0 0 0 0 rgba(16,185,129,.7);animation:th-cl-pulse 2s infinite}
@keyframes th-cl-pulse{0%{box-shadow:0 0 0 0 rgba(16,185,129,.4)}70%{box-shadow:0 0 0 8px rgba(16,185,129,0)}100%{box-shadow:0 0 0 0 rgba(16,185,129,0)}}
.th-cl-title{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:.9rem;color:#0f172a;margin:0;text-transform:uppercase;letter-spacing:.04em}
.th-cl-title a{color:#059669;font-size:.75rem;text-transform:none;letter-spacing:0;margin-left:auto;font-weight:600;text-decoration:none}
.th-cl-title a:hover{text-decoration:underline}
.th-cl-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.th-cl-item{display:flex;gap:12px;align-items:flex-start;font-size:.88rem;line-height:1.5;color:#334155}
.th-cl-date{flex-shrink:0;font-family:'qanelas soft bold',sans-serif;font-weight:700;color:#059669;font-size:.82rem;min-width:78px;padding-top:1px}
.th-cl-note{color:#475569}
.th-cl-note strong{color:#0f172a}

/* ==== _includes/components/micros/hero/calculator.njk ==== */
/* =========================================
       1. CSS VARIABLES (THEME ENGINE)
       ========================================= */
    :root {
        --cc-font: 'Outfit', 'Inter', sans-serif;
        --cc-title-font: 'Bebas Neue', sans-serif;
    }

    /* DEFAULT (DARK) */
    .cc-wrapper {
        --cc-page-bg: #0f172a;
        --cc-text-main: #e2e8f0;
        --cc-text-muted: #94a3b8;
        --cc-accent: #22d3ee;
        --cc-accent-glow: rgba(34, 211, 238, 0.2);
        
        --cc-card-bg: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
        --cc-card-border: rgba(167, 139, 250, 0.3);
        --cc-card-shadow: 0 10px 30px rgba(0,0,0,0.3);

        --cc-input-bg: rgba(15, 23, 42, 0.8);
        --cc-input-border: rgba(34, 211, 238, 0.4);

        --cc-plan-bg: rgba(167, 139, 250, 0.05);
        --cc-plan-border: rgba(167, 139, 250, 0.2);
        --cc-plan-active-bg: rgba(34, 211, 238, 0.15);
        
        --cc-res-bg: rgba(34, 211, 238, 0.05);
        --cc-arrow-color: %2322d3ee; /* URL encoded hex for SVG */
    }

    /* THEME: LIGHT */
    .cc-wrapper.cc-light {
        --cc-page-bg: #ffffff;
        --cc-text-main: #334155;
        --cc-text-muted: #64748b;
        --cc-accent: #0284c7; /* Darker Blue */
        --cc-accent-glow: rgba(2, 132, 199, 0.1);
        
        --cc-card-bg: #ffffff;
        --cc-card-border: #e2e8f0;
        --cc-card-shadow: 0 10px 40px rgba(0,0,0,0.08);

        --cc-input-bg: #f8fafc;
        --cc-input-border: #cbd5e1;

        --cc-plan-bg: #f1f5f9;
        --cc-plan-border: #e2e8f0;
        --cc-plan-active-bg: #e0f2fe;

        --cc-res-bg: #f0f9ff;
        --cc-arrow-color: %230284c7;
    }

    /* THEME: HYBRID (White Page, Navy Card) */
    .cc-wrapper.cc-hybrid {
        --cc-page-bg: #ffffff; /* White Page */
        --cc-text-main: #e2e8f0; /* Light Text inside card */
        --cc-text-muted: #94a3b8;
        --cc-accent: #22d3ee;
        
        --cc-card-bg: #0f172a; /* Dark Card */
        --cc-card-border: #1e293b;
        --cc-card-shadow: 0 20px 50px rgba(0,0,0,0.2);
        
        /* Force inputs to be dark */
        --cc-input-bg: #1e293b;
        --cc-input-border: #334155;
        --cc-arrow-color: %2322d3ee;
    }
    /* Hybrid Override: Headings outside card need to be dark */
    .cc-wrapper.cc-hybrid .cc-main-title { color: #0f172a !important; }
    .cc-wrapper.cc-hybrid .cc-sub-text { color: #475569 !important; }


    /* THEME: NEON (White Page, Solid Black Card, Neon Borders) */
    .cc-wrapper.cc-neon {
        --cc-page-bg: #ffffff;
        --cc-text-main: #fff;
        --cc-text-muted: #c084fc;
        --cc-accent: #d946ef; /* Magenta Neon */
        --cc-accent-glow: rgba(217, 70, 239, 0.2);

        /* Card Transparent initially (filled by ::before) */
        --cc-card-bg: transparent; 
        --cc-card-border: #d946ef; /* Bright Neon Border */
        --cc-card-shadow: 0 0 0 transparent; /* Shadow handled by card */

        --cc-input-bg: rgba(0,0,0,0.5);
        --cc-input-border: #d946ef;
        --cc-plan-bg: rgba(217, 70, 239, 0.05);
        --cc-plan-border: rgba(217, 70, 239, 0.3);
        --cc-plan-active-bg: rgba(217, 70, 239, 0.2);
        --cc-res-bg: rgba(0,0,0,0.4);
        --cc-arrow-color: %23d946ef;
    }
    .cc-wrapper.cc-neon .cc-main-title { color: #000 !important; } /* Page Title Dark */
    .cc-wrapper.cc-neon .cc-sub-text { color: #555 !important; }

    /* =========================================
       2. LAYOUT & STRUCTURE
       ========================================= */
    .cc-wrapper {
        font-family: var(--cc-font);
        background: var(--cc-page-bg);
        color: var(--cc-text-main);
        padding: 40px 15px;
        position: relative;
        overflow: hidden;
    }
    .cc-wrapper * { box-sizing: border-box; }

    .cc-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }

    /* Typography */
    .cc-main-title {
        font-family: var(--cc-title-font);
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1; text-align: center; margin-bottom: 20px;
        color: var(--cc-text-main); letter-spacing: 1px;
    }
    .cc-sub-text { text-align: center; color: var(--cc-text-muted); margin-bottom: 40px; padding: 0 10px; }

    /* =========================================
       3. THE CARD
       ========================================= */
    .cc-tool-card {
        background: var(--cc-card-bg);
        border: 1px solid var(--cc-card-border);
        border-radius: 20px;
        padding: 25px;
        box-shadow: var(--cc-card-shadow);
        position: relative;
        z-index: 2;
    }

    /* NEON THEME SPECIFIC: SOLID BACKING */
    .cc-wrapper.cc-neon .cc-tool-card::before {
        content: ''; position: absolute; inset: 0; z-index: -1;
        border-radius: 20px;
        background: #09090b; /* Solid Dark Backing */
        box-shadow: 0 20px 60px -10px rgba(217, 70, 239, 0.4); /* Neon Glow */
    }

    /* DEAL SELECTOR */
    .cc-deal-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
    .cc-deal-btn {
        background: var(--cc-input-bg);
        border: 2px solid var(--cc-input-border);
        border-radius: 12px; padding: 15px; text-align: center;
        cursor: pointer; transition: 0.3s;
    }
    .cc-deal-btn:hover { transform: translateY(-3px); }
    .cc-deal-btn.active {
        background: var(--cc-accent-glow);
        border-color: var(--cc-accent);
        box-shadow: 0 0 15px var(--cc-accent-glow);
    }
    .cc-d-val { font-family: var(--cc-title-font); font-size: 2em; line-height: 1; display: block; color: var(--cc-accent); }
    .cc-d-name { font-weight: 700; font-size: 0.9em; margin-bottom: 5px; display: block; color: var(--cc-text-main); }

    /* PROVIDER DROPDOWN (Now with Icon!) */
    .cc-prov-wrap { text-align: center; margin-bottom: 30px; }
    .cc-label { display: block; font-weight: 700; color: var(--cc-text-main); margin-bottom: 10px; text-transform: uppercase; font-size: 0.85em; }
    .cc-select {
        background-color: var(--cc-input-bg);
        border: 2px solid var(--cc-accent);
        border-radius: 12px;
        padding: 12px 45px 12px 20px; /* Right padding for arrow */
        font-size: 1.1em; font-weight: 700; color: var(--cc-accent);
        cursor: pointer; width: 100%; max-width: 100%;
        appearance: none; -webkit-appearance: none; -moz-appearance: none;
        
        /* THE SVG ARROW */
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='var(--cc-arrow-color)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 18px;
    }
    /* Fix for Firefox/IE to hide default arrow */
    .cc-select::-ms-expand { display: none; }

    /* PLANS */
    .cc-plans-row { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
    .cc-plan {
        background: var(--cc-plan-bg); border: 2px solid var(--cc-plan-border);
        border-radius: 15px; padding: 15px 20px; cursor: pointer; transition: 0.2s;
        display: flex; justify-content: space-between; align-items: center;
    }
    .cc-plan.selected { border-color: var(--cc-accent); background: var(--cc-plan-active-bg); }
    .cc-p-name { font-weight: 800; font-size: 1.1em; color: var(--cc-text-main); display: block; }
    .cc-p-spec { font-size: 0.8em; color: var(--cc-text-muted); }
    .cc-p-price { font-family: var(--cc-title-font); font-size: 1.8em; color: var(--cc-text-main); line-height: 1; }

    /* RESULTS GRID */
    .cc-results {
        background: var(--cc-res-bg); border: 1px solid var(--cc-accent);
        border-radius: 15px; padding: 25px 15px;
    }
    .cc-res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: center; }
    .cc-res-lbl { font-size: 0.7em; color: var(--cc-text-muted); text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 5px; }
    .cc-res-val { font-family: var(--cc-title-font); font-size: 2.2em; color: var(--cc-accent); line-height: 1; display: block; }
    .cc-res-note { font-size: 0.8em; color: var(--cc-text-muted); margin-top: 5px; display: block; }

    /* COMPARISON TABLE */
    .cc-comp-box {
        margin-top: 50px; border-radius: 20px; overflow: hidden;
        border: 1px solid var(--cc-card-border); background: var(--cc-card-bg);
    }
    /* Neon Comp Box Backing */
    .cc-wrapper.cc-neon .cc-comp-box { background: #000; border: 1px solid #333; }

    .cc-comp-head { background: var(--cc-plan-active-bg); padding: 15px; text-align: center; }
    .cc-comp-title { font-family: var(--cc-title-font); font-size: 1.8em; color: var(--cc-accent); margin: 0; }
    
    .cc-comp-grid { display: grid; grid-template-columns: 1fr; }
    .cc-comp-col { padding: 25px 20px; border-bottom: 1px solid var(--cc-plan-border); text-align: center; }
    .cc-comp-col:last-child { border-bottom: none; }
    
    .cc-c-t { font-weight: 800; font-size: 1.2em; color: var(--cc-text-main); display: block; text-transform: uppercase; }
    .cc-c-s { font-size: 0.9em; color: var(--cc-text-muted); display: block; margin-bottom: 15px; }
    .cc-row { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px dashed var(--cc-plan-border); padding-bottom: 5px; }
    .cc-rl { font-size: 0.8em; color: var(--cc-text-muted); text-transform: uppercase; }
    .cc-rv { font-size: 1.1em; font-weight: 700; color: var(--cc-accent); }
    
    /* CHOICE SECTION */
    .cc-choice-section { margin-top: 50px; }
    .cc-choice-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
    .cc-choice-card {
        background: var(--cc-card-bg); border: 1px solid var(--cc-card-border);
        border-radius: 16px; padding: 25px; text-align: center;
        text-decoration: none !important; display: block; transition: 0.3s;
    }
    /* Choice Card Colors need to be readable in Light Mode */
    .cc-wrapper.cc-light .cc-choice-card { background: #f8fafc; border-color: #cbd5e1; }
    .cc-wrapper.cc-light .cc-ch-desc { color: #475569; }
    .cc-wrapper.cc-light .cc-ch-title { color: #0f172a; }

    .cc-choice-card:hover { transform: translateY(-5px); border-color: var(--cc-accent); }
    .cc-recommended { border: 2px solid #10b981 !important; background: rgba(16, 185, 129, 0.1) !important; position: relative; }
    .cc-tag {
        position: relative; top: -12px; left: 50%; transform: translateX(-50%);
        background: #10b981; color: #fff; padding: 4px 12px; border-radius: 20px;
        font-size: 0.75rem; font-weight: bold; text-transform: uppercase;
    }
    .cc-ch-title { font-weight: 800; font-size: 1.5rem; color: var(--cc-text-main); margin: 10px 0; }
    .cc-ch-desc { color: var(--cc-text-muted); line-height: 1.5; margin-bottom: 15px; font-size: 0.95em; }

    /* =========================================
       DESKTOP BREAKPOINTS
       ========================================= */
    @media (min-width: 768px) {
        .cc-wrapper { padding: 60px 40px; }
        .cc-tool-card { padding: 50px; }
        
        .cc-deal-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .cc-select { max-width: 400px; }
        
        .cc-plans-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .cc-plan { display: block; text-align: center; padding: 25px; } 
        .cc-p-name { margin-bottom: 10px; }

        .cc-res-grid { grid-template-columns: repeat(4, 1fr); }
        .cc-res-val { font-size: 3em; }

        .cc-comp-grid { grid-template-columns: repeat(3, 1fr); }
        .cc-comp-col { border-bottom: none; border-right: 1px solid var(--cc-plan-border); }
        .cc-comp-col:last-child { border-right: none; }
        
        .cc-row { display: block; border-bottom: none; text-align: center; margin-bottom: 20px; }
        .cc-rv { font-size: 1.5em; display: block; }
        
        .cc-choice-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    }

/* ==== _includes/components/micros/hero/promo_hero.njk ==== */
/* =========================================
   CORE STYLES (Default = Dark Mode)
   ========================================= */
.cp-wrapper {
    font-family: 'Sora', 'Inter', sans-serif;
    background: #0a0118; /* Default Page BG */
    color: #e9d5ff;
    line-height: 1.6;
    padding-bottom: 60px;
    width: 100%;
}
.cp-wrapper * { box-sizing: border-box; }
.cp-wrapper a { text-decoration: none; color: inherit; border: none; }
.cp-wrapper a:hover { transition: color 0.3s ease; color: #ffffff; text-decoration: none;}
.cp-wrapper ul { list-style: none; padding: 0; margin: 0; }
.cp-wrapper li { margin: 0; padding: 0; }
.cp-wrapper li:before { content: none; } 
            .cp-item:before {
                content: none !important;
            }
/* Layout */
.cp-container { width: 100%; padding: 0 20px; margin: 0 auto; }
@media (min-width: 640px) { .cp-container { max-width: 640px; } }
@media (min-width: 768px) { .cp-container { max-width: 768px; } }
@media (min-width: 1024px) { .cp-container { max-width: 1024px;}  .cp-wrapper {  background:linear-gradient(to right, #ffffff 0%, #ffffff 12%, #0a0118 12%, #0a0118 88%, #ffffff 88%, #ffffff 100%)} }

.cp-grid { display: grid; grid-template-columns: 1fr; gap: 25px; margin-bottom: 40px; }
@media (min-width: 1024px) {
    .cp-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .cp-cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-inline: auto; }
    .cp-cols-1 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* Hero */
.cp-hero { padding: 40px 20px; text-align: center; }
.cp-eyebrow {
    display: inline-flex; background: rgba(236, 72, 153, 0.15); 
    border: 1px solid rgba(236, 72, 153, 0.3); padding: 4px 12px; border-radius: 50px; 
    font-size: 0.75em; font-weight: 700; color: #f9a8d4; margin-bottom: 15px;
}
.cp-hero h1 { font-size: 2.2em; font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 15px; }
.cp-subtitle { font-size: 1em; color: #c4b5fd; max-width: 650px; margin: 0 auto 25px; }
.cp-trust { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cp-trust-item { display: flex; align-items: center; gap: 6px; color: #a78bfa; font-size: 0.85em; font-weight: 600; }

/* THE CARD (Default Transparent) */
.cp-card {
    margin-top: 20px;
    background: rgba(17, 4, 38, 0.6); /* Transparent Glass */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2); 
    border-radius: 20px; 
    padding: 25px;
    display: flex; flex-direction: column; 
    transition: 0.3s; 
    position: relative;
    z-index: 1; /* Important for ::before layering */
    overflow: hidden; /* Keeps ::before inside corners */
}
.cp-card:hover { transform: translateY(-5px); border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15); }

.cp-featured { border: 2px solid rgba(139, 92, 246, 0.4); background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%); }
.cp-featured::after {
    content: '⭐ BEST VALUE'; position: absolute; top: 12px; right: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #fff;
    padding: 5px 12px; border-radius: 20px; font-size: 0.65em; font-weight: 800; z-index: 2;
}

.cp-tag {
    align-self: flex-start; padding: 4px 10px; background: rgba(139, 92, 246, 0.2); 
    border-radius: 20px; font-size: 0.65em; font-weight: 700; color: #c084fc; 
    text-transform: uppercase; margin-bottom: 12px; border: 1px solid rgba(139, 92, 246, 0.4);
}
.cp-card-title { font-size: 1.8em; font-weight: 800; color: #fff; margin: 0 0 8px 0; }
.cp-desc { color: #c4b5fd; font-size: 0.9em; margin-bottom: 15px; line-height: 1.4; }

/* Elements */
.cp-val-box {
    background: rgba(0, 0, 0, 0.3); border-radius: 12px; padding: 15px;
    margin: 10px 0 15px; text-align: center; border: 1px solid rgba(139, 92, 246, 0.2);
}
.cp-amt { font-size: 2.5em; font-weight: 800; font-family: monospace; color: #fff; line-height: 1; }
.cp-lbl { color: #a78bfa; font-size: 0.75em; font-weight: 600; text-transform: uppercase; margin-top: 5px; }

.cp-list { display: grid; gap: 8px; margin: 15px 0; }
.cp-item { display: flex; gap: 10px; background: rgba(139, 92, 246, 0.05); padding: 8px; border-radius: 8px; }
.cp-check { color: #10b981; font-weight: bold; }
.cp-txt { font-size: 0.85em; color: #d8b4fe; }

.cp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; background: rgba(0,0,0,0.3); padding: 10px; border-radius: 10px; text-align: center; margin: 15px; border: 1px solid rgba(139, 92, 246, 0.2); }
.cp-s-lbl { font-size: 0.6em; color: #a78bfa; text-transform: uppercase; display: block; }
.cp-s-val { font-size: 0.85em; font-weight: 700; color: #fff; }

.cp-save {
    background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, rgba(5,150,105,0.2) 100%);
    border: 2px solid rgba(16,185,129,0.3); border-radius: 12px; padding: 20px;
    text-align: center; margin: 25px 0;
}
.cp-save-lbl { font-size: 0.9em; color: #6ee7b7; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; display: block;}
.cp-save-amt { font-size: 2.5em; font-weight: 800; font-family: 'JetBrains Mono', monospace; color: #10b981; display: block;}
.cp-save-det { margin-top: 12px; color: #cbd5e1; font-size: 0.95em; display: block;}

/* Buttons */
.cp-code-btn {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%); border: 2px solid #fff;
    border-radius: 10px; padding: 12px; font-family: monospace; font-size: 1.1em;
    font-weight: 700; color: #fff; cursor: pointer; text-align: center; margin: 15px 0;
}
.cp-link-btn {
    display: block; background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    border: 2px solid #fff; border-radius: 10px; padding: 15px; text-align: center; margin: 15px 0;
}
.cp-link-txt { color: #fff; font-weight: 800; display: block; }
.cp-btn {
    display: block; width: 100%; padding: 14px; background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff; text-align: center; border-radius: 10px; font-weight: 800; margin-top: auto;
}
.cp-btn.green { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }

.cp-content { background: rgba(17, 4, 38, 0.6); padding: 30px; border-radius: 20px; border: 1px solid rgba(139, 92, 246, 0.2); margin-top: 40px; }
.cp-step { padding-left: 40px; position: relative; margin-bottom: 15px; color: #d8b4fe; }
.cp-step:before {
    content: counter(step); counter-increment: step; position: absolute; left: 0; top: 0;
    width: 30px; height: 30px; background: #3b82f6; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: bold; font-size: 0.8em;
}
@media (min-width: 1024px) { .cp-hero h1 { font-size: 3.5em; } .cp-content { padding: 50px; } }

/* =========================================
   THEME 2: LIGHT (Clean White)
   ========================================= */
.cp-wrapper.cp-light { background: #ffffff !important; color: #334155 !important; }
.cp-wrapper.cp-light .cp-hero h1, .cp-wrapper.cp-light .cp-card-title, .cp-wrapper.cp-light .cp-amt, .cp-wrapper.cp-light h2, .cp-wrapper.cp-light h3 { color: #0f172a !important; }
.cp-wrapper.cp-light .cp-card { background: #ffffff !important; border: 1px solid #e2e8f0 !important; box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important; }
.cp-wrapper.cp-light .cp-desc, .cp-wrapper.cp-light .cp-txt, .cp-wrapper.cp-light .cp-step { color: #475569 !important; }
.cp-wrapper.cp-light .cp-item { background: #f1f5f9 !important; border: 1px solid #e2e8f0; }
.cp-wrapper.cp-light .cp-val-box, .cp-wrapper.cp-light .cp-stats { background: #f8fafc !important; border: 1px solid #e2e8f0 !important; }
.cp-wrapper.cp-light .cp-s-val { color: #0f172a !important; }
.cp-wrapper.cp-light .cp-save { background: #ecfdf5 !important; border: 1px solid #10b981 !important; }
.cp-wrapper.cp-light .cp-save-lbl { color: #047857 !important; }
.cp-wrapper.cp-light .cp-save-amt { color: #059669 !important; }
.cp-wrapper.cp-light .cp-save-det { color: #334155 !important; }
.cp-wrapper.cp-light .cp-btn, .cp-wrapper.cp-light .cp-code-btn { color: #ffffff !important; }

/* =========================================
   THEME 3: HYBRID (Navy Card)
   ========================================= */
.cp-wrapper.cp-hybrid { background: #ffffff !important; color: #e9d5ff !important; }
.cp-wrapper.cp-hybrid .cp-card { background: #0f172a !important; border: 1px solid #1e293b !important; box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important; }
.cp-wrapper.cp-hybrid .cp-hero h1 { color: #0f172a !important; }
.cp-wrapper.cp-hybrid .cp-subtitle { color: #475569 !important; }
.cp-wrapper.cp-hybrid .cp-card-title, .cp-wrapper.cp-hybrid .cp-amt { color: #fff !important; }
.cp-wrapper.cp-hybrid .cp-content { background: #0f172a !important; color: #cbd5e1 !important; }

/* =========================================
   THEME 4: NEON (White Page, DEEP NEON Card)
   Uses ::before to create a solid dark layer behind transparency!
   ========================================= */
.cp-wrapper.cp-neon { 
    background: #ffffff !important; /* 1. Page is White */
}
/* Force Headings outside card to be dark */
.cp-wrapper.cp-neon .cp-hero h1 { color: #0a0118 !important; }
.cp-wrapper.cp-neon .cp-subtitle { color: #475569 !important; }

/* THE MAGIC: ::before element */
.cp-wrapper.cp-neon .cp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1; /* Sit behind the content */
    background: #0a0118; /* 2. SOLID Dark Color */
    /* Optional: Subtle Gradient on the solid layer to make it pop */
    background: linear-gradient(180deg, #110426 0%, #0a0118 100%); 
}

/* Card Styling to sit on top of ::before */
.cp-wrapper.cp-neon .cp-card {
    background: rgba(139, 92, 246, 0.05) !important; /* 3. Keep Slight tint on top */
    border: 1px solid #8b5cf6 !important; 
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.6) !important; /* Heavy shadow for contrast */
}

/* Force Text inside card to be Light (because page is white, we must override) */
.cp-wrapper.cp-neon .cp-card-title,
.cp-wrapper.cp-neon .cp-amt,
.cp-wrapper.cp-neon .cp-s-val { color: #ffffff !important; }
.cp-wrapper.cp-neon .cp-desc,
.cp-wrapper.cp-neon .cp-txt { color: #e9d5ff !important; }

/* Ensure Inner Boxes look like Dark Mode */
.cp-wrapper.cp-neon .cp-item { background: rgba(139, 92, 246, 0.1) !important; border: none !important; }
.cp-wrapper.cp-neon .cp-val-box { background: rgba(255,255,255,0.05) !important; border-color: rgba(139, 92, 246, 0.3) !important; }
.cp-wrapper.cp-neon .cp-save { 
    background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, rgba(5,150,105,0.2) 100%) !important;
    border: 1px solid rgba(16,185,129,0.5) !important; 
}
.cp-wrapper.cp-neon .cp-save-lbl { color: #6ee7b7 !important; }
.cp-wrapper.cp-neon .cp-save-amt { color: #10b981 !important; }
.cp-wrapper.cp-neon .cp-save-det { color: #cbd5e1 !important; }

/* ==== _includes/components/reviews/star-rating-form.njk ==== */
/* ── Wrapper ── */
    .rv-form-section {
      max-width: 680px;
      margin: 48px auto 0;
      font-family: inherit;
    }

    /* ── Card shell ── */
    .rv-form-card {
      background: #fff;
      border: 1px solid #e8edf3;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.07);
    }

    /* ── Header bar ── */
    .rv-form-header {
      background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
      padding: 22px 28px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .rv-form-header-icon {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .rv-form-header-icon svg { fill: #f59e0b; }
    .rv-form-header-text h3 {
      margin: 0 0 3px;
      color: #f8fafc;
      font-size: 1.1rem;
      font-weight: 700;
    }
    .rv-form-header-text p {
      margin: 0;
      color: #94a3b8;
      font-size: 0.8rem;
    }

    /* ── Body ── */
    .rv-form-body {
      padding: 26px 28px 28px;
    }

    /* ──────────────────────────────────────────
       SVG STAR RATING: pure CSS, zero JS
       DOM order: s5 s4 s3 s2 s1  (reversed)
       flex-direction: row-reverse shows them
       visually as: s1 s2 s3 s4 s5
       ~ sibling selector fills in correct direction
    ────────────────────────────────────────── */
    .rv-stars-label {
      display: block;
      font-size: .82rem;
      font-weight: 700;
      color: #475569;
      letter-spacing: .3px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .rv-stars-label span { color: #ef4444; }

    .rv-stars-input {
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-start;
      gap: 6px;
      margin-bottom: 22px;
    }
    .rv-stars-input input[type="radio"] {
      display: none;
    }
    .rv-stars-input label {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
      border-radius: 6px;
      transition: transform .15s, background .15s;
    }
    .rv-stars-input label:hover {
      transform: scale(1.15);
      background: rgba(245,158,11,.08);
    }

    /* SVG star inside each label */
    .rv-star-svg {
      width: 36px;
      height: 36px;
      fill: #dde3ed;
      drop-shadow: none;
      transition: fill .15s, filter .15s;
    }

    /* Checked state: fill this star + all after it (lower numbers) */
    .rv-stars-input input[type="radio"]:checked ~ label .rv-star-svg,
    .rv-stars-input label:hover .rv-star-svg,
    .rv-stars-input label:hover ~ label .rv-star-svg {
      fill: #f59e0b;
      filter: drop-shadow(0 0 4px rgba(245,158,11,.45));
    }

    /* Hint text under stars */
    .rv-stars-hint {
      font-size: .78rem;
      color: #94a3b8;
      margin: -14px 0 18px;
      padding-left: 2px;
    }

    /* ── Form groups ── */
    .rv-form-group {
      margin-bottom: 16px;
    }
    .rv-form-group label {
      display: block;
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .3px;
      text-transform: uppercase;
      color: #475569;
      margin-bottom: 7px;
    }
    .rv-form-group label span { color: #ef4444; }

    .rv-form-group input,
    .rv-form-group textarea,
    .rv-form-group select {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid #e2e8f0;
      border-radius: 9px;
      font-size: .95rem;
      font-family: inherit;
      color: #1e293b;
      background: #f8fafc;
      box-sizing: border-box;
      transition: border-color .2s, background .2s, box-shadow .2s;
      -webkit-appearance: none;
    }
    .rv-form-group input:focus,
    .rv-form-group textarea:focus,
    .rv-form-group select:focus {
      outline: none;
      border-color: #3b82f6;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(59,130,246,.12);
    }
    .rv-form-group input::placeholder,
    .rv-form-group textarea::placeholder {
      color: #b0bac5;
    }
    .rv-form-group textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6;
    }
    .rv-form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 32px;
      cursor: pointer;
    }

    /* ── Two-column row ── */
    .rv-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 520px) {
      .rv-form-row { grid-template-columns: 1fr; }
    }

    /* ── Honeypot ── */
    .rv-honeypot { display: none !important; }

    /* ── Footer row ── */
    .rv-form-footer {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .rv-submit-btn {
      background: linear-gradient(135deg, #1d4ed8, #2563eb);
      color: #fff;
      border: none;
      padding: 12px 30px;
      border-radius: 10px;
      font-size: .97rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 14px rgba(37,99,235,.28);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .rv-submit-btn:hover {
      background: linear-gradient(135deg, #1e40af, #1d4ed8);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(37,99,235,.35);
    }
    .rv-submit-btn:disabled {
      background: #94a3b8;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
    .rv-submit-btn svg { fill: #fff; flex-shrink: 0; }

    .rv-privacy-note {
      font-size: .75rem;
      color: #94a3b8;
      line-height: 1.5;
    }
    .rv-privacy-note svg {
      fill: #94a3b8;
      vertical-align: middle;
      margin-right: 3px;
    }

    /* ── Toast ── */
    .rv-toast {
      margin-top: 14px;
      padding: 11px 16px;
      border-radius: 9px;
      font-size: .9rem;
      font-weight: 600;
      display: none;
      align-items: center;
      gap: 8px;
    }
    .rv-toast.success {
      background: #f0fdf4;
      color: #166534;
      border: 1px solid #bbf7d0;
      display: flex;
    }
    .rv-toast.error {
      background: #fef2f2;
      color: #991b1b;
      border: 1px solid #fecaca;
      display: flex;
    }

    @media (max-width: 600px) {
      .rv-form-header { padding: 18px 18px 16px; }
      .rv-form-body { padding: 20px 18px 22px; }
      .rv-star-svg { width: 30px; height: 30px; }
      .rv-form-footer { flex-direction: column; align-items: stretch; }
      .rv-submit-btn { justify-content: center; }
    }

/* ==== _includes/components/micros/trust/mangesh-take.njk ==== */
.th-mtake{background:linear-gradient(135deg,#ffffff 0%,#f8fafc 100%);border:1px solid #e2e8f0;border-left:4px solid #10b981;border-radius:14px;padding:22px 24px;margin:28px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;position:relative}
.th-mtake::before{content:"";position:absolute;top:16px;right:18px;width:44px;height:44px;background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981' opacity='0.12'><path d='M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z'/></svg>") center/contain no-repeat;pointer-events:none}
.th-mtake-head{display:flex;gap:14px;align-items:center;margin:0 0 12px}
.th-mtake-photo{flex-shrink:0;width:48px;height:48px;border-radius:50%;overflow:hidden;border:2px solid #10b981}
.th-mtake-photo img{width:100%;height:100%;object-fit:cover;display:block}
.th-mtake-byline{flex:1;min-width:0;line-height:1.3}
.th-mtake-byline strong{display:block;font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:.95rem;color:#0f172a}
.th-mtake-byline span{display:block;font-size:.76rem;color:#64748b;font-weight:500;margin-top:2px}
.th-mtake-label{display:inline-block;background:#10b981;color:#fff;font-size:.66rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;padding:3px 9px;border-radius:999px;margin-bottom:6px}
.th-mtake-title{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:1.1rem;color:#0f172a;margin:2px 0 12px;line-height:1.35}
.th-mtake-tldr{background:#ecfdf5;border-left:3px solid #10b981;padding:10px 14px;border-radius:6px;font-size:.88rem;color:#065f46;margin:0 0 14px;font-weight:600;line-height:1.55}
.th-mtake-body{font-size:.95rem;line-height:1.75;color:#1e293b;margin:0 0 16px}
.th-mtake-body p{margin:0 0 10px}
.th-mtake-body p:last-child{margin-bottom:0}
.th-mtake-body strong{color:#0f172a}
.th-mtake-body a{color:#0d9488;font-weight:700}
.th-mtake-share{display:flex;flex-wrap:wrap;gap:8px;align-items:center;padding-top:14px;border-top:1px dashed #e2e8f0}
.th-mtake-share-label{font-size:.76rem;color:#64748b;font-weight:700;text-transform:uppercase;letter-spacing:.05em;margin-right:4px}
.th-mtake-btn{display:inline-flex;align-items:center;gap:6px;padding:7px 12px;background:#f1f5f9;border:1px solid #e2e8f0;color:#334155;font-size:.78rem;font-weight:600;border-radius:8px;text-decoration:none;cursor:pointer;transition:all .15s;font-family:inherit}
.th-mtake-btn:hover{background:#10b981;border-color:#10b981;color:#fff;transform:translateY(-1px)}
.th-mtake-btn svg{width:13px;height:13px;flex-shrink:0}
.th-mtake-btn.copied{background:#10b981;border-color:#10b981;color:#fff}
@media(max-width:640px){.th-mtake{padding:18px 16px}.th-mtake::before{display:none}.th-mtake-title{font-size:1rem}.th-mtake-body{font-size:.9rem}}

/* ==== _includes/components/micros/trust/hosts-tested-table.njk ==== */
.th-hosts-tested{background:#ffffff;border:1px solid #e2e8f0;border-radius:14px;padding:24px;margin:32px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.th-ht-header{display:flex;flex-wrap:wrap;align-items:center;gap:12px;margin:0 0 6px}
.th-ht-badge{display:inline-flex;align-items:center;gap:6px;background:#0f172a;color:#fff;padding:4px 12px;border-radius:999px;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.th-ht-badge svg{width:12px;height:12px}
.th-ht-title{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:1.15rem;color:#0f172a;margin:0}
.th-ht-sub{font-size:.88rem;color:#475569;margin:0 0 18px;line-height:1.55}
.th-ht-sub strong{color:#065f46}
.th-ht-scroll{overflow-x:auto}
.th-ht-table{width:100%;border-collapse:collapse;font-size:.88rem}
.th-ht-table th,.th-ht-table td{padding:10px 12px;text-align:left;border-bottom:1px solid #f1f5f9}
.th-ht-table th{font-family:'qanelas soft bold',sans-serif;font-size:.76rem;color:#475569;font-weight:800;text-transform:uppercase;letter-spacing:.05em;background:#f8fafc;border-bottom:2px solid #e2e8f0}
.th-ht-table tr:hover td{background:#f8fafc}
.th-ht-num{font-family:'qanelas soft bold',sans-serif;color:#64748b;font-weight:700;width:44px}
.th-ht-name{font-weight:600;color:#0f172a}
.th-ht-rating{color:#059669;font-weight:700;white-space:nowrap}
.th-ht-price{color:#334155;white-space:nowrap}
.th-ht-link a{display:inline-flex;align-items:center;gap:4px;color:#0d9488;font-weight:700;font-size:.82rem;text-decoration:none}
.th-ht-link a:hover{text-decoration:underline}
.th-ht-foot{margin:14px 0 0;font-size:.8rem;color:#64748b;line-height:1.5}
@media(max-width:640px){.th-ht-table th,.th-ht-table td{padding:8px 8px;font-size:.82rem}.th-ht-num{width:28px}}

/* ==== _includes/components/header/default.njk ==== */
 /* =========================================================
       ULTRA-LIGHTWEIGHT NAVBAR CSS
       ========================================================= */ 
    .site-header {
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        font-family: 'Roboto Condensed', Arial, sans-serif;
        position: relative;
        z-index: 9999;
    }
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        height: 70px;
    }
    
    /* Logo */
    .site-logo img {
        max-height: 52px;
        width: auto;
        display: block;
    }

    /* Mobile Toggle (Checkbox Hack - NO JS REQUIRED) */
    .nav-toggle-input { display: none; }
    .nav-toggle-label {
        display: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
    .nav-toggle-label span {
        display: block;
        width: 26px;
        height: 3px;
        background: #0b1332; 
		 /* Dark blue brand color */ 
        border-radius: 2px;
        transition: all 0.3s ease;
    }

     /* Desktop Navigation */ 
    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 22px;
        align-items: center;
    }
    .nav-list > li {
        position: relative;
    }
    .nav-list a {
        text-decoration: none;
        color: #0b1332;
        font-size: 17px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 24px 0;
        transition: color 0.2s ease;
    }
    .nav-list a:hover {
        color: #f16334; /* Orange brand color */
    }

     /* Dropdown Arrow */ 
    .arrow-icon {
        font-size: 12px;
        transition: transform 0.2s;
    }
    .nav-list > li:hover .arrow-icon {
        transform: rotate(180deg);
    }

    /* Dropdown Menu (Desktop) */
    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        list-style: none;
        padding: 10px 0;
        margin: 0;
        min-width: 250px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-top: 3px solid #f16334;
        border-radius: 0 0 6px 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease;
    }
    .nav-list > li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .sub-menu li a {
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 400;
        border-bottom: 1px solid #f5f5f5;
    }
    .sub-menu li:last-child a { border-bottom: none; }

    /* The trailing dropdowns open leftward from their own right edge so they cannot push
       the document wider than the viewport. Measured at a 1280px viewport before this rule:
       "Compare" reached x=1304 and "More" x=1412 against a 1263px client width, giving every
       page a ~149px horizontal scrollbar. Closed menus are visibility:hidden, which still
       takes part in layout and still counts toward scrollWidth, so this affected all pages
       at all times, not only on hover. Mobile is unaffected: the max-width:991px block sets
       .sub-menu to position:static, where left/right do nothing. */
    .nav-list > li:nth-last-child(-n+2) .sub-menu {
        left: auto;
        right: 0;
    }
    .sub-menu li a:hover {
        background-color: #fafafa;
        color: #f16334;
        padding-left: 26px; 
		 /* Smooth indent effect */ 
    }
    
    /* View All Button */
    .view-all a {
        color: #0b1332;
        font-weight: 700;
        background-color: #f8f9fa;
    }

     /* Highlight CTA Button */ 
    .nav-cta a {
        background-color: #f16334;
        color: #ffffff !important;
        padding: 10px 20px !important;
        border-radius: 4px;
        border: 1px solid #f16334;
    }
    .nav-cta a:hover {
        background-color: transparent;
        color: #f16334 !important;
    }
	 /* KILL OLD CSS ARTIFACTS (Fixes the vertical line) */ 
	.nav-list li, 
	.nav-list a {
		border: none !important;
		outline: none !important;
	}
	.nav-list a::before, 
	.nav-list a::after, 
	.nav-list li::before, 
	.nav-list li::after {
		display: none !important;
		content: none !important;
	}
     /* =========================================================
       MOBILE NAVIGATION (Max-width 991px)
       ========================================================= */ 
    @media (max-width: 991px) {
        .nav-toggle-label { display: flex; }
        
        .main-nav {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
        }
        
        /* MAGIC MOBILE TOGGLE: When checkbox is checked, expand menu */
        .nav-toggle-input:checked ~ .main-nav {
            max-height: 85vh; /* Expands menu */
            overflow-y: auto;
            border-top: 1px solid #eaeaea;
        }

        /* Hamburger Animation to 'X' */
        .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
        .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        /* Mobile List Styling */
        .nav-list {
            flex-direction: column;
            align-items: flex-start;
            padding: 15px 20px;
            gap: 0;
        }
        .nav-list > li { width: 100%; }
        .nav-list a {
            padding: 14px 0;
            border-bottom: 1px solid #f0f0f0;
            width: 100%;
            justify-content: space-between;
        }

        /* Mobile Sub-menu (Always visible & indented for easy tapping) */
        .sub-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: none;
            border-left: 2px solid #f16334;
            padding: 0 0 0 15px;
            margin-bottom: 10px;
        }
        .sub-menu li a {
            padding: 10px 0;
            font-size: 15.5px;
            border-bottom: 1px dashed #eaeaea;
        }
        
        /* Mobile CTA */
        .nav-cta { margin-top: 15px; margin-bottom: 15px; }
        .nav-cta a { justify-content: center; text-align: center; }
    }

/* ==== _includes/components/micros/trust/author-footer.njk ==== */
.th-author-footer{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);color:#e2e8f0;border-radius:16px;padding:32px 28px;margin:48px 0 32px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.th-af-inner{display:flex;gap:24px;align-items:flex-start;max-width:860px;margin:0 auto}
.th-af-photo{flex-shrink:0;width:110px;height:110px;border-radius:50%;overflow:hidden;border:3px solid #10b981;box-shadow:0 0 0 4px rgba(16,185,129,.15)}
.th-af-photo img{width:100%;height:100%;object-fit:cover;display:block}
.th-af-meta{flex:1;min-width:0}
.th-af-label{display:inline-block;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:#10b981;margin-bottom:6px}
.th-af-name{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:1.45rem;color:#fff;margin:0 0 4px}
.th-af-role{font-size:.86rem;color:#94a3b8;margin:0 0 14px;font-weight:500}
.th-af-bio{font-size:.96rem;line-height:1.7;color:#cbd5e1;margin:0 0 14px}
.th-af-tested{font-size:.82rem;color:#10b981;margin:0 0 16px;font-weight:600;display:flex;align-items:center;gap:6px}
.th-af-tested svg{width:14px;height:14px;flex-shrink:0}
.th-af-links{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.th-af-link{display:inline-flex;align-items:center;gap:6px;padding:8px 14px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);color:#e2e8f0;font-size:.82rem;font-weight:600;border-radius:8px;text-decoration:none;transition:all .15s}
.th-af-link:hover{background:#10b981;border-color:#10b981;color:#fff;transform:translateY(-1px)}
.th-af-link svg{width:14px;height:14px}
@media(max-width:640px){.th-af-inner{flex-direction:column;align-items:center;text-align:center;gap:18px}.th-af-photo{width:88px;height:88px}.th-af-tested{justify-content:center}.th-af-links{justify-content:center}}

/* ==== _includes/components/header/solo-header.njk ==== */
/* --- TRUST HEADER STYLES --- */

/* These two rules target site-wide chrome, not the header itself. While this block lived
   inline in solo-header.njk they only shipped on `coupon_home` pages; extracted into
   components.css - which base.njk and homepage-layout.njk link on EVERY page - they
   applied everywhere and killed the .main-article float, so the .main-aside sticky TOC
   dropped to the bottom of every article and the layout read as full width.
   base.njk puts `has-solo-header` on <body> only when coupon_home is true. */
.has-solo-header .main-article {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.has-solo-header #main {
    overflow: hidden;
    padding-bottom: 25px;
    margin-top: -10px;
    padding-top: 40px;
}
    .trust-header {
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        padding: 15px 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
    }

    .th-container {
        max-width: 1000px; /* Matches Landing Layout */
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo */
    .th-logo img {
        height: 45px;
        width: auto;
        display: block;
    }

    /* Verified Badge */
    .th-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #ecfdf5; /* Light Green */
        border: 1px solid #10b981;
        padding: 6px 14px;
        border-radius: 50px;
        color: #047857;
        font-family: 'Roboto', 'Sora', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    /* Blinking Dot Animation */
    .th-dot {
        height: 8px;
        width: 8px;
        background-color: #10b981;
        border-radius: 50%;
        display: inline-block;
        animation: th-pulse 2s infinite;
    }

    @keyframes th-pulse {
        0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
        70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
        100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }

    /* Methodology link */
    .th-method {
        font-family: 'Roboto', 'Sora', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #0b1332;
        text-decoration: none;
        padding: 6px 14px;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
        white-space: nowrap;
    }
    .th-method:hover,
    .th-method:focus {
        background: #f1f5f9;
        color: #047857;
    }

    /* Mobile Tweaks */
    @media (max-width: 640px) {
        .th-method { font-size: 0.8rem; padding: 4px 8px; }
    }
    @media (max-width: 480px) {
        .th-logo img { height: 35px; }
        .th-badge { padding: 4px 10px; font-size: 0.75rem; }
        .th-method { display: none; }
    }

/* ==== _includes/components/trust/featured-in.njk ==== */
.fi-rail {
  padding: 28px 16px 32px;
  background: #fafbfc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.fi-rail__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.fi-rail__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
}
.fi-rail__label svg { color: #059669; }
.fi-rail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.fi-rail__item { display: flex; }
.fi-rail__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.fi-rail__link:hover {
  border-color: #059669;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.10);
  transform: translateY(-1px);
}
.fi-rail__logo {
  max-height: 28px;
  width: auto;
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.18s ease, opacity 0.18s ease;
}
.fi-rail__link:hover .fi-rail__logo {
  filter: grayscale(0%);
  opacity: 1;
}
.fi-rail__name {
  font-family: 'qanelas soft bold', 'Roboto Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.fi-rail__name--fallback { display: none; }
.fi-rail__type {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  padding: 3px 8px;
  background: #f1f5f9;
  border-radius: 12px;
  letter-spacing: 0.02em;
}
.fi-rail__sub {
  font-size: 0.82rem;
  color: #64748b;
  margin: 14px auto 0;
  max-width: 640px;
  line-height: 1.55;
}
@media (max-width: 480px) {
  .fi-rail { padding: 22px 12px 24px; }
  .fi-rail__link { padding: 8px 14px; }
  .fi-rail__type { display: none; }
}

/* ==== _includes/components/micros/explainer-link.njk ==== */
.th-explainer{background:linear-gradient(135deg,#f8fafc 0%,#f1f5f9 100%);border:1px solid #e2e8f0;border-left:4px solid #0d9488;border-radius:12px;padding:18px 22px;margin:24px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.th-explainer p{margin:0 0 10px;font-size:.93rem;line-height:1.7;color:#334155}
.th-explainer p:last-child{margin-bottom:0}
.th-explainer__link{display:inline-block;color:#0d9488;font-weight:700;font-size:.9rem;text-decoration:underline;text-underline-offset:2px}
.th-explainer__link:hover{color:#0f766e}

/* ==== _includes/components/micros/trust/proof-strip.njk ==== */
.th-proof-strip{background:#ffffff;border:1px solid #e2e8f0;border-radius:14px;padding:22px 24px;margin:28px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.th-ps-header{display:flex;align-items:center;gap:10px;margin:0 0 14px}
.th-ps-badge{display:inline-flex;align-items:center;gap:6px;background:#0f172a;color:#fff;padding:4px 12px;border-radius:999px;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.th-ps-badge svg{width:12px;height:12px}
.th-ps-title{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:1.05rem;color:#0f172a;margin:0}
.th-ps-sub{font-size:.82rem;color:#475569;margin:0 0 16px;line-height:1.5}
.th-ps-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media(min-width:720px){.th-ps-grid{grid-template-columns:repeat(4,1fr)}}
.th-ps-item{display:block;background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px;overflow:hidden;text-decoration:none;color:inherit;transition:all .15s}
.th-ps-item:hover{border-color:#059669;box-shadow:0 4px 12px rgba(5,150,105,.12);transform:translateY(-2px)}
.th-ps-thumb{position:relative;width:100%;aspect-ratio:4/3;background:#e2e8f0;overflow:hidden}
.th-ps-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.th-ps-placeholder{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;background:repeating-linear-gradient(45deg,#f1f5f9,#f1f5f9 10px,#e2e8f0 10px,#e2e8f0 20px);color:#64748b;font-size:.72rem;font-weight:600;text-align:center;padding:10px}
.th-ps-placeholder svg{width:28px;height:28px;opacity:.5}
.th-ps-caption{padding:10px 12px;font-size:.78rem;line-height:1.4;color:#334155;font-weight:500}
.th-ps-foot{margin:14px 0 0;font-size:.78rem;color:#64748b;line-height:1.5}
.th-ps-foot a{color:#059669;font-weight:700;text-decoration:underline}

/* ==== _includes/components/micros/trust/review-scope.njk ==== */
.th-review-scope{background:#fff;border:1px solid #e2e8f0;border-left:4px solid #2563eb;border-radius:12px;padding:22px 24px;margin:28px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.th-rs-header{display:flex;align-items:center;gap:10px;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid #f1f5f9}
.th-rs-badge{display:inline-flex;align-items:center;gap:6px;background:#dbeafe;color:#1e40af;padding:4px 12px;border-radius:999px;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.th-rs-badge svg{width:12px;height:12px}
.th-rs-title{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:1.05rem;color:#0f172a;margin:0}
.th-rs-grid{display:grid;grid-template-columns:1fr;gap:10px;margin-bottom:14px}
@media(min-width:640px){.th-rs-grid{grid-template-columns:repeat(2,1fr);gap:10px 24px}}
.th-rs-row{display:flex;gap:10px;font-size:.9rem;line-height:1.5}
.th-rs-label{flex-shrink:0;min-width:92px;font-weight:700;color:#475569;font-size:.78rem;text-transform:uppercase;letter-spacing:.04em;padding-top:1px}
.th-rs-val{color:#0f172a;font-weight:600}
.th-rs-measured{margin-top:14px;padding-top:14px;border-top:1px solid #f1f5f9}
.th-rs-measured-title{font-size:.78rem;font-weight:700;color:#475569;text-transform:uppercase;letter-spacing:.04em;margin:0 0 8px}
.th-rs-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px}
.th-rs-list li{background:#f1f5f9;color:#334155;font-size:.82rem;padding:5px 10px;border-radius:6px;font-weight:500}
.th-rs-list li::before{content:"\2713\00a0";color:#059669;font-weight:700}

/* ==== _includes/components/micros/trust/methodology-box.njk ==== */
.th-methodology-box{background:linear-gradient(135deg,#f0fdf4 0%,#ecfdf5 100%);border:1px solid #a7f3d0;border-left:4px solid #059669;border-radius:14px;padding:22px 24px;margin:28px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.th-mb-header{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.th-mb-badge{display:inline-flex;align-items:center;gap:6px;background:#059669;color:#fff;padding:4px 12px;border-radius:999px;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.th-mb-badge svg{width:12px;height:12px}
.th-mb-title{font-family:'qanelas soft bold',sans-serif;font-weight:800;font-size:1.1rem;color:#065f46;margin:0}
.th-mb-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-bottom:14px}
@media(min-width:640px){.th-mb-grid{grid-template-columns:repeat(4,1fr)}}
.th-mb-stat{background:#fff;border:1px solid #d1fae5;border-radius:10px;padding:12px 10px;text-align:center}
.th-mb-stat-num{display:block;font-family:'qanelas soft bold',sans-serif;font-size:1.5rem;font-weight:800;color:#059669;line-height:1;margin-bottom:4px}
.th-mb-stat-label{display:block;font-size:.72rem;color:#475569;font-weight:600;text-transform:uppercase;letter-spacing:.04em}
.th-mb-note{margin:0;font-size:.88rem;color:#334155;line-height:1.55}
.th-mb-note a{color:#059669;font-weight:700;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}
.th-mb-note a:hover{color:#047857}

/* ==== _includes/components/micros/category-card-grid.njk ==== */
/* ── Category Card Grid (2-col) ── */
.catg-grid{
  max-width:1200px;margin:0 auto;padding:0 24px;
  display:grid;gap:28px;
}
@media(min-width:700px){.catg-grid{grid-template-columns:repeat(2,1fr);gap:32px}}

.catg-card{
  background:#fff;border-radius:20px;overflow:hidden;
  border:1px solid #e2e8f0;
  box-shadow:0 2px 12px rgba(0,0,0,.04);
  transition:transform .3s,box-shadow .3s,border-color .3s;
  text-decoration:none;color:inherit;display:flex;flex-direction:column;
}
.catg-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,.1);
  border-color:#6ee7b7;
}

/* ── Image ── */
.catg-card-img{
  width:100%;aspect-ratio:690/500;object-fit:cover;display:block;
}

/* ── Body ── */
.catg-card-body{
  padding:24px 28px 28px;display:flex;flex-direction:column;flex:1;
}
.catg-card-eyebrow{
  font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;
  color:#059669;margin-bottom:10px;
}
.catg-card-title{
  font-family:'qanelas soft bold','Roboto Condensed',sans-serif;
  font-size:1.25rem;font-weight:700;color:#0f172a;
  line-height:1.25;margin:0 0 12px;
}
.catg-card-desc{
  font-size:.92rem;color:#475569;line-height:1.65;margin:0 0 20px;flex:1;
}

/* ── CTA row ── */
.catg-card-footer{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:16px;border-top:1px solid #f1f5f9;
}
.catg-card-cta{
  display:inline-flex;align-items:center;gap:6px;
  font-size:.85rem;font-weight:700;color:#059669;
  transition:gap .2s,color .2s;
}
.catg-card:hover .catg-card-cta{gap:10px;color:#047857}
.catg-card-date{
  font-size:.72rem;color:#94a3b8;font-weight:500;
}

/* ==== _includes/components/reviews/review-list.njk ==== */
.rv-section { max-width: 680px; margin: 40px auto 0; font-family: inherit; }
    .rv-aggregate {
      background: #fff;
      border-radius: 12px;
      padding: 22px 28px;
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
      display: flex;
      align-items: center;
      gap: 28px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .rv-avg-block { text-align: center; }
    .rv-avg-num { font-size: 3rem; font-weight: 800; color: #1a1a2e; line-height: 1; }
    .rv-avg-stars { font-size: 1.5rem; color: #f5a623; margin: 2px 0; }
    .rv-avg-label { font-size: .8rem; color: #777; }
    .rv-dist { flex: 1; min-width: 180px; }
    .rv-dist-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; font-size: .85rem; }
    .rv-dist-bar-wrap { flex: 1; background: #eee; border-radius: 4px; height: 8px; overflow: hidden; }
    .rv-dist-bar { background: #f5a623; height: 100%; border-radius: 4px; }
    .rv-dist-count { width: 20px; text-align: right; color: #555; }
    .rv-section-title { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; }
    .rv-item {
      background: #fff;
      border-radius: 10px;
      padding: 18px 22px;
      margin-bottom: 14px;
      box-shadow: 0 1px 8px rgba(0,0,0,.06);
    }
    .rv-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; flex-wrap: wrap; gap: 6px; }
    .rv-item-stars { font-size: 1.1rem; color: #f5a623; }
    .rv-item-author { font-weight: 700; font-size: .95rem; color: #1a1a2e; }
    .rv-item-date { font-size: .8rem; color: #999; }
    .rv-item-used { font-size: .8rem; color: #666; margin-bottom: 6px; }
    .rv-item-body { font-size: .95rem; line-height: 1.6; color: #333; }
    .rv-editor-reply {
      margin-top: 12px;
      padding: 10px 14px;
      background: #f0f4ff;
      border-left: 3px solid #4a90e2;
      border-radius: 0 6px 6px 0;
      font-size: .88rem;
      color: #333;
    }
    .rv-editor-reply strong { color: #4a90e2; }
    .rv-show-more {
      background: none;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 9px 20px;
      cursor: pointer;
      font-size: .9rem;
      color: #555;
      margin-top: 6px;
      width: 100%;
    }
    .rv-show-more:hover { border-color: #f5a623; color: #f5a623; }
    .rv-hidden-reviews { display: none; }
    .rv-hidden-reviews.rv-revealed { display: block; }

/* ==== _includes/components/micros/offerproduct/default.njk ==== */
/* Offer Product Card Styles */
.ev-offer-product {
  --ev-offer-bg: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  --ev-offer-border: #e2e8f0;
  --ev-offer-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --ev-offer-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --ev-offer-name-color: #1e293b;
  --ev-offer-highlight-color: #64748b;
  --ev-offer-feature-color: #475569;
  --ev-offer-price-color: #059669;
  --ev-offer-price-bg: #d1fae5;
  --ev-offer-cta-bg: #2563eb;
  --ev-offer-cta-color: #ffffff;
  --ev-offer-cta-hover: #1d4ed8;
  --ev-offer-badge-bg: #fbbf24;
  --ev-offer-badge-color: #92400e;
  
  background: var(--ev-offer-bg);
  border: 2px solid var(--ev-offer-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--ev-offer-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ev-offer-product:hover {
  box-shadow: var(--ev-offer-shadow-hover);
  transform: translateY(-2px);
}

.ev-offer-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

/* Badge */
.ev-offer-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ev-offer-badge-bg);
  color: var(--ev-offer-badge-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* Header */
.ev-offer-header {
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.ev-offer-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ev-offer-name-color);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.ev-offer-highlight {
  font-size: 0.875rem;
  color: var(--ev-offer-highlight-color);
  margin: 0;
  font-weight: 500;
}

/* Features List */
.ev-offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.ev-offer-feature {
  padding: 0.625rem 0;
  color: var(--ev-offer-feature-color);
  font-size: 0.9375rem;
  line-height: 1.5;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ev-offer-feature:last-child {
  border-bottom: none;
}

.ev-offer-feature::before {
  content: '✓';
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
.ev-offer-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #e2e8f0;
}

.ev-offer-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ev-offer-price-color);
  background: var(--ev-offer-price-bg);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  display: inline-block;
  align-self: flex-start;
}

.ev-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--ev-offer-cta-bg);
  color: var(--ev-offer-cta-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.ev-offer-cta:hover {
  background: var(--ev-offer-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 8px -1px rgba(37, 99, 235, 0.3);
}

.ev-offer-cta-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.ev-offer-cta:hover .ev-offer-cta-icon {
  transform: translateX(3px);
}

/* Theme: Winner (Green/Gold) */
.ev-offer-theme--winner {
  --ev-offer-bg: linear-gradient(145deg, #f0fdf4 0%, #ffffff 100%);
  --ev-offer-border: #86efac;
  --ev-offer-badge-bg: #fbbf24;
  --ev-offer-badge-color: #92400e;
  --ev-offer-cta-bg: #059669;
  --ev-offer-cta-hover: #047857;
}

.ev-offer-theme--winner::before {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
}

/* Theme: Cloud (Blue) */
.ev-offer-theme--cloud {
  --ev-offer-bg: linear-gradient(145deg, #eff6ff 0%, #ffffff 100%);
  --ev-offer-border: #93c5fd;
  --ev-offer-badge-bg: #3b82f6;
  --ev-offer-badge-color: #ffffff;
  --ev-offer-cta-bg: #2563eb;
  --ev-offer-cta-hover: #1d4ed8;
}

.ev-offer-theme--cloud::before {
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #2563eb);
}

/* Theme: Budget (Green) */
.ev-offer-theme--budget {
  --ev-offer-bg: linear-gradient(145deg, #ecfdf5 0%, #ffffff 100%);
  --ev-offer-border: #6ee7b7;
  --ev-offer-badge-bg: #10b981;
  --ev-offer-badge-color: #ffffff;
  --ev-offer-cta-bg: #059669;
  --ev-offer-cta-hover: #047857;
  --ev-offer-price-color: #047857;
  --ev-offer-price-bg: #a7f3d0;
}

.ev-offer-theme--budget::before {
  background: linear-gradient(90deg, #34d399, #10b981, #059669);
}

/* Theme: Premium (Purple) */
.ev-offer-theme--premium {
  --ev-offer-bg: linear-gradient(145deg, #faf5ff 0%, #ffffff 100%);
  --ev-offer-border: #d8b4fe;
  --ev-offer-badge-bg: #9333ea;
  --ev-offer-badge-color: #ffffff;
  --ev-offer-cta-bg: #7c3aed;
  --ev-offer-cta-hover: #6d28d9;
}

.ev-offer-theme--premium::before {
  background: linear-gradient(90deg, #c084fc, #9333ea, #7c3aed);
}

/* Responsive */
@media (min-width: 640px) {
  .ev-offer-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .ev-offer-cta {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .ev-offer-product {
    padding: 1.25rem;
    margin: 1rem 0;
  }
  
  .ev-offer-name {
    font-size: 1.25rem;
  }
  
  .ev-offer-feature {
    font-size: 0.875rem;
  }
  
  .ev-offer-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-bottom: 0.75rem;
  }
}

/* ==== _includes/components/micros/heading-list/default.njk ==== */
ol.list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            list-style-type: none;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            -ms-flex-pack: distribute;
                justify-content: space-around;
        }
        
        ol.list li a {
            line-height: 300px;
            width: 180px;
            border-bottom:0px;
        }
        
        ol.list li {
            font-weight: 500;
            font-size: 1.3rem;
            text-decoration: underline;
            -webkit-transition: cubic-bezier(0.23, 1, 0.320, 1) 0.7s all;
            -o-transition: cubic-bezier(0.23, 1, 0.320, 1) 0.7s all;
            transition: cubic-bezier(0.23, 1, 0.320, 1) 0.7s all;
            width: 32%;
            list-style: none;
            cursor: pointer;
            height: 180px;
            border: 1px solid rgb(81, 81, 83);
            background-image: url(/images/host-logo/a2hostinglogo.png);
            background-size: 100% 40%;
            background-repeat: no-repeat;
            background-position-y: center;
            border-radius: 5px;
            -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.15), 0 0 8px 0 rgba(0, 0, 0, 0.15);
                    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.15), 0 0 8px 0 rgba(0, 0, 0, 0.15);
            background-color: #e3e1ef;
        }
        
        ol.list li:nth-child(2) {
            background-image: url(/images/host-logo/sitegroundlogo.png);
        }
        
        ol.list li:nth-child(3) {
            background-image: url(/images/host-logo/bluehostlogo.png);
        }
        
        ol.list li:nth-child(4) {
            background-image: url(/images/host-logo/kinsta.jpg);
        }
        
        ol.list li:nth-child(5) {
            background-image: url(/images/host-logo/greengeeklogo.png);
        }
        
        ol.list li:nth-child(6) {
            background-image: url(/images/host-logo/hostingerlogo.png);
        }
        
        ol.list li:nth-child(7) {
            background-image: url(/images/host-logo/dreamhostlogo.png);
        }
        
        ol.list li:nth-child(8) {
            background-image: url(/images/host-logo/inmotion.png);
        }
        
        ol.list li:nth-child(9) {
            background-image: url(/images/host-logo/godaddylogo.png);
        }
        
        @media (max-width: 600px) {
            ol.list li {
                width: 95%;
                
            }
            .hl ol.list li {
                width: 45%;

            }
            .hl {
                margin-top: 80px;
            }


            .hl ol.list li a{
            line-height: 144px;
            background-color: darkorange;
            width: 180px;
            color: white;
            padding: 2px;
            border-radius: 5px;
            }


        }

        @media (max-width: 400px) {

            .hl ol.list li {
                width: 95%;

            }

            }
        
        ol.list li:hover {
            -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.18), 0 0 9px 0 rgba(42, 23, 211, 0.438);
                    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.18), 0 0 9px 0 rgba(42, 23, 211, 0.438);
            outline-offset: 4px solid;
            background-color: snow;
        }
        
        ol.top-host-list {
            margin-left: -55px!important;
        }

        ol.list.top-host-list li {
            border: 2px solid #0f207e;
        }
        
        ol.list.top-host-list li:nth-child(odd) {
            border: 2px solid #00a63f;
        }

        @media only screen and (max-width: 600px) {
            ol.list li {
                background-size: 100% 100%;
            }
        }


/* ==== sitewide: scrollable table wrapper ==== */
/* Injected around every <table> by the optimizeAssets transform in .eleventy.js, because
   comparison tables are authored directly into overflow:visible containers and were being
   clipped instead of scrolled. Lives here (not table-themes-v2.css) because components.css
   is the only stylesheet linked by BOTH base.njk and homepage-layout.njk. */
.table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.table-scroll > table {
    margin-top: 0;
}

.table-scroll:focus-visible {
    outline: 2px solid #1569b9;
    outline-offset: 2px;
}


/* ==== _includes/components/micros/category-card-grid.njk (reviewGrid) ==== */
.catg-card-flag{display:inline-block;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#b91c1c;background:#fee2e2;border-radius:4px;padding:2px 7px;margin-left:6px;vertical-align:middle}


/* ==== _includes/components/micros/review-summary-table.njk ==== */
.rs-flag{display:inline-block;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#b91c1c;background:#fee2e2;border-radius:4px;padding:2px 6px;margin-left:6px;vertical-align:middle}
.rs-scope{display:block;font-size:.75rem;color:#64748b;font-weight:400;line-height:1.4}
.rs-none{color:#94a3b8;font-style:italic}
.rs-notes{max-width:820px;margin:24px auto 0;color:#475569;font-size:.9rem;line-height:1.7}
.rs-notes p{margin:0 0 14px}
.rs-note{padding-left:14px;border-left:3px solid #e2e8f0;color:#64748b}


/* ==== pages/reviews/index.njk (/hosting-reviews) ==== */
.hero-method-link{margin-top:14px;font-size:.9rem}
.hero-method-link a{color:#93c5fd;text-decoration:underline}
.catg-group{margin-bottom:56px}
.catg-group-count{display:inline-block;font-size:.8rem;font-weight:700;color:#475569;background:#e2e8f0;border-radius:999px;padding:2px 10px;margin-left:8px;vertical-align:middle}
.rs-narrative{max-width:820px;margin:0 auto;color:#334155;font-size:1rem;line-height:1.8}
.rs-narrative p{margin:0 0 18px}
.rs-narrative .hp-table-subhead{text-align:left;margin-top:36px}
.hp-testnote{max-width:900px;margin:0 auto;background:#f8fafc;border:1px solid #e2e8f0;border-radius:16px;padding:28px 32px}
.hp-testnote-title{font-size:1.35rem;font-weight:800;color:#0f172a;margin:0 0 14px}
.hp-testnote p{color:#475569;font-size:.95rem;line-height:1.8;margin:0 0 14px}
.hp-testnote p:last-child{margin-bottom:0}
