/* ===== CSS VARIABLES ===== */
:root {
    --bg: #050810;
    --surface: #0c1019;
    --surface-alt: #141924;
    --primary: #38bdf8;
    --secondary: #a855f7;
    --accent: #22c55e;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(56, 189, 248, 0.3);
    --gradient-primary: linear-gradient(135deg, #38bdf8 0%, #a855f7 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --shadow-btn: 0 8px 30px -4px rgba(56, 189, 248, 0.35), 0 4px 15px -4px rgba(168, 85, 247, 0.35);
    --shadow-card: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px -12px rgba(56, 189, 248, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* ===== TEXTURE OVERLAY ===== */
.texture-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(56, 189, 248, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 0%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== TOP BAR (URGENCY) ===== */
.top-bar {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.top-bar strong {
    color: var(--primary);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
    transition: padding 0.3s, background 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 8, 16, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon { font-size: 24px; }

.logo-text {
    color: white;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.logo-text .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-btn);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -4px rgba(56, 189, 248, 0.45), 0 8px 20px -4px rgba(168, 85, 247, 0.45);
}

.btn-primary.glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    filter: blur(16px);
    opacity: 0.35;
    z-index: -1;
    border-radius: inherit;
    transition: opacity 0.3s;
}

.btn-primary.glow:hover::after {
    opacity: 0.6;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 10px 20px;
}

.btn-ghost:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-mega {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.btn-wide {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -100px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: -100px;
    right: -150px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 560px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ===== HERO SHOWCASE CARD ===== */
.hero-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 36px;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.hero-card-header {
    margin-bottom: 28px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hero-stat {
    text-align: center;
    flex: 1;
}

.hero-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-device-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.device-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.proof-label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== PROBLEM / SOLUTION ===== */
.ps-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: var(--surface);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    overflow: hidden;
}

.ps-card {
    padding: 48px 40px;
}

.ps-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}

.ps-card.problem .ps-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.ps-card.solution .ps-icon {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.ps-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.ps-card ul { list-style: none; }

.ps-card li {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.ps-card.problem li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.ps-card.solution li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.ps-vs {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.ps-vs span {
    font-weight: 900;
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 1px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CHANNEL GRID ===== */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.channel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.4s ease;
}

.channel-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.channel-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.channel-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.channel-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.channel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.channel-tags span {
    padding: 4px 10px;
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

/* ===== DEVICES GRID ===== */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.device-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.device-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.device-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.device-card h4 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
}

.device-card p {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 500;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.04) 0%, var(--surface) 40%);
    transform: scale(1.04);
    z-index: 2;
    box-shadow: var(--shadow-card), 0 0 80px -20px rgba(56, 189, 248, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.pricing-card.best-value {
    border-color: rgba(168, 85, 247, 0.3);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.value-badge {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
}

.plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.plan-currency {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 8px;
}

.plan-amount {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
}

.plan-period {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 600;
    margin-left: 4px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.plan-desc strong {
    color: var(--accent);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.plan-features li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    margin-top: 32px;
    font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 320px;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding: 0 12px;
    opacity: 0.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
}

.testimonial-card.featured {
    border-color: rgba(56, 189, 248, 0.2);
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.03) 0%, var(--surface) 100%);
}

.stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.author .info {
    display: flex;
    flex-direction: column;
}

.author .info strong {
    font-size: 14px;
    font-weight: 700;
}

.author .info span {
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--surface);
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: rgba(56, 189, 248, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-dim);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0 120px;
}

.cta-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 80px 48px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px;
    font-size: 1rem;
    line-height: 1.7;
}

.cta-buttons {
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-trust span::before {
    content: '✓';
    background: var(--accent);
    color: white;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: #030509;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: white;
}

.footer-links a,
.footer-links p {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 12px;
    margin-top: 60px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 13px;
    box-shadow: var(--shadow-btn), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .channel-grid { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .ps-wrapper { grid-template-columns: 1fr; }
    .ps-vs {
        width: 100%;
        height: 48px;
        border: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .steps-grid { flex-direction: column; gap: 16px; }
    .step-connector { transform: rotate(90deg); padding: 8px 0; }
    .step-card { max-width: 100%; }

    .nav-links { display: none !important; }
    .nav-cta { display: none !important; }
    .mobile-toggle { display: none !important; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero { padding: 64px 0 48px; }
    .features-grid { grid-template-columns: 1fr; }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-items { gap: 24px; }
    .proof-divider { display: none; }
    .cta-box { padding: 48px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-mega { width: 100%; justify-content: center; }
    .nav-cta .btn-ghost { display: none; }
    .cta-trust { flex-direction: column; align-items: center; gap: 12px; }
    .hero-stats-row { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.channel-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.channel-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.channel-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Smooth scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-alt); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }
