/* TruthVault VPN — Landing Page Styles — v2026.03.04b
   100% CSS Variable driven — zero hardcoded colors
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-page {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 19px;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: var(--accent-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--btn-primary-hover); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 8px; font-weight: 600;
    font-size: .95rem; cursor: pointer; transition: all .25s;
    text-decoration: none; border: none; font-family: inherit;
}
.btn-primary {
    background: var(--btn-primary-bg); color: var(--btn-primary-text, #111);
    box-shadow: 0 4px 20px rgba(56,189,248,.25);
    text-shadow: 0 1px 2px rgba(255,255,255,.4);
}
.btn-primary:hover { background: var(--btn-primary-hover); transform: translateY(-2px); text-decoration: none; }
.btn-outline {
    background: transparent; color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}
.btn-outline:hover { background: var(--accent-primary); color: var(--btn-primary-text); text-decoration: none; }

/* --- LAUNCH BANNER --- */
.launch-banner {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: var(--btn-primary-text); text-align: center;
    padding: 10px 20px; font-size: .85rem; font-weight: 600;
    letter-spacing: .5px; position: relative; z-index: 101;
}

/* --- COUNTDOWN BAR --- */
.countdown-bar {
    background: var(--nav-bg); border-bottom: 1px solid var(--border-primary);
    padding: 10px 0; position: sticky; top: 0; z-index: 100;
}
.countdown-inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.countdown-label { color: var(--accent-countdown, #f5a623); font-size: 1.5rem; font-weight: 700; letter-spacing: .5px; font-family: 'DM Serif Display', serif; text-shadow: 0 0 18px rgba(245,166,35,.55), 0 2px 8px rgba(0,0,0,.7); }
.countdown-digits { display: flex; align-items: center; gap: 6px; }
.cd-block { text-align: center; min-width: 54px; }
.cd-block span {
    display: block; font-size: 2.4rem; font-weight: 900; line-height: 1;
    color: var(--accent-countdown, #f5a623);
    font-family: 'DM Serif Display', serif;
    text-shadow: 0 0 18px rgba(245,166,35,.55), 0 2px 8px rgba(0,0,0,.7);
    letter-spacing: 1px;
}
.cd-block small { display: block; font-size: .68rem; color: var(--accent-countdown-light, #f5c842); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.cd-sep { color: var(--accent-countdown, #f5a623); font-size: 2rem; font-weight: 900; margin: 0 2px; line-height: 1; text-shadow: 0 0 10px rgba(245,166,35,.5); padding-bottom: 18px; }

/* --- NAVIGATION --- */
.nav {
    background: var(--nav-bg); position: sticky; top: 58px; z-index: 99;
    transition: all .3s; border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8,12,22,.95); backdrop-filter: blur(12px); border-color: var(--border-primary); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo {
    display: flex; align-items: center; gap: 0;
    text-decoration: none;
}
.logo:hover { text-decoration: none; opacity: .88; }
.logo-img {
    height: 52px; width: auto; display: block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.55));
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--nav-text); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--nav-active); text-decoration: none; }
.nav-links .btn { padding: 10px 20px; font-size: .85rem; }
.nav-links .btn-primary,
.nav-links .btn-primary:hover { color: var(--btn-primary-text, #111) !important; text-shadow: 1px 1px 3px rgba(255,255,255,.6), 0 0 8px rgba(255,255,255,.3); }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu span {
    display: block; width: 24px; height: 2px; background: var(--text-primary);
    margin: 5px 0; transition: all .3s;
}

/* --- HERO --- */
.hero {
    padding: 80px 0 60px; position: relative; overflow: hidden;
    background: radial-gradient(ellipse at 30% 20%, rgba(56,189,248,.06) 0%, transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: rgba(56,189,248,.1); border: 1px solid var(--accent-primary);
    color: var(--accent-primary); font-size: .8rem; font-weight: 600;
    margin-bottom: 20px; letter-spacing: .5px;
}
.hero h1 {
    font-family: 'DM Serif Display', serif; font-size: 4.2rem;
    line-height: 1.1; color: var(--text-heading); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent-primary); }
.hero-text { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: center; }
.hero-stat-value {
    font-family: 'DM Serif Display', serif; font-size: 2.4rem;
    font-weight: 700; color: var(--accent-primary);
}
.hero-stat-label { font-size: .95rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual svg { width: 100%; max-width: 460px; height: auto; min-height: 380px; }
.hero-visual .hero-logo-img {
    width: 100%; max-width: 480px; height: auto;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,.65));
    animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* --- NOTIFY MODAL --- */
.notify-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
}
.notify-overlay.active { display: flex; }
.notify-modal {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 40px; width: 100%; max-width: 460px;
    position: relative; text-align: center;
    box-shadow: 0 20px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(245,166,35,.15);
    animation: modalPop .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalPop {
    from { transform: scale(.88); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.notify-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 4px 8px;
}
.notify-close:hover { color: var(--text-primary); }
.notify-logo { height: 80px; margin: 0 auto 16px; display: block; filter: drop-shadow(0 4px 16px rgba(0,0,0,.5)); }
.notify-modal h3 {
    font-family: 'DM Serif Display', serif; font-size: 1.6rem;
    color: var(--text-heading); margin-bottom: 8px;
}
.notify-modal p { color: var(--text-secondary); font-size: .95rem; margin-bottom: 24px; line-height: 1.6; }
.notify-tabs { display: flex; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-primary); margin-bottom: 20px; }
.notify-tab {
    flex: 1; padding: 10px; background: var(--secondary-bg);
    border: none; color: var(--text-secondary); font-size: .85rem;
    font-weight: 600; cursor: pointer; transition: all .2s;
}
.notify-tab.active { background: var(--accent-primary); color: var(--btn-primary-text); }
.notify-field {
    display: none; flex-direction: column; gap: 12px;
}
.notify-field.active { display: flex; }
.notify-input {
    width: 100%; padding: 13px 16px; border-radius: 10px;
    border: 1px solid var(--border-primary); background: var(--secondary-bg);
    color: var(--text-primary); font-size: .95rem; box-sizing: border-box;
    transition: border-color .2s;
}
.notify-input:focus { outline: none; border-color: var(--accent-primary); }
.notify-submit {
    width: 100%; padding: 14px; border-radius: 10px; border: none;
    background: linear-gradient(135deg, var(--accent-countdown, #f5a623) 0%, var(--accent-countdown-light, #f5c842) 100%);
    color: var(--bg-dark, #000); font-weight: 800; font-size: 1rem; cursor: pointer;
    letter-spacing: .5px; transition: opacity .2s;
    box-shadow: 0 4px 18px rgba(245,166,35,.4);
}
.notify-submit:hover { opacity: .9; }
.notify-success {
    display: none; padding: 16px; border-radius: 10px;
    background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.3);
    color: var(--accent-secondary, #4ade80); font-weight: 600; font-size: .95rem; margin-top: 12px;
}
.notify-success.show { display: block; }

/* --- SECTION LABELS --- */
.section-label {
    display: inline-block; padding: 4px 14px; border-radius: 16px;
    background: rgba(56,189,248,.1); color: var(--accent-primary);
    font-size: .75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 12px;
}

/* --- WHAT IS A VPN --- */
.what-vpn { padding: 80px 0; background: var(--secondary-bg); }
.what-vpn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-vpn h2 { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--text-heading); margin-bottom: 20px; }
.what-vpn-text { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; font-size: 1.15rem; }
.vpn-steps { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.vpn-step {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px; border-radius: 10px; background: var(--card-bg);
    border: 1px solid var(--card-border);
}
.vpn-step-num {
    width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
    background: var(--accent-primary); color: var(--btn-primary-text);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
}
.vpn-step h4 { color: var(--text-heading); font-size: 1.1rem; margin-bottom: 4px; }
.vpn-step p { color: var(--text-secondary); font-size: 1rem; }
.vpn-diagram { display: flex; justify-content: center; align-items: center; }
.vpn-diagram svg { width: 100%; max-width: 640px; height: auto; min-height: 480px; filter: drop-shadow(0 4px 24px rgba(74,222,128,.10)); }

/* --- WHY YOU NEED A VPN --- */
.why-vpn { padding: 80px 0; }
.why-vpn-header { text-align: center; margin-bottom: 48px; }
.why-vpn-header h2 { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--text-heading); margin-bottom: 12px; }
.why-vpn-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.15rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 28px; transition: all .3s;
}
.why-card:hover { background: var(--card-hover); transform: translateY(-4px); border-color: var(--accent-primary); }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; }
.why-card h3 { font-family: 'DM Serif Display', serif; color: var(--text-heading); font-size: 1.35rem; margin-bottom: 10px; }
.why-card p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* --- FEATURES --- */
.features { padding: 80px 0; background: var(--secondary-bg); }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header h2 { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--text-heading); margin-bottom: 12px; }
.features-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.15rem; }
.feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center; margin-bottom: 64px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-content { }
.feature-tag {
    display: inline-block; padding: 4px 12px; border-radius: 14px;
    font-size: .72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .8px; margin-bottom: 12px;
}
.feature-tag.blue { background: rgba(56,189,248,.15); color: var(--accent-primary); }
.feature-tag.purple { background: rgba(165,180,252,.15); color: var(--accent-secondary); }
.feature-tag.green { background: rgba(34,197,94,.15); color: var(--btn-success-bg); }
.feature-tag.orange { background: rgba(251,191,36,.15); color: var(--accent-warning); }
.feature-content h3 { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--text-heading); margin-bottom: 12px; }
.feature-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-primary); font-size: 1.05rem;
}
.check {
    width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
    background: var(--btn-success-bg); display: flex;
    align-items: center; justify-content: center;
}
.check svg { width: 12px; height: 12px; }

/* --- MOCK WINDOW --- */
.mock-window {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
    min-height: 420px; display: flex; flex-direction: column;
}
.mock-titlebar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px; background: var(--nav-bg); border-bottom: 1px solid var(--border-primary);
}
.mock-dot { width: 12px; height: 12px; border-radius: 50%; }
.mock-dot.red { background: var(--accent-danger, #ef4444); }
.mock-dot.yellow { background: var(--accent-warning, #fbbf24); }
.mock-dot.green { background: var(--accent-secondary, #22c55e); }
.mock-url { margin-left: 12px; font-size: .8rem; color: var(--text-muted); font-family: monospace; }
.mock-window svg { width: 100%; flex: 1; min-height: 380px; display: block; }

/* --- PRICING --- */
.pricing { padding: 80px 0; }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-header h2 { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--text-heading); margin-bottom: 12px; }
.pricing-header p { color: var(--text-secondary); max-width: 550px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 14px; padding: 32px 28px; display: flex;
    flex-direction: column; transition: all .3s; position: relative;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--accent-primary); }
.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(56,189,248,.15);
    transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-tier {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--accent-primary); margin-bottom: 8px;
}
.pricing-name { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--text-heading); margin-bottom: 6px; }
.pricing-desc { color: var(--text-secondary); font-size: .85rem; margin-bottom: 20px; line-height: 1.5; }
.pricing-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.pricing-currency { font-size: 1.2rem; }
.pricing-value { font-family: 'DM Serif Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--accent-primary); }
.pricing-period { color: var(--text-muted); font-size: .85rem; }
/* CAD row — same size/layout as USD row */
.pricing-cad { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.pricing-cad .flag { font-size: 1.2rem; }
.pricing-cad-value { font-family: 'DM Serif Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--accent-cad, #ff6b9d); }
.pricing-cad-suffix { font-size: .85rem; color: var(--accent-cad, #ff6b9d); font-family: inherit; font-weight: 400; }
/* ---- Billing Toggle — pill style ---- */
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; }
.billing-pill { display: flex; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 40px; padding: 4px; gap: 2px; }
.billing-pill-btn { padding: 8px 22px; border-radius: 36px; font-size: .9rem; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--text-secondary); transition: all .25s; white-space: nowrap; }
.billing-pill-btn.active { background: var(--accent-primary); color: var(--btn-primary-text, #fff); }
.toggle-badge { background: var(--accent-cad, #ff6b9d); color: var(--btn-primary-text, #fff); font-size: .65rem; font-weight: 700; padding: 2px 7px; border-radius: 20px; margin-left: 6px; letter-spacing: .5px; vertical-align: middle; }
.pricing-toggle-switch { position: relative; display: inline-block; width: 52px; height: 28px; }
.pricing-toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: var(--card-border); border-radius: 34px; transition: .3s; }
.toggle-slider:before { position: absolute; content: ''; height: 20px; width: 20px; left: 4px; bottom: 4px; background: var(--text-heading, #fff); border-radius: 50%; transition: .3s; }
.pricing-toggle-switch input:checked + .toggle-slider { background: var(--accent-primary); }
.pricing-toggle-switch input:checked + .toggle-slider:before { transform: translateX(24px); }
.pricing-annual-note { font-size: .8rem; color: var(--accent-primary); font-weight: 600; margin-bottom: 4px; }
.pricing-trial-note { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 24px; }
.pricing-features li {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 0; color: var(--text-secondary); font-size: .85rem;
    border-bottom: 1px solid var(--border-primary);
}
.pricing-features li:last-child { border: none; }
.pricing-features svg { width: 16px; height: 16px; color: var(--btn-success-bg); flex-shrink: 0; }

/* --- COMPARISON TABLE --- */
.comparison { padding: 80px 0; background: var(--secondary-bg); }
.comparison-header { text-align: center; margin-bottom: 48px; }
.comparison-header h2 { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--text-heading); margin-bottom: 12px; }
.comparison-header p { color: var(--text-secondary); max-width: 550px; margin: 0 auto; }
.comp-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--card-border); }
.comp-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.comp-table th {
    background: var(--nav-bg); color: var(--text-heading); font-weight: 600;
    padding: 14px 16px; text-align: center; border-bottom: 2px solid var(--border-primary);
    white-space: nowrap; font-size: .8rem;
}
.comp-table th:first-child { text-align: left; }
.comp-table th.tv { color: var(--accent-primary); background: rgba(56,189,248,.05); }
.comp-table td {
    padding: 10px 16px; border-bottom: 1px solid var(--border-primary);
    text-align: center; color: var(--text-secondary);
}
.comp-table td:first-child { text-align: left; color: var(--text-primary); font-weight: 500; }
.comp-table tr:hover { background: var(--card-hover); }
.cat-row td {
    background: var(--card-bg); color: var(--accent-primary);
    font-weight: 700; font-size: .78rem; text-transform: uppercase;
    letter-spacing: 1px; padding: 10px 16px; text-align: left;
}
.comp-table .yes { color: var(--btn-success-bg); font-weight: 600; }
.comp-table .no { color: var(--accent-danger); }
.comp-table .partial { color: var(--accent-warning); }
-row span {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-muted); font-size: .82rem;
}

/* --- FOOTER --- */
footer {
    background: var(--footer-bg); padding: 60px 0 24px;
    border-top: 1px solid var(--border-primary);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--footer-text); font-size: .85rem; line-height: 1.6; }
.footer-col h4 { color: var(--text-heading); font-size: .85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a {
    display: block; color: var(--footer-text); font-size: .85rem;
    padding: 4px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--accent-primary); text-decoration: none; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid var(--border-primary);
    color: var(--text-muted); font-size: .78rem;
}

/* --- BUSINESS BASE HUB --- */
.business-base-hub { padding: 100px 0; background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%); }
.bbh-header { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.bbh-header h2 { font-size: 2.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.bbh-subtext { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }
.bbh-intro { max-width: 820px; margin: 0 auto 56px; }
.bbh-intro p { color: var(--text-secondary); line-height: 1.8; font-size: 1rem; margin-bottom: 16px; }
.bbh-intro p:last-child { margin-bottom: 0; }
.bbh-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 64px; }
.bbh-feature-card { background: var(--card-bg); border: 1px solid var(--border-primary); border-radius: 16px; padding: 28px 24px; text-align: center; transition: transform .3s ease, border-color .3s ease; }
.bbh-feature-card:hover { transform: translateY(-4px); border-color: var(--accent-primary); }
.bbh-feature-icon { font-size: 2rem; margin-bottom: 16px; }
.bbh-feature-card h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.bbh-feature-card p { color: var(--text-secondary); font-size: .88rem; line-height: 1.6; }
.bbh-pricing-header { text-align: center; margin-bottom: 32px; }
.bbh-pricing-header h3 { font-size: 1.6rem; font-weight: 700; color: var(--text-primary); }
.bbh-pricing-sub { color: var(--text-secondary); font-size: .9rem; margin-top: 8px; }
.bbh-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.bbh-pricing-card { background: var(--card-bg); border: 1px solid var(--border-primary); border-radius: 16px; padding: 32px 28px; text-align: center; transition: transform .3s ease; position: relative; }
.bbh-pricing-card.featured { border-color: var(--accent-primary); box-shadow: 0 0 0 2px var(--accent-primary), 0 20px 60px rgba(0,212,255,.12); transform: scale(1.03); }
.bbh-pricing-card:hover:not(.featured) { transform: translateY(-4px); }
.bbh-tier-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent-primary); color: var(--btn-primary-text); font-size: .72rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.bbh-tier-icon { font-size: 2rem; margin-bottom: 12px; }
.bbh-tier-name { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.bbh-tier-price { margin-bottom: 10px; }
.bbh-price-amount { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--accent-primary); font-weight: 700; line-height: 1; }
.bbh-price-period { font-size: .85rem; color: var(--text-muted); margin-left: 2px; }
.bbh-tier-detail { color: var(--text-secondary); font-size: .82rem; line-height: 1.6; margin-bottom: 18px; min-height: 36px; }
.bbh-tier-features { list-style: none; text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.bbh-tier-features li { font-size: .86rem; color: var(--text-secondary); display: flex; gap: 8px; align-items: flex-start; }
.bbh-feat-check { color: var(--btn-success-bg); font-weight: 700; flex-shrink: 0; }
.bbh-cta { width: 100%; justify-content: center; }
.bbh-trial-note { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: 20px; }

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }

/* --- WINTER SNOWFLAKE ANIMATION --- */
#snow-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; overflow: hidden; }
.snowflake {
    position: absolute; top: -10px;
    background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(200,220,255,.4) 100%);
    border-radius: 50%;
    animation: snowfall linear forwards;
    filter: blur(0.5px);
}
@keyframes snowfall {
    0% { transform: translateY(-10px) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: .6; }
    100% { transform: translateY(100vh) translateX(80px) rotate(360deg); opacity: 0; }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-grid, .what-vpn-grid, .feature-row, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-row.reverse { direction: ltr; }
    .hero h1 { font-size: 2.5rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .bbh-features-grid { grid-template-columns: 1fr 1fr; }
    .bbh-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .bbh-pricing-card.featured { transform: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--nav-bg); padding: 20px; border-bottom: 1px solid var(--border-primary); gap: 16px; }
    .nav-links.active { display: flex; }
    .mobile-menu { display: block; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat-value { font-size: 1.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .countdown-inner { flex-direction: column; gap: 8px; }
    .comp-table { font-size: .75rem; }
    .comp-table th, .comp-table td { padding: 8px 10px; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .bbh-features-grid { grid-template-columns: 1fr; }
    .bbh-header h2 { font-size: 1.8rem; }
}

/* ===== COMPARISON TABLE - REDESIGNED ===== */
/* Large font, red X, clean layout */
.comp-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--card-border); }
.comp-table { width: 100%; border-collapse: collapse; min-width: 860px; }

/* Header */
.comp-table thead th {
    background: var(--nav-bg);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 16px;
    text-align: center;
    border-bottom: 2px solid var(--border-primary);
    white-space: nowrap;
}
.comp-table thead th:first-child { text-align: left; padding-left: 22px; font-size: .9rem; }
.comp-table thead th.tv {
    background: rgba(201,162,39,.18);
    color: var(--primary,#c9a227);
    border-bottom: 2px solid var(--primary,#c9a227);
}

/* Body cells */
.comp-table tbody td {
    padding: 16px 16px;
    font-size: 1.05rem;
    text-align: center;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
    vertical-align: middle;
    line-height: 1.4;
}
.comp-table tbody td:first-child {
    text-align: left;
    padding-left: 22px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    max-width: 220px;
}
.comp-table tbody tr:hover { background: rgba(255,255,255,.025); }

/* TruthVault highlighted column */
.comp-table td.tv, .comp-table th.tv {
    background: rgba(201,162,39,.07) !important;
    border-left: 2px solid var(--primary,#c9a227);
    border-right: 2px solid var(--primary,#c9a227);
}

/* Category separator rows */
.comp-table tr.cat-row td {
    background: rgba(201,162,39,.15) !important;
    color: var(--primary,#c9a227) !important;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    text-align: left !important;
    border-top: 2px solid rgba(201,162,39,.25);
}

/* Value classes — all large and clear */
.comp-table td.tv-yes    { color: #22c55e; font-weight: 700; font-size: 1.3rem; }
.comp-table td.tv-best   { color: #22c55e; font-weight: 800; font-size: 1.05rem; }
.comp-table td.tv-price  { color: #22c55e; font-weight: 700; font-size: 1.05rem; }
.comp-table td.comp-yes  { color: #22c55e; font-weight: 700; font-size: 1.3rem; }
.comp-table td.comp-no   { color: #ef4444; font-weight: 700; font-size: 1.3rem; }  /* RED X */
.comp-table td.comp-warn { color: #f59e0b; font-weight: 600; font-size: .95rem; }
.comp-table td.comp-price      { color: var(--text-secondary); font-weight: 600; font-size: .95rem; }
.comp-table td.comp-expensive  { color: #ef4444; font-weight: 700; font-size: 1.05rem; }
.comp-win { background: #22c55e; color: #000; font-size: .65rem; font-weight: 800; padding: 2px 7px; border-radius: 4px; vertical-align: middle; margin-left: 5px; letter-spacing: .5px; text-transform: uppercase; }

/* Hidden cost trap box */
.hidden-cost-trap { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center; background:rgba(239,68,68,.08); border:1px solid var(--accent-danger,#ef4444); border-radius:12px; padding:1.5rem 2rem; margin-bottom:1.5rem; }
.hidden-cost-trap h3 { color:var(--accent-danger,#ef4444); font-family:var(--font-heading-family); font-size:1.2rem; margin-bottom:.75rem; }
.hidden-cost-trap p { color:var(--text-secondary); font-size:.9rem; line-height:1.7; }
.cost-math-box { background:rgba(239,68,68,.12); border:1px solid rgba(239,68,68,.3); border-radius:10px; padding:1.25rem; }
.cost-math-label { font-size:.8rem; font-weight:700; color:var(--accent-danger,#ef4444); margin-bottom:.75rem; text-transform:uppercase; letter-spacing:.05em; }
.cost-math-line { display:flex; justify-content:space-between; padding:.4rem 0; border-bottom:1px solid rgba(255,255,255,.06); font-size:.9rem; }
.cost-math-line span:first-child { color:var(--text-secondary); }
.cost-math-line span:last-child { font-weight:600; color:var(--text-heading); }
.cost-math-total { display:flex; justify-content:space-between; padding:.6rem 0 0; font-size:1.05rem; border-top:2px solid var(--accent-danger,#ef4444); margin-top:.4rem; }
.cost-math-total span:first-child { color:var(--text-secondary); font-weight:700; }
.cost-math-total span:last-child { font-weight:800; color:var(--accent-danger,#ef4444); }
@media(max-width:768px){ .hidden-cost-trap { grid-template-columns:1fr; } .comp-table tbody td { font-size:.95rem; padding:12px 10px; } }
/* Real cost callout cards */
.real-cost-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem; margin:2rem 0; }
.real-cost-card { background:var(--card-bg); border:1px solid var(--border-primary); border-radius:12px; padding:1.25rem; text-align:center; }
.real-cost-card.featured { border-color:var(--primary,#c9a227); background:rgba(201,162,39,.05); }
.real-cost-card .rc-provider { font-weight:700; font-size:.95rem; color:var(--text-heading); margin-bottom:.25rem; }
.real-cost-card .rc-note { font-size:.75rem; color:var(--text-secondary); margin-bottom:.5rem; }
.real-cost-card .rc-price { font-size:1.8rem; font-weight:800; margin:.5rem 0; }
.real-cost-card .rc-price.good { color:#22c55e; }
.real-cost-card .rc-price.warn { color:#f59e0b; }
.real-cost-card .rc-price.bad { color:#ef4444; }
.real-cost-card .rc-period { font-size:.8rem; color:var(--text-secondary); }
.comp-footnote { font-size:.75rem; color:var(--text-muted); text-align:center; margin-top:1rem; line-height:1.6; padding:0 1rem; }

/* ===== REAL COST COMPARISON CARDS ===== */
.real-cost-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:1rem; margin-bottom:2rem; }
.real-cost-card { background:var(--card-bg); border:1px solid var(--border-primary); border-radius:12px; padding:1.25rem; text-align:center; }
.real-cost-card.featured { border-color:var(--primary,#c9a227); background:rgba(201,162,39,.06); }
.real-cost-card .rcc-name { font-weight:700; font-size:.95rem; color:var(--text-heading); margin-bottom:.2rem; }
.real-cost-card .rcc-plan { font-size:.75rem; color:var(--text-secondary); margin-bottom:.3rem; }
.real-cost-card .rcc-note { font-size:.72rem; color:var(--accent-warning,#f59e0b); margin-bottom:.6rem; }
.real-cost-card .rcc-price { font-size:2rem; font-weight:800; line-height:1; }
.real-cost-card .rcc-price.good { color:var(--accent-secondary,#22c55e); }
.real-cost-card .rcc-price.bad { color:var(--accent-danger,#ef4444); }
.real-cost-card .rcc-period { font-size:.78rem; color:var(--text-secondary); margin-bottom:.6rem; }
.real-cost-card .rcc-savings { font-size:.72rem; border-top:1px solid var(--border-primary); padding-top:.5rem; }
.real-cost-card .rcc-savings.positive { color:var(--accent-secondary,#22c55e); }
.real-cost-card .rcc-savings.negative { color:var(--accent-danger,#ef4444); }
/* Hidden cost trap box */
.hidden-cost-trap { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center; background:rgba(239,68,68,.08); border:1px solid var(--accent-danger,#ef4444); border-radius:12px; padding:1.5rem 2rem; margin-bottom:1.5rem; }
.hidden-cost-trap h3 { color:var(--accent-danger,#ef4444); font-family:var(--font-heading-family); font-size:1.2rem; margin-bottom:.75rem; }
.hidden-cost-trap p { color:var(--text-secondary); font-size:.9rem; line-height:1.7; }
.cost-math-box { background:rgba(239,68,68,.12); border:1px solid rgba(239,68,68,.3); border-radius:10px; padding:1.25rem; }
.cost-math-label { font-size:.8rem; font-weight:700; color:var(--accent-danger,#ef4444); margin-bottom:.75rem; text-transform:uppercase; letter-spacing:.05em; }
.cost-math-line { display:flex; justify-content:space-between; padding:.4rem 0; border-bottom:1px solid rgba(255,255,255,.06); font-size:.85rem; }
.cost-math-line span:first-child { color:var(--text-secondary); }
.cost-math-line span:last-child { font-weight:600; color:var(--text-heading); }
.cost-math-total { display:flex; justify-content:space-between; padding:.6rem 0 0; font-size:1rem; border-top:2px solid var(--accent-danger,#ef4444); margin-top:.4rem; }
.cost-math-total span:first-child { color:var(--text-secondary); font-weight:700; }
.cost-math-total span:last-child { font-weight:800; color:var(--accent-danger,#ef4444); }
@media(max-width:768px){ .hidden-cost-trap { grid-template-columns:1fr; } }

/* ===== GLOBAL FONT SIZE OVERRIDES — ACCESSIBILITY UPDATE ===== */
body.landing-page { font-size: 19px !important; line-height: 1.75 !important; }

/* Section headings */
.what-vpn h2, .why-vpn-header h2, .features-header h2,
.pricing-header h2, .comparison-header h2, .bbh-header h2 {
    font-size: 3rem !important;
}
.about h2 { font-size: 2.8rem !important; }

/* Body text in sections */
.what-vpn-text, .why-card p, .feature-content p,
.pricing-desc, .comparison-header p, .pricing-header p,
.why-vpn-header p, .features-header p { font-size: 1.15rem !important; line-height: 1.8 !important; }

/* Card headings */
.why-card h3 { font-size: 1.35rem !important; }
.feature-content h3 { font-size: 2.2rem !important; }
.pricing-name { font-size: 1.6rem !important; }

/* Feature bullet points */
.feature-list-item { font-size: 1.1rem !important; }

/* Pricing features list */
.pricing-features li { font-size: 1rem !important; padding: 9px 0 !important; }

/* VPN steps */
.vpn-step h4 { font-size: 1.1rem !important; }
.vpn-step p { font-size: 1rem !important; }

/* Why card icon bigger */
.why-icon { font-size: 2.8rem !important; }

/* Mock windows / feature screenshots — taller and bigger */
.mock-window { min-height: 440px !important; }
.mock-window svg { min-height: 400px !important; }
.mock-titlebar { padding: 14px 18px !important; }
.mock-dot { width: 13px !important; height: 13px !important; }
.mock-url { font-size: .9rem !important; }

/* Hero */
.hero h1 { font-size: 4.2rem !important; }
.hero-text { font-size: 1.3rem !important; }
.hero-stat-value { font-size: 1.9rem !important; }
.hero-stat-label { font-size: 1rem !important; }
.hero-visual .hero-logo-img { max-width: 540px !important; }

/* Hero badge and section labels */
.hero-badge { font-size: .95rem !important; padding: 8px 20px !important; }
.section-label { font-size: .9rem !important; padding: 6px 18px !important; }

/* Countdown text */
.countdown-label { font-size: 1.6rem !important; }
.cd-block span { font-size: 2.6rem !important; }
.cd-block small { font-size: .78rem !important; }

/* Nav */
.nav-links a { font-size: 1rem !important; }
.tv-tier-badge { font-size: .85rem !important; }

/* BBH section */
.bbh-feature-card h4 { font-size: 1.15rem !important; }
.bbh-feature-card p { font-size: 1rem !important; }
.bbh-subtext { font-size: 1.15rem !important; }
.bbh-intro p { font-size: 1.05rem !important; }
.bbh-tier-name { font-size: 1.2rem !important; }
.bbh-price-amount { font-size: 2.8rem !important; }
.bbh-tier-features li { font-size: 1rem !important; }
.bbh-header h2 { font-size: 2.8rem !important; }

/* Comparison table — larger cells */
.comp-table thead th { font-size: 1.05rem !important; padding: 20px 16px !important; }
.comp-table tbody td { font-size: 1.1rem !important; padding: 18px 16px !important; }
.comp-table tbody td:first-child { font-size: 1.05rem !important; }
.comp-table td.tv-yes, .comp-table td.comp-yes,
.comp-table td.comp-no { font-size: 1.4rem !important; }
.comp-table tr.cat-row td { font-size: .9rem !important; }

/* Footer */
.footer-col a { font-size: 1rem !important; }
.footer-col h4 { font-size: .95rem !important; }
.footer-brand p { font-size: 1rem !important; }
.footer-bottom { font-size: .9rem !important; }

/* CTA section */
.cta-section h2 { font-size: 3rem !important; }
.cta-features span { font-size: 1rem !important; }

/* Real cost cards */
.rc-provider { font-size: 1.1rem !important; }
.rc-note { font-size: .9rem !important; }
.rc-price { font-size: 2.2rem !important; }
.rc-period { font-size: .92rem !important; }

/* Server cards */
.server-name { font-size: 1.15rem !important; font-weight: 700; }
.server-location { font-size: 1rem !important; }
.server-stat-text { font-size: .95rem !important; }

/* VPN diagram bigger */
.vpn-diagram svg { max-width: 660px !important; min-height: 500px !important; }

/* ================================================================
   SERVER NETWORK CARDS — full layout (was completely missing)
   ================================================================ */
.server-status-section { padding: 80px 0; }
.server-status-header { text-align: center; margin-bottom: 48px; }
.server-status-header h2 { font-family: var(--font-heading-family); font-size: 3rem; color: var(--text-heading); margin-bottom: 12px; }
.server-status-header p { color: var(--text-secondary); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

.server-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}
.server-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 24px;
    transition: transform .3s, border-color .3s;
}
.server-card:hover { transform: translateY(-4px); border-color: var(--accent-primary); }
.server-card.status-online-card { border-left: 3px solid #22c55e; }

.server-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.server-flag { font-size: 2.2rem; }
.server-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .88rem;
    font-weight: 700;
}
.server-status-badge.status-online { background: rgba(34,197,94,.15); color: #22c55e; }
.server-status-badge.status-offline { background: rgba(239,68,68,.15); color: #ef4444; }
.server-status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.server-status-dot.status-online { background: #22c55e; box-shadow: 0 0 6px #22c55e; animation: pulse-green 2s infinite; }
.server-status-dot.status-offline { background: #ef4444; }
@keyframes pulse-green {
    0%,100% { box-shadow: 0 0 4px #22c55e; }
    50%      { box-shadow: 0 0 12px #22c55e; }
}

.server-card-body { margin-bottom: 16px; }
.server-name { font-size: 1.25rem !important; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.server-location { font-size: 1rem !important; color: var(--text-secondary); }

.server-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.server-stat-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 1rem !important;
    color: var(--text-secondary);
}
.server-stat-item.stat-highlight { color: #22c55e; font-weight: 600; }
.server-stat-icon { font-size: 1.1rem; width: 20px; text-align: center; flex-shrink: 0; }
.server-stat-text { font-size: 1rem !important; }

.server-caps { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.server-cap-tag {
    background: rgba(56,189,248,.1);
    color: var(--accent-primary);
    border: 1px solid rgba(56,189,248,.2);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .88rem;
    font-weight: 600;
}

.server-uptime-bar { margin-bottom: 14px; }
.server-uptime-label {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 600;
}
.server-uptime-track {
    height: 6px;
    background: var(--border-primary);
    border-radius: 3px;
    overflow: hidden;
}
.server-uptime-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 3px;
    transition: width .8s ease;
}

.server-ping-row {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-primary);
    padding-top: 14px;
}
.server-ping-item {
    flex: 1;
    text-align: center;
    padding: 0 4px;
}
.server-ping-item:not(:last-child) { border-right: 1px solid var(--border-primary); }
.server-ping-val {
    display: block;
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px;
}
.server-ping-val.ping-fast { color: #22c55e; }
.server-ping-val.ping-med  { color: #f59e0b; }
.server-ping-lbl { font-size: .8rem; color: var(--text-muted); }

.server-status-note {
    text-align: center;
    font-size: .95rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ================================================================
   AGGRESSIVE FONT SIZE OVERRIDES — everything readable
   ================================================================ */

/* Force base size higher */
body.landing-page { font-size: 20px !important; line-height: 1.8 !important; }

/* ALL paragraph text on the page — minimum 1.1rem */
body.landing-page p,
body.landing-page li,
body.landing-page td,
body.landing-page th { font-size: 1.1rem; }

/* Section body text */
.what-vpn-text,
.hero-text,
.why-card p,
.feature-content p,
.pricing-desc,
.comparison-header p,
.pricing-header p,
.why-vpn-header p,
.features-header p,
.bbh-subtext,
.bbh-intro p { font-size: 1.2rem !important; line-height: 1.85 !important; }

/* Section headings — all big */
h1, .hero h1 { font-size: 4.5rem !important; }
h2, .what-vpn h2, .why-vpn-header h2, .features-header h2,
.pricing-header h2, .comparison-header h2, .bbh-header h2,
.server-status-header h2 { font-size: 3.2rem !important; }
h3, .feature-content h3 { font-size: 2.4rem !important; }
h4, .why-card h3, .bbh-feature-card h4 { font-size: 1.45rem !important; }

/* Feature list bullets */
.feature-list-item { font-size: 1.15rem !important; line-height: 1.7 !important; }

/* VPN steps */
.vpn-step h4 { font-size: 1.2rem !important; font-weight: 700; }
.vpn-step p  { font-size: 1.05rem !important; }

/* Why cards */
.why-icon { font-size: 3rem !important; }
.why-card h3 { font-size: 1.45rem !important; }
.why-card p  { font-size: 1.1rem !important; }

/* Pricing */
.pricing-name { font-size: 1.7rem !important; }
.pricing-desc { font-size: 1.05rem !important; }
.pricing-features li { font-size: 1.05rem !important; padding: 10px 0 !important; }
.pricing-value { font-size: 3.2rem !important; }
.pricing-cad-value { font-size: 3.2rem !important; }

/* BBH */
.bbh-feature-card h4 { font-size: 1.2rem !important; }
.bbh-feature-card p  { font-size: 1.05rem !important; }
.bbh-tier-name { font-size: 1.25rem !important; }
.bbh-price-amount { font-size: 3rem !important; }
.bbh-tier-features li { font-size: 1.05rem !important; }
.bbh-header h2 { font-size: 3rem !important; }

/* Comparison table */
.comp-table thead th { font-size: 1.1rem !important; padding: 20px 16px !important; }
.comp-table tbody td { font-size: 1.15rem !important; padding: 18px 16px !important; }
.comp-table tbody td:first-child { font-size: 1.1rem !important; font-weight: 600 !important; }
.comp-table td.tv-yes, .comp-table td.comp-yes,
.comp-table td.comp-no { font-size: 1.5rem !important; }
.comp-table tr.cat-row td { font-size: .95rem !important; letter-spacing: 1.5px; }
.comp-table td.comp-warn { font-size: 1rem !important; }
.comp-table td.comp-price, .comp-table td.comp-expensive,
.comp-table td.tv-price, .comp-table td.tv-best { font-size: 1.1rem !important; }

/* Nav */
.nav-links a { font-size: 1.05rem !important; }
.countdown-label { font-size: 1.7rem !important; }
.cd-block span { font-size: 2.8rem !important; }
.cd-block small { font-size: .82rem !important; }
.launch-banner { font-size: 1rem !important; padding: 12px 20px !important; }

/* Hero stats */
.hero-stat-value { font-size: 2.8rem !important; }
.hero-stat-label { font-size: 1rem !important; }
.hero-badge { font-size: 1rem !important; padding: 8px 20px !important; }
.section-label { font-size: .95rem !important; padding: 6px 18px !important; }

/* Mock windows — bigger */
.mock-window { min-height: 460px !important; }
.mock-window svg { min-height: 420px !important; }
.mock-url { font-size: .9rem !important; }

/* Server section */
.server-name { font-size: 1.3rem !important; }
.server-location { font-size: 1.05rem !important; }
.server-stat-text { font-size: 1.05rem !important; }
.server-ping-val { font-size: 1.15rem !important; }
.server-status-header h2 { font-size: 3.2rem !important; }
.server-status-header p { font-size: 1.2rem !important; }

/* Real cost cards */
.rc-provider { font-size: 1.15rem !important; }
.rc-note { font-size: .95rem !important; }
.rc-price { font-size: 2.4rem !important; }
.rc-period { font-size: .95rem !important; }

/* Footer */
.footer-col a { font-size: 1.05rem !important; }
.footer-col h4 { font-size: 1rem !important; }
.footer-brand p { font-size: 1.05rem !important; }
.footer-bottom { font-size: .95rem !important; }

/* CTA */
.cta-section h2 { font-size: 3.2rem !important; }
.cta-features span { font-size: 1.05rem !important; }

/* About */
.about-text { font-size: 1.15rem !important; line-height: 1.85 !important; }
.about-value h4 { font-size: 1.1rem !important; }

/* Hidden cost trap */
.hidden-cost-trap h3 { font-size: 1.4rem !important; }
.hidden-cost-trap p { font-size: 1.05rem !important; }
.cost-math-line { font-size: .95rem !important; }
.cost-math-total { font-size: 1.15rem !important; }

/* ================================================================
   REMOVE DUPLICATE/CONFLICTING OLD CSS overrides from prev session
   (kept here for clarity — new rules above take priority via !important)
   ================================================================ */

/* ================================================================
   CRITICAL FIX: rem base must be set on HTML not body
   ================================================================ */
html { font-size: 20px !important; }
body.landing-page { font-size: 20px !important; line-height: 1.8 !important; }

/* ALL paragraph/body text — minimum 22px */
body.landing-page p,
body.landing-page li,
body.landing-page span:not(.badge):not(.server-status-badge):not(.section-label):not(.feature-tag):not(.hero-badge) {
    font-size: 1.1rem;
    line-height: 1.85;
}

/* Section body text */
.what-vpn-text,
.hero-text,
.why-card p,
.feature-content p,
.pricing-desc,
.comparison-header p,
.pricing-header p,
.why-vpn-header p,
.features-header p,
.bbh-subtext,
.bbh-intro p,
.about-text { font-size: 1.2rem !important; line-height: 1.9 !important; }

/* Section headings — larger and bolder */
.hero h1 { font-size: 4rem !important; line-height: 1.1 !important; }
h2,
.what-vpn h2,
.why-vpn-header h2,
.features-header h2,
.pricing-header h2,
.comparison-header h2,
.bbh-header h2,
.server-status-header h2 { font-size: 3rem !important; }
h3, .feature-content h3 { font-size: 2.2rem !important; }
h4, .why-card h3, .bbh-feature-card h4 { font-size: 1.4rem !important; }

/* Feature bullets */
.feature-list-item { font-size: 1.15rem !important; }

/* Why cards */
.why-icon { font-size: 3rem !important; }
.why-card h3 { font-size: 1.4rem !important; }
.why-card p  { font-size: 1.15rem !important; }

/* VPN steps */
.vpn-step h4 { font-size: 1.2rem !important; }
.vpn-step p  { font-size: 1.1rem !important; }

/* Pricing */
.pricing-name { font-size: 1.6rem !important; }
.pricing-desc { font-size: 1.1rem !important; }
.pricing-features li { font-size: 1.1rem !important; padding: 10px 0 !important; }
.pricing-value { font-size: 3rem !important; }
.pricing-cad-value { font-size: 3rem !important; }

/* Comparison table — larger cells */
.comp-table thead th { font-size: 1.1rem !important; padding: 20px 16px !important; }
.comp-table tbody td { font-size: 1.15rem !important; padding: 18px 14px !important; }
.comp-table tbody td:first-child { font-size: 1.05rem !important; font-weight: 600 !important; }
.comp-table td.tv-yes, .comp-table td.comp-yes,
.comp-table td.comp-no { font-size: 1.5rem !important; }
.comp-table tr.cat-row td { font-size: .9rem !important; }

/* Nav */
.nav-links a { font-size: 1.05rem !important; }
.countdown-label { font-size: 1.6rem !important; }
.cd-block span { font-size: 2.6rem !important; }
.cd-block small { font-size: .82rem !important; }
.launch-banner { font-size: 1rem !important; }

/* Hero stats */
.hero-stat-value { font-size: 2.6rem !important; }
.hero-stat-label { font-size: 1rem !important; }

/* Mock windows */
.mock-window { min-height: 460px !important; }
.mock-window svg { min-height: 420px !important; }

/* Server cards */
.server-name { font-size: 1.3rem !important; }
.server-location { font-size: 1.05rem !important; }
.server-stat-text { font-size: 1.05rem !important; }
.server-ping-val { font-size: 1.15rem !important; }

/* BBH */
.bbh-feature-card h4 { font-size: 1.2rem !important; }
.bbh-feature-card p  { font-size: 1.1rem !important; }
.bbh-tier-name { font-size: 1.25rem !important; }
.bbh-price-amount { font-size: 3rem !important; }
.bbh-tier-features li { font-size: 1.1rem !important; }

/* Footer */
.footer-col a { font-size: 1.05rem !important; }
.footer-col h4 { font-size: 1rem !important; }
.footer-brand p { font-size: 1.05rem !important; }

/* CTA */
.cta-section h2 { font-size: 3rem !important; }
.cta-features span { font-size: 1.05rem !important; }

/* Real cost cards */
.rc-provider { font-size: 1.15rem !important; }
.rc-note { font-size: .95rem !important; }
.rc-price { font-size: 2.4rem !important; }

/* ================================================================
   NOTIFY MODAL — bigger text + visible close button at bottom
   ================================================================ */
.notify-modal {
    padding: 44px 36px 36px !important;
    max-width: 500px !important;
}
.notify-modal h3 {
    font-size: 2rem !important;
    margin-bottom: 12px !important;
}
.notify-modal p {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    margin-bottom: 28px !important;
}
.notify-tab {
    font-size: 1rem !important;
    padding: 12px !important;
}
.notify-input {
    font-size: 1.1rem !important;
    padding: 14px 16px !important;
    min-height: 52px !important;
}
.notify-submit {
    font-size: 1.1rem !important;
    padding: 16px !important;
    border-radius: 10px !important;
    letter-spacing: .5px !important;
}
.notify-success {
    font-size: 1.1rem !important;
    padding: 18px !important;
}
/* Big visible close button at the bottom of the modal */
.notify-close-bottom {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: var(--card-bg);
    border: 2px solid var(--border-primary);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background .2s, border-color .2s, color .2s;
    font-family: inherit;
}
.notify-close-bottom:hover {
    background: var(--accent-danger, #ef4444);
    border-color: var(--accent-danger, #ef4444);
    color: #fff;
}
/* Top X close button — also make it bigger */
.notify-close {
    font-size: 1.6rem !important;
    top: 16px !important;
    right: 20px !important;
    padding: 6px 10px !important;
}

/* ================================================================
   FONT SIZE REDUCTION — slightly smaller than previous pass
   ================================================================ */
body.landing-page { font-size: 15px !important; line-height: 1.7 !important; }

.what-vpn-text, .hero-text, .why-card p, .feature-content p,
.pricing-desc, .comparison-header p, .pricing-header p,
.why-vpn-header p, .features-header p,
.bbh-subtext, .bbh-intro p { font-size: 1.05rem !important; line-height: 1.75 !important; }

h2, .what-vpn h2, .why-vpn-header h2, .features-header h2,
.pricing-header h2, .comparison-header h2, .bbh-header h2,
.server-status-header h2 { font-size: 2.6rem !important; }

h3, .feature-content h3 { font-size: 1.7rem !important; }
h4, .why-card h3, .bbh-feature-card h4 { font-size: 1.2rem !important; }

.hero h1 { font-size: 3rem !important; }
.hero-text { font-size: 1.05rem !important; }
.hero-stat-value { font-size: 2.2rem !important; }

.feature-list-item { font-size: .95rem !important; }
.pricing-features li { font-size: .9rem !important; }
.pricing-value { font-size: 2.4rem !important; }
.pricing-cad-value { font-size: 2.4rem !important; }
.pricing-name { font-size: 1.35rem !important; }

.comp-table thead th { font-size: 1rem !important; padding: 14px 12px !important; }
.comp-table tbody td { font-size: .95rem !important; padding: 12px 12px !important; }
.comp-table td.tv-yes, .comp-table td.comp-yes,
.comp-table td.comp-no { font-size: 1.15rem !important; }

/* ================================================================
   CCTV CAMERA VIEWER — hard-lock ALL text to small fixed px
   Never inherit from body font-size changes
   ================================================================ */
.cctv-wrap, .cctv-wrap * {
    font-size: unset !important;
    line-height: unset !important;
}
.cctv-wrap { font-family: 'Courier New', monospace; }
.cctv-title { font-size: 8px !important; color: #aaa; letter-spacing: 1px; font-weight: 700; }
.cctv-rec   { font-size: 8px !important; color: #e53935; letter-spacing: 1px; }
.cctv-topbar { padding: 2px 4px !important; }
.cctv-topbar span:first-child { font-size: 6px !important; color: #ccc; letter-spacing: .4px; }
.cctv-ts    { font-size: 6px !important; color: #aaa; }
.cctv-bottombar { padding: 2px 4px !important; gap: 3px !important; }
.cctv-live-dot { width: 5px !important; height: 5px !important; }
.cctv-live-txt  { font-size: 6px !important; font-weight: 700; color: #e53935; letter-spacing: 1px; }
.cctv-alert     { font-size: 6px !important; color: #ccc; }
.cctv-footer span, .cctv-footer { font-size: 7px !important; color: #555; letter-spacing: .5px; }

/* Make the camera images taller inside the mock window */
.cctv-cell { aspect-ratio: 4/3 !important; min-height: unset !important; }
.cctv-cell img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
