/* ═══════════════════════════════════════════════════════════
   VORAX — Ultra-Premium Landing Page
   ═══════════════════════════════════════════════════════════ */

:root {
    --primary:        #0EDAB9;
    --primary-dark:   #0aba9d;
    --primary-glow:   rgba(14,218,185,0.35);
    --bg:             #06080d;
    --bg-card:        rgba(255,255,255,0.025);
    --bg-card-hover:  rgba(255,255,255,0.045);
    --text:           #FFFFFF;
    --text-muted:     #8b96a8;
    --border:         rgba(255,255,255,0.06);
    --border-accent:  rgba(14,218,185,0.35);
    --radius:         20px;
    --font:           'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3 { font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h1 { font-size: clamp(3rem, 6vw, 4.6rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #fff; }
p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

/* ── Background ─────────────────────────────────────────────── */
.bg-noise {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.bg-grid {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ── Animations ─────────────────────────────────────────────── */
.animate-up {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-up.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes float  { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(1deg)} }
@keyframes float2 { 0%,100%{transform:translateY(-6px) rotate(-1deg)} 50%{transform:translateY(6px) rotate(1deg)} }
@keyframes float3 { 0%,100%{transform:translateY(4px)} 50%{transform:translateY(-8px)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes progress { 0%{width:30%} 40%{width:65%} 70%{width:65%} 100%{width:90%} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes gradMove { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    padding: 14px 28px; border-radius: 12px; font-weight: 700;
    text-decoration: none; transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer; border: 1px solid transparent; font-size: 1rem;
    position: relative; overflow: hidden; letter-spacing: -0.01em;
    font-family: var(--font);
}
.btn::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
    opacity:0; transition: opacity .25s;
}
.btn:hover::after { opacity:1; }
.btn-primary { background: var(--primary); color: #000; box-shadow: 0 4px 24px var(--primary-glow); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 36px var(--primary-glow); }
.btn-outline  { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.12); }
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.btn-ghost    { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn-large    { padding: 18px 38px; font-size: 1.1rem; border-radius: 14px; }
.btn-block    { width: 100%; margin-top: 16px; }
.btn-outline-teal { background: transparent; color: var(--primary); border-color: rgba(14,218,185,0.25); }
.btn-outline-teal:hover { background: rgba(14,218,185,0.08); border-color: var(--primary); }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(6,8,13,0.5); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
}
.navbar.scrolled { background: rgba(6,8,13,0.92); box-shadow: 0 4px 40px rgba(0,0,0,0.6); border-bottom-color: rgba(255,255,255,0.07); }
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.03em; color: var(--text); text-decoration: none; }
.logo-img { width: 32px; height: 32px; object-fit: contain; border-radius: 8px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.93rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nav-mobile { display: none; flex-direction: column; padding: 20px 24px; border-top: 1px solid var(--border); gap: 16px; background: var(--bg); }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-size: 1.05rem; font-weight: 500; }
.nav-mobile.open { display: flex; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    padding: 200px 0 80px;
    position: relative; overflow: hidden;
}
.hero-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(120px); z-index: -1;
}
.hero-orb-1 { width: 700px; height: 700px; background: rgba(14,218,185,0.12); top: -200px; left: -200px; }
.hero-orb-2 { width: 500px; height: 500px; background: rgba(139,92,246,0.08); top: -100px; right: -150px; }
.hero-content { display: flex; align-items: center; gap: 72px; margin-bottom: 80px; }
.hero-text { flex: 1.05; }

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 60%, #a78bfa 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gradMove 6s ease infinite;
}
.badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px; background: rgba(14,218,185,0.07);
    border: 1px solid rgba(14,218,185,0.2); border-radius: 100px;
    font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.badge-dot { width: 7px; height: 7px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px var(--primary); }

.hero-sub { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 0; max-width: 540px; }
.hero-buttons { display: flex; align-items: center; gap: 14px; margin: 36px 0 40px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.trust-avatars { display: flex; }
.avatar {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg);
    margin-left: -8px; background-size: cover; background-position: center;
}
.avatar:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg,#0edab9,#0ab8a0); }
.av-2 { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.av-3 { background: linear-gradient(135deg,#f97316,#ea580c); }
.av-4 { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.av-5 { background: linear-gradient(135deg,#ec4899,#be185d); }
.trust-text { font-size: 0.9rem; color: var(--text-muted); }
.trust-text strong { color: var(--text); }
.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 2px; }

/* Hero Visual */
.hero-visual { flex: 1; position: relative; min-height: 460px; }
.float-card {
    position: absolute; background: rgba(15,20,32,0.92); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
    padding: 12px 16px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    white-space: nowrap; z-index: 20;
}
.float-card-1 { top: 10px; left: -40px; animation: float 5s ease-in-out infinite; }
.float-card-2 { bottom: 80px; left: -20px; animation: float2 6s ease-in-out infinite; }
.float-card-3 { top: 50%; right: -30px; transform: translateY(-50%); animation: float3 4.5s ease-in-out infinite; }
.animate-float  { animation: float  5s ease-in-out infinite; }
.animate-float-2{ animation: float2 6s ease-in-out infinite; }
.animate-float-3{ animation: float3 4.5s ease-in-out infinite; }
.fc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; flex-shrink: 0; }
.fc-green { background: rgba(14,218,185,0.15); color: var(--primary); }
.fc-teal  { background: rgba(139,92,246,0.15); color: #a78bfa; }
.fc-pink  { background: rgba(249,115,22,0.15); color: #fb923c; }
.fc-title { font-size: 12px; font-weight: 700; color: #fff; }
.fc-sub   { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.mockup-wrapper { position: relative; z-index: 10; margin: 0 auto; }
.mockup-glow {
    position: absolute; inset: -60px;
    background: radial-gradient(ellipse at 50% 50%, rgba(14,218,185,0.18), transparent 60%);
    pointer-events: none; z-index: -1;
}
.mockup-window {
    background: rgba(12,16,26,0.9); backdrop-filter: blur(30px); border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 100px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
    overflow: hidden;
}
.mockup-window:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.mockup-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(0,0,0,0.25); border-bottom: 1px solid rgba(255,255,255,0.04); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red    { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #27c93f; }
.mockup-url { flex: 1; font-size: 10px; color: var(--text-muted); margin-left: 10px; text-align: center; background: rgba(255,255,255,0.04); padding: 3px 10px; border-radius: 6px; }
.panel-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.panel-logo { display: flex; align-items: center; gap: 6px; font-weight: 900; font-size: 12px; color: #fff; }
.panel-logo svg { color: var(--primary); }
.panel-tabs { display: flex; gap: 4px; }
.tab { font-size: 9px; font-weight: 600; padding: 4px 10px; border-radius: 6px; color: var(--text-muted); }
.tab.active { background: rgba(14,218,185,0.12); color: var(--primary); }
.panel-toolbar { display: flex; gap: 8px; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.toolbar-select { font-size: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #fff; padding: 6px 10px; border-radius: 6px; flex: 1; }
.toolbar-btn { font-size: 10px; background: var(--primary); color: #000; font-weight: 800; padding: 6px 14px; border-radius: 6px; }
.panel-items { padding: 10px 16px; display: flex; flex-direction: column; gap: 7px; }
.p-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 8px; padding: 9px 10px; }
.p-item.selected { border-color: rgba(14,218,185,0.2); background: rgba(14,218,185,0.03); }
.p-check { width: 14px; height: 14px; background: var(--primary); border-radius: 3px; font-size: 9px; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 900; flex-shrink:0; }
.p-check-empty { width: 14px; height: 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; flex-shrink:0; }
.p-img { width: 30px; height: 30px; border-radius: 5px; background: #1e293b; background-size: cover; background-position: center; flex-shrink:0; }
.p-info { flex: 1; }
.p-name  { font-size: 11px; font-weight: 700; color: #fff; }
.p-price { font-size: 10px; color: var(--text-muted); }
.p-status { font-size: 9px; font-weight: 700; border-radius: 5px; padding: 3px 7px; white-space: nowrap; flex-shrink:0; }
.p-status.republished { background: rgba(14,218,185,0.12); color: var(--primary); }
.p-status.loading     { background: rgba(251,191,36,0.12); color: #fbbf24; }
.p-status.pending     { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.panel-progress { padding: 10px 16px 0; }
.prog-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; background: var(--primary); border-radius: 3px; width: 66%; animation: progress 4s ease-in-out infinite; }
.prog-label { font-size: 9px; color: var(--text-muted); display: block; margin-top: 5px; }
.panel-footer { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.04); margin-top: 10px; }
.quota-badge { font-size: 9px; font-weight: 700; color: #fff; background: rgba(14,218,185,0.12); padding: 4px 8px; border-radius: 5px; border: 1px solid rgba(14,218,185,0.2); }
.panel-user  { font-size: 9px; color: var(--text-muted); }

/* Stats bar */
.hero-stats-bar {
    display: flex; align-items: center; justify-content: center; gap: 0;
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
    border-radius: 20px; padding: 24px 40px; margin-bottom: 0;
    flex-wrap: wrap;
}
.hstat { text-align: center; padding: 0 40px; }
.hstat-num { display: block; font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; letter-spacing: -0.04em; }
.hstat span  { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.hstat-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.08); }

/* ── Compat Strip ────────────────────────────────────────────── */
.compat-strip { padding: 40px 0; border-top: 1px solid var(--border); background: rgba(255,255,255,0.01); }
.compat-label { text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 20px; }
.compat-logos { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.compat-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.3); transition: color .3s; }
.compat-item:hover { color: rgba(255,255,255,0.8); }

/* ── Section common ─────────────────────────────────────────── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-header p { margin-top: 16px; font-size: 1.1rem; }
.section-tag {
    display: inline-block; padding: 6px 16px;
    background: rgba(14,218,185,0.07); border: 1px solid rgba(14,218,185,0.2);
    border-radius: 100px; font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--primary); margin-bottom: 20px;
}

/* ── Features ───────────────────────────────────────────────── */
.features { padding: 160px 0; position: relative; }

.features-tabs {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 40px;
}
.ftab {
    padding: 10px 20px; border-radius: 10px; font-size: 0.88rem; font-weight: 600;
    cursor: pointer; border: 1px solid var(--border); color: var(--text-muted);
    background: transparent; transition: all .25s; white-space: nowrap;
}
.ftab:hover { border-color: rgba(14,218,185,0.3); color: var(--text); }
.ftab.active { background: rgba(14,218,185,0.1); border-color: rgba(14,218,185,0.4); color: var(--primary); }

.features-showcase { position: relative; min-height: 400px; }
.fshow { display: none; gap: 72px; align-items: center; }
.fshow.active { display: flex; }
.fshow-text { flex: 1; }
.fshow-tag { display: inline-block; padding: 4px 12px; background: rgba(14,218,185,0.08); border: 1px solid rgba(14,218,185,0.2); border-radius: 8px; font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.fshow-text h3 { font-size: 2rem; margin-bottom: 16px; }
.fshow-text p  { font-size: 1.05rem; margin-bottom: 28px; }
.fshow-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.fshow-bullets li { font-size: 0.97rem; color: #c0ccd8; }
.fshow-stat { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: rgba(14,218,185,0.07); border: 1px solid rgba(14,218,185,0.2); border-radius: 12px; font-size: 0.9rem; color: var(--text-muted); }
.fshow-stat strong { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.fshow-mock { flex: 1; }

.fmock-window {
    background: rgba(10,14,22,0.95); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.fmock-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: rgba(0,0,0,0.2); border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 11px; font-weight: 600; color: #fff; }
.fmock-btn { background: var(--primary); color: #000; border: none; border-radius: 6px; padding: 5px 12px; font-size: 10px; font-weight: 800; cursor: pointer; }
.fmock-rows { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.fmock-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; background: rgba(255,255,255,0.02); font-size: 11px; color: var(--text-muted); }
.fmock-row.done   { background: rgba(14,218,185,0.05); color: #c0ccd8; }
.fmock-row.active { background: rgba(251,191,36,0.06); color: #c0ccd8; }
.fmock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink:0; }
.fmock-dot.done { background: var(--primary); }
.fmock-dot.anim { background: #fbbf24; animation: blink 1s ease-in-out infinite; }
.fmock-dot.idle { background: rgba(255,255,255,0.2); }
.fmock-badge { margin-left: auto; padding: 3px 8px; border-radius: 5px; font-size: 9px; font-weight: 700; white-space: nowrap; }
.fmock-badge.green { background: rgba(14,218,185,0.15); color: var(--primary); }
.fmock-badge.yellow{ background: rgba(251,191,36,0.15); color: #fbbf24; }
.fmock-badge.gray  { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.fmock-badge.red   { background: rgba(255,71,87,0.15); color: #ff4757; }
.fmock-footer { padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 10px; color: var(--text-muted); }
.fmock-conv { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.fmock-msg { display: flex; align-items: flex-end; gap: 8px; }
.fmock-msg.sent { flex-direction: row-reverse; }
.fmock-avatar { width: 26px; height: 26px; border-radius: 50%; background: rgba(14,218,185,0.2); flex-shrink: 0; }
.av-you { background: rgba(139,92,246,0.3); }
.fmock-bubble { max-width: 70%; padding: 8px 12px; border-radius: 10px; font-size: 10px; color: #c0ccd8; line-height: 1.5; background: rgba(255,255,255,0.06); }
.fmock-bubble.sent { background: rgba(14,218,185,0.12); }
.fmock-drop { text-align: center; padding: 20px; border: 1px dashed rgba(255,255,255,0.15); border-radius: 10px; color: var(--text-muted); font-size: 11px; }

/* ── How it works ───────────────────────────────────────────── */
.how-it-works { padding: 140px 0; border-top: 1px solid var(--border); position: relative; }
.how-it-works::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at 50% 100%, rgba(14,218,185,0.04), transparent 60%);
    pointer-events:none;
}
.steps-grid { display: flex; align-items: flex-start; gap: 0; margin-top: 64px; }
.step { flex: 1; padding: 48px 40px; text-align: center; }
.step-arrow { font-size: 1.8rem; color: rgba(255,255,255,0.15); display: flex; align-items: center; padding-top: 40px; }
.step-number {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
    background: rgba(14,218,185,0.1); border: 1px solid rgba(14,218,185,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 900; color: var(--primary);
}
.step-icon { font-size: 2.5rem; margin-bottom: 20px; }
.step h3 { font-size: 1.3rem; margin-bottom: 12px; }
.step p { font-size: 0.97rem; max-width: 280px; margin: 0 auto; }

/* ── Comparison ─────────────────────────────────────────────── */
.comparison { padding: 100px 0; }
.comparison-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
    border-radius: 28px; overflow: hidden;
}
.comp-col { padding: 48px 48px; }
.comp-before { background: rgba(255,71,87,0.03); }
.comp-after  { background: rgba(14,218,185,0.04); border-left: 1px solid rgba(14,218,185,0.1); }
.comp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.comp-icon   { font-size: 2rem; }
.comp-header h3 { font-size: 1.5rem; }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comp-list li { font-size: 0.97rem; }
.comp-bad  { color: rgba(255,255,255,0.4); }
.comp-good { color: #c0ccd8; }
.comp-good::before { display:none; }
.comp-divider { display: flex; align-items: center; justify-content: center; padding: 0 24px; background: rgba(255,255,255,0.01); border-left: 1px solid var(--border); border-right: 1px solid rgba(14,218,185,0.1); }
.comp-vs {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--bg); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 900; color: var(--text-muted);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { padding: 140px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
.testi-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
    transition: all .4s cubic-bezier(0.16,1,0.3,1);
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.featured-testi {
    border-color: rgba(14,218,185,0.3);
    background: linear-gradient(160deg, rgba(14,218,185,0.07) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.featured-testi:hover { border-color: rgba(14,218,185,0.5); }
.testi-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; }
.testi-card p { font-size: 0.97rem; color: #b0bcc9; line-height: 1.7; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; color: #fff; flex-shrink:0; }
.testi-name { font-weight: 700; font-size: 0.93rem; color: #fff; }
.testi-role { font-size: 0.83rem; color: var(--text-muted); margin-top: 2px; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing { padding: 140px 0; border-top: 1px solid var(--border); }
.pricing-grid-4 {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: 56px;
}
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 24px; padding: 44px 32px;
    display: flex; flex-direction: column;
    transition: transform .4s, box-shadow .4s, border-color .3s;
    position: relative;
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.12); }
.pricing-card.featured {
    border-color: rgba(14,218,185,0.4);
    background: linear-gradient(180deg, rgba(14,218,185,0.08) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(14,218,185,0.15);
}
.pricing-card.featured:hover { border-color: var(--primary); box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 40px rgba(14,218,185,0.1); }
.vip-card { border-color: rgba(252,165,165,0.2); background: linear-gradient(180deg, rgba(252,165,165,0.05) 0%, rgba(255,255,255,0.02) 100%); }
.vip-card:hover { border-color: rgba(252,165,165,0.4); }
.plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    font-size: 11px; font-weight: 900; background: var(--primary); color: #000;
    padding: 6px 18px; border-radius: 100px; text-transform: uppercase;
    letter-spacing: .06em; box-shadow: 0 4px 20px var(--primary-glow); white-space: nowrap;
}
.plan-name  { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.vip-name   { color: #fca5a5; }
.plan-price { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 10px; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.vip-price  { color: #fca5a5; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.plan-desc  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; flex: 0; min-height: 44px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; flex: 1; }
.plan-features li { font-size: 0.92rem; color: #b0bcc9; display: flex; align-items: flex-start; gap: 8px; }
.plan-features li::before { content:'✓'; color: var(--primary); font-weight: 900; flex-shrink:0; }
.plan-features li.plan-no { opacity: .4; }
.plan-features li.plan-no::before { content:'✕'; color: var(--text-muted); }
.plan-features li strong { color: #fff; }
.vip-li { color: #fca5a5 !important; }
.vip-li::before { color: #fca5a5 !important; }
.vip-btn { background: transparent; color: #fca5a5; border-color: rgba(252,165,165,0.25); }
.vip-btn:hover { background: rgba(252,165,165,0.08); border-color: rgba(252,165,165,0.5); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 0.88rem; color: var(--text-muted); padding: 16px; background: rgba(255,255,255,0.02); border-radius: 12px; border: 1px solid var(--border); }

/* ── Install ─────────────────────────────────────────────────── */
.install-section { padding: 120px 0; }
.install-card {
    background: rgba(12,16,26,0.5); backdrop-filter: blur(30px);
    border: 1px solid var(--border); border-radius: 32px; padding: 72px;
    display: flex; gap: 80px; align-items: center;
    position: relative; overflow: hidden;
}
.install-bg-orb {
    position: absolute; bottom: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,218,185,0.12), transparent 70%);
    pointer-events: none;
}
.install-left { flex: 1; position: relative; z-index: 1; }
.install-left h2 { font-size: 2.6rem; margin-bottom: 44px; }
.install-steps { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.install-steps li { display: flex; gap: 18px; align-items: flex-start; }
.install-num { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #000; font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 18px var(--primary-glow); }
.install-steps strong { color: #fff; display: block; margin-bottom: 5px; font-size: 1.05rem; }
.install-steps p { font-size: 0.93rem; margin: 0; }
.install-right { flex: 1; position: relative; z-index: 1; }
.chrome-badge-large { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 24px 28px; margin-bottom: 20px; }
.cbl-icon { flex-shrink:0; }
.cbl-title  { font-weight: 800; font-size: 1.05rem; color: #fff; margin-bottom: 4px; }
.cbl-sub    { font-size: 0.88rem; color: var(--primary); font-weight: 600; }
.cbl-rating { font-size: 0.83rem; color: #fbbf24; margin-top: 4px; }
.cbl-rating span { color: var(--text-muted); }
.install-cta { font-size: 1.1rem; padding: 20px; }
.install-note { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: 120px 0; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .3s; }
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item.open { border-color: rgba(14,218,185,0.25); }
.faq-question {
    width: 100%; text-align: left; padding: 22px 28px;
    background: transparent; border: none; color: #fff;
    font-family: var(--font); font-size: 1.05rem; font-weight: 600;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question::after { content:'+'; font-size: 1.5rem; color: var(--primary); transition: transform .3s; font-weight: 400; flex-shrink:0; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 28px 28px; font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA Final ───────────────────────────────────────────────── */
.cta-final { padding: 120px 0 140px; }
.cta-card {
    position: relative; border-radius: 36px; overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(14,218,185,0.12), rgba(6,8,13,0) 60%),
                linear-gradient(180deg, rgba(14,218,185,0.06) 0%, rgba(6,8,13,0) 100%);
    border: 1px solid rgba(14,218,185,0.25);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.cta-orb { position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; }
.cta-orb-1 { width:400px; height:400px; background:rgba(14,218,185,0.15); top:-100px; left:-100px; }
.cta-orb-2 { width:300px; height:300px; background:rgba(139,92,246,0.1); bottom:-80px; right:-80px; }
.cta-content { position: relative; z-index: 1; text-align: center; padding: 100px 40px; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,218,185,0.1); border: 1px solid rgba(14,218,185,0.25); border-radius: 100px; padding: 8px 20px; font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 28px; }
.cta-card h2 { font-size: clamp(2.2rem,4vw,3.5rem); margin-bottom: 20px; }
.cta-card p  { font-size: 1.15rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-guarantees { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 0.87rem; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { padding: 72px 0 36px; border-top: 1px solid var(--border); background: #05070b; }
.footer-content { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 56px; }
.f-brand { max-width: 280px; }
.f-brand p { font-size: 0.88rem; margin-top: 14px; }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .2s; text-decoration: none; }
.f-social-btn:hover { background: rgba(88,101,242,0.15); border-color: rgba(88,101,242,0.4); color: #7289da; }
.f-links-group { display: flex; flex-direction: column; gap: 12px; }
.f-links-title { font-size: 12px; color: #fff; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
.f-links-group a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.f-links-group a:hover { color: var(--primary); }
.f-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.f-copy { font-size: 0.82rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-content { gap: 40px; }
    .testi-grid   { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .comparison-grid { grid-template-columns: 1fr; }
    .comp-divider { padding: 16px; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .comp-vs { width: 44px; height: 44px; }
    .comp-after { border-left: none; border-top: 1px solid rgba(14,218,185,0.1); }
}
@media (max-width: 960px) {
    .nav-links, .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
    .hero { padding: 160px 0 80px; }
    .hero-content { flex-direction: column; text-align: center; gap: 60px; }
    .hero-sub, .hero-buttons, .hero-trust { justify-content: center; }
    .hero-text { order: 1; }
    .hero-visual { order: 2; width: 100%; }
    .float-card-1, .float-card-2, .float-card-3 { display: none; }
    .hero-stats-bar { gap: 20px; }
    .hstat { padding: 0 20px; }
    .fshow.active { flex-direction: column; gap: 40px; }
    .steps-grid { flex-direction: column; gap: 0; }
    .step-arrow { display: none; }
    .step { padding: 32px 24px; }
    .install-card { flex-direction: column; padding: 48px 32px; gap: 48px; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.6rem; }
    .testi-grid { grid-template-columns: 1fr; }
    .pricing-grid-4 { grid-template-columns: 1fr; max-width: 440px; margin: 56px auto 0; }
    .hero-stats-bar { flex-direction: column; gap: 24px; padding: 28px; }
    .hstat-sep { width: 40px; height: 1px; }
    .features-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; flex-wrap: nowrap; }
    .comp-col { padding: 32px 24px; }
    .footer-content { flex-direction: column; }
    .f-bottom { flex-direction: column; text-align: center; }
    .cta-content { padding: 64px 24px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-stats-bar { border-radius: 16px; }
    .install-card { padding: 32px 20px; }
    .fshow-text h3 { font-size: 1.6rem; }
}
