/* ==========================================
   STOCKALERT PREMIUM - AGGRESSIVE CTAs
   ========================================== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0f172a;
    --accent: #22c55e;
    --accent-red: #ef4444;
    --bg-dark: #030712;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-cta: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.15);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
    --shadow-cta: 0 0 40px rgba(34, 197, 94, 0.5);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Text Colors */
.text-red { color: var(--accent-red); }
.text-green { color: var(--accent); }
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   URGENCY BAR
   ========================================== */
.urgency-bar {
    background: linear-gradient(90deg, var(--accent-red) 0%, #dc2626 100%);
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}
.urgency-bar .container { display: flex; align-items: center; justify-content: center; gap: 10px; }
.urgency-pulse {
    width: 10px; height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* ==========================================
   BUTTONS - AGGRESSIVE
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-xl { padding: 22px 48px; font-size: 1.2rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 50px rgba(34, 197, 94, 0.6);
}

.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 50px rgba(34, 197, 94, 0.8), 0 0 80px rgba(34, 197, 94, 0.4); }
}

.btn-pulse {
    animation: glowPulse 2s ease-in-out infinite, buttonPulse 1s ease-in-out infinite;
}
@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glass);
}
.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent);
}

.btn svg { width: 20px; height: 20px; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 44px;
    left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s;
}
.navbar.scrolled {
    top: 0;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--text-primary);
    font-size: 1.5rem; font-weight: 800;
}
.logo-icon svg { width: 40px; height: 40px; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-actions .btn { padding: 12px 24px; font-size: 0.9rem; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); }

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 60px;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg,
        rgba(3,7,18,0.7) 0%,
        rgba(3,7,18,0.4) 30%,
        rgba(3,7,18,0.4) 70%,
        rgba(3,7,18,0.9) 100%);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}
.orb-1 {
    width: 600px; height: 600px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px; right: -200px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: rgba(34, 197, 94, 0.2);
    bottom: -100px; left: -100px;
    animation-delay: -10s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}
.grid-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Live Ticker */
.live-ticker {
    position: absolute;
    top: 100px;
    left: 0; right: 0;
    overflow: hidden;
    z-index: 5;
    background: rgba(0,0,0,0.3);
    padding: 10px 0;
}
.ticker-track {
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}
.ticker-item.green span { color: var(--accent); }
.ticker-item.red span { color: var(--accent-red); }

/* Floating Alerts */
.floating-alerts {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 6;
    pointer-events: none;
}
.float-alert {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatAlert 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.float-alert.alert-1 { top: 25%; left: 3%; animation-delay: 0s; }
.float-alert.alert-2 { top: 50%; right: 3%; animation-delay: -1.5s; }
.float-alert.alert-3 { top: 70%; left: 5%; animation-delay: -3s; }
@keyframes floatAlert {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.alert-icon { font-size: 1.5rem; }
.alert-content { display: flex; flex-direction: column; }
.alert-title { font-weight: 700; font-size: 0.8rem; color: var(--accent); }
.alert-text { font-size: 0.85rem; }

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.hero-content { max-width: 700px; }
.hero-badges { margin-bottom: 20px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
}
.badge-dot {
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}
.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-cta { margin-bottom: 40px; }
.cta-subtext {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}
.avatars {
    display: flex;
    align-items: center;
}
.avatars img {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    margin-left: -12px;
    object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.avatar-more {
    width: 44px; height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -12px;
}
.proof-text { display: flex; flex-direction: column; }
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 4px; }

/* Phone Mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-wrapper { position: relative; }
.phone-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
}
.phone-mockup {
    position: relative;
    width: 280px; height: 580px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}
.phone-notch {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}
.phone-screen {
    width: 100%; height: 100%;
    background: #128c7e;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 44px 14px 14px;
    background: #075e54;
}
.wa-back { color: white; font-size: 1.1rem; }
.wa-avatar {
    width: 36px; height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}
.wa-info { display: flex; flex-direction: column; }
.wa-name { font-weight: 600; font-size: 0.95rem; }
.wa-status { font-size: 0.7rem; opacity: 0.8; }
.whatsapp-chat {
    flex: 1;
    background: #ece5dd;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
}
.chat-message {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    line-height: 1.4;
    animation: messageIn 0.4s ease forwards;
    opacity: 0;
}
@keyframes messageIn {
    to { opacity: 1; transform: translateY(0); }
}
.chat-message.bot {
    align-self: flex-start;
    background: white;
    color: #1a1a1a;
    border-bottom-left-radius: 3px;
}
.chat-message.user {
    align-self: flex-end;
    background: #dcf8c6;
    color: #1a1a1a;
    border-bottom-right-radius: 3px;
}
.whatsapp-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #f0f0f0;
}
.wa-input-field {
    flex: 1;
    padding: 10px 14px;
    background: white;
    border-radius: 20px;
    color: #999;
    font-size: 0.8rem;
}
.wa-send {
    width: 40px; height: 40px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-send svg { width: 18px; height: 18px; fill: white; }

/* Stats Bar */
.stats-bar {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    z-index: 10;
}
.stats-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-suffix { font-size: 1.2rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border-subtle); }

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.05) 50%, transparent 100%);
}
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.section-tag.red {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--accent-red);
}
.section-tag.green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--accent);
}
.problem-content { text-align: center; }
.problem-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 50px;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.problem-card {
    background: var(--bg-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}
.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}
.problem-icon { font-size: 3rem; margin-bottom: 16px; }
.problem-card h4 { margin-bottom: 12px; font-size: 1.2rem; }
.problem-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.05) 50%, transparent 100%);
}
.solution-content { text-align: center; }
.solution-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}
.solution-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}
.solution-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}
.demo-phone {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.demo-phone img {
    width: 100%;
    display: block;
}
.demo-notification {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--radius-md);
    padding: 16px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: #1a1a1a;
    animation: notifBounce 2s ease-in-out infinite;
}
@keyframes notifBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}
.notif-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
}
.notif-body strong { display: block; margin-bottom: 4px; }
.notif-body p { font-size: 0.9rem; margin: 0; }
.solution-benefits { display: flex; flex-direction: column; gap: 24px; }
.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.benefit-check {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.benefit-item h4 { margin-bottom: 4px; }
.benefit-item p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
.solution-benefits .btn { margin-top: 16px; }

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}
.steps-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
}
.step-number {
    width: 60px; height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}
.step-image {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}
.step-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.step-card:hover .step-image img { transform: scale(1.05); }
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; }
.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    padding-top: 80px;
}
.steps-cta {
    text-align: center;
    margin-top: 50px;
}
.steps-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.feature-card.feature-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}
.feature-visual {
    position: relative;
    height: 100%;
    min-height: 280px;
}
.feature-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.feature-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--bg-dark) 100%);
}
.feature-card.feature-large .feature-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gradient-primary);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.feature-icon {
    width: 56px; height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.feature-icon.green { background: rgba(34, 197, 94, 0.1); }
.feature-icon.green svg { stroke: var(--accent); }
.feature-icon.orange { background: rgba(249, 115, 22, 0.1); }
.feature-icon.orange svg { stroke: #f97316; }
.feature-icon.purple { background: rgba(139, 92, 246, 0.1); }
.feature-icon.purple svg { stroke: #8b5cf6; }
.feature-icon.blue { background: rgba(59, 130, 246, 0.1); }
.feature-icon.blue svg { stroke: #3b82f6; }
.feature-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }
.feature-list {
    list-style: none;
    margin-top: 20px;
}
.feature-list li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.feature-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 80px 0;
}
.testimonials-swiper { padding: 20px 0 50px; }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    height: 100%;
}
.testimonial-rating { color: #fbbf24; font-size: 1.2rem; margin-bottom: 16px; }
.testimonial-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial-card p strong { color: var(--text-primary); }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong { display: block; margin-bottom: 4px; }
.testimonial-author span { color: var(--text-muted); font-size: 0.85rem; }
.swiper-pagination-bullet { background: var(--text-muted); opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--primary); opacity: 1; }

/* ==========================================
   PRICING
   ========================================== */
.pricing {
    padding: 80px 0;
    position: relative;
}
.pricing-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.pricing-gradient {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}
.pricing .container { position: relative; z-index: 1; }
.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 16px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px 0 40px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-card.popular {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.1) 0%, var(--bg-card) 100%);
    border-color: var(--accent);
    transform: scale(1.05);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cta);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-header { text-align: center; margin-bottom: 28px; }
.pricing-header h3 { color: var(--text-muted); margin-bottom: 12px; }
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.pricing-price .currency { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); }
.pricing-price .amount { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.pricing-price .period { color: var(--text-muted); }
.pricing-header p { color: var(--text-secondary); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--accent); font-weight: 700; }
.pricing-features .x { color: var(--text-muted); }
.pricing-features li.not-included { color: var(--text-muted); }
.pricing-features li.highlight { color: var(--accent); }
.pricing-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}
.guarantee-icon { font-size: 2.5rem; }
.pricing-guarantee strong { display: block; margin-bottom: 4px; color: var(--accent); }
.pricing-guarantee span { color: var(--text-secondary); font-size: 0.9rem; }

/* ==========================================
   FAQ
   ========================================== */
.faq { padding: 80px 0; }
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: var(--border-glass); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}
.faq-icon {
    width: 24px; height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-icon span {
    position: absolute;
    background: var(--text-secondary);
    transition: all 0.3s;
}
.faq-icon span:first-child {
    width: 100%; height: 2px;
    top: 50%; left: 0;
    transform: translateY(-50%);
}
.faq-icon span:last-child {
    width: 2px; height: 100%;
    left: 50%; top: 0;
    transform: translateX(-50%);
}
.faq-item.active .faq-icon span:last-child { opacity: 0; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.cta-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 30%, transparent 70%, var(--bg-dark) 100%);
}
.final-cta .container { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 800px; margin: 0 auto; }
.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}
.cta-content > p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 40px;
}
.cta-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-glass);
    border: 2px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s;
}
.phone-input-wrapper:focus-within { border-color: var(--accent); }
.phone-prefix {
    padding: 16px;
    color: var(--text-muted);
    font-weight: 600;
    border-right: 1px solid var(--border-subtle);
}
.phone-input {
    background: none;
    border: none;
    padding: 16px;
    color: var(--text-primary);
    font-size: 1rem;
    width: 180px;
    outline: none;
}
.cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 280px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-col h4 { margin-bottom: 16px; font-size: 0.95rem; }
.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.disclaimer { margin-top: 8px; font-size: 0.75rem !important; }

/* ==========================================
   MODAL
   ========================================== */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}
.modal-content {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s;
}
.modal.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-content h3 { margin-bottom: 8px; }
.modal-content > p { color: var(--text-secondary); margin-bottom: 24px; }
.modal-content .input-wrapper {
    display: flex;
    background: var(--bg-glass);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}
.modal-content .input-wrapper:focus-within { border-color: var(--accent); }
.modal-content .input-prefix {
    padding: 14px 16px;
    color: var(--text-muted);
    font-weight: 600;
    border-right: 1px solid var(--border-subtle);
}
.modal-content input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}
.modal-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-visual { display: none; }
    .floating-alerts { display: none; }
    .social-proof { justify-content: center; }
    .problem-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .solution-demo { grid-template-columns: 1fr; }
    .demo-phone { max-width: 400px; margin: 0 auto; }
    .solution-benefits { text-align: center; }
    .benefit-item { flex-direction: column; align-items: center; text-align: center; }
    .steps-horizontal { flex-direction: column; gap: 40px; }
    .step-arrow { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.feature-large { grid-column: span 1; grid-template-columns: 1fr; }
    .feature-visual { min-height: 200px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 50px auto 40px; }
    .pricing-card.popular { transform: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .urgency-bar { font-size: 0.8rem; padding: 10px 0; }
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 140px 0 80px; }
    .stats-bar .container { flex-wrap: wrap; gap: 30px; }
    .stat-divider { display: none; }
    .cta-form { flex-direction: column; align-items: center; }
    .phone-input-wrapper { width: 100%; max-width: 300px; }
    .phone-input { width: 100%; }
    .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing-gradient {
    display: none!important;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

