/* ========================================
   CSS Variables & Reset
   MIDNIGHT CORAL - Bold Modern Theme
   ======================================== */
:root {
    color-scheme: dark;

    /* Core Colors - Deep Midnight Blues */
    --bg-primary: #0D1117;
    --bg-secondary: #161B22;
    --bg-tertiary: #1C2128;
    --bg-card: rgba(22, 27, 34, 0.95);
    --bg-glass: rgba(13, 17, 23, 0.9);
    --bg-elevated: #21262D;
    
    /* Electric Coral Accent */
    --coral: #FF6B6B;
    --coral-light: #FF8E8E;
    --coral-dark: #E85555;
    --coral-glow: rgba(255, 107, 107, 0.4);
    
    /* Secondary Accents */
    --electric-blue: #58A6FF;
    --mint: #7EE787;
    --purple: #A371F7;
    --amber: #F0883E;
    --pink: #FF7EB6;
    
    /* Gradient Magic */
    --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 50%, #FF6B6B 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6B6B 0%, #A371F7 100%);
    --gradient-ocean: linear-gradient(135deg, #58A6FF 0%, #7EE787 100%);
    
    /* Legacy color mappings */
    --gold: #FF6B6B;
    --gold-light: #FF8E8E;
    --gold-dark: #E85555;
    --gold-gradient: var(--gradient-coral);
    --gold-glow: var(--coral-glow);
    --gold-subtle: rgba(255, 107, 107, 0.05);
    --neon-cyan: #58A6FF;
    --neon-magenta: #FF7EB6;
    --neon-green: #7EE787;
    --neon-purple: #A371F7;
    
    /* Glass Effects */
    --glass-bg: rgba(22, 27, 34, 0.85);
    --glass-bg-strong: rgba(28, 33, 40, 0.95);
    --glass-border: rgba(255, 107, 107, 0.1);
    --glass-border-hover: rgba(255, 107, 107, 0.3);
    
    /* Text */
    --text-primary: #F0F6FC;
    --text-secondary: rgba(240, 246, 252, 0.7);
    --text-muted: rgba(240, 246, 252, 0.4);
    
    /* Borders */
    --border-subtle: rgba(240, 246, 252, 0.06);
    --border-gold: rgba(255, 107, 107, 0.2);
    
    /* Shadows */
    --shadow-gold: 0 4px 30px rgba(255, 107, 107, 0.15);
    --shadow-gold-lg: 0 8px 50px rgba(255, 107, 107, 0.25);
    --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-deep: 0 32px 64px rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 40px rgba(255, 107, 107, 0.3);
    --glow-cyan: 0 0 30px rgba(88, 166, 255, 0.25);
    --glow-magenta: 0 0 30px rgba(255, 126, 182, 0.25);
    --glow-green: 0 0 30px rgba(126, 231, 135, 0.25);
    
    /* Typography */
    --font-display: 'DM Sans', 'Inter', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 48px;
    --space-2xl: 80px;
    --space-3xl: 120px;
    
    /* Radius - Rounded Modern */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 107, 107, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(88, 166, 255, 0.06), transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(163, 113, 247, 0.05), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Performance: Optimize paint/composite layers */
.header, .hero, .promo-banner, .chat-widget {
    will-change: transform;
    contain: layout style;
}

/* Performance: Hide heavy animations until page loads */
.lazy-bg {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.lazy-bg.visible {
    opacity: 1;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .bg-mesh, .bg-gradient-sphere, .bg-grid-animated {
        display: none !important;
    }
}

/* Scanline Effect - Cyberpunk (disabled on low-end devices) */
@media (min-width: 768px) and (hover: hover) {
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.08) 2px,
            rgba(0, 0, 0, 0.08) 4px
        );
        pointer-events: none;
        z-index: 9999;
        opacity: 0.2;
    }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* ========================================
   Animated Backgrounds - Cyberpunk Grid
   Performance optimized with GPU acceleration
   ======================================== */
.bg-mesh {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 60% at 0% 0%, rgba(255, 107, 107, 0.12), transparent 50%),
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(88, 166, 255, 0.10), transparent 45%);
    pointer-events: none;
    z-index: -5;
    transform: translateZ(0);
}

/* Disabled grid animation for performance */
.bg-grid-animated {
    display: none;
}

.bg-gradient-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -3;
    transform: translateZ(0);
}

.sphere-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    animation: sphere1Float 30s ease-in-out infinite;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.12) 0%, transparent 70%);
    animation: sphere2Float 35s ease-in-out infinite;
}

/* Removed sphere-3 for performance */
.sphere-3 {
    display: none;
}

@keyframes sphere1Float {
    0%, 100% { transform: translateZ(0) translate(0, 0); }
    50% { transform: translateZ(0) translate(-50px, 50px); }
}

@keyframes sphere2Float {
    0%, 100% { transform: translateZ(0) translate(0, 0); }
    50% { transform: translateZ(0) translate(40px, -40px); }
}

/* Removed noise texture for performance */
.bg-noise {
    display: none;
}

.particles-container {
    display: none;
}

/* Cursor effects disabled for performance */
.cursor-glow {
    display: none;
}

/* Spotlight disabled for performance */
.spotlight {
    display: none;
}
        radial-gradient(
            650px circle at var(--mx, 50vw) var(--my, 40vh),
            rgba(255, 215, 0, 0.14) 0%,
            rgba(255, 215, 0, 0.06) 22%,
            rgba(0, 0, 0, 0) 62%
        ),
        radial-gradient(
            900px circle at calc(var(--mx, 50vw) + 180px) calc(var(--my, 40vh) - 120px),
            rgba(255, 165, 0, 0.08) 0%,
            rgba(0, 0, 0, 0) 60%
        );
    mix-blend-mode: screen;
    filter: blur(0.25px);
}

.spotlight.active { opacity: 1; }

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    z-index: 10000;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.0), rgba(255, 215, 0, 0.95), rgba(255, 165, 0, 0.85));
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particles-container { display: none; }
    .cursor-glow,
    .spotlight {
        opacity: 0 !important;
    }
}

/* ========================================
   Layout
   ======================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ========================================
   Typography
   ======================================== */
.gold-gradient-text {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 30%, #FF6B6B 50%, #A371F7 70%, #FF6B6B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: var(--space-lg);
    padding: 10px 20px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ========================================
   Buttons - Elegant Luxury
   ======================================== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 2;
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    border: none;
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
}

.btn-primary:hover .btn-glow {
    opacity: 0.6;
}

.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: btnShine 5s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    15%, 100% { left: 100%; }
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: var(--coral);
    color: var(--coral);
}

.play-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    font-size: 0.6rem;
    color: var(--coral);
}

.btn-lg {
    padding: 20px 44px;
    font-size: 0.85rem;
}

.btn-xl {
    padding: 24px 52px;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

.btn-block { width: 100%; }

/* Magnetic Effect */
.magnetic {
    transition: transform 0.2s ease-out;
}

/* ========================================
   Header - Elegant Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
    padding: var(--space-md) 0;
}

/* Subtle coral accent when scrolled */
.header.scrolled::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 107, 107, 0.3) 30%,
        rgba(255, 107, 107, 0.3) 70%,
        transparent 100%);
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
}

.pulse-glow {
    animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 107, 107, 0.2)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.4)); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition-base);
}

.nav-link:hover { color: var(--coral); }
.nav-link:hover::after { width: 100%; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    flex: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: var(--space-xl);
    padding: 12px 24px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: blink 2.5s infinite;
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.6);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.word-reveal {
    display: inline-block;
    opacity: 1;
}

.word-reveal.emphasis {
    color: var(--coral);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 520px;
    letter-spacing: 0.01em;
    line-height: 1.75;
}

.cursor {
    animation: cursorBlink 1s infinite;
    color: var(--coral);
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-ctas {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -14px;
    border: 3px solid var(--bg-primary);
    animation: avatarPop 0.5s var(--ease-out-back) forwards;
    opacity: 0;
    transform: scale(0);
    animation-delay: calc(var(--delay) * 0.1s + 0.5s);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.25);
}

.avatar:first-child { margin-left: 0; }

.avatar span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

@keyframes avatarPop {
    to { opacity: 1; transform: scale(1); }
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rating { font-size: 0.85rem; letter-spacing: 2px; }

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-phone {
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), transparent 50%);
    border-radius: 50px;
    filter: blur(20px);
}

.phone-frame {
    width: 280px;
    background: linear-gradient(145deg, #1C2128, #0D1117);
    border-radius: 44px;
    padding: 12px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 
        0 4px 30px rgba(255, 107, 107, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 100px;
    height: 26px;
    background: #000;
    border-radius: 0 0 18px 18px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    min-height: 480px;
}

.phone-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(255, 107, 107, 0.25), transparent 70%);
    filter: blur(10px);
}

/* Phone Demo UI */
.phone-demo { padding: var(--space-md); }

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.signal-bars span {
    width: 3px;
    background: var(--text-secondary);
    border-radius: 1px;
}

.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 6px; }
.signal-bars span:nth-child(3) { height: 8px; }
.signal-bars span:nth-child(4) { height: 10px; }

.call-interface {
    text-align: center;
    padding: var(--space-lg) 0;
}

.caller-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, #FF6B6B 0%, #A371F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
}

.caller-avatar.pulse::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--coral);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.ring-animation {
    position: absolute;
    inset: 0;
    border: 2px solid var(--coral);
    border-radius: 50%;
    animation: pulseRing 2s infinite 0.5s;
}

.caller-details { margin-bottom: var(--space-md); }

.call-label {
    display: block;
    font-size: 0.75rem;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.caller-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
}

.ai-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: #00ff88;
    margin-bottom: var(--space-md);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.conversation-preview {
    padding: var(--space-md);
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.message {
    text-align: left;
}

.message-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
}

.voice-wave span {
    width: 3px;
    background: var(--coral);
    border-radius: 2px;
    animation: voiceWave 1s infinite;
}

.voice-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.voice-wave span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.voice-wave span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.voice-wave span:nth-child(5) { height: 10px; animation-delay: 0.4s; }

@keyframes voiceWave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.booking-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-lg);
    color: #00ff88;
    font-weight: 600;
    animation: successPop 0.5s var(--ease-out-back);
}

.success-icon {
    width: 24px;
    height: 24px;
    background: #00ff88;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@keyframes successPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.badge-icon { font-size: 1rem; }

.badge-1 {
    top: 10%;
    right: -10%;
    animation: float1 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 30%;
    left: -15%;
    animation: float2 5s ease-in-out infinite;
}

.badge-3 {
    bottom: 10%;
    right: -5%;
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    50% { transform: translate(-10px, -15px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(2deg); }
    50% { transform: translate(15px, -10px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(1deg); }
    50% { transform: translate(-8px, -12px) rotate(-1deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--coral);
    border-radius: var(--radius-full);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ========================================
   Trust Marquee
   ======================================== */
.trust-marquee {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.marquee-content {
    position: relative;
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-item {
    font-size: 1rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.trust-item:hover {
    color: var(--coral);
}

/* ========================================
   Problem Section
   ======================================== */
.problem-section {
    padding: var(--space-3xl) 0;
}

.problem-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: center;
}

.problem-visual {
    display: flex;
    justify-content: center;
}

.stat-ring {
    position: relative;
    width: 250px;
    height: 250px;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: url(#gold-gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565;
    stroke-dashoffset: 565;
    animation: ringProgress 2s var(--ease-out-expo) forwards;
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 12px rgba(255, 107, 107, 0.5));
}

@keyframes ringProgress {
    to { stroke-dashoffset: 215; }
}

.ring-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ring-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ring-symbol {
    font-size: 1.5rem;
    color: var(--coral);
}

.ring-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.problem-content .section-title {
    text-align: left;
}

.problem-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.problem-stat {
    padding: var(--space-lg);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.problem-stat:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: var(--space-xs);
}

.stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Solution Section
   ======================================== */
.solution-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, transparent, var(--bg-secondary), transparent);
}

.solution-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.solution-demo {
    max-width: 600px;
    margin: 0 auto;
}

.demo-conversation {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.conversation-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-glass);
}

.header-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF6B6B 0%, #A371F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
}

.status-indicator.online { background: #00ff88; }

.header-info { flex: 1; }

.header-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.header-status {
    display: block;
    font-size: 0.75rem;
    color: #00ff88;
}

.header-badge {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.conversation-body {
    padding: var(--space-lg);
    min-height: 300px;
}

.chat-message {
    position: relative;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    animation: messageSlide 0.4s ease-out;
}

.chat-message.ai {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
    margin-right: 44px;
}

.chat-message.customer {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.10);
    margin-left: 44px;
    text-align: right;
}

.chat-message.incoming {
    background: rgba(100, 200, 255, 0.08);
    border-color: rgba(100, 200, 255, 0.18);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(235, 245, 255, 0.9);
}

.chat-message.success {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.22);
    text-align: center;
    color: #00ff88;
    font-weight: 600;
}

.chat-message.ai::before,
.chat-message.customer::before {
    content: "";
    position: absolute;
    top: 12px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: inherit;
    border: 1px solid transparent;
}

.chat-message.ai::before {
    left: -6px;
    border-left-color: rgba(255, 107, 107, 0.2);
    border-bottom-color: rgba(255, 107, 107, 0.2);
}

.chat-message.customer::before {
    right: -6px;
    border-right-color: rgba(255, 255, 255, 0.10);
    border-top-color: rgba(255, 255, 255, 0.10);
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.conversation-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--space-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(145deg, rgba(28, 33, 40, 0.95), rgba(22, 27, 34, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

/* Top accent line */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255, 107, 107, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 0;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card.card-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 107, 107, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.feature-card:hover {
    border-color: rgba(255, 107, 107, 0.25);
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 107, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover .feature-glow { opacity: 1; }

/* Glow Card Variants - Modern Style */
.glow-card {
    position: relative;
}

.glow-card.cyan-glow:hover,
.glow-card.gold-glow:hover,
.glow-card.magenta-glow:hover,
.glow-card.green-glow:hover {
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 107, 107, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 20px rgba(255, 107, 107, 0.08);
    transition: all 0.4s ease;
}

/* Animated Icon Wrapper */
.icon-animated {
    overflow: visible;
}

.icon-animated:hover {
    transform: scale(1.05);
}

.icon-ring {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: inherit;
    animation: ringPulse 4s ease-out infinite;
    pointer-events: none;
}

.icon-ring.ring-2 {
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
}

.gold-glow .feature-icon-wrapper,
.cyan-glow .feature-icon-wrapper,
.magenta-glow .feature-icon-wrapper,
.green-glow .feature-icon-wrapper {
    background: rgba(255, 107, 107, 0.08);
    border-color: rgba(255, 107, 107, 0.15);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.1);
}

.gold-glow .icon-ring,
.cyan-glow .icon-ring,
.magenta-glow .icon-ring,
.green-glow .icon-ring {
    border-color: rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--coral);
    filter: none;
}

/* Pulsing Tag */
.pulse-tag {
    animation: tagPulse 4s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 107, 107, 0.25); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 107, 0.4); }
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.feature-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.feature-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* ========================================
   How It Works
   ======================================== */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, transparent, rgba(22, 27, 34, 0.8), transparent);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(180deg, var(--coral), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.step-connector {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), transparent);
    z-index: 0;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.step-card:last-child .step-connector { display: none; }

.step-content {
    padding: var(--space-lg);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.step-card:hover .step-content {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.03em;
}

.step-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, transparent, rgba(22, 27, 34, 0.6), transparent);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-2xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 48px 40px;
    background: linear-gradient(165deg, rgba(28, 33, 40, 0.98), rgba(22, 27, 34, 0.99));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

/* Top accent */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.6), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: radial-gradient(ellipse at top, rgba(255, 107, 107, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 107, 107, 0.12);
}

.pricing-card:hover::before,
.pricing-card:hover::after {
    opacity: 1;
}

.pricing-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: radial-gradient(ellipse at top, rgba(255, 107, 107, 0.1), transparent);
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: var(--space-sm);
}

.price-currency {
    font-size: 1.6rem;
    color: var(--coral);
    font-weight: 600;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 14px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 107, 107, 0.08);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
    color: var(--mint);
    font-weight: 600;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.guarantee-icon { font-size: 1.25rem; }

/* Pricing Comparison */
.pricing-comparison {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

.pricing-comparison h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-label {
    color: var(--text-secondary);
}

.comparison-value {
    font-weight: 600;
}

.comparison-value.expensive { color: #ff6b6b; text-decoration: line-through; }
.comparison-value.cheap { color: #00ff88; }

.comparison-savings {
    display: flex;
    justify-content: space-between;
    padding: var(--space-lg) 0 0;
    font-size: 1.1rem;
}

.savings-amount {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--coral);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, rgba(22, 27, 34, 0.3), rgba(22, 27, 34, 0.8), rgba(22, 27, 34, 0.3));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.testimonial-card {
    position: relative;
    padding: 36px 32px;
    background: linear-gradient(155deg, rgba(28, 33, 40, 0.95), rgba(22, 27, 34, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(ellipse at top, rgba(255, 107, 107, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 0;
}

.testimonial-card.large {
    grid-column: span 2;
}

.testimonial-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: radial-gradient(ellipse at top, rgba(255, 107, 107, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 107, 0.2);
    transform: translateY(-6px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(255, 107, 107, 0.08);
}

.testimonial-card:hover::before,
.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover .testimonial-glow { opacity: 1; }

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.25);
}

.testimonial-info { flex: 1; }

.testimonial-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text-primary);
}

.testimonial-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonial-rating {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--amber);
}

.testimonial-card blockquote {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    font-style: normal;
}

.testimonial-card blockquote strong {
    color: var(--coral);
    font-weight: 600;
}

.testimonial-metric {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--coral);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 107, 107, 0.1);
}

.trust-badge {
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B 0%, #A371F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--space-3xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    background: transparent;
    transition: background var(--transition-fast);
}

.faq-item:hover {
    background: rgba(255, 107, 107, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--coral); text-shadow: 0 0 10px rgba(255, 107, 107, 0.3); }

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--coral);
    transition: all var(--transition-fast);
}

.faq-item.open .faq-toggle {
    background: var(--coral);
    color: #0D1117;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Demo Section
   ======================================== */
.demo-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, transparent, var(--bg-secondary), transparent);
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.demo-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.demo-includes {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.demo-includes li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
    color: var(--text-secondary);
}

.demo-includes li span {
    font-size: 1.25rem;
}

.demo-form-wrapper {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-gold);
}

.demo-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group select {
    color-scheme: dark;
    padding-right: calc(var(--space-md) + 22px);
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 107, 107, 0.9) 50%),
        linear-gradient(135deg, rgba(255, 107, 107, 0.9) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-group select option,
.form-group select optgroup {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.form-group select option:checked {
    background-color: var(--gold-subtle);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.form-group label {
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    background: var(--bg-card);
    padding: 0 var(--space-xs);
    color: var(--coral);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition-fast);
}

.form-group input:focus ~ .focus-border {
    width: 100%;
}

.form-group select:focus ~ .focus-border {
    width: 100%;
}

.form-status {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.form-status.success {
    border-color: rgba(0, 255, 136, 0.28);
    background: rgba(0, 255, 136, 0.06);
    color: #00ff88;
}

.form-status.error {
    border-color: rgba(255, 107, 107, 0.28);
    background: rgba(255, 107, 107, 0.06);
    color: #ff6b6b;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.hp-field {
    position: absolute;
    left: -99999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ========================================
   Final CTA
   ======================================== */
.final-cta {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* ========================================
   Footer - Elegant Style
   ======================================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 107, 107, 0.1);
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.98), rgba(8, 10, 14, 1));
    backdrop-filter: blur(20px);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    margin-top: var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: var(--space-lg);
}

.footer-column a {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover { color: var(--coral); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 107, 107, 0.08);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-legal a:hover { color: var(--coral); }

/* ========================================
   Animations
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .floating-badge { display: none; }
    
    .hero-ctas { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    
    .problem-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .problem-content .section-title { text-align: center; }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-connector { display: none; }
    
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card.large {
        grid-column: span 2;
    }
    
    .demo-wrapper {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-frame { width: 240px; }
    .phone-screen { min-height: 400px; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.card-large {
        grid-column: span 1;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.large {
        grid-column: span 1;
    }
    
    .problem-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: var(--space-lg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 16px;
        --space-xl: 32px;
        --space-2xl: 48px;
        --space-3xl: 80px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .stat-ring {
        width: 180px;
        height: 180px;
    }
    
    .ring-number {
        font-size: 3rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}
/* ========================================
   Sales Enhancement Styles - Cyberpunk
   ======================================== */

/* Promo Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #050508 0%, #12121f 50%, #050508 100%);
    border-bottom: 1px solid var(--neon-cyan);
    padding: 10px 20px;
    animation: bannerGlow 3s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 245, 255, 0.4); }
}

.promo-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}

.promo-fire { animation: fireWiggle 0.5s ease-in-out infinite; }
@keyframes fireWiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.promo-timer {
    font-family: var(--font-display);
    font-size: 0.75rem;
    background: rgba(0, 245, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--neon-cyan);
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.promo-cta {
    background: var(--gold-gradient);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-cta:hover { transform: scale(1.05); box-shadow: var(--glow-gold); }

.promo-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0 8px;
}

.promo-close:hover { color: var(--neon-cyan); }

body.has-promo { padding-top: 50px; }
body.has-promo .header { top: 50px; }

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-gold);
    transform: translateX(-150%);
    transition: transform 0.5s var(--ease-out-expo);
    max-width: 320px;
}

.social-proof-popup.show { transform: translateX(0); }

.popup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.popup-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popup-name { font-size: 14px; }
.popup-action { font-size: 13px; color: var(--text-secondary); }
.popup-time { font-size: 11px; color: var(--text-muted); }

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.95) 20%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.sticky-cta.show { transform: translateY(0); }

.sticky-content {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sticky-info { display: flex; flex-direction: column; gap: 2px; }
.sticky-savings { color: var(--gold); font-weight: 600; font-size: 14px; }
.sticky-text { font-size: 12px; color: var(--text-secondary); }

/* Exit Popup */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 420px;
    text-align: center;
    position: relative;
    animation: popupBounce 0.5s var(--ease-out-back);
    box-shadow: var(--shadow-gold-lg);
}

@keyframes popupBounce {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.exit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
}

.exit-content h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.exit-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.exit-emoji { font-size: 50px; }

.exit-timer {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    margin: 20px 0;
    display: inline-block;
}

.exit-timer span {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.exit-dismiss {
    display: block;
    width: 100%;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    background: none;
    border: none;
}

.exit-dismiss:hover { color: var(--text-secondary); }

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.cta-trust {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Pricing Urgency */
.pricing-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 1px dashed var(--border-gold);
    border-radius: var(--radius-md);
    font-size: 13px;
}

.urgency-icon { animation: flashIcon 1s ease-in-out infinite; }
@keyframes flashIcon { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Form Enhancement */
.form-spots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 100, 100, 0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    animation: spotsPulse 2s ease-in-out infinite;
}

@keyframes spotsPulse {
    0%, 100% { background: rgba(255, 100, 100, 0.1); }
    50% { background: rgba(255, 100, 100, 0.15); }
}

.spots-icon { animation: fireWiggle 0.5s ease-in-out infinite; }

.form-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.form-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
}

/* ROI Calculator */
.roi-calculator {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 107, 0.03), transparent);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-group label {
    font-size: 14px;
    color: var(--text-secondary);
}

.calc-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    appearance: none;
    cursor: pointer;
}

.calc-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
}

.calc-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    font-family: var(--font-mono);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-card {
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.result-card.loss {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.result-card.gain {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.result-card.roi {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(163, 113, 247, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.result-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.result-amount {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.result-card.loss .result-amount { color: #ff6b6b; }
.result-card.gain .result-amount { color: #7EE787; }
.result-card.roi .result-amount { color: var(--coral); }

@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .promo-content {
        font-size: 12px;
        gap: 10px;
    }
    
    .social-proof-popup {
        left: 15px;
        right: 15px;
        bottom: 80px;
        max-width: none;
    }
    
    .exit-popup {
        padding: 30px 20px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   Live Chat Widget
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font-body);
}

.chat-bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    padding: 14px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

.chat-bubble-icon {
    width: 24px;
    height: 24px;
}

.chat-bubble-icon svg {
    width: 100%;
    height: 100%;
}

.chat-bubble-text {
    font-weight: 600;
    font-size: 14px;
}

.chat-notification {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ff3b3b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.chat-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(163, 113, 247, 0.05));
    border-bottom: 1px solid var(--border-subtle);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid var(--bg-tertiary);
}

.chat-header-text {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.chat-status {
    font-size: 12px;
    color: #00ff88;
}

.chat-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    max-width: 100%;
    word-wrap: break-word;
}

.message-content p {
    margin: 0;
}

.message-content p + p {
    margin-top: 12px;
}

.message-content strong {
    color: var(--coral);
    font-weight: 600;
}

.message-content .bullet {
    color: var(--coral);
    margin-right: 4px;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
}

.message-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Typing indicator animation */
.typing-indicator .message-content p {
    display: flex;
    align-items: center;
    gap: 2px;
}

.typing-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 4px;
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-reply {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.25);
    color: var(--coral);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-reply:hover {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    border-color: transparent;
    transform: scale(1.05);
}

/* Bot message links */
.chat-message.bot a {
    color: var(--coral);
    text-decoration: underline;
    font-weight: 500;
}

.chat-message.bot a:hover {
    color: #fff;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.3);
}

#chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 12px 18px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

#chat-input:focus {
    border-color: var(--coral);
}

#chat-input::placeholder {
    color: var(--text-muted);
}

.chat-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-send svg {
    width: 18px;
    height: 18px;
    stroke: #0D1117;
}

/* ========================================
   Comparison Table
   ======================================== */
.comparison-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
    background: rgba(255, 107, 107, 0.05);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    position: relative;
}

.comparison-table th.highlight {
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
    color: var(--coral);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table td.highlight {
    background: rgba(255, 107, 107, 0.03);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.best-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.check-icon {
    color: #7EE787;
    font-weight: bold;
}

.cross-icon {
    color: #ff6b6b;
    font-weight: bold;
}

.partial-icon {
    color: #ffaa00;
    font-weight: bold;
}

.price-good {
    color: #7EE787;
}

.price-bad {
    color: #ff6b6b;
}

.rate-good {
    color: #7EE787;
}

.rate-ok {
    color: #F0883E;
}

.rate-bad {
    color: #ff6b6b;
}

.comparison-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ========================================
   Industry Use Cases
   ======================================== */
.industry-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-xl);
}

.industry-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-tab:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.25);
    color: var(--text-primary);
}

.industry-tab.active {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-color: transparent;
    color: #0D1117;
    font-weight: 600;
}

.industry-content {
    position: relative;
    min-height: 400px;
}

.industry-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.industry-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.industry-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.industry-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.industry-tagline {
    color: var(--coral);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.industry-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.industry-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.industry-benefits li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.industry-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(163, 113, 247, 0.05));
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    font-family: var(--font-display);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.industry-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    background: rgba(255, 107, 107, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--coral);
}

.industry-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 var(--space-md) 0;
}

.industry-quote cite {
    color: var(--text-muted);
    font-size: 14px;
    font-style: normal;
}

/* ========================================
   Integrations Section
   ======================================== */
.integrations-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: 
        radial-gradient(ellipse 600px 300px at 30% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 250px at 70% 80%, rgba(163, 113, 247, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.integrations-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 8px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.integration-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.integration-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 50%, var(--coral) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.integration-card:hover::after {
    opacity: 0.15;
}

.integration-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 107, 107, 0.08);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 107, 107, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.integration-card.featured {
    border-color: rgba(255, 107, 107, 0.3);
    background: rgba(255, 107, 107, 0.05);
}

.integration-card.featured::after {
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 50%, var(--coral) 100%);
}

.integration-card.featured:hover {
    border-color: var(--coral);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 107, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.integration-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: #0D1117;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
}

.integration-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.integration-card:hover .integration-icon {
    transform: scale(1.15);
}

.integration-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-card:hover .integration-icon::before {
    opacity: 1;
}

.integration-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.integration-card:hover .integration-icon svg {
    filter: drop-shadow(0 4px 16px rgba(255, 107, 107, 0.35));
}

.integration-card.featured:hover .integration-icon svg {
    filter: drop-shadow(0 4px 16px rgba(255, 107, 107, 0.5));
}

.integration-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.3px;
}

.integration-status {
    font-size: 11px;
    color: var(--electric-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.integration-card.featured .integration-status {
    color: var(--coral);
}

.integrations-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: var(--space-xl);
    padding: 20px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.note-icon {
    font-size: 1.5em;
    animation: pulse 2s ease-in-out infinite;
}

.note-badge {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
    color: #fff;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
}

/* ========================================
   Trusted By / Social Proof Section
   ======================================== */
.trusted-by-section {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.trusted-by-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
}

.trusted-logos-track {
    display: flex;
    animation: scroll-logos 30s linear infinite;
    gap: 60px;
}

.trusted-logos-container {
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trusted-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    min-width: 140px;
}

.trusted-logo:hover {
    opacity: 1;
}

.trusted-logo svg {
    height: 32px;
    width: auto;
    fill: currentColor;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.trusted-logo:hover svg {
    color: var(--text-primary);
}

.trusted-logo-name {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trusted-logos-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* ========================================
   Hero Visual Enhancements
   ======================================== */
.hero-visual-container {
    position: relative;
    margin-top: var(--space-xl);
}

.hero-ai-badge {
    position: absolute;
    top: -20px;
    right: 20%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-lg);
    animation: float-badge 3s ease-in-out infinite;
    box-shadow: var(--glow-cyan);
}

.hero-ai-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero-ai-badge span {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-stats-floating {
    position: absolute;
    bottom: -40px;
    left: 10%;
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-gold);
    animation: float-badge 4s ease-in-out infinite 0.5s;
}

.hero-stats-floating .stat-number {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats-floating .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Responsive Adjustments for New Sections
   ======================================== */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-bubble-text {
        display: none;
    }
    
    .chat-bubble {
        padding: 14px;
        border-radius: 50%;
    }
    
    .chat-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 120px);
        right: -8px;
        bottom: 70px;
    }
    
    .comparison-table-wrapper {
        margin: 0 -16px;
        border-radius: 0;
    }
    
    .industry-tabs {
        gap: 8px;
    }
    
    .industry-tab {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
    }
    
    .industry-info h3 {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .integration-card {
        padding: 16px 12px;
    }
    
    .integration-icon {
        width: 36px;
        height: 36px;
    }
    
    .integration-name {
        font-size: 11px;
    }
}

/* ========================================
   STANDOUT VISUAL EFFECTS
   Eye-catching animations and glows
   ======================================== */

/* Hero Background Effects */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.35) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite 2s;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 20%, transparent 70%);
}

.hero-floating-shapes {
    position: absolute;
    inset: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    background: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 5%;
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold);
    animation: floatShape 6s ease-in-out infinite 1s;
}

.shape-3 {
    width: 16px;
    height: 16px;
    top: 30%;
    right: 15%;
    background: var(--neon-magenta);
    box-shadow: 0 0 25px var(--neon-magenta);
    animation: floatShape 7s ease-in-out infinite 2s;
}

.shape-4 {
    width: 10px;
    height: 10px;
    bottom: 30%;
    right: 10%;
    background: var(--mint);
    box-shadow: 0 0 20px rgba(126, 231, 135, 0.5);
    animation: floatShape 5s ease-in-out infinite 0.5s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Eyebrow Badge */
.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(163, 113, 247, 0.2) 100%);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 12px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 107, 0.5); }
}

/* Neon Text Effect */
.neon-text {
    color: var(--coral);
    text-shadow: 
        0 0 10px rgba(255, 107, 107, 0.5),
        0 0 20px rgba(255, 107, 107, 0.4),
        0 0 40px rgba(255, 107, 107, 0.3),
        0 0 80px rgba(255, 107, 107, 0.2);
    animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

/* Animated Gradient Text */
.animated-gradient-text {
    background: linear-gradient(
        90deg,
        var(--coral) 0%,
        var(--electric-blue) 25%,
        var(--purple) 50%,
        var(--coral) 75%,
        var(--coral) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hero Stats Bar */
.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 32px;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.12);
    border-radius: var(--radius-lg);
    max-width: fit-content;
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}

.hero-stat-plus {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--coral);
}

.hero-stat-label {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 107, 107, 0.2);
}

/* Glow Button Enhancement - Removed */

.btn-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.btn-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0;
}

.glow-button:hover .btn-particles span:nth-child(1) {
    animation: particleFly 0.6s ease-out forwards;
    left: 20%;
    bottom: 50%;
}

.glow-button:hover .btn-particles span:nth-child(2) {
    animation: particleFly 0.6s ease-out 0.1s forwards;
    left: 50%;
    bottom: 50%;
}

.glow-button:hover .btn-particles span:nth-child(3) {
    animation: particleFly 0.6s ease-out 0.2s forwards;
    left: 80%;
    bottom: 50%;
}

@keyframes particleFly {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-50px) scale(0); opacity: 0; }
}

/* Feature Cards Visual Enhancements */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--purple), var(--electric-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Floating Badge Enhancements */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.floating-badge .badge-icon {
    font-size: 1.5em;
    filter: drop-shadow(0 0 10px currentColor);
}

.badge-1 {
    top: 15%;
    right: -10%;
    border-color: rgba(0, 245, 255, 0.4);
    animation: floatBadge1 6s ease-in-out infinite;
}

.badge-1 .badge-icon { color: var(--neon-cyan); }

.badge-2 {
    bottom: 35%;
    left: -15%;
    border-color: rgba(255, 215, 0, 0.4);
    animation: floatBadge2 7s ease-in-out infinite;
}

.badge-2 .badge-icon { color: var(--gold); }

.badge-3 {
    bottom: 10%;
    right: 5%;
    border-color: rgba(0, 255, 136, 0.4);
    animation: floatBadge3 5s ease-in-out infinite;
}

.badge-3 .badge-icon { color: var(--neon-green); }

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes floatBadge3 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

/* Section Title Enhancements */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, var(--coral), var(--purple));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

/* Pricing Card Glow */
.pricing-card.featured {
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--coral), var(--purple), var(--coral));
    border-radius: inherit;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Testimonial Card Hover Effect */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 60%
    );
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.testimonial-card:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

/* Phone Frame Glow */
.phone-frame {
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    border-radius: inherit;
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
    animation: phoneGlow 3s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* CTA Section Enhancement */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-stats-bar {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .hero-stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .floating-badge {
        display: none;
    }
    
    .hero-glow {
        opacity: 0.2;
    }
    
    .eyebrow-badge {
        display: none;
    }
}

/* ========================================
   Custom Scrollbar - Midnight Coral
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(13, 17, 23, 0.95);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.4), rgba(255, 107, 107, 0.2));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.6), rgba(255, 107, 107, 0.4));
}

/* ========================================
   Selection Styling
   ======================================== */
::selection {
    background: rgba(255, 107, 107, 0.3);
    color: var(--text-primary);
}