/* =============================================
   MAPSSCAN PRO — STYLES
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --g-blue: #4285F4;
    --g-green: #34A853;
    --g-yellow: #FBBC05;
    --g-red: #EA4335;
    --bg: #070711;
    --bg2: #0e0e20;
    --bg3: #14142a;
    --card: #12121f;
    --card2: #1a1a30;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --text: #f0f0ff;
    --text2: #9898b8;
    --text3: #6060a0;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text2); }

.text-gradient {
    background: linear-gradient(135deg, var(--g-blue) 0%, #a855f7 50%, var(--g-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--g-blue), #6b21f0);
    color: #fff;
    box-shadow: 0 8px 32px rgba(66,133,244,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(66,133,244,0.5);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 50px; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
    background: rgba(66,133,244,0.12);
    color: var(--g-blue);
    border: 1px solid rgba(66,133,244,0.3);
}
.btn-nav:hover { background: rgba(66,133,244,0.2); }
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border2);
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.btn-green {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    box-shadow: 0 8px 32px rgba(52,168,83,0.3);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(52,168,83,0.45); }

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(7,7,17,0.85);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---- LOGO ---- */
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo-icon { flex-shrink: 0; }
.logo-text { font-size: 1.15rem; font-weight: 800; }
.logo-maps { color: var(--g-blue); }
.logo-scan { color: var(--text); }
.logo-badge {
    font-size: 0.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--g-blue), #a855f7);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse, rgba(66,133,244,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(66,133,244,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(66,133,244,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(66,133,244,0.1);
    border: 1px solid rgba(66,133,244,0.25);
    color: #a0bcf8;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.badge-pulse {
    width: 7px; height: 7px;
    background: var(--g-blue);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title { margin-bottom: 16px; }
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text2);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hs-num { font-size: 1.4rem; font-weight: 800; color: var(--text); }
.hs-lbl { font-size: 0.72rem; color: var(--text3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.hs-sep { width: 1px; height: 36px; background: var(--border2); }

/* ---- MAPS CARD MOCKUP ---- */
.hero-visual { position: relative; }
.maps-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.mc-topbar {
    background: var(--card2);
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.mc-dots { display: flex; gap: 5px; }
.mc-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border2);
}
.mc-dots span:nth-child(1) { background: #EA4335; }
.mc-dots span:nth-child(2) { background: #FBBC05; }
.mc-dots span:nth-child(3) { background: #34A853; }
.mc-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
}
.mc-body { padding: 14px; }
.mc-searchbar {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 0.8rem;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}
.mc-results { display: flex; flex-direction: column; gap: 6px; }
.mc-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}
.mc-rank {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}
.r1 { background: rgba(52,168,83,0.2); color: #34A853; }
.r2 { background: rgba(66,133,244,0.2); color: var(--g-blue); }
.r3 { background: rgba(251,188,5,0.2); color: var(--g-yellow); }
.rh { background: rgba(234,67,53,0.2); color: var(--g-red); }
.mc-rinfo { flex: 1; min-width: 0; }
.mc-rname { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.mc-rstars { font-size: 0.65rem; color: var(--g-yellow); }
.mc-rstars span { color: var(--text3); }
.mc-rbadge {
    font-size: 0.6rem;
    background: rgba(52,168,83,0.15);
    color: var(--g-green);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}
.mc-hidden { background: rgba(234,67,53,0.04); border-color: rgba(234,67,53,0.2); }
.mc-invisible { color: var(--g-red) !important; }
.mc-invisible-tag {
    font-size: 0.6rem;
    background: rgba(234,67,53,0.15);
    color: var(--g-red);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}
.hero-alert {
    position: absolute;
    bottom: -12px; right: 20px;
    background: rgba(234,67,53,0.12);
    border: 1px solid rgba(234,67,53,0.3);
    color: #f87171;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: float 5s ease-in-out infinite reverse;
}

/* ---- SCANNER SECTION ---- */
.scanner-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.step { transition: opacity 0.3s ease; }
.hidden { display: none !important; }

/* ---- FORM CARD ---- */
.step-header {
    text-align: center;
    margin-bottom: 40px;
}
.step-header h2 { margin-bottom: 10px; }
.step-header p { color: var(--text2); font-size: 1rem; }
.form-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.iico {
    position: absolute;
    left: 14px;
    color: var(--text3);
    pointer-events: none;
    flex-shrink: 0;
}
.input-wrap input,
.input-wrap select {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    padding: 12px 14px 12px 40px;
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.input-wrap input::placeholder { color: var(--text3); }
.input-wrap input:focus,
.input-wrap select:focus {
    border-color: var(--g-blue);
    box-shadow: 0 0 0 3px rgba(66,133,244,0.15);
}
.input-wrap select option { background: #1a1a30; }
.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text3);
    margin-top: 14px;
}
.form-security svg { color: var(--g-green); }

/* ---- SCANNING ---- */
.scan-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.radar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.scan-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--g-blue);
}
.radar {
    width: 200px; height: 200px;
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66,133,244,0.08) 0%, transparent 70%);
}
.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(66,133,244,0.2);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.rr1 { width: 60px; height: 60px; }
.rr2 { width: 120px; height: 120px; }
.rr3 { width: 190px; height: 190px; border-color: rgba(66,133,244,0.12); }
.radar-center {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--g-blue);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 12px rgba(66,133,244,0.8);
}
.radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(66,133,244,0.4) 25%, rgba(66,133,244,0.1) 40%, transparent 50%);
    animation: sweep 2s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--g-green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(52,168,83,0.8);
    opacity: 0;
    animation: dotBlink 3s ease-in-out infinite;
}
.rd1 { top: 25%; left: 65%; animation-delay: 0.5s; }
.rd2 { top: 60%; left: 30%; animation-delay: 1.2s; }
.rd3 { top: 40%; left: 70%; animation-delay: 1.8s; }
@keyframes dotBlink {
    0%, 30%, 100% { opacity: 0; }
    50%, 70% { opacity: 1; }
}

/* Scan info */
.scan-info h2 { font-size: 1.5rem; margin-bottom: 6px; }
.scan-info h2 strong { color: var(--g-blue); }
.scan-subtitle { font-size: 0.85rem; color: var(--text3); margin-bottom: 24px; }
.scan-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text3);
    transition: color 0.3s;
}
.sc-item.sc-done { color: var(--text); }
.sc-item.sc-pending { color: var(--g-blue); }
.sc-icon {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.sc-wait { color: var(--text3); }
.sc-done-ico {
    width: 22px; height: 22px;
    background: rgba(52,168,83,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--g-green);
    font-size: 0.7rem;
}
.sc-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(66,133,244,0.2);
    border-top-color: var(--g-blue);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.scan-bar-track {
    height: 4px;
    background: var(--border2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}
.scan-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--g-blue), #a855f7);
    border-radius: 2px;
    width: 0%;
    transition: width 0.5s ease;
}
.scan-tip { font-size: 0.78rem; color: var(--text3); font-style: italic; }

/* ---- RESULTS ---- */
.results-header {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 10px;
}
.results-header h2 { margin-bottom: 8px; }
.results-header p { color: var(--text2); }

.score-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 36px 40px;
}
.score-ring-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.score-ring {
    position: relative;
    width: 160px; height: 160px;
}
.score-ring svg { transform: rotate(-90deg); }
.score-ring-track { fill: none; stroke: var(--border2); stroke-width: 10; }
.score-ring-fill {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1);
}
.score-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.score-num-val {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}
.score-num-label {
    font-size: 0.65rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.score-tier-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.score-details { }
.score-details h3 { font-size: 1.3rem; margin-bottom: 6px; }
.score-details p { margin-bottom: 20px; color: var(--text2); font-size: 0.9rem; }
.score-key-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.skm-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
}
.skm-val {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.skm-lbl {
    font-size: 0.7rem;
    color: var(--text3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- METRIC CARDS ---- */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.metric-card {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 20px;
}
.metric-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.metric-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.metric-score-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}
.metric-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.metric-value {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
.metric-bar-track {
    height: 5px;
    background: var(--border2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.metric-bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.metric-hint { font-size: 0.72rem; color: var(--text3); }

/* Score colors */
.color-red    { color: #ef4444; }
.color-orange { color: #f97316; }
.color-yellow { color: var(--g-yellow); }
.color-green  { color: var(--g-green); }
.color-blue   { color: var(--g-blue); }

.bg-red    { background: rgba(239,68,68,0.12); }
.bg-orange { background: rgba(249,115,22,0.12); }
.bg-yellow { background: rgba(251,188,5,0.12); }
.bg-green  { background: rgba(52,168,83,0.12); }
.bg-blue   { background: rgba(66,133,244,0.12); }

.fill-red    { background: #ef4444; }
.fill-orange { background: #f97316; }
.fill-yellow { background: var(--g-yellow); }
.fill-green  { background: var(--g-green); }
.fill-blue   { background: var(--g-blue); }

.tier-critico  { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.tier-baixo    { background: rgba(249,115,22,0.15); color: #f97316; border: 1px solid rgba(249,115,22,0.3); }
.tier-regular  { background: rgba(251,188,5,0.15); color: var(--g-yellow); border: 1px solid rgba(251,188,5,0.3); }
.tier-bom      { background: rgba(66,133,244,0.15); color: var(--g-blue); border: 1px solid rgba(66,133,244,0.3); }
.tier-excelente{ background: rgba(52,168,83,0.15); color: var(--g-green); border: 1px solid rgba(52,168,83,0.3); }

/* ---- PROJECTION ---- */
.projection-section {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 48px;
}
.proj-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.proj-title { }
.proj-title h3 { font-size: 1.3rem; margin-bottom: 6px; }
.proj-title p { font-size: 0.88rem; color: var(--text2); }
.proj-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(52,168,83,0.1);
    border: 1px solid rgba(52,168,83,0.25);
    color: var(--g-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.proj-comparisons { display: flex; flex-direction: column; gap: 16px; }
.proj-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: center;
}
.proj-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text2);
    text-align: right;
}
.proj-bars { display: flex; flex-direction: column; gap: 6px; }
.proj-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
}
.proj-bar-tag {
    width: 48px;
    text-align: right;
    color: var(--text3);
    font-weight: 500;
    flex-shrink: 0;
}
.proj-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border2);
    border-radius: 4px;
    overflow: hidden;
}
.proj-bar-fill {
    height: 100%;
    border-radius: 4px;
    width: 0%;
    transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.proj-bar-num {
    width: 60px;
    font-weight: 700;
    color: var(--text);
    font-size: 0.8rem;
}
.proj-before .proj-bar-fill { background: rgba(255,255,255,0.15); }
.proj-after .proj-bar-fill  { background: linear-gradient(90deg, var(--g-blue), var(--g-green)); }
.proj-after .proj-bar-tag   { color: var(--g-green); font-weight: 700; }

/* ---- CTA (before lead form) ---- */
.cta-bar {
    background: linear-gradient(135deg, rgba(66,133,244,0.1), rgba(168,85,247,0.1));
    border: 1px solid rgba(66,133,244,0.2);
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
    margin-bottom: 12px;
}
.cta-bar h3 { font-size: 1.5rem; margin-bottom: 10px; }
.cta-bar p { color: var(--text2); margin-bottom: 24px; font-size: 0.95rem; }
.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--g-yellow);
    margin-top: 14px;
    font-weight: 500;
}

/* ---- LEAD FORM ---- */
.lead-section {
    max-width: 640px;
    margin: 0 auto;
}
.lead-section .form-card { box-shadow: 0 0 0 1px rgba(66,133,244,0.2), var(--shadow); }
.lead-form-header { text-align: center; margin-bottom: 28px; }
.lead-form-header h3 { font-size: 1.3rem; margin-bottom: 8px; }
.lead-form-header p { font-size: 0.88rem; color: var(--text2); }
.lead-summary {
    background: var(--bg2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
}
.lead-summary-score {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}
.lead-summary-text { font-size: 0.8rem; color: var(--text2); }
.lead-summary-text strong { color: var(--text); display: block; font-size: 0.9rem; margin-bottom: 2px; }

/* ---- THANKS ---- */
.thanks-wrap {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    padding: 60px 0;
}
.thanks-icon {
    width: 80px; height: 80px;
    background: rgba(52,168,83,0.1);
    border: 2px solid rgba(52,168,83,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-size: 2rem;
}
.thanks-wrap h2 { margin-bottom: 14px; }
.thanks-wrap p { margin-bottom: 32px; font-size: 0.95rem; }
.thanks-next {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 24px;
    text-align: left;
    margin-bottom: 28px;
}
.thanks-next h4 { margin-bottom: 14px; font-size: 0.9rem; color: var(--text2); text-transform: uppercase; letter-spacing: 0.05em; }
.thanks-steps { display: flex; flex-direction: column; gap: 12px; }
.ts-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text2);
}
.ts-num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(66,133,244,0.15);
    color: var(--g-blue);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- HOW IT WORKS ---- */
.section-hiw, .section-testimonials, .section-faq {
    padding: 80px 0;
}
.section-hiw { background: var(--bg2); }
.section-testimonials { background: var(--bg); }
.section-faq { background: var(--bg2); }
.sec-header {
    text-align: center;
    margin-bottom: 48px;
}
.sec-header h2 { margin-bottom: 10px; }
.sec-header p { color: var(--text2); }
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hiw-step {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 28px 22px;
    position: relative;
}
.hiw-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 14px; right: 18px;
    line-height: 1;
}
.hiw-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.hiw-step h3 { margin-bottom: 8px; font-size: 1rem; }
.hiw-step p { font-size: 0.85rem; color: var(--text2); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tcard {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 24px;
}
.tcard-stars { color: var(--g-yellow); font-size: 0.9rem; margin-bottom: 12px; }
.tcard p { font-size: 0.88rem; color: var(--text2); margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    background: var(--bg);
}
.tcard-author strong { display: block; font-size: 0.85rem; color: var(--text); }
.tcard-author span { font-size: 0.75rem; color: var(--text3); }

/* ---- FAQ ---- */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text);
}
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--text3);
    line-height: 1;
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text2);
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-copy { font-size: 0.82rem; color: var(--text3); }
.footer-disc { font-size: 0.72rem; color: var(--text3); max-width: 500px; opacity: 0.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-stats { gap: 14px; }
    .score-section { grid-template-columns: 1fr; text-align: center; }
    .score-key-metrics { grid-template-columns: repeat(3, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .scan-layout { grid-template-columns: 1fr; }
    .radar-wrap { display: none; }
    .proj-row { grid-template-columns: 100px 1fr; }
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 24px 20px; }
    .score-key-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .metrics-grid { grid-template-columns: 1fr; }
    .hiw-grid { grid-template-columns: 1fr; }
    .score-section { padding: 24px; }
    .projection-section { padding: 24px; }
    .proj-row { grid-template-columns: 1fr; }
    .proj-lbl { text-align: left; }
    .cta-bar { padding: 24px 20px; }
    .hero-stats { gap: 10px; }
    .hs-sep { display: none; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeSlideUp 0.5s ease both; }

/* ---- NAV SCROLL EFFECT ---- */
.nav.scrolled { background: rgba(7,7,17,0.95); }
