/* ══════════════════════════════════════════════
   Scanner Pro — Landing Page
   ══════════════════════════════════════════════ */

:root {
    /* Dark palette */
    --bg:           #060e20;
    --bg2:          #0a1530;
    --bg3:          #0d1b3e;
    --bg4:          #112050;

    /* Light palette */
    --light-bg:     #f8faff;
    --light-bg2:    #eef2fc;
    --light-text:   #0A1F44;
    --light-text2:  #4a5a7a;
    --light-border: #d4ddf5;

    /* Accent */
    --yellow:       #F4D35E;
    --yellow-dk:    #c9a820;
    --yellow-glow:  rgba(244, 211, 94, .15);

    /* Status */
    --green:        #4ade80;
    --red:          #ff6b6b;
    --blue-ac:      #4a9eff;

    /* Dark text/border */
    --border:       #182d5c;
    --border2:      #1f3870;
    --text:         #b8ccef;
    --text-dim:     #4e6a9a;
    --text-bright:  #e8f0ff;

    /* Layout */
    --radius:       12px;
    --radius-lg:    20px;
    --nav-h:        64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.me-1 { margin-right: 4px; }
.me-2 { margin-right: 8px; }

/* ── Loader ─────────────────────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s ease, visibility .4s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-icon {
    font-size: 2.8rem;
    color: var(--yellow);
    filter: drop-shadow(0 0 12px rgba(244,211,94,.5));
    animation: loaderPulse 1s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.12); }
}
.loader-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 5px;
}
.loader-bar { width: 160px; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.loader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--yellow-dk), var(--yellow));
    border-radius: 2px;
    animation: loaderFill 1.1s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }


/* ── Navbar ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    background: rgba(6,14,32,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
    background: rgba(6,14,32,.99);
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { font-size: 1.3rem; color: var(--yellow); filter: drop-shadow(0 0 6px rgba(244,211,94,.4)); }
.brand-name { font-size: 1rem; font-weight: 800; color: var(--yellow); letter-spacing: 2px; }
.brand-sub { font-size: 0.85rem; color: var(--text-dim); font-weight: 400; }
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
    background: var(--yellow);
    color: #060e20;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover { background: var(--yellow-dk); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(244,211,94,.3); }
.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: auto;
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--yellow);
    color: #060e20;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,211,94,.25); }
.btn-primary.btn-glow:hover { box-shadow: 0 10px 36px rgba(244,211,94,.35); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-bright);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid var(--border2);
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s, color .2s, transform .15s, background .2s;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); background: rgba(244,211,94,.05); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid rgba(244,211,94,.4);
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--yellow); background: rgba(244,211,94,.08); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { font-size: 1.05rem; padding: 16px 36px; border-radius: 12px; }

/* ── Section commons ────────────────────────────────── */
.section-tag {
    display: inline-block;
    background: var(--yellow-glow);
    border: 1px solid rgba(244,211,94,.3);
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-tag-light {
    background: rgba(10,31,68,.08);
    border-color: rgba(10,31,68,.2);
    color: var(--light-text);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--text-bright); line-height: 1.2; margin-bottom: 14px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-dim); font-size: 1rem; }
.section-header-light h2 { color: var(--light-text); }
.section-header-light p { color: var(--light-text2); }

/* ── Animate in ─────────────────────────────────────── */
.animate-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
    padding: calc(var(--nav-h) + 80px) 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24,45,92,.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,45,92,.4) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}
.hero-badge {
    display: inline-block;
    background: rgba(244,211,94,.08);
    border: 1px solid rgba(244,211,94,.25);
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: var(--text-bright); line-height: 1.1; margin-bottom: 20px; }
.highlight { color: var(--yellow); position: relative; }
.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    border-radius: 2px;
}
.hero-sub { max-width: 620px; margin: 0 auto 36px; color: var(--text); font-size: 1.05rem; line-height: 1.7; }
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust span { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-dim); }
.hero-trust span i { color: var(--green); font-size: 0.75rem; }
.hero-stats { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 60px; }
.stat { text-align: center; }
.stat-n { display: block; font-size: 1.8rem; font-weight: 900; color: var(--yellow); }
.stat-l { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── App window mockup ──────────────────────────────── */
.hero-mockup-wrap { padding-top: 0; }
.app-window {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(244,211,94,.08);
    max-width: 960px;
    margin: 0 auto;
}
.app-titlebar { background: #02080f; height: 36px; display: flex; align-items: center; padding: 0 14px; gap: 12px; border-bottom: 1px solid var(--border); }
.win-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }
.win-title { font-size: 0.8rem; color: var(--text-dim); margin-left: 4px; }
.ver-pill { margin-left: auto; font-size: 0.72rem; background: var(--bg4); border: 1px solid var(--border); color: var(--text-dim); padding: 2px 8px; border-radius: 10px; }
.app-body { padding: 0; }
.mock-topbar { background: #02080f; border-bottom: 1px solid var(--border); padding: 8px 16px; display: flex; align-items: center; gap: 12px; }
.mock-brand { font-size: 0.9rem; font-weight: 800; color: var(--yellow); letter-spacing: 1.5px; }
.mock-badges { display: flex; gap: 8px; margin-left: auto; flex-wrap: wrap; }
.mbadge { font-size: 0.72rem; padding: 3px 10px; border-radius: 10px; font-weight: 600; }
.mbadge-version { background: var(--bg4); color: var(--text-dim); border: 1px solid var(--border); }
.mbadge-lic { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.3); }
.mbadge-idle { background: var(--bg4); color: var(--text-dim); border: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }
.sdot { width: 6px; height: 6px; border-radius: 50%; background: #4e6a9a; }
.mock-table-wrap { overflow-x: auto; }
.mock-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.mock-table th { background: var(--bg3); color: var(--text-dim); font-weight: 600; padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.mock-table td { padding: 9px 12px; border-bottom: 1px solid rgba(24,45,92,.5); color: var(--text); white-space: nowrap; }
.mock-table tr:hover td { background: rgba(17,32,80,.4); }
.mock-table tr.row-vuln td { background: rgba(255,107,107,.04); }
.mock-table tr.row-scanning td { background: rgba(244,211,94,.03); }
.mono { font-family: monospace; font-size: 0.75rem; color: var(--text-dim); }
.local-cell { color: var(--yellow); font-weight: 600; font-size: 0.75rem; }
.brand-pill { display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 0.72rem; font-weight: 600; }
.hik { background: rgba(244,211,94,.12); color: var(--yellow); }
.dah { background: rgba(74,158,255,.12); color: #4a9eff; }
.int { background: rgba(74,222,128,.12); color: #4ade80; }
.tp  { background: rgba(200,100,255,.12); color: #c864ff; }
.port { display: inline-block; background: var(--bg4); border: 1px solid var(--border); color: var(--text-dim); font-size: 0.68rem; padding: 1px 6px; border-radius: 4px; margin-right: 3px; font-family: monospace; }
.sec-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 6px; }
.sec-badge.vuln { background: rgba(255,107,107,.15); color: #ff6b6b; border: 1px solid rgba(255,107,107,.3); }
.sec-badge.safe { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.3); }
.sec-badge.testing { background: rgba(244,211,94,.08); color: var(--yellow); border: 1px solid rgba(244,211,94,.2); }

/* ── Brands bar ─────────────────────────────────────── */
.brands-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.brands-label { text-align: center; font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.brands-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 24px; }
.brands-list span { font-size: 0.9rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.5px; cursor: default; transition: color .2s; }
.brands-list span:hover { color: var(--yellow); }

/* ── Benefits ───────────────────────────────────────── */
.benefits { padding: 100px 0; background: var(--light-bg); }
.benefits .section-tag { background: rgba(10,31,68,.07); border-color: rgba(10,31,68,.18); color: var(--light-text); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(10,31,68,.06);
    transition: border-color .25s, transform .2s, box-shadow .25s;
}
.benefit-card:hover { border-color: var(--yellow-dk); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(10,31,68,.12); }
.benefit-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(244,211,94,.14), rgba(244,211,94,.04));
    border: 1px solid rgba(201,168,32,.25);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--yellow-dk);
    margin: 0 auto 20px;
    transition: transform .2s, background .25s;
}
.benefit-card:hover .benefit-icon { transform: scale(1.06); background: linear-gradient(135deg, rgba(244,211,94,.22), rgba(244,211,94,.08)); }
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--light-text); margin-bottom: 10px; }
.benefit-card p { font-size: 0.88rem; color: var(--light-text2); line-height: 1.65; }

/* ── Features ───────────────────────────────────────── */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 20px; }
.feat-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .25s, transform .2s, box-shadow .25s;
}
.feat-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.feat-card-lg { grid-column: span 2; display: flex; flex-direction: column; gap: 14px; }
.feat-card-desktop { grid-column: 2 / span 2; }
.feat-icon { width: 56px; height: 56px; background: var(--yellow-glow); border: 1px solid rgba(244,211,94,.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--yellow); margin-bottom: 8px; transition: background .2s; }
.feat-card:hover .feat-icon { background: rgba(244,211,94,.22); }
.feat-icon-sm { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 12px; }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.feat-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.65; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.feat-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.feat-list li i { color: var(--green); font-size: 0.75rem; }

/* ── How it works ───────────────────────────────────── */
.how-it-works { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 32px 20px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color .25s, transform .2s; }
.step:hover { border-color: rgba(244,211,94,.25); transform: translateY(-3px); }
.step-num { font-size: 0.72rem; font-weight: 700; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.step-icon { font-size: 1.8rem; color: var(--yellow); margin-bottom: 14px; }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }
.step-arrow { color: var(--border2); font-size: 1.2rem; align-self: center; padding-top: 20px; }

/* ── Security ───────────────────────────────────────── */
.security-section { padding: 100px 0; }
.security-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.security-text h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 800; color: var(--text-bright); line-height: 1.2; margin-bottom: 16px; }
.security-text > p { color: var(--text-dim); margin-bottom: 24px; line-height: 1.7; }
.security-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.security-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text); }
.security-list li i { width: 18px; text-align: center; }
.security-cards { display: flex; flex-direction: column; gap: 12px; }
.sec-card { background: var(--bg2); border-radius: var(--radius); padding: 18px; border-left: 3px solid transparent; transition: transform .2s; }
.sec-card:hover { transform: translateX(4px); }
.sec-card-vuln { border-left-color: #ff6b6b; border-color: rgba(255,107,107,.25); }
.sec-card-safe  { border-left-color: #4ade80; border-color: rgba(74,222,128,.25); }
.sec-card-noauth{ border-left-color: #F4D35E; border-color: rgba(244,211,94,.25); }
.sc-header { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 10px; }
.sc-status { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sc-status i { font-size: 1.1rem; }
.sc-status.vuln i   { color: #ff6b6b; }
.sc-status.safe i   { color: #4ade80; }
.sc-status.noauth i { color: var(--yellow); }
.sc-status strong { display: block; font-size: 0.88rem; color: var(--text-bright); }
.sc-status small  { font-size: 0.78rem; color: var(--text-dim); }
.sc-ports { display: flex; gap: 4px; }

/* ── Proof of value ─────────────────────────────────── */
.proof-section { padding: 100px 0; background: var(--light-bg2); }
.proof-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.proof-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--light-text); line-height: 1.2; margin-bottom: 16px; }
.proof-text > p { color: var(--light-text2); margin-bottom: 28px; line-height: 1.7; }
.proof-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.proof-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--light-text); }
.proof-list li i { color: #0a8a4a; font-size: 0.9rem; flex-shrink: 0; }
.proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.proof-stat {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
    box-shadow: 0 2px 10px rgba(10,31,68,.06);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.proof-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,31,68,.12); border-color: var(--yellow-dk); }
.ps-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(244,211,94,.14), rgba(244,211,94,.04)); border: 1px solid rgba(201,168,32,.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--yellow-dk); }
.ps-n { font-size: 2rem; font-weight: 900; color: var(--light-text); line-height: 1; }
.ps-l { font-size: 0.78rem; color: var(--light-text2); line-height: 1.4; }

/* ── Pricing ────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-cards { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto 56px; align-items: start; }
.price-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; position: relative; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-4px); }
.price-card-pro { border-color: rgba(244,211,94,.4); background: linear-gradient(145deg, #0d1b3e, #112050); box-shadow: 0 0 40px rgba(244,211,94,.06); }
.price-card-pro:hover { box-shadow: 0 12px 48px rgba(244,211,94,.15); }
.price-card-lifetime { border-color: rgba(74,158,255,.3); background: linear-gradient(145deg, #0a1530, #0d1b3e); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: #060e20; font-size: 0.72rem; font-weight: 700; padding: 5px 18px; border-radius: 20px; white-space: nowrap; }
.price-lifetime-badge { display: inline-flex; align-items: center; background: rgba(74,158,255,.12); border: 1px solid rgba(74,158,255,.3); color: var(--blue-ac); font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.price-header h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-bright); margin-bottom: 4px; }
.price-header p { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 20px; }
.price-value { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--text-dim); }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--text-bright); min-width: 80px; }
.price-period { font-size: 0.9rem; color: var(--text-dim); }
.price-tagline { font-size: 0.8rem; color: var(--yellow); font-weight: 600; margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.price-features li i { color: var(--green); font-size: 0.75rem; flex-shrink: 0; }
.payment-trust {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.payment-trust li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text);
    font-weight: 500;
}
.payment-trust li i { color: var(--green); font-size: 0.72rem; }

.price-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; margin-top: 10px; line-height: 1.5; }
.pricing-how { max-width: 860px; margin: 0 auto; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.pricing-how h3 { font-size: 1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 24px; }
.activation-steps { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.act-step { flex: 1; min-width: 150px; display: flex; gap: 12px; align-items: flex-start; }
.act-n { width: 28px; height: 28px; border-radius: 50%; background: var(--yellow-glow); border: 1px solid rgba(244,211,94,.3); color: var(--yellow); font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.act-step p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }
.act-step p strong { color: var(--text); }
.act-arrow { color: var(--border2); font-size: 0.9rem; align-self: center; padding-top: 4px; }

/* ── FAQ ────────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg2); transition: border-color .2s; }
.faq-item:hover { border-color: var(--border2); }
.faq-item.open { border-color: rgba(244,211,94,.25); }
.faq-q { width: 100%; background: none; border: none; padding: 18px 20px; text-align: left; color: var(--text-bright); font-size: 0.92rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; }
.faq-q:hover { color: var(--yellow); }
.faq-icon { transition: transform .3s; color: var(--text-dim); font-size: 0.85rem; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; padding: 0 20px; }
.faq-a.open { max-height: 300px; padding: 0 20px 18px; }
.faq-a p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; }

/* ── Final CTA ──────────────────────────────────────── */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A1F44 0%, #060e20 50%, #0a1f44 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(244,211,94,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244,211,94,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.final-cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(244,211,94,.12);
    border: 1px solid rgba(244,211,94,.3);
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244,211,94,.2); }
    50%       { box-shadow: 0 0 0 8px rgba(244,211,94,0); }
}
.final-cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--text-bright); line-height: 1.15; margin-bottom: 16px; }
.final-cta-inner p { font-size: 1.05rem; color: var(--text-dim); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.final-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.final-cta-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.final-cta-trust span { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--text-dim); }
.final-cta-trust span i { color: var(--yellow); font-size: 0.85rem; }

/* ── Contact ────────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-text h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 800; color: var(--text-bright); line-height: 1.2; margin-bottom: 14px; }
.contact-text > p { color: var(--text-dim); margin-bottom: 28px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-link { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: border-color .2s, transform .15s; }
.contact-link:hover { border-color: var(--yellow); transform: translateX(4px); }
.contact-link i { font-size: 1.4rem; color: var(--yellow); width: 24px; text-align: center; }
.contact-link strong { display: block; font-size: 0.88rem; color: var(--text-bright); }
.contact-link span { font-size: 0.82rem; color: var(--text-dim); }
.contact-form { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-bright); margin-bottom: 22px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); }
.form-group input,
.form-group textarea { background: var(--bg2); border: 1px solid var(--border2); border-radius: 8px; padding: 11px 14px; color: var(--text-bright); font-size: 0.88rem; font-family: inherit; outline: none; transition: border-color .2s; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-note { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-top: 12px; }
.form-note a { color: var(--yellow); text-decoration: none; }

/* ── Footer ─────────────────────────────────────────── */
.footer { background: #02080f; border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-copy, .footer-contact { font-size: 0.82rem; color: var(--text-dim); }
.footer-contact a { color: var(--text-dim); text-decoration: none; }
.footer-contact a:hover { color: var(--yellow); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(6,14,32,.98);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
        z-index: 999;
    }
    .nav-links.open li a { font-size: 1rem; }
    .navbar { position: relative; }

    .features-grid { grid-template-columns: 1fr; }
    .feat-card-lg, .feat-card-desktop { grid-column: span 1; }

    .security-inner,
    .contact-inner,
    .proof-inner { grid-template-columns: 1fr; gap: 40px; }

    .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }

    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 0; }

    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .hero-trust { gap: 16px; }

    .activation-steps { flex-direction: column; }
    .act-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
    .hero { padding-top: calc(var(--nav-h) + 48px); }
    .hero-actions { flex-direction: column; align-items: center; }
    .mock-table th:nth-child(n+4),
    .mock-table td:nth-child(n+4) { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
    .benefits-grid { grid-template-columns: 1fr; }
    .proof-stats { grid-template-columns: 1fr; }
    .final-cta-actions { flex-direction: column; align-items: center; }
    .final-cta-trust { flex-direction: column; align-items: center; gap: 12px; }
}


/* ══════════════════════════════════════════════
   Novas seções — Scanner Pro
   ══════════════════════════════════════════════ */

/* ── Pain Section ─────────────────────────────────────── */
.pain-section { padding: 100px 0; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pain-card {
    background: var(--bg2);
    border: 1px solid rgba(255,107,107,.2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: border-color .25s, transform .2s, box-shadow .25s;
}
.pain-card:hover { border-color: rgba(255,107,107,.45); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(255,107,107,.08); }
.pain-icon {
    width: 56px; height: 56px;
    background: rgba(255,107,107,.1);
    border: 1px solid rgba(255,107,107,.25);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #ff6b6b;
    margin: 0 auto 20px;
}
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-bright); margin-bottom: 10px; }
.pain-card p  { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }

/* ── Benefits Full ───────────────────────────────────── */
.benefits-full { padding: 100px 0; background: var(--light-bg); }
.benefits-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-full-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(10,31,68,.06);
    transition: border-color .25s, transform .2s, box-shadow .25s;
    position: relative;
}
.benefit-full-card:hover { border-color: rgba(201,168,32,.4); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(10,31,68,.1); }
.benefit-full-card--highlight {
    background: linear-gradient(135deg, #0A1F44 0%, #112050 100%);
    border-color: rgba(244,211,94,.4);
    box-shadow: 0 4px 24px rgba(244,211,94,.08);
}
.benefit-full-card--highlight h3 { color: var(--text-bright); }
.benefit-full-card--highlight p  { color: var(--text-dim); }
.benefit-full-card--highlight:hover { border-color: rgba(244,211,94,.7); box-shadow: 0 12px 40px rgba(244,211,94,.15); }
.bfc-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(244,211,94,.12), rgba(244,211,94,.04));
    border: 1px solid rgba(201,168,32,.22);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--yellow-dk);
    margin-bottom: 16px;
    transition: background .2s;
}
.benefit-full-card:hover .bfc-icon { background: linear-gradient(135deg, rgba(244,211,94,.2), rgba(244,211,94,.08)); }
.bfc-icon--highlight { background: rgba(244,211,94,.15); border-color: rgba(244,211,94,.3); color: var(--yellow); }
.benefit-full-card h3 { font-size: 1rem; font-weight: 700; color: var(--light-text); margin-bottom: 8px; }
.benefit-full-card p  { font-size: 0.88rem; color: var(--light-text2); line-height: 1.65; }
.bfc-highlight-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(244,211,94,.15);
    border: 1px solid rgba(244,211,94,.3);
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 14px;
}

/* ── Demo Section ─────────────────────────────────────── */
.demo-section { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.demo-views { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
.demo-view-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .25s, transform .2s;
}
.demo-view-card:hover { border-color: rgba(244,211,94,.25); transform: translateY(-3px); }
.dvc-icon {
    width: 52px; height: 52px;
    background: var(--yellow-glow);
    border: 1px solid rgba(244,211,94,.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--yellow);
    flex-shrink: 0;
}
.dvc-tag { font-size: 0.72rem; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.dvc-content h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.dvc-content p  { font-size: 0.86rem; color: var(--text-dim); line-height: 1.65; }
.demo-cta { text-align: center; }

/* ── Comparison Table ─────────────────────────────────── */
.comparison-section { padding: 100px 0; background: var(--light-bg); }
.comparison-table-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.comparison-table th {
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--light-border);
    background: transparent;
}
.comparison-table th.comp-feature { text-align: left; color: var(--light-text2); font-weight: 600; font-size: 0.82rem; }
.comparison-table th.comp-generic { color: var(--light-text2); background: #f1f5f9; border-radius: 10px 10px 0 0; }
.comparison-table th.comp-scanner { color: #0A1F44; background: rgba(244,211,94,.12); border: 2px solid rgba(201,168,32,.3); border-bottom: none; border-radius: 10px 10px 0 0; }
.comparison-table th small { display: block; font-size: 0.72rem; font-weight: 400; color: var(--light-text2); margin-top: 4px; }
.comparison-table td { padding: 14px 20px; font-size: 0.88rem; border-bottom: 1px solid var(--light-border); color: var(--light-text); }
.comparison-table td.comp-no       { text-align: center; color: #dc2626; font-weight: 600; background: rgba(220,38,38,.04); }
.comparison-table td.comp-partial  { text-align: center; color: #d97706; font-weight: 600; background: rgba(217,119,6,.04); }
.comparison-table td.comp-yes      { text-align: center; color: #16a34a; font-weight: 700; background: rgba(22,163,74,.05); border-left: 2px solid rgba(201,168,32,.25); border-right: 2px solid rgba(201,168,32,.25); }
.comparison-table tbody tr:last-child td.comp-yes { border-bottom: 2px solid rgba(201,168,32,.3); }
.comparison-table td i { margin-right: 5px; font-size: 0.8rem; }

/* ── ROI Section ──────────────────────────────────────── */
.roi-section { padding: 100px 0; }
.roi-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto 40px;
}
.roi-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.roi-card--before { border-color: rgba(220,38,38,.2); }
.roi-card--after  { border-color: rgba(22,163,74,.25); }
.roi-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.roi-card--before .roi-label { color: #ff6b6b; }
.roi-card--after  .roi-label { color: var(--green); }
.roi-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.roi-item-label { font-size: 0.86rem; color: var(--text-dim); }
.roi-item-label small { display: block; font-size: 0.74rem; margin-top: 2px; }
.roi-item-val  { font-size: 0.92rem; font-weight: 700; white-space: nowrap; margin-left: 12px; }
.roi-bad  { color: #ff6b6b; }
.roi-good { color: var(--green); }
.roi-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.roi-total .roi-item-label { color: var(--text); font-weight: 600; font-size: 0.9rem; }
.roi-total .roi-item-val   { font-size: 1.15rem; }
.roi-note-bad  { font-size: 0.78rem; color: rgba(255,107,107,.65); font-style: italic; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.roi-note-good { font-size: 0.78rem; color: rgba(74,222,128,.65); font-style: italic; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.roi-vs {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border2);
    color: var(--text-dim);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.roi-payback {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0A1F44, #112050);
    border: 1px solid rgba(244,211,94,.3);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
}
.roi-payback-grid { display: flex; justify-content: center; align-items: center; gap: 36px; margin-bottom: 20px; flex-wrap: wrap; }
.roi-payback-item { text-align: center; }
.roi-payback-n { display: block; font-size: 2rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.roi-payback-l { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.roi-payback-highlight { color: var(--green); }
.roi-payback-divider { width: 1px; height: 48px; background: var(--border); }
.roi-payback-note { font-size: 0.9rem; color: var(--text-dim); }
.roi-payback-note strong { color: var(--yellow); }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-section { padding: 100px 0; background: var(--light-bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.testimonial-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(10,31,68,.06);
    transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(10,31,68,.1); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; display: flex; gap: 3px; }
.testimonial-text { font-size: 0.9rem; color: var(--light-text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2744, #2563eb);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--light-text); }
.testimonial-author span  { font-size: 0.78rem; color: var(--light-text2); }
.testimonials-counter {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.tc-stat { text-align: center; }
.tc-n { display: block; font-size: 1.8rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 6px; }
.tc-l { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.tc-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Responsive — novas seções ────────────────────────── */
@media (max-width: 1100px) {
    .pain-grid           { grid-template-columns: repeat(2, 1fr); }
    .benefits-full-grid  { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .demo-views  { grid-template-columns: 1fr; }
    .roi-grid    { grid-template-columns: 1fr; }
    .roi-vs      { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .pain-grid          { grid-template-columns: 1fr; }
    .benefits-full-grid { grid-template-columns: 1fr; }
    .roi-payback-grid   { gap: 20px; }
    .roi-payback-divider { display: none; }
    .testimonials-counter { flex-direction: column; gap: 20px; }
    .tc-divider         { display: none; }
    .comparison-table   { font-size: 0.8rem; }
    .comparison-table th,
    .comparison-table td { padding: 10px 12px; }
}
