/* ──────────────────────────────────────────────────────────────
 * FreeBulkSMSOnline — Redesign overlay v2 (2026-05-04)
 * Dark / Light / Auto theme system via CSS variables.
 *
 * Theme resolution:
 *   1. <html data-theme="dark">  → forces dark
 *   2. <html data-theme="light"> → forces light
 *   3. no attribute              → follows prefers-color-scheme
 *
 * Removing this file restores the prior look 1:1.
 * ────────────────────────────────────────────────────────────── */

/* ─── DARK THEME (default) ────────────────────────────────────── */
:root{
    color-scheme: dark;

    --r-bg-0:        #06091a;
    --r-bg-1:        #0a1224;
    --r-bg-2:        #10182b;

    --r-grad-1:      rgba(34,197,94,.06);
    --r-grad-2:      rgba(6,182,212,.05);
    --r-grad-3:      rgba(251,113,133,.035);

    --r-surface:     rgba(255,255,255,.035);
    --r-surface-2:   rgba(255,255,255,.055);
    --r-surface-3:   rgba(255,255,255,.08);
    --r-border:      rgba(255,255,255,.08);
    --r-border-2:    rgba(255,255,255,.14);
    --r-dot:         rgba(255,255,255,.025);

    --r-ink:         #f1f5f9;
    --r-ink-2:       #cbd5e1;
    --r-ink-3:       #94a3b8;
    --r-ink-4:       #64748b;

    --r-accent:      #22c55e;
    --r-accent-h:    #1ea552;
    --r-accent-2:    #06b6d4;
    --r-warm:        #fb7185;
    --r-amber:       #f59e0b;

    --r-input-bg:    rgba(255,255,255,.04);
    --r-input-bg-2:  rgba(255,255,255,.06);

    --r-header-bg-1: rgba(8,13,28,.88);
    --r-header-bg-2: rgba(8,13,28,.62);
    --r-glass-bg-1:  rgba(15,23,42,.62);
    --r-glass-bg-2:  rgba(8,13,28,.78);

    --r-aurora-1:    rgba(34,197,94,.20);
    --r-aurora-2:    rgba(34,197,94,.15);

    --r-shadow:      0 14px 40px rgba(0,0,0,.35);
    --r-shadow-soft: 0 2px 14px rgba(0,0,0,.18);
    --r-shadow-card: 0 6px 18px rgba(0,0,0,.25);

    --r-mask-grad:   radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);

    --r-btn-text:    #06241a;
    --r-btn-shadow:  0 6px 18px rgba(34,197,94,.25), inset 0 1px 0 rgba(255,255,255,.30);
    --r-btn-shadow-h:0 10px 26px rgba(34,197,94,.32), inset 0 1px 0 rgba(255,255,255,.30);

    --r-radius-sm:   10px;
    --r-radius:      16px;
    --r-radius-lg:   22px;
    --r-serif:       "Fraunces", "Source Serif 4", Georgia, "Times New Roman", serif;
    --r-sans:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --r-mono:        ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* ─── LIGHT THEME — follows OS when no data-theme is set ──────── */
@media (prefers-color-scheme: light){
    :root{
        color-scheme: light;

        --r-bg-0:        #ffffff;
        --r-bg-1:        #f8fafc;
        --r-bg-2:        #f1f5f9;

        --r-grad-1:      rgba(34,197,94,.07);
        --r-grad-2:      rgba(6,182,212,.06);
        --r-grad-3:      rgba(251,113,133,.04);

        --r-surface:     rgba(15,23,42,.025);
        --r-surface-2:   rgba(15,23,42,.045);
        --r-surface-3:   rgba(15,23,42,.07);
        --r-border:      rgba(15,23,42,.08);
        --r-border-2:    rgba(15,23,42,.14);
        --r-dot:         rgba(15,23,42,.045);

        --r-ink:         #0f172a;
        --r-ink-2:       #334155;
        --r-ink-3:       #64748b;
        --r-ink-4:       #94a3b8;

        --r-accent:      #16a34a;
        --r-accent-h:    #15803d;
        --r-accent-2:    #0891b2;
        --r-warm:        #e11d48;
        --r-amber:       #d97706;

        --r-input-bg:    #ffffff;
        --r-input-bg-2:  #f8fafc;

        --r-header-bg-1: rgba(255,255,255,.86);
        --r-header-bg-2: rgba(255,255,255,.66);
        --r-glass-bg-1:  rgba(255,255,255,.85);
        --r-glass-bg-2:  rgba(248,250,252,.95);

        --r-aurora-1:    rgba(34,197,94,.10);
        --r-aurora-2:    rgba(34,197,94,.08);

        --r-shadow:      0 14px 40px rgba(15,23,42,.10);
        --r-shadow-soft: 0 2px 10px rgba(15,23,42,.06);
        --r-shadow-card: 0 6px 18px rgba(15,23,42,.06);

        --r-btn-text:    #ffffff;
        --r-btn-shadow:  0 6px 18px rgba(22,163,74,.30), inset 0 1px 0 rgba(255,255,255,.25);
        --r-btn-shadow-h:0 10px 26px rgba(22,163,74,.38), inset 0 1px 0 rgba(255,255,255,.25);
    }
}

/* ─── Force LIGHT regardless of OS preference ─────────────────── */
html[data-theme="light"]{
    color-scheme: light;

    --r-bg-0:        #ffffff;
    --r-bg-1:        #f8fafc;
    --r-bg-2:        #f1f5f9;

    --r-grad-1:      rgba(34,197,94,.07);
    --r-grad-2:      rgba(6,182,212,.06);
    --r-grad-3:      rgba(251,113,133,.04);

    --r-surface:     rgba(15,23,42,.025);
    --r-surface-2:   rgba(15,23,42,.045);
    --r-surface-3:   rgba(15,23,42,.07);
    --r-border:      rgba(15,23,42,.08);
    --r-border-2:    rgba(15,23,42,.14);
    --r-dot:         rgba(15,23,42,.045);

    --r-ink:         #0f172a;
    --r-ink-2:       #334155;
    --r-ink-3:       #64748b;
    --r-ink-4:       #94a3b8;

    --r-accent:      #16a34a;
    --r-accent-h:    #15803d;
    --r-accent-2:    #0891b2;
    --r-warm:        #e11d48;
    --r-amber:       #d97706;

    --r-input-bg:    #ffffff;
    --r-input-bg-2:  #f8fafc;

    --r-header-bg-1: rgba(255,255,255,.86);
    --r-header-bg-2: rgba(255,255,255,.66);
    --r-glass-bg-1:  rgba(255,255,255,.85);
    --r-glass-bg-2:  rgba(248,250,252,.95);

    --r-aurora-1:    rgba(34,197,94,.10);
    --r-aurora-2:    rgba(34,197,94,.08);

    --r-shadow:      0 14px 40px rgba(15,23,42,.10);
    --r-shadow-soft: 0 2px 10px rgba(15,23,42,.06);
    --r-shadow-card: 0 6px 18px rgba(15,23,42,.06);

    --r-btn-text:    #ffffff;
    --r-btn-shadow:  0 6px 18px rgba(22,163,74,.30), inset 0 1px 0 rgba(255,255,255,.25);
    --r-btn-shadow-h:0 10px 26px rgba(22,163,74,.38), inset 0 1px 0 rgba(255,255,255,.25);
}

/* ─── Force DARK regardless of OS preference (also wins over media query) ── */
html[data-theme="dark"]{
    color-scheme: dark;

    --r-bg-0:        #06091a;
    --r-bg-1:        #0a1224;
    --r-bg-2:        #10182b;

    --r-grad-1:      rgba(34,197,94,.06);
    --r-grad-2:      rgba(6,182,212,.05);
    --r-grad-3:      rgba(251,113,133,.035);

    --r-surface:     rgba(255,255,255,.035);
    --r-surface-2:   rgba(255,255,255,.055);
    --r-surface-3:   rgba(255,255,255,.08);
    --r-border:      rgba(255,255,255,.08);
    --r-border-2:    rgba(255,255,255,.14);
    --r-dot:         rgba(255,255,255,.025);

    --r-ink:         #f1f5f9;
    --r-ink-2:       #cbd5e1;
    --r-ink-3:       #94a3b8;
    --r-ink-4:       #64748b;

    --r-accent:      #22c55e;
    --r-accent-h:    #1ea552;
    --r-accent-2:    #06b6d4;

    --r-input-bg:    rgba(255,255,255,.04);
    --r-input-bg-2:  rgba(255,255,255,.06);

    --r-header-bg-1: rgba(8,13,28,.88);
    --r-header-bg-2: rgba(8,13,28,.62);
    --r-glass-bg-1:  rgba(15,23,42,.62);
    --r-glass-bg-2:  rgba(8,13,28,.78);

    --r-aurora-1:    rgba(34,197,94,.20);
    --r-aurora-2:    rgba(34,197,94,.15);

    --r-shadow:      0 14px 40px rgba(0,0,0,.35);
    --r-shadow-soft: 0 2px 14px rgba(0,0,0,.18);
    --r-shadow-card: 0 6px 18px rgba(0,0,0,.25);

    --r-btn-text:    #06241a;
    --r-btn-shadow:  0 6px 18px rgba(34,197,94,.25), inset 0 1px 0 rgba(255,255,255,.30);
    --r-btn-shadow-h:0 10px 26px rgba(34,197,94,.32), inset 0 1px 0 rgba(255,255,255,.30);
}


/* ────────────────────────────────────────────────────────────── */
/*  PAGE STYLES — now all reference vars above                    */
/* ────────────────────────────────────────────────────────────── */

body{
    background:
        radial-gradient(1100px 700px at 50% -200px, var(--r-grad-1), transparent 60%),
        radial-gradient(900px 600px at 90% 10%, var(--r-grad-2), transparent 65%),
        radial-gradient(800px 600px at 10% 5%, var(--r-grad-3), transparent 70%),
        linear-gradient(180deg, var(--r-bg-2) 0%, var(--r-bg-1) 38%, var(--r-bg-0) 100%) fixed;
    color: var(--r-ink-2);
    font-family: var(--r-sans);
    font-feature-settings: "cv11","ss01","ss02";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: background-color .25s, color .25s;
}
body::before{
    content:""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, var(--r-dot) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: var(--r-mask-grad);
    -webkit-mask-image: var(--r-mask-grad);
}
.wrap, .site-header, .main-content, .site-footer{ position: relative; z-index: 1; }

/* ─── Header ─── */
.site-header{
    border-bottom: 1px solid var(--r-border);
    background: linear-gradient(180deg, var(--r-header-bg-1) 0%, var(--r-header-bg-2) 100%);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.site-header .wrap.nav{ align-items: center; gap: 16px; }

a.brand{
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none !important;
    color: var(--r-ink) !important;
    font-family: var(--r-sans); font-weight: 800;
    font-size: 1.06rem; letter-spacing: -.005em; line-height: 1;
}
.brand-mark{
    width: 32px; height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--r-accent) 0%, var(--r-accent-2) 100%);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(34,197,94,.22), inset 0 1px 0 rgba(255,255,255,.18);
    flex-shrink: 0;
}
.brand-mark svg{ width: 18px; height: 18px; color: #04130a; }
.brand-text{ white-space: nowrap; }
.brand-text .brand-tld{ color: var(--r-accent-2); font-weight: 700; }
@media (max-width: 560px){
    a.brand{ font-size: .94rem; }
    .brand-mark{ width: 28px; height: 28px; border-radius: 8px; }
    .brand-mark svg{ width: 16px; height: 16px; }
}

header nav{ gap: 6px; }
header nav a{
    padding: 7px 13px; font-weight: 600;
    border-color: transparent;
    background: transparent;
    color: var(--r-ink-2);
}
header nav a:hover{
    background: var(--r-surface-2);
    border-color: var(--r-border);
    color: var(--r-ink);
}
header nav a.active{
    background: rgba(34,197,94,.13);
    border-color: rgba(34,197,94,.32);
    color: var(--r-accent);
    box-shadow: 0 0 0 1px rgba(34,197,94,.10) inset;
}
html[data-theme="light"] header nav a.active,
@media (prefers-color-scheme: light){
    html:not([data-theme="dark"]) header nav a.active{
        color: var(--r-accent-h);
        background: rgba(22,163,74,.10);
        border-color: rgba(22,163,74,.30);
    }
}

/* Header search — replaces the inline-styled input */
.header-search{ margin-left: auto; display: flex; align-items: center; }
.header-search input{
    background: var(--r-surface-2) !important;
    border: 1px solid var(--r-border) !important;
    border-radius: 999px !important;
    padding: 7px 14px !important;
    color: var(--r-ink) !important;
    font-size: .85rem !important;
    width: 160px !important;
    outline: none !important;
    transition: all .18s !important;
}
.header-search input::placeholder{ color: var(--r-ink-4); }
.header-search input:focus{
    background: var(--r-surface-3) !important;
    border-color: rgba(34,197,94,.40) !important;
    box-shadow: 0 0 0 3px rgba(34,197,94,.10) !important;
    width: 220px !important;
}

/* ─── Theme toggle ─── */
.theme-toggle{
    display: inline-flex; align-items: center;
    background: var(--r-surface-2);
    border: 1px solid var(--r-border);
    border-radius: 999px;
    padding: 0;
    color: var(--r-ink-2);
    cursor: pointer;
    height: 34px; width: 34px;
    justify-content: center;
    transition: all .18s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.theme-toggle:hover{
    background: var(--r-surface-3);
    border-color: var(--r-border-2);
    color: var(--r-ink);
}
.theme-toggle svg{ width: 16px; height: 16px; }
.theme-toggle .ico-sun, .theme-toggle .ico-moon, .theme-toggle .ico-auto{ display: none; }

/* When data-theme=light → show sun icon */
html[data-theme="light"] .theme-toggle .ico-sun,
/* When data-theme=dark → show moon */
html[data-theme="dark"] .theme-toggle .ico-moon,
/* When no attribute → show "auto" icon */
html:not([data-theme]) .theme-toggle .ico-auto{ display: inline-block; }

@media (max-width: 560px){
    .theme-toggle{ height: 32px; width: 32px; }
    .theme-toggle svg{ width: 15px; height: 15px; }
}

/* ─── Wrap width ─── */
.main-content > .wrap{ max-width: 1180px; padding-left: 22px; padding-right: 22px; }

/* ─── Hero meta strip ─── */
.hero-meta{
    text-align: left;
    padding: 32px 0 4px;
    max-width: 880px;
}
.hero-meta__h1{
    font-family: var(--r-serif);
    font-size: clamp(2rem, 4.6vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: -0.022em;
    font-weight: 700;
    color: var(--r-ink);
    margin: 0 0 14px;
    font-feature-settings: "ss01","case";
}
.hero-meta__h1 .accent{
    background: linear-gradient(135deg, var(--r-accent) 0%, var(--r-accent-2) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-meta__sub{
    font-size: 1.06rem;
    color: var(--r-ink-3);
    margin: 0 0 18px;
    line-height: 1.5;
    max-width: 640px;
}
.hero-meta__badges{
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    margin: 0 0 16px;
}
.hero-badge{
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: var(--r-surface);
    border: 1px solid var(--r-border);
    border-radius: 999px;
    color: var(--r-ink-2);
    font-size: .82rem; font-weight: 500;
    white-space: nowrap;
}
.hero-badge svg{ width: 14px; height: 14px; color: var(--r-accent); flex-shrink: 0; }
.hero-ticker{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px;
    background: rgba(34,197,94,.06);
    border: 1px solid rgba(34,197,94,.18);
    border-radius: 999px;
    color: var(--r-ink-2);
    font-size: .82rem;
    font-family: var(--r-mono);
    margin: 4px 0 6px;
    max-width: 100%;
    overflow: hidden;
}
.hero-ticker__dot{
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--r-accent);
    box-shadow: 0 0 10px rgba(34,197,94,.7), 0 0 0 4px rgba(34,197,94,.18);
    animation: r-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-ticker__text{
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    min-width: 0;
}
@keyframes r-pulse{
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: .55; transform: scale(.85); }
}
@media (max-width: 768px){
    .hero-meta{ padding: 20px 0 4px; }
    .hero-meta__sub{ font-size: .98rem; }
    .hero-badge{ font-size: .76rem; padding: 5px 10px; }
}

/* ─── Hero card ─── */
.hero-grid{ position: relative; isolation: isolate; }
.hero-grid > section.card{
    position: relative;
    background: linear-gradient(180deg, var(--r-glass-bg-1) 0%, var(--r-glass-bg-2) 100%);
    border: 1px solid var(--r-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    box-shadow: var(--r-shadow);
}
.hero-grid > section.card::before{
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(34,197,94,.55) 0%,
        rgba(6,182,212,.40) 35%,
        rgba(251,113,133,.30) 70%,
        rgba(34,197,94,.10) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: .55;
}
.hero-grid > section.card::after{
    content: ""; position: absolute; top: -120px; right: -160px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--r-aurora-1) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
    filter: blur(10px);
}
.hero-grid > section.card > *{ position: relative; z-index: 1; }

.hero-grid > section.card h1{
    font-family: var(--r-serif);
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
    color: var(--r-ink);
    font-weight: 700;
    margin: 4px 0 8px;
}
.hero-grid > section.card > p.muted{
    color: var(--r-ink-3);
    line-height: 1.55;
    font-size: .98rem;
}

/* ─── Form inputs ─── */
form#smsForm label,
section.card label,
form label{
    color: var(--r-ink-2);
    font-weight: 600;
    font-size: .86rem;
    margin-top: 14px;
    margin-bottom: 6px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
textarea,
select{
    background: var(--r-input-bg);
    border: 1px solid var(--r-border);
    color: var(--r-ink);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: .96rem;
    font-family: var(--r-sans);
    transition: border-color .15s, background .15s, box-shadow .15s;
    width: 100%;
    box-sizing: border-box;
}
input:focus, textarea:focus, select:focus{
    outline: none;
    border-color: rgba(34,197,94,.45);
    background: var(--r-input-bg-2);
    box-shadow: 0 0 0 4px rgba(34,197,94,.10);
}
input::placeholder, textarea::placeholder{ color: var(--r-ink-4); }
textarea{ min-height: 120px; resize: vertical; }

/* intl-tel-input adapter */
.iti{ width: 100%; }
.iti--separate-dial-code .iti__selected-flag{
    background: var(--r-input-bg);
    border-radius: 12px 0 0 12px;
}
html[data-theme="light"] .iti__dropdown-content,
@media (prefers-color-scheme: light){
    html:not([data-theme="dark"]) .iti__dropdown-content{
        background: #fff;
        color: var(--r-ink);
        border: 1px solid var(--r-border);
    }
    html:not([data-theme="dark"]) .iti__country.iti__highlight{
        background-color: #f1f5f9;
    }
}

/* ─── Primary button ─── */
button.btn,
.btn,
.btn-secondary{
    background: linear-gradient(135deg, var(--r-accent) 0%, var(--r-accent-2) 100%);
    color: var(--r-btn-text) !important;
    font-weight: 800;
    letter-spacing: -.005em;
    border: 0;
    border-radius: 14px;
    padding: 14px 22px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .15s, filter .15s;
    box-shadow: var(--r-btn-shadow);
    min-height: 44px;
    width: 100%;
    font-family: var(--r-sans);
}
button.btn:hover, .btn:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: var(--r-btn-shadow-h);
}
button.btn:active, .btn:active{ transform: translateY(0); filter: brightness(.96); }
.btn-secondary{
    background: var(--r-surface-2);
    color: var(--r-ink) !important;
    border: 1px solid var(--r-border-2);
    box-shadow: none;
}
.btn-secondary:hover{ background: var(--r-surface-3); filter: none; }

/* ─── Cards ─── */
section.card, aside.card{
    background: var(--r-surface);
    border: 1px solid var(--r-border);
    border-radius: var(--r-radius-lg);
    color: var(--r-ink-2);
}
section.card{ box-shadow: var(--r-shadow-soft); }
section.card h2, section.card h3{
    color: var(--r-ink);
    font-family: var(--r-sans);
    font-weight: 700;
    letter-spacing: -.005em;
}
section.card h2{ font-size: 1.45rem; }
section.card h3{ font-size: 1.12rem; }
section.card h2 + .muted,
section.card h2 + p.muted{ color: var(--r-ink-3); }
.muted{ color: var(--r-ink-3); }

section.seo-section h2,
.faq-section h2{
    font-family: var(--r-serif);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.014em;
    color: var(--r-ink);
}

/* ─── Trust strip ─── */
.trust-strip{
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}
.trust-item{
    background: linear-gradient(180deg, var(--r-surface-2) 0%, var(--r-surface) 100%);
    border: 1px solid var(--r-border);
    border-radius: var(--r-radius);
    padding: 18px 18px 16px;
    position: relative;
    overflow: hidden;
}
.trust-item::before{
    content: ""; position: absolute; left: 0; top: 0; width: 28px; height: 28px;
    background: radial-gradient(circle, rgba(34,197,94,.30), transparent 65%);
    border-radius: 50%;
}
.trust-item .num{
    font-family: var(--r-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--r-accent) 0%, var(--r-accent-2) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trust-item .lbl{
    color: var(--r-ink-3);
    font-size: .86rem;
    margin-top: 4px;
    line-height: 1.35;
}

/* ─── Country selector ─── */
.country-quick-select .trust-strip{ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.country-quick-select .trust-item{ transition: transform .15s, border-color .15s, background .15s; }
.country-quick-select .trust-item::before{ display: none; }
.country-quick-select .trust-item:hover{
    transform: translateY(-2px);
    border-color: rgba(34,197,94,.35);
    background: linear-gradient(180deg, rgba(34,197,94,.06) 0%, var(--r-surface) 100%);
}
.country-quick-select .trust-item .lbl{ font-family: var(--r-mono); font-size: .78rem; }
.country-quick-select .trust-item div[style*="color:#e2e8f0"]{ color: var(--r-ink) !important; }

/* ─── Benefit cards ─── */
.benefit-grid{
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.benefit-card{
    background: var(--r-surface);
    border: 1px solid var(--r-border);
    border-radius: var(--r-radius);
    padding: 16px 18px;
    transition: transform .15s, border-color .15s, background .15s;
}
.benefit-card:hover{
    transform: translateY(-2px);
    border-color: rgba(34,197,94,.30);
    background: var(--r-surface-2);
}
.benefit-card h3{
    font-size: 1.04rem;
    color: var(--r-ink);
    margin: 0 0 6px;
}

/* ─── Info list ─── */
.info-list{ margin-top: 6px; }
.info-item{
    display: flex; gap: 14px; align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid var(--r-border);
}
.info-item:first-child{ border-top: 0; padding-top: 4px; }
.info-badge{
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(34,197,94,.20), rgba(6,182,212,.20));
    border: 1px solid rgba(34,197,94,.35);
    color: var(--r-accent);
    font-weight: 800; font-size: .9rem;
    display: inline-flex; align-items: center; justify-content: center;
}
.info-item strong{ color: var(--r-ink); }

.verify-cta-btn{
    padding: 10px 16px;
    font-size: .88rem;
    box-shadow: 0 4px 14px rgba(34,197,94,.22), inset 0 1px 0 rgba(255,255,255,.30);
}

/* ─── FAQ ─── */
.faq-section{ margin-top: 32px; }
.faq-grid{
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 18px;
}
@media (max-width: 768px){ .faq-grid{ grid-template-columns: 1fr; } }

details.faq{
    background: var(--r-surface);
    border: 1px solid var(--r-border);
    border-radius: var(--r-radius);
    transition: background .15s, border-color .15s;
    padding: 14px 18px;
    margin: 0;
}
details.faq:hover{ background: var(--r-surface-2); border-color: var(--r-border-2); }
details.faq[open]{
    border-color: rgba(34,197,94,.28);
    background: rgba(34,197,94,.04);
}
details.faq summary{
    cursor: pointer;
    list-style: none;
    color: var(--r-ink);
    font-weight: 600;
    font-size: .98rem;
    line-height: 1.4;
    padding-right: 30px;
    position: relative;
    outline: none;
}
details.faq summary::-webkit-details-marker{ display: none; }
details.faq summary::after{
    content: "";
    position: absolute; right: 0; top: 3px;
    width: 16px; height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2322c55e" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
    background-size: contain; background-repeat: no-repeat;
    transition: transform .2s ease;
    transform-origin: center;
}
details.faq[open] summary::after{ transform: rotate(-180deg); }
details.faq p{
    color: var(--r-ink-2);
    line-height: 1.6;
    font-size: .94rem;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid var(--r-border);
}
details.faq a{ color: var(--r-accent); }

/* ─── Ad containers ─── */
.ad-in-article,
section.seo-section .ads,
aside.card .ads{
    position: relative;
    margin: 24px 0;
    padding: 22px 12px 14px;
    background: var(--r-surface);
    border: 1px dashed var(--r-border);
    border-radius: var(--r-radius);
    text-align: center;
}
.ad-in-article::before,
section.seo-section .ads::before,
aside.card .ads::before{
    content: "Advertisement";
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    color: var(--r-ink-4);
    font-size: .68rem; letter-spacing: .14em;
    text-transform: uppercase; font-weight: 600;
}

/* ─── SEO body ─── */
section.seo-section p.muted{
    color: var(--r-ink-2);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 70ch;
}
section.seo-section h3{ margin-top: 22px; font-family: var(--r-sans); font-size: 1.16rem; color: var(--r-ink); }
section.seo-section a, section.card a{ color: var(--r-accent); }
section.seo-section a:hover, section.card a:hover{ color: var(--r-accent-h); }

/* ─── Notices ─── */
.notice{
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid;
    font-size: .94rem;
}
.notice.success{
    background: rgba(34,197,94,.10);
    border-color: rgba(34,197,94,.32);
    color: var(--r-accent-h);
}
html[data-theme="dark"] .notice.success,
@media (prefers-color-scheme: dark){
    html:not([data-theme="light"]) .notice.success{ color: #bbf7d0; }
}
.notice.error{
    background: rgba(239,68,68,.10);
    border-color: rgba(239,68,68,.32);
    color: var(--r-warm);
}

/* ─── Footer — stays dark on light theme for consistency ─── */
footer.site-footer{
    margin-top: 60px;
    background: #060a16;
    border-top: 1px solid rgba(255,255,255,.08);
    position: relative;
    padding: 0;
    color: #cbd5e1;
}
footer.site-footer::before{
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--r-accent), var(--r-accent-2), transparent);
    opacity: .55;
}
footer.site-footer > .wrap{ padding: 44px 22px 28px; }
.footer-grid{
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 24px;
}
.footer-col h4{
    color: #f1f5f9;
    font-size: .84rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 700;
}
.footer-col a{
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 5px 0;
    font-size: .94rem;
    transition: color .15s;
}
.footer-col a:hover{ color: #f1f5f9; }
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand-text{ font-weight: 800; color: #f1f5f9; font-size: 1.04rem; }
.footer-brand-text .brand-tld{ color: var(--r-accent-2); }
.footer-tagline{ color: #94a3b8; font-size: .94rem; line-height: 1.55; margin-bottom: 18px; max-width: 340px; }
.footer-newsletter{ display: flex; gap: 8px; max-width: 320px; margin-top: 4px; }
.footer-newsletter input{
    flex: 1; padding: 9px 12px; font-size: .88rem;
    border-radius: 10px;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    color: #f1f5f9 !important;
}
.footer-newsletter input::placeholder{ color: #64748b; }
.footer-newsletter button{
    padding: 9px 16px; font-size: .85rem; font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--r-accent), var(--r-accent-2));
    color: #06241a; border: 0; cursor: pointer;
    min-height: 0; width: auto;
}
.footer-newsletter button:hover{ filter: brightness(1.06); }
.footer-newsletter-msg{ font-size: .82rem; margin-top: 8px; min-height: 1em; color: #34d399; }
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 18px;
    color: #64748b;
    font-size: .82rem;
    text-align: center;
}
@media (max-width: 768px){
    .footer-grid{ grid-template-columns: 1fr; gap: 24px; }
    footer.site-footer > .wrap{ padding: 32px 18px 22px; }
}

/* ─── Scroll reveal ─── */
.r-reveal{ opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; will-change: opacity, transform; }
.r-reveal.is-in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
    .r-reveal{ opacity: 1; transform: none; transition: none; }
    .hero-ticker__dot{ animation: none; }
}

/* ─── Selection ─── */
::selection{ background: rgba(34,197,94,.30); color: var(--r-ink); }
::-moz-selection{ background: rgba(34,197,94,.30); color: var(--r-ink); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-track{ background: transparent; }
::-webkit-scrollbar-thumb{ background: var(--r-surface-3); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover{ background: var(--r-border-2); }

/* ─── Mobile micro-polish ─── */
@media (max-width: 560px){
    .main-content > .wrap{ padding-left: 16px; padding-right: 16px; }
    section.card, aside.card{ padding: 18px 18px; border-radius: 18px; }
    button.btn, .btn{ padding: 13px 18px; font-size: .96rem; }
    .hero-grid > section.card h1{ font-size: 1.6rem; }
}

@supports (padding: max(0px)){
    body{ padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
    footer.site-footer > .wrap{ padding-bottom: max(28px, env(safe-area-inset-bottom)); }
}


/* ─── Fix: H1 inside cards/sections must follow theme (style.css forces white) ─── */
section.card h1,
section.seo-section h1,
section.faq-section h1,
.blog-card__title{
    color: var(--r-ink);
}
section.card h1{
    font-family: var(--r-serif);
    font-weight: 700;
    letter-spacing: -.014em;
}

/* Blog hero: serif H1, theme-aware badge */
.blog-hero{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.blog-hero h1{
    font-family: var(--r-serif);
    color: var(--r-ink);
    margin: 0;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    line-height: 1.1;
}
.blog-hero__badge{
    background: rgba(34,197,94,.16);
    color: var(--r-accent);
    border: 1px solid rgba(34,197,94,.32);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
}
html[data-theme="light"] .blog-hero__badge,
html:not([data-theme="dark"]) .blog-hero__badge{
    background: rgba(22,163,74,.10);
    color: var(--r-accent-h);
    border-color: rgba(22,163,74,.28);
}
