:root {
    --blue: #2563EB;
    --blue-hover: #1D4ED8;
    --blue-light: #EFF6FF;
    --purple: #7C3AED;
    --purple-light: #F5F3FF;
    --green: #059669;
    --green-light: #ECFDF5;
    --orange: #EA580C;
    --orange-light: #FFF7ED;
    --pink: #DB2777;
    --pink-light: #FDF2F8;
    --cyan: #0891B2;
    --cyan-light: #ECFEFF;
    --text: #0F172A;
    --text-sub: #475569;
    --text-muted: #94A3B8;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --border: #E2E8F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
@keyframes chartDraw {
    from { stroke-dashoffset: 300; }
    to { stroke-dashoffset: 0; }
}
@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.anim {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim.hidden {
    opacity: 0;
    transform: translateY(40px);
}
.anim-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-left.hidden { opacity: 0; transform: translateX(-40px); }
.anim-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-right.hidden { opacity: 0; transform: translateX(40px); }
.anim-scale {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-scale.hidden { opacity: 0; transform: scale(0.92); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0; z-index: 100;
    height: 72px;
    display: flex; align-items: center;
    padding: 0 48px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}
.header.scrolled {
    border-bottom-color: var(--border);
    background: rgba(255,255,255,0.95);
}
.header-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo svg { height: 32px; width: auto; }
.logo svg path { fill: var(--text); }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-size: 0.9em; font-weight: 500; color: var(--text-sub); text-decoration: none; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav-btn {
    padding: 10px 24px !important;
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 12px rgba(37,99,235,0.25);
}
.nav-btn:hover {
    background: var(--blue-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37,99,235,0.35) !important;
}

/* ===== LAYOUT ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-tag {
    display: inline-block;
    font-size: 0.78em; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; margin-bottom: 16px;
}
.tag-blue { color: var(--blue); }
.tag-purple { color: var(--purple); }
.tag-green { color: var(--blue); }
.tag-orange { color: var(--purple); }
.section-title {
    font-size: 2.8em; font-weight: 900; letter-spacing: -1.5px;
    line-height: 1.1; margin-bottom: 18px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-green {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-warm {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc {
    font-size: 1.1em; color: var(--text-sub); line-height: 1.75;
    max-width: 540px;
}
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* ===== HERO ===== */
.hero {
    padding: 120px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: rgba(37,99,235,0.08);
    top: -100px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: rgba(124,58,237,0.06);
    bottom: -50px; left: -100px;
    animation: float 10s ease-in-out infinite 2s;
}
.hero-blob-3 {
    width: 300px; height: 300px;
    background: rgba(124,58,237,0.04);
    top: 50%; left: 60%;
    animation: float 7s ease-in-out infinite 4s;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: var(--blue-light);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 100px;
    font-size: 0.82em; font-weight: 600; color: var(--blue);
    margin-bottom: 20px;
    animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--blue); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.hero-title {
    font-size: 3.4em; font-weight: 900;
    letter-spacing: -2px; line-height: 1.08;
    margin-bottom: 16px;
    max-width: 720px; margin-left: auto; margin-right: auto;
    animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-desc {
    font-size: 1.1em; color: var(--text-sub);
    max-width: 720px; margin: 0 auto 28px;
    line-height: 1.6;
}
.hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px;
    background: var(--blue); color: #fff;
    text-decoration: none; font-size: 1.05em; font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 24px rgba(37,99,235,0.3);
    animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}
.hero-btn:hover {
    background: var(--blue-hover); transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,99,235,0.4);
}
.hero-btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.hero-btn:hover svg { transform: translateX(4px); }

/* Hero mockup — CSS trading dashboard */
.hero-mockup {
    margin-top: 40px;
    position: relative;
    animation: scaleIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.mockup-window {
    width: 100%; margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    overflow: hidden;
}
.mockup-topbar {
    height: 44px; background: #F8FAFC;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; padding: 0 16px; gap: 8px;
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot-r { background: #FCA5A5; }
.mockup-dot-y { background: #FDE68A; }
.mockup-dot-g { background: #86EFAC; }
.mockup-topbar-url {
    flex: 1; margin-left: 12px;
    height: 28px; background: #fff;
    border-radius: 6px; border: 1px solid var(--border);
    display: flex; align-items: center; padding: 0 12px;
    font-size: 0.72em; color: var(--text-muted);
}
.mockup-body {
    display: grid; grid-template-columns: 200px 1fr; min-height: 520px;
}
.mockup-sidebar {
    background: #1B2A4A; padding: 20px 0;
    display: flex; flex-direction: column; gap: 2px;
}
.mockup-sidebar-item {
    padding: 10px 18px; font-size: 0.68em;
    color: rgba(255,255,255,0.45); font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    transition: background 0.15s;
}
.mockup-sidebar-item.active {
    color: #fff; background: rgba(255,255,255,0.08);
    border-left: 3px solid var(--blue);
}
.mockup-sidebar-item svg {
    width: 15px; height: 15px; flex-shrink: 0;
    stroke: currentColor; fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.mockup-content { padding: 16px; background: #F8FAFC; }
.mockup-chart-area {
    background: #fff; border-radius: 10px;
    border: 1px solid var(--border);
    padding: 16px; height: 100%;
    display: flex; flex-direction: column;
}
.mockup-chart-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 10px;
}
.mockup-pair {
    font-size: 0.9em; font-weight: 700; color: var(--text);
}
.mockup-price {
    font-size: 0.85em; font-weight: 600;
}
.mockup-price-up { color: #26A69A; }
.mockup-tabs {
    display: flex; gap: 3px;
}
.mockup-tab {
    padding: 4px 10px; border-radius: 6px;
    font-size: 0.62em; font-weight: 600; color: var(--text-muted);
    background: var(--bg-alt);
}
.mockup-tab.active { background: var(--blue); color: #fff; }
.mockup-chart-svg { flex: 1; width: 100%; min-height: 200px; }

/* === Signal stack — infinite notification-style signals === */
.signal-stack {
    position: absolute;
    top: 72px; right: 28px;
    width: 238px;
    height: 360px;
    z-index: 10;
    pointer-events: none;
}
.signal-card {
    position: absolute;
    left: 0; right: 0;
    top: 0;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 11px 14px 12px;
    font-family: Inter, sans-serif;
    will-change: transform, opacity, top;
    transform-origin: 50% 30%;
    /* Enter state: off-screen right, slightly down, faded, scaled down */
    opacity: 0;
    transform: translate3d(36px, 8px, 0) scale(0.92);
    transition:
        top 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.7s ease-out,
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s ease;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
}
.signal-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}
.signal-card.leaving {
    opacity: 0;
    transform: translate3d(0, -20px, 0) scale(0.97);
    transition:
        opacity 0.7s ease-out,
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.signal-card.sc-is-sell.visible { box-shadow: 0 14px 44px rgba(220,38,38,0.18), 0 2px 8px rgba(0,0,0,0.06); }
.signal-card.sc-is-buy.visible  { box-shadow: 0 14px 44px rgba(22,163,74,0.18), 0 2px 8px rgba(0,0,0,0.06); }
.sc-head {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 9px;
}
.sc-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 6px;
    font-size: 0.66em; font-weight: 800; letter-spacing: 0.6px;
}
.sc-is-sell .sc-badge { background: #FEE2E2; color: #DC2626; }
.sc-is-buy  .sc-badge { background: #DCFCE7; color: #16A34A; }
.sc-dot {
    width: 6px; height: 6px; border-radius: 50%;
    animation: signalBlinkSell 1.4s infinite;
}
.sc-is-sell .sc-dot { background: #DC2626; animation-name: signalBlinkSell; }
.sc-is-buy  .sc-dot { background: #16A34A; animation-name: signalBlinkBuy; }
.sc-is-sell .sc-value-entry { color: #DC2626; }
.sc-is-buy  .sc-value-entry { color: #16A34A; }
@keyframes signalBlinkSell {
    0%   { box-shadow: 0 0 0 0 rgba(220,38,38,0.6); }
    70%  { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}
@keyframes signalBlinkBuy {
    0%   { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
    70%  { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.sc-pair {
    font-size: 0.68em; font-weight: 600;
    color: var(--text-muted);
}
.sc-rows { display: flex; flex-direction: column; gap: 5px; }
.sc-row {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 0.74em;
}
.sc-label { color: var(--text-sub); font-weight: 500; }
.sc-label-entry { display: inline-flex; align-items: center; gap: 5px; }
.sc-label-entry svg { width: 10px; height: 10px; stroke-width: 2.4; flex-shrink: 0; }
.sc-is-sell .sc-label-entry svg { color: #DC2626; }
.sc-is-buy  .sc-label-entry svg { color: #16A34A; }
.sc-label-sl::before,
.sc-label-tp::before {
    content: ''; display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    margin-right: 6px; vertical-align: middle;
}
.sc-label-sl::before { background: #DC2626; }
.sc-label-tp::before { background: #16A34A; }
.sc-value {
    font-weight: 700;
    font-feature-settings: 'tnum' 1;
    color: var(--text);
}
.sc-value-entry { font-size: 1.05em; }
.sc-foot {
    margin-top: 12px; padding-top: 10px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.66em;
}
.sc-rr {
    color: var(--text-muted); font-weight: 600;
    padding: 3px 8px; background: var(--bg-alt);
    border-radius: 4px;
}
.sc-profit { color: #16A34A; font-weight: 800; }

/* Ticker bar */
.ticker-bar {
    margin-top: 40px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
    display: flex; gap: 32px;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    border-radius: 12px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}
.ticker-name { font-size: 0.85em; font-weight: 700; color: var(--text); }
.ticker-val { font-size: 0.85em; font-weight: 500; color: var(--text-sub); font-variant-numeric: tabular-nums; }
.ticker-chg { font-size: 0.78em; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.t-up { color: var(--green); background: rgba(5,150,105,0.1); }
.t-down { color: #DC2626; background: rgba(220,38,38,0.08); }

/* ===== HERO micro-proof & rating ===== */
.hero-microproof {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 18px 28px; margin-top: 20px;
    font-size: 0.88em; color: var(--text-sub);
}
.hero-microproof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-microproof svg { width: 16px; height: 16px; color: #059669; flex-shrink: 0; }
.hero-microproof .mp-counter { color: var(--text); font-weight: 700; }

.hero-rating {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
    padding: 8px 16px; border-radius: 999px;
    background: #fff; border: 1px solid var(--border);
    box-shadow: 0 4px 14px rgba(15,23,42,0.06);
    font-size: 0.88em; color: var(--text-sub);
}
.hero-rating .stars { color: #F59E0B; letter-spacing: -1px; }
.hero-rating strong { color: var(--text); font-weight: 700; }

/* ===== TRUST BAND ===== */
.trust-band {
    padding: 56px 0;
    background: linear-gradient(180deg, #fff 0%, #F8FAFF 100%);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 24px; align-items: stretch;
}
.trust-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 18px; padding: 24px;
    display: flex; flex-direction: column; gap: 10px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.trust-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15,23,42,0.08); }
.trust-card .tc-top { display: flex; align-items: center; gap: 10px; min-height: 40px; }
.trust-card .tc-badge {
    font-size: 0.7em; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.6px; padding: 4px 10px; border-radius: 6px;
    background: rgba(5,150,105,0.1); color: #059669;
    display: inline-flex; align-items: center; gap: 6px;
}
.trust-card .tc-badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulse 2s infinite;
}
.trust-card .tc-val {
    font-size: 1.9em; font-weight: 800; letter-spacing: -0.5px;
    line-height: 1.1; color: var(--text);
}
.trust-card .tc-val.grad {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trust-card .tc-label { font-size: 0.92em; color: var(--text-sub); line-height: 1.45; }
.trust-card.tc-highlight {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-color: transparent;
    color: #fff;
}
.trust-card.tc-highlight .tc-val,
.trust-card.tc-highlight .tc-label { color: #fff; }
.trust-card.tc-highlight .tc-label { color: rgba(255,255,255,0.7); }
.trust-card .fc-logo {
    display: inline-flex; align-items: center; gap: 10px;
    min-height: 40px; font-weight: 700; font-size: 0.9em;
    color: #fff;
}
.trust-card .fc-logo .fc-mark-svg {
    width: 40px; height: 40px; flex-shrink: 0; display: block;
}

/* ===== COMPARE (Problems vs Solutions) ===== */
.compare-wrap {
    margin-top: 56px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.06);
    position: relative; overflow: hidden;
}
.compare-wrap::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
    width: 1px; background: linear-gradient(180deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.compare-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    margin-bottom: 32px;
}
.compare-head-col {
    display: flex; align-items: center; gap: 12px;
    font-weight: 700; font-size: 0.95em;
}
.ch-bad { color: #DC2626; }
.ch-good {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ch-pip {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.ch-bad .ch-pip { background: #DC2626; }
.compare-row {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 24px; align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}
.compare-row:first-of-type { border-top: 0; padding-top: 0; }
.compare-row:last-child { padding-bottom: 0; }
.compare-bad, .compare-good {
    display: flex; align-items: center; gap: 14px;
    font-size: 0.98em; line-height: 1.5;
}
.compare-bad { color: #64748B; }
.compare-good { color: var(--text); font-weight: 500; }
.compare-bad .ci, .compare-good .ci {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.compare-bad .ci { background: rgba(239,68,68,0.12); color: #EF4444; }
.compare-good .ci {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.compare-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: #F1F5F9;
    display: flex; align-items: center; justify-content: center;
    color: #94A3B8; flex-shrink: 0;
}

/* ===== STATS ===== */
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; margin-top: 48px;
}
.stat-item { text-align: center; }
.stat-val {
    font-size: 3em; font-weight: 800; line-height: 1; margin-bottom: 10px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { color: var(--text-sub); font-size: 0.95em; }

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(140%);
    z-index: 100;
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 16px 12px 20px;
    background: #0F172A; color: #fff;
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.25);
    text-decoration: none; font-weight: 600; font-size: 0.95em;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-cta .sc-live {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78em; color: rgba(255,255,255,0.75); font-weight: 500;
}
.sticky-cta .sc-dot {
    width: 7px; height: 7px; border-radius: 50%; background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulse 2s infinite;
}
.sticky-cta .sc-btn {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    padding: 10px 22px; border-radius: 999px;
    font-weight: 700;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ===== LIVE ACTIVITY BUBBLE ===== */
.live-bubble {
    position: fixed; bottom: 20px; left: 20px;
    z-index: 90;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px 12px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.1);
    max-width: 300px;
    transform: translateY(160%); opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}
.live-bubble.show { transform: translateY(0); opacity: 1; }
.live-bubble .lb-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9em; flex-shrink: 0;
}
.live-bubble .lb-text { font-size: 0.85em; line-height: 1.4; color: var(--text); }
.live-bubble .lb-text strong { font-weight: 700; }
.live-bubble .lb-text small { color: var(--text-muted); font-size: 0.92em; }

/* ===== PROBLEMS / SOLUTIONS / STATS legacy ===== */
.ps-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-top: 48px;
}
.ps-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px 24px; border-radius: 16px;
    background: #fff; border: 1px solid var(--border);
}
.ps-icon {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1em;
}
.ps-icon-x { background: rgba(220,38,38,0.1); color: #DC2626; }
.ps-icon-check { background: rgba(5,150,105,0.1); color: #059669; }
.ps-card p { margin: 0; padding-top: 6px; color: var(--text); font-size: 0.98em; line-height: 1.55; }

/* ===== REVIEWS / SOCIAL PROOF ===== */
.rating-summary {
    display: grid; grid-template-columns: auto 1fr auto; gap: 48px;
    align-items: center;
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
    padding: 32px 44px; margin: 56px 0 36px;
    box-shadow: 0 4px 20px rgba(15,23,42,0.04);
    text-align: left;
}
.rating-trust {
    display: flex; flex-direction: column; gap: 14px;
    padding-left: 40px;
    border-left: 1px solid var(--border);
    min-width: 240px;
}
.rating-trust-item { display: flex; align-items: center; gap: 12px; }
.rating-trust-icon {
    width: 42px; height: 42px; border-radius: 11px;
    display: grid; place-items: center;
    background: rgba(37,99,235,0.08); color: var(--blue);
    flex-shrink: 0;
}
.rating-trust-icon svg {
    width: 20px; height: 20px;
    stroke: currentColor; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.rating-trust-title { font-weight: 700; font-size: 0.92em; color: var(--text); }
.rating-trust-sub { font-size: 0.78em; color: var(--text-muted); margin-top: 2px; line-height: 1.35; }
.rating-hero { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.rating-number { font-size: 3.8em; font-weight: 900; line-height: 1; letter-spacing: -2px; color: var(--text); }
.rating-stars { color: #FBBF24; font-size: 1.1em; letter-spacing: 2px; line-height: 1; }
.rating-subtitle { font-size: 0.9em; color: var(--text-sub); margin-top: 4px; }
.rating-breakdown { display: flex; flex-direction: column; gap: 8px; max-width: 360px; width: 100%; }
.rating-bar-row {
    display: grid; grid-template-columns: 48px 1fr 44px; gap: 14px;
    align-items: center; font-size: 0.85em; color: var(--text-sub);
}
.rating-bar-label { display: flex; align-items: center; gap: 4px; font-weight: 600; color: var(--text-sub); }
.rating-bar-label svg { width: 11px; height: 11px; color: #FBBF24; }
.rating-bar { height: 7px; background: var(--bg-alt); border-radius: 4px; overflow: hidden; }
.rating-bar-fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
}
.rating-bar-val { text-align: right; font-weight: 600; color: var(--text); }

.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    text-align: left;
}
.review-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 24px 22px;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15,23,42,0.08);
}
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: grid; place-items: center;
    color: #fff; font-weight: 800; font-size: 1em;
    flex-shrink: 0; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-meta { flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: 0.95em; color: var(--text); }
.review-loc {
    font-size: 0.78em; color: var(--text-muted); margin-top: 2px;
    display: flex; align-items: center; gap: 8px;
}
.review-verified {
    display: inline-flex; align-items: center; gap: 3px;
    color: #16A34A; font-weight: 600;
}
.review-verified svg { width: 11px; height: 11px; }
.review-stars { color: #FBBF24; font-size: 0.9em; letter-spacing: 1.5px; line-height: 1; }
.review-text {
    font-size: 0.95em; line-height: 1.65; color: var(--text);
    margin: 0;
}
.review-date {
    font-size: 0.78em; color: var(--text-muted);
    padding-top: 4px;
    border-top: 1px solid var(--border);
}
.review-translated {
    align-self: flex-start;
    font-size: 0.78em; color: var(--text-muted);
    background: var(--bg-alt);
    padding: 3px 10px; border-radius: 4px;
    font-weight: 500;
    margin-top: -4px;
}

@media (max-width: 960px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 24px; padding: 28px;
        text-align: center;
    }
    .rating-hero { align-items: center; }
    .rating-breakdown { max-width: 100%; }
    .rating-trust {
        padding-left: 0; padding-top: 20px;
        border-left: none; border-top: 1px solid var(--border);
        min-width: 0;
    }
    .rating-trust-item { text-align: left; }
}
@media (max-width: 640px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item {
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; padding: 22px 28px; margin-bottom: 14px;
}
.faq-item h3 {
    font-size: 1.08em; font-weight: 700; color: var(--text);
    margin-bottom: 10px;
}
.faq-item p { color: var(--text-sub); line-height: 1.65; margin: 0; }

/* ===== ABOUT ===== */
.about-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-text .section-desc { max-width: 100%; }
.about-metrics {
    display: flex; gap: 40px; margin-top: 36px;
}
.metric-val {
    font-size: 2.2em; font-weight: 900; letter-spacing: -1px; line-height: 1;
}
.metric-label { font-size: 0.82em; color: var(--text-muted); margin-top: 4px; }
/* About mock — signals table */
.about-mock {
    background: #fff; border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    overflow: hidden;
}
.about-mock-header {
    padding: 16px 24px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.about-mock-title { font-size: 0.82em; font-weight: 700; }
.about-mock-badge {
    font-size: 0.68em; font-weight: 600;
    padding: 4px 10px; border-radius: 6px;
    background: var(--blue-light); color: var(--blue);
}
.signals-table { width: 100%; border-collapse: collapse; }
.signals-table th {
    font-size: 0.68em; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
    padding: 12px 16px; text-align: left;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.signals-table td {
    padding: 12px 16px; font-size: 0.82em; font-weight: 500;
    border-bottom: 1px solid #F1F5F9;
}
.signals-table tr:last-child td { border-bottom: none; }
.sig-pair { font-weight: 700; color: var(--text); }
.sig-arrow { display: inline-block; width: 20px; height: 20px; border-radius: 4px; text-align: center; line-height: 20px; font-size: 0.75em; }
.sig-up { background: var(--green-light); color: var(--green); }
.sig-down { background: #FEF2F2; color: #DC2626; }
.sig-tag { font-size: 0.75em; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.sig-buy { background: var(--green-light); color: var(--green); }
.sig-sell { background: #FEF2F2; color: #DC2626; }
.sig-hold { background: #FFFBEB; color: #D97706; }

/* ===== FEATURE CARDS — colorful ===== */
.features-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.f-card {
    border-radius: 20px; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    background: #fff;
}
.f-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.f-card-visual {
    height: 220px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
/* Each card gets unique gradient bg */
.f-card-blue .f-card-visual { background: linear-gradient(135deg, #DBEAFE, #EDE9FE); }
.f-card-purple .f-card-visual { background: linear-gradient(135deg, #EDE9FE, #DBEAFE); }
.f-card-green .f-card-visual { background: linear-gradient(135deg, #E0E7FF, #EDE9FE); }
.f-card-orange .f-card-visual { background: linear-gradient(135deg, #EDE9FE, #E0E7FF); }

.f-card-visual .mini-ui {
    width: 85%; height: 80%;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 16px;
    backdrop-filter: blur(4px);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.f-card:hover .mini-ui { transform: scale(1.04); }
.f-card-body { padding: 28px 28px 32px; }
.f-card-body h3 {
    font-size: 1.15em; font-weight: 700;
    margin-bottom: 8px; letter-spacing: -0.3px;
}
.f-card-body p {
    font-size: 0.92em; color: var(--text-sub);
    line-height: 1.7; margin: 0;
}

/* Mini UI elements inside cards */
.mini-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 12px;
}
.mini-title { font-size: 0.7em; font-weight: 700; color: var(--text); }
.mini-badge { font-size: 0.58em; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.mini-badge-blue { background: var(--blue-light); color: var(--blue); }
.mini-badge-green { background: var(--blue-light); color: var(--blue); }
.mini-badge-purple { background: var(--purple-light); color: var(--purple); }
.mini-badge-orange { background: var(--purple-light); color: var(--purple); }
.mini-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; border-bottom: 1px solid #F1F5F9;
    font-size: 0.62em; font-weight: 500; color: var(--text-sub);
}
.mini-row:last-child { border-bottom: none; }
.mini-row-bold { font-weight: 700; color: var(--text); }
.mini-chart-bars {
    display: flex; align-items: flex-end; gap: 4px; height: 80px; margin-top: 8px;
}
.mini-bar {
    flex: 1; border-radius: 3px 3px 0 0; transform-origin: bottom;
}
.mini-event-row {
    display: flex; align-items: center; gap: 8px; padding: 5px 0;
    font-size: 0.6em; border-bottom: 1px solid #F1F5F9;
}
.mini-event-row:last-child { border-bottom: none; }
.mini-flag { width: 16px; height: 12px; border-radius: 2px; }
.mini-event-time { font-weight: 700; color: var(--text); min-width: 32px; }
.mini-event-name { flex: 1; color: var(--text-sub); }
.mini-event-dots { display: flex; gap: 2px; }
.mini-event-dot { width: 6px; height: 6px; border-radius: 50%; }

/* ===== EXTRAS ===== */
.extras-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.extra-card {
    display: flex; gap: 20px; padding: 32px;
    background: #fff; border-radius: 18px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.extra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.extra-icon {
    flex-shrink: 0; width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}
.extra-card:hover .extra-icon { transform: scale(1.1) rotate(-3deg); }
.extra-icon svg { width: 26px; height: 26px; }
.ei-blue { background: var(--blue-light); color: var(--blue); }
.ei-purple { background: var(--purple-light); color: var(--purple); }
.ei-green { background: var(--blue-light); color: var(--blue); }
.ei-orange { background: var(--purple-light); color: var(--purple); }
.extra-body h3 { font-size: 1.05em; font-weight: 700; margin-bottom: 6px; }
.extra-body p { font-size: 0.88em; color: var(--text-sub); line-height: 1.65; margin: 0; }

/* ===== STEPS ===== */
.steps-wrap {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    background: linear-gradient(180deg, #fff, #F8FAFF);
    margin-top: 56px;
    position: relative;
}
.steps-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; position: relative;
}
.step-pill-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; margin-bottom: 8px;
}
.step-pill-cell {
    display: flex; align-items: center; gap: 12px;
}
.step-pill {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 18px; border-radius: 999px;
    border: 1px solid var(--border); background: #fff;
    font-size: 0.85em; font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step-pill-wrap {
    border: 1px solid #E2E8F0; border-radius: 999px; background: #fff;
    display: inline-block;
}
.step-arrow {
    flex: 1; height: 28px;
    display: flex; align-items: center;
    position: relative;
    margin-right: -32px;
}
.step-arrow::before {
    content: ''; position: absolute; left: 0; right: 0; top: 50%;
    border-top: 1px dashed #CBD5E1;
}
.step-arrow-circle {
    position: absolute; left: 50%; transform: translateX(-50%);
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.step-arrow-circle svg { width: 12px; height: 12px; }
.step-card { text-align: left; position: relative; }
.step-card h3 {
    font-size: 1.25em; font-weight: 800; margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
    letter-spacing: -0.3px;
}
.step-card p {
    font-size: 0.92em; color: var(--text-sub); line-height: 1.6;
    margin: 0 0 24px;
}
.step-visual {
    border-radius: 14px; padding: 18px;
    background: #fff;
    border: 1px solid #EEF2F7;
    box-shadow: 0 6px 20px rgba(15,23,42,0.04);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.step-card:hover .step-visual { transform: translateY(-4px); }

/* Step 1: Registration CTA mock */
.step1-input {
    background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px;
    padding: 9px 12px; font-size: 0.72em; color: #94A3B8;
    margin-bottom: 8px;
}
.step1-btn {
    background: var(--blue); color: #fff;
    font-size: 0.78em; font-weight: 700;
    padding: 11px; border-radius: 8px; text-align: center;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

/* Step 2: sidebar menu mock */
.step2-menu-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; font-size: 0.78em; font-weight: 600;
    color: #64748B; border-radius: 8px;
    margin-bottom: 4px;
}
.step2-menu-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; }
.step2-menu-item.active {
    color: var(--blue);
    background: linear-gradient(90deg, rgba(37,99,235,0.08), rgba(124,58,237,0.05));
    font-weight: 700;
    position: relative;
}
.step2-menu-item.active::before {
    content: ''; position: absolute;
    left: 0; top: 6px; bottom: 6px; width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--purple));
    border-radius: 2px;
}
.step2-menu-item.active svg { opacity: 1; color: var(--blue); }
.step2-badge {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    font-size: 0.7em; font-weight: 800;
    padding: 3px 8px; border-radius: 6px; margin-left: auto;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* Step 3: notification / signal card */
.step3-toast {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 4px;
}
.step3-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(5,150,105,0.12);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.step3-icon svg { width: 16px; height: 16px; }
.step3-toast-body { flex: 1; }
.step3-toast-title { font-size: 0.82em; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.step3-toast-text { font-size: 0.72em; color: var(--text-sub); line-height: 1.5; }
.step3-signal-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-top: 1px solid #F1F5F9;
    font-size: 0.72em; margin-top: 10px;
}
.step3-signal-row strong { color: var(--text); font-weight: 700; }
.step3-buy { background: rgba(5,150,105,0.12); color: var(--green); padding: 3px 8px; border-radius: 6px; font-weight: 700; }

/* ===== AUDIENCE ===== */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience-card {
    padding: 44px; background: #fff;
    border-radius: 20px; border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
}
.audience-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
}
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.1);
    border-color: transparent;
}
.aud-blue::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.aud-green::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.audience-icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px; margin-bottom: 24px;
    transition: transform 0.3s ease;
}
.audience-card:hover .audience-icon { transform: scale(1.1); }
.audience-icon svg { width: 28px; height: 28px; }
.ai-blue { background: var(--blue-light); color: var(--blue); }
.ai-green { background: var(--purple-light); color: var(--purple); }
.audience-card h3 { font-size: 1.2em; font-weight: 700; margin-bottom: 12px; }
.audience-card p { font-size: 0.92em; color: var(--text-sub); line-height: 1.7; margin: 0; }

/* ===== CTA ===== */
.cta-section {
    text-align: center; padding: 120px 0;
    position: relative; overflow: hidden;
}
.cta-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
}
.cta-blob-1 { width: 400px; height: 400px; background: rgba(37,99,235,0.06); top: -100px; left: -50px; }
.cta-blob-2 { width: 350px; height: 350px; background: rgba(124,58,237,0.05); bottom: -80px; right: -50px; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-desc { margin: 0 auto 40px; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff; text-decoration: none;
    font-size: 1.1em; font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 6px 28px rgba(37,99,235,0.3);
}
.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(37,99,235,0.4);
}
.cta-btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.cta-btn:hover svg { transform: translateX(4px); }

/* ===== FOOTER ===== */
.footer { background: #0F172A; padding: 48px 0 32px; color: rgba(255,255,255,0.45); font-size: 0.82em; line-height: 1.7; }
.footer-top {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
}
.footer-badges { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-badge {
    display: flex; align-items: center; justify-content: center;
    height: 52px; padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    background: rgba(255,255,255,0.03);
}
.footer-badge img, .footer-badge svg { height: 32px; width: auto; opacity: 0.7; }
.footer-badge-text { text-align: center; font-size: 0.72em; line-height: 1.2; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none;
    transition: all 0.2s;
}
.footer-socials a:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-logo { display: flex; align-items: center; margin-bottom: 28px; }
.footer-logo svg { height: 28px; width: auto; }
.disclaimer { margin-bottom: 28px; }
.disclaimer p { margin-bottom: 10px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header { padding: 0 20px; }
    .nav a:not(.nav-btn) { display: none; }
    .hero { padding: 120px 0 64px; }
    .hero-title { font-size: 2.4em; letter-spacing: -1px; }
    .hero-desc { font-size: 1em; }
    .section { padding: 72px 0; }
    .section-title { font-size: 2em; }
    .about-row { grid-template-columns: 1fr; gap: 40px; }
    .features-grid, .extras-grid, .audience-grid { grid-template-columns: 1fr; }
    .extra-card {
        padding: 18px 20px; gap: 14px;
        text-align: left; align-items: center;
    }
    .extra-icon { width: 44px; height: 44px; border-radius: 12px; }
    .extra-icon svg { width: 22px; height: 22px; }
    .extra-body h3 { font-size: 1em; margin-bottom: 4px; }
    .extra-body p { font-size: 0.85em; line-height: 1.5; }
    .steps-wrap { padding: 24px; }
    .steps-row { grid-template-columns: 1fr; gap: 40px; }
    .step-pill-row { display: none; }
    .mockup-body { grid-template-columns: 1fr; }
    .mockup-sidebar { display: none; }
    .footer-top { flex-direction: column; gap: 20px; align-items: flex-start; }
    .footer-badges { gap: 12px; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .ticker-bar { display: none; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .trust-card { padding: 20px; }
    .trust-card .tc-val { font-size: 1.5em; }
    .ps-grid { grid-template-columns: 1fr; }
    .compare-wrap { padding: 16px; background: transparent; border: 0; box-shadow: none; }
    .compare-wrap::before { display: none; }
    .compare-head { display: none; }
    .compare-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        margin-bottom: 12px;
        border-top: 0;
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    }
    .compare-row:first-of-type { padding-top: 0; }
    .compare-row:last-child { margin-bottom: 0; padding-bottom: 0; }
    .compare-arrow { display: none; }
    .compare-bad, .compare-good {
        padding: 12px 14px;
        font-size: 0.92em;
        gap: 10px;
    }
    .compare-bad {
        background: rgba(239,68,68,0.05);
        border-bottom: 1px solid var(--border);
    }
    .compare-bad .ci, .compare-good .ci {
        width: 24px; height: 24px; border-radius: 7px;
        font-size: 0.78em;
    }
    .hero-rating { font-size: 0.78em; padding: 6px 12px; }
    .hero-microproof { gap: 10px 16px; font-size: 0.82em; }
    .live-bubble { max-width: calc(100vw - 32px); left: 16px; bottom: 80px; }
    .sticky-cta { font-size: 0.88em; padding: 10px 14px 10px 16px; }
    .sticky-cta .sc-btn { padding: 8px 16px; }
}
