/* 360Shield.net — Hybrid Design v2.0
   WB infrastructure (Inter + variable names) + Teal security identity
   IBM Plex Mono for scores & monospace accents
   Inspired by: Cloudflare Radar, CrowdStrike Falcon, Datadog
   © 2026 ASiMETRY */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

:root {
    /* ── WB-compatible variable names ── */
    --bg: #0a0f1a;
    --surface: #111827;
    --surface2: #1a2235;
    --surface3: #1e293b;
    --border: #1e293b;
    --border2: rgba(255,255,255,.08);
    --text: #e2e8f0;
    --text-sec: #94a3b8;
    --text-muted: #64748b;

    /* ── Security identity — teal primary ── */
    --accent: #06b6d4;
    --accent-hover: #22d3ee;
    --accent-dim: rgba(6,182,212,.10);
    --accent-glow: 0 0 24px rgba(6,182,212,.12);
    --accent-border: rgba(6,182,212,.25);
    --accent2: #8b5cf6;
    --accent2-dim: rgba(139,92,246,.10);

    /* ── Semantic colors ── */
    --green: #22c55e;
    --green-dim: rgba(34,197,94,.10);
    --yellow: #f59e0b;
    --yellow-dim: rgba(245,158,11,.10);
    --orange: #f97316;
    --red: #ef4444;
    --red-dim: rgba(239,68,68,.10);

    /* ── Typography ── */
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'IBM Plex Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;

    /* ── Spacing & Radius ── */
    --r: 8px;
    --r-lg: 12px;
    --r-xl: 16px;
    --mw: 1120px;
    --mw-sm: 800px;
    --tr: .18s ease;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: var(--accent); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--accent-hover); }
::selection { background: var(--accent); color: var(--bg); }

/* ═══════════════════════════════════════
   NAV — sticky, glassmorphism
   ═══════════════════════════════════════ */
.nav {
    border-bottom: 1px solid var(--border2);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    background: rgba(10,15,26,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
}
.nav-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.nav-logo {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .1rem;
}
.nav-logo .mark {
    color: var(--accent);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.2em;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: .875rem;
}
.nav-links a {
    color: var(--text-sec);
    font-weight: 500;
    letter-spacing: .01em;
    transition: color var(--tr);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-user { color: var(--text-sec); font-size: .8rem; font-family: var(--mono); }
.nav-admin {
    color: var(--accent);
    font-size: .78rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border: 1px solid var(--accent-border);
    border-radius: var(--r);
    margin-left: .3rem;
    transition: all var(--tr);
}
.nav-admin:hover { background: var(--accent-dim); color: var(--accent-hover); }
#g-btn { display: inline-flex; vertical-align: middle; }

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 2rem; }
section { max-width: var(--mw); margin: 0 auto; padding: 4rem 2rem; }
.section-sm { max-width: var(--mw-sm); margin: 0 auto; padding: 3.5rem 2rem; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
}
h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.025em;
    margin-bottom: .8rem;
}
h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .4rem; }
.sub { color: var(--text-sec); font-size: .95rem; margin-bottom: 1rem; line-height: 1.6; }
.hint { color: var(--text-muted); font-size: .8rem; }
.mono { font-family: var(--mono); font-size: .85rem; }
.center { text-align: center; }
.hidden { display: none !important; }
.section-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .8rem;
}

/* ═══════════════════════════════════════
   GRID
   ═══════════════════════════════════════ */
.g-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.g-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.g-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ═══════════════════════════════════════
   BUTTONS — WB .btn system preserved
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--accent);
    color: var(--bg);
    padding: .6rem 1.4rem;
    border-radius: var(--r);
    font-weight: 600;
    font-size: .85rem;
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    font-family: var(--sans);
    letter-spacing: .01em;
}
.btn:hover {
    background: var(--accent-hover);
    box-shadow: var(--accent-glow);
    color: var(--bg);
    text-decoration: none;
}
.btn-sm { padding: .35rem .9rem; font-size: .8rem; }
.btn-lg { padding: .75rem 2rem; font-size: .95rem; }
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-sec);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #f87171; }

/* ═══════════════════════════════════════
   CARDS — WB .panel/.card system
   ═══════════════════════════════════════ */
.card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    transition: border-color var(--tr), box-shadow var(--tr);
}
.card:hover { border-color: rgba(255,255,255,.12); }
.card-accent {
    border-color: var(--accent-border);
    box-shadow: var(--accent-glow);
}
.card p { color: var(--text-sec); font-size: .88rem; line-height: 1.65; }
.card ul { list-style: none; margin: .6rem 0; }
.card li {
    padding: .3rem 0;
    font-size: .85rem;
    color: var(--text-sec);
    padding-left: 1.2rem;
    position: relative;
}
.card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .5;
}

/* ═══════════════════════════════════════
   STAT CARDS — WB .stat-card system
   ═══════════════════════════════════════ */
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r-lg);
    padding: 1.4rem;
    text-align: center;
    transition: border-color var(--tr);
}
.stat-card:hover { border-color: rgba(255,255,255,.12); }
.stat-num {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--accent);
    line-height: 1.2;
}
.stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .3rem;
}

/* ═══════════════════════════════════════
   BADGES — WB system preserved
   ═══════════════════════════════════════ */
.badge {
    display: inline-block;
    padding: 2px 10px;
    font-size: .7rem;
    font-weight: 600;
    border-radius: 12px;
    font-family: var(--mono);
    letter-spacing: .02em;
}
.badge-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(34,197,94,.2); }
.badge-yellow { background: var(--yellow-dim); color: var(--yellow); border: 1px solid rgba(245,158,11,.2); }
.badge-red { background: var(--red-dim); color: var(--red); border: 1px solid rgba(239,68,68,.2); }
.badge-accent { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent-border); }
.badge-purple { background: var(--accent2-dim); color: var(--accent2); border: 1px solid rgba(139,92,246,.2); }

/* ═══════════════════════════════════════
   TAG — inline labels
   ═══════════════════════════════════════ */
.tag {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: var(--r);
    font-size: .72rem;
    font-family: var(--mono);
    font-weight: 600;
    letter-spacing: .04em;
}
.tag-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(34,197,94,.15); }
.tag-yellow { background: var(--yellow-dim); color: var(--yellow); border: 1px solid rgba(245,158,11,.15); }
.tag-accent { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(6,182,212,.15); }
.tag-purple { background: var(--accent2-dim); color: var(--accent2); border: 1px solid rgba(139,92,246,.15); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(6,182,212,.07) 0%, rgba(139,92,246,.03) 40%, transparent 70%);
    pointer-events: none;
}
.hero h1 {
    font-size: 3.2rem;
    max-width: 720px;
    margin: 0 auto .8rem;
    position: relative;
}
.hero .sub {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 1.2rem;
    font-size: .82rem;
    color: var(--text-muted);
}
.hero-trust span { display: flex; align-items: center; gap: .35rem; }
.hero-trust .check { color: var(--green); font-size: .9rem; }

/* ═══════════════════════════════════════
   SCAN BOX — domain input + button
   ═══════════════════════════════════════ */
.scan-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: var(--surface);
    transition: border-color var(--tr), box-shadow var(--tr);
}
.scan-box:focus-within {
    border-color: var(--accent-border);
    box-shadow: var(--accent-glow);
}
.scan-box input {
    flex: 1;
    padding: .9rem 1.2rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: .95rem;
    font-family: var(--mono);
    outline: none;
}
.scan-box input::placeholder { color: var(--text-muted); }
.scan-box button {
    padding: .9rem 1.6rem;
    background: var(--accent);
    color: var(--bg);
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: .88rem;
    font-family: var(--sans);
    transition: background var(--tr);
    white-space: nowrap;
}
.scan-box button:hover { background: var(--accent-hover); }

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle;
    margin-right: .4rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════
   STEPS — 1/2/3 circles
   ═══════════════════════════════════════ */
.step-n {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    font-family: var(--mono);
    margin-bottom: .7rem;
    border: 1px solid var(--accent-border);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   LIVE STATUS PANEL — security grade meters
   ═══════════════════════════════════════ */
.panel-val {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--mono);
    line-height: 1.2;
}
.panel-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: .35rem;
    font-family: var(--mono);
}
.c-green { color: var(--green); }
.c-yellow { color: var(--yellow); }
.c-orange { color: var(--orange); }
.c-red { color: var(--red); }
.c-accent { color: var(--accent); }
.c-purple { color: var(--accent2); }

/* ═══════════════════════════════════════
   COMPARISON — cost section
   ═══════════════════════════════════════ */
.dim { opacity: .45; }
.big-num {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--mono);
    line-height: 1.15;
    margin: .4rem 0;
}

/* ═══════════════════════════════════════
   PRICING GRID
   ═══════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 2rem;
}
.tier-name {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    font-weight: 600;
    font-family: var(--mono);
}
.pricing-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg);
    padding: .2rem .8rem;
    border-radius: 12px;
    font-size: .7rem;
    font-weight: 700;
    font-family: var(--mono);
    letter-spacing: .04em;
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   CODE BOX
   ═══════════════════════════════════════ */
.code-box {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: .85rem 1.1rem;
    margin: .6rem 0;
    overflow-x: auto;
}
.code-box pre, .code-box code {
    color: var(--accent);
    font-family: var(--mono);
    font-size: .82rem;
    white-space: pre-wrap;
}

/* ═══════════════════════════════════════
   SCAN RESULT PAGE
   ═══════════════════════════════════════ */
.scan-result { max-width: var(--mw-sm); margin: 0 auto; padding: 2.5rem 2rem; }
.score-hero { display: flex; align-items: center; gap: 2rem; justify-content: center; margin: 2rem 0; }
.score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.score-ring::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid transparent;
}
.sr-green { border-color: var(--green); }
.sr-green::after { border-color: rgba(34,197,94,.15); }
.sr-yellow { border-color: var(--yellow); }
.sr-yellow::after { border-color: rgba(245,158,11,.15); }
.sr-red { border-color: var(--red); }
.sr-red::after { border-color: rgba(239,68,68,.15); }
.score-num { font-size: 2.4rem; font-weight: 700; font-family: var(--mono); line-height: 1; }
.score-lbl { font-size: .75rem; color: var(--text-muted); font-family: var(--mono); }
.score-grade { font-size: 1.4rem; font-weight: 700; font-family: var(--mono); }

/* Group score cards */
.grp { text-align: center; cursor: default; padding: 1.1rem; }
.grp-name { font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--text-sec); }
.grp-score { font-size: 1.7rem; font-weight: 700; font-family: var(--mono); margin: .2rem 0; }
.grp-w { font-size: .7rem; color: var(--text-muted); font-family: var(--mono); }
.grp-pass { border-left: 2px solid var(--green); }
.grp-warn { border-left: 2px solid var(--yellow); }
.grp-fail { border-left: 2px solid var(--red); }
.grp-na { opacity: .35; }

/* Upsell banner */
.upsell {
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--r-lg);
    padding: 1.3rem;
    margin: 1.5rem 0;
}
.upsell p { color: var(--text-sec); font-size: .88rem; margin-bottom: .5rem; }

/* Check items — scan detail rows */
.chk {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem .9rem;
    background: var(--surface);
    border-radius: var(--r);
    font-size: .84rem;
    margin: .3rem 0;
    border-left: 2px solid transparent;
    transition: background var(--tr);
}
.chk:hover { background: var(--surface2); }
.chk-pass { border-left-color: var(--green); }
.chk-warn { border-left-color: var(--yellow); }
.chk-fail { border-left-color: var(--red); }
.chk-info { border-left-color: var(--border); }
.chk-icon { width: 20px; text-align: center; flex-shrink: 0; font-size: .85rem; }
.chk-pass .chk-icon { color: var(--green); }
.chk-fail .chk-icon { color: var(--red); }
.chk-warn .chk-icon { color: var(--yellow); }
.chk-name { font-weight: 500; flex: 1; min-width: 0; }
.chk-detail { color: var(--text-muted); text-align: right; font-size: .78rem; font-family: var(--mono); max-width: 55%; word-break: break-word; }

/* Module header */
.mod-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0 .7rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border2);
}
.mod-hdr h3 { font-size: .9rem; margin: 0; font-family: var(--mono); font-weight: 500; color: var(--text-sec); }
.mod-score { font-size: .85rem; font-weight: 600; font-family: var(--mono); }

/* ═══════════════════════════════════════
   ADMIN DASHBOARD
   ═══════════════════════════════════════ */
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border2);
    margin-bottom: 1.5rem;
}
.tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 500;
    padding: .65rem 1.1rem;
    cursor: pointer;
    font-family: var(--sans);
    transition: all var(--tr);
}
.tab-btn:hover { color: var(--text-sec); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.sc-grp {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .7rem;
    border-radius: var(--r);
    font-size: .78rem;
    font-family: var(--mono);
    margin: .15rem;
    border: 1px solid var(--border2);
}
.sc-grp-pass { border-color: rgba(34,197,94,.25); color: var(--green); background: var(--green-dim); }
.sc-grp-warn { border-color: rgba(245,158,11,.25); color: var(--yellow); background: var(--yellow-dim); }
.sc-grp-fail { border-color: rgba(239,68,68,.25); color: var(--red); background: var(--red-dim); }
.aom-grp {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .65rem;
    border-radius: var(--r);
    font-size: .78rem;
    font-family: var(--mono);
    margin: .15rem;
    border: 1px solid var(--border2);
}

/* ═══════════════════════════════════════
   FEATURES PAGE — section dividers
   ═══════════════════════════════════════ */
.feature-section { margin-bottom: 2rem; }
.feature-section h2 { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   HOW IT WORKS — vertical timeline
   ═══════════════════════════════════════ */
.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}
.timeline-step::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 44px;
    bottom: -20px;
    width: 1px;
    background: var(--border);
}
.timeline-step:last-child::before { display: none; }

/* ═══════════════════════════════════════
   LEGAL
   ═══════════════════════════════════════ */
.legal { max-width: 680px; }
.legal h2 { margin-top: 2rem; font-size: 1.15rem; }
.legal p { color: var(--text-sec); margin-bottom: .8rem; }

/* ═══════════════════════════════════════
   INPUT — generic
   ═══════════════════════════════════════ */
input[type="text"], input[type="email"], textarea {
    padding: .65rem .9rem;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    color: var(--text);
    font-size: .9rem;
    font-family: var(--sans);
    outline: none;
    transition: border-color var(--tr);
    width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: var(--accent-border);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
input.mono-input { font-family: var(--mono); }

/* ═══════════════════════════════════════
   STATUS MESSAGES — WB system
   ═══════════════════════════════════════ */
.status-msg { padding: .65rem 1rem; border-radius: var(--r); font-size: .85rem; margin-bottom: 1rem; }
.status-msg.info { background: var(--accent-dim); border: 1px solid var(--accent-border); color: var(--accent); }
.status-msg.success { background: var(--green-dim); border: 1px solid rgba(34,197,94,.25); color: var(--green); }
.status-msg.error { background: var(--red-dim); border: 1px solid rgba(239,68,68,.25); color: var(--red); }
.err-box { color: var(--red); padding: 1.2rem; background: var(--red-dim); border: 1px solid rgba(239,68,68,.15); border-radius: var(--r); text-align: center; font-size: .9rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border2);
    padding: 1.8rem 2rem;
    margin-top: 4rem;
}
.footer-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--text-muted);
}
.footer .mark { color: var(--accent); font-family: var(--mono); font-weight: 600; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-muted); transition: color var(--tr); }
.footer-links a:hover { color: var(--text-sec); }

/* ═══════════════════════════════════════
   ANIMATION — fade-in on load
   ═══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    animation: fadeUp .5s ease-out both;
}
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }
.fade-up-d4 { animation-delay: .4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
    .g-3 { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .score-hero { flex-direction: column; }
    .nav-links { gap: .9rem; font-size: .8rem; }
    .footer-inner { flex-direction: column; gap: .8rem; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero { padding: 4rem 1.5rem 2.5rem; }
    section { padding: 3rem 1.5rem; }
    .hero-trust { flex-direction: column; gap: .6rem; }
    .timeline-step { gap: 1rem; }
    h1 { font-size: 2rem; }
}
