/* =============================================================================
   NOLIVOS FBA Landing Page - Blizzard Entertainment Theme
   ============================================================================= */

/* CSS Variables - Blizzard Theme */
:root {
    /* Blizzard Color Palette */
    --blizzard-blue-darkest: #0a1628;
    --blizzard-blue-dark: #1a2332;
    --blizzard-blue-medium: #2a3f5f;
    --blizzard-blue-light: #3a5a7f;
    --blizzard-blue-accent: #00aeff;
    --blizzard-cyan-bright: #4dd9ff;
    --blizzard-cyan-glow: rgba(77, 217, 255, 0.8);

    /* Primary Colors */
    --primary: #00aeff;
    --primary-dark: #0088cc;
    --primary-light: #4dd9ff;
    --secondary: #00aeff;
    --accent: #ff8000;
    --success: #00ff88;
    --warning: #ff8000;
    --danger: #ff3366;

    /* Rarity System */
    --rarity-common: #9d9d9d;
    --rarity-rare: #00aeff;
    --rarity-epic: #ff8000;
    --rarity-legendary: #ff5500;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f0f4f8;
    --gray-100: #d9e2ec;
    --gray-200: #bcccdc;
    --gray-300: #9fb3c8;
    --gray-400: #829ab1;
    --gray-500: #627d98;
    --gray-600: #486581;
    --gray-700: #334e68;
    --gray-800: #243b53;
    --gray-900: #102a43;

    /* Glassmorphism */
    --glass-bg: rgba(26, 35, 50, 0.7);
    --glass-bg-light: rgba(42, 63, 95, 0.5);
    --glass-border: rgba(77, 217, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-backdrop: blur(20px);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00aeff 0%, #4dd9ff 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #2a3f5f 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #102a43 100%);
    --gradient-epic: linear-gradient(135deg, #ff8000 0%, #ff5500 100%);
    --gradient-glow: radial-gradient(circle, rgba(77, 217, 255, 0.3) 0%, transparent 70%);

    /* Typography - Blizzard Fonts */
    --font-logo: 'Nabla', system-ui;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow Condensed', sans-serif;
    --font-family: var(--font-body);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Shadows with Glow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(77, 217, 255, 0.4), 0 0 40px rgba(77, 217, 255, 0.2);
    --shadow-glow-epic: 0 0 20px rgba(255, 128, 0, 0.6), 0 0 40px rgba(255, 128, 0, 0.3);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--blizzard-blue-darkest);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    text-shadow: 0 0 30px rgba(77, 217, 255, 0.5);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-shadow: 0 0 20px rgba(77, 217, 255, 0.4);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(77, 217, 255, 0.6));
}

/* Buttons - Blizzard Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border-color: var(--blizzard-cyan-bright);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
}

.btn-ghost:hover {
    background: var(--glass-bg-light);
    color: var(--blizzard-cyan-bright);
}

.btn-white {
    background: var(--white);
    color: var(--blizzard-blue-darkest);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), var(--shadow-lg);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blizzard-cyan-bright);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(77, 217, 255, 0.15);
    color: var(--blizzard-cyan-bright);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid rgba(77, 217, 255, 0.3);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-400);
}

/* =============================================================================
   NAVBAR
   ============================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    box-shadow: var(--shadow-md), 0 0 20px rgba(77, 217, 255, 0.1);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
}

.logo-nabla {
    font-family: var(--font-logo);
    font-size: 2rem;
    font-weight: 400;
    color: var(--blizzard-cyan-bright);
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 15px rgba(77, 217, 255, 0.8))
            drop-shadow(0 0 30px rgba(77, 217, 255, 0.4));
    animation: logoGlowNabla 3s ease-in-out infinite;
}

.logo-fba {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 15px rgba(255, 128, 0, 0.8));
}

.navbar.scrolled .logo-nabla {
    filter: drop-shadow(0 0 20px rgba(77, 217, 255, 1));
}

@keyframes logoGlowNabla {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(77, 217, 255, 0.8))
                drop-shadow(0 0 30px rgba(77, 217, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(77, 217, 255, 1))
                drop-shadow(0 0 50px rgba(77, 217, 255, 0.6));
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--gray-300);
}

.nav-link:hover {
    color: var(--blizzard-cyan-bright);
    text-shadow: 0 0 10px rgba(77, 217, 255, 0.6);
}

.navbar.scrolled .nav-link:hover {
    color: var(--blizzard-cyan-bright);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(77, 217, 255, 0.8);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-buttons .btn-ghost {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-buttons .btn-ghost {
    color: var(--gray-300);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--blizzard-cyan-bright);
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 174, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 128, 0, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234dd9ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(255, 128, 0, 0.8));
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
    color: var(--gray-300);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--blizzard-cyan-bright);
    text-shadow: 0 0 20px rgba(77, 217, 255, 0.6);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    color: var(--gray-400);
}

/* Dashboard Preview */
.hero-image {
    perspective: 1000px;
}

.dashboard-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    backdrop-filter: var(--glass-backdrop);
}

.dashboard-preview:hover {
    transform: rotateY(0) rotateX(0);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(77, 217, 255, 0.4);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(10, 22, 40, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.preview-dots span:first-child {
    background: #ff5f57;
    box-shadow: 0 0 10px rgba(255, 95, 87, 0.6);
}

.preview-dots span:nth-child(2) {
    background: #febc2e;
    box-shadow: 0 0 10px rgba(254, 188, 46, 0.6);
}

.preview-dots span:last-child {
    background: #28c840;
    box-shadow: 0 0 10px rgba(40, 200, 64, 0.6);
}

.preview-title {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.preview-content {
    padding: 20px;
    background: rgba(10, 22, 40, 0.4);
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-glow);
}

.preview-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.2rem;
}

.preview-icon.green {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.preview-icon.blue {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.preview-icon.orange {
    background: var(--gradient-epic);
    box-shadow: var(--shadow-glow-epic);
}

.preview-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.preview-value {
    font-weight: 700;
    color: var(--white);
}

.preview-table {
    margin-top: 16px;
    font-size: 0.8rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 8px 12px;
    border-bottom: 1px solid var(--glass-border);
}

.table-row.header {
    background: var(--glass-bg-light);
    font-weight: 700;
    color: var(--blizzard-cyan-bright);
    border-radius: var(--radius-sm);
}

.roi {
    font-weight: 700;
}

.roi.positive {
    color: var(--success);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* =============================================================================
   PAIN POINTS SECTION
   ============================================================================= */
.pain-points {
    padding: var(--section-padding);
    background: var(--blizzard-blue-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pain-card {
    padding: 32px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: var(--glass-backdrop);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 51, 102, 0.2);
    border-color: rgba(255, 51, 102, 0.4);
}

.pain-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 102, 0.15);
    color: var(--danger);
    font-size: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.pain-card h3 {
    margin-bottom: 12px;
}

.pain-card p {
    color: var(--gray-400);
}

.solution-intro {
    text-align: center;
}

.arrow-down {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: bounce 2s infinite;
    box-shadow: var(--shadow-glow);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.solution-intro h3 {
    font-size: 1.5rem;
    color: var(--blizzard-cyan-bright);
}

/* =============================================================================
   FEATURES SECTION
   ============================================================================= */
.features {
    padding: var(--section-padding);
    background: var(--blizzard-blue-darkest);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: var(--glass-backdrop);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--blizzard-cyan-bright);
}

.feature-card.featured {
    grid-column: span 1;
    grid-row: span 2;
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid var(--blizzard-cyan-bright);
    box-shadow: var(--shadow-glow);
}

.feature-card.featured h3,
.feature-card.featured p {
    color: var(--white);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 217, 255, 0.15);
    color: var(--blizzard-cyan-bright);
    font-size: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(77, 217, 255, 0.3);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-400);
}

.feature-card.featured p {
    opacity: 0.95;
}

.feature-list {
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.feature-list i {
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================================================
   HOW IT WORKS SECTION
   ============================================================================= */
.how-it-works {
    padding: var(--section-padding);
    background: var(--blizzard-blue-dark);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blizzard-cyan-bright), transparent);
    box-shadow: 0 0 10px rgba(77, 217, 255, 0.5);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
    font-family: var(--font-heading);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.step-image {
    margin-top: 16px;
}

/* Config Demo */
.config-demo {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.config-item {
    margin-bottom: 16px;
}

.config-item:last-child {
    margin-bottom: 0;
}

.config-item label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blizzard-cyan-bright);
    margin-bottom: 8px;
}

.slider-demo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-track {
    flex: 1;
    height: 8px;
    background: var(--blizzard-blue-medium);
    border-radius: var(--radius-full);
    position: relative;
}

.slider-track::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(77, 217, 255, 0.5);
}

.slider-value {
    font-weight: 700;
    color: var(--blizzard-cyan-bright);
}

.tags-demo {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    background: var(--blizzard-blue-medium);
    color: var(--gray-400);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.tag.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--blizzard-cyan-bright);
    box-shadow: var(--shadow-glow);
}

/* Results Demo */
.results-demo {
    background: var(--glass-bg);
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--glass-bg-light);
    border-radius: var(--radius);
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-glow);
}

.result-name {
    font-weight: 600;
    color: var(--gray-300);
}

.result-roi {
    font-weight: 900;
    color: var(--success);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

/* Analysis Demo */
.analysis-demo {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    text-align: center;
    backdrop-filter: blur(10px);
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    height: 100px;
    margin-bottom: 12px;
}

.chart-bar {
    width: 30px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(77, 217, 255, 0.4);
}

.chart-bar:hover {
    transform: translateY(-5px);
}

.chart-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* =============================================================================
   PRICING SECTION
   ============================================================================= */
.pricing {
    padding: var(--section-padding);
    background: var(--blizzard-blue-darkest);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-weight: 600;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--blizzard-cyan-bright);
    text-shadow: 0 0 10px rgba(77, 217, 255, 0.6);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--blizzard-blue-medium);
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 2px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--success);
    color: var(--blizzard-blue-darkest);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-left: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 2px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
    backdrop-filter: var(--glass-backdrop);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--blizzard-cyan-bright);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-epic);
}

.pricing-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: var(--gradient-epic);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-epic);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow-epic);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.pricing-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
}

.amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-400);
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.pricing-features .fa-check {
    color: var(--success);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.pricing-features .fa-times {
    color: var(--gray-600);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.pricing-guarantee i {
    font-size: 1.5rem;
    color: var(--success);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.pricing-guarantee p {
    color: var(--gray-300);
}

/* =============================================================================
   COMPARISON SECTION
   ============================================================================= */
.comparison {
    padding: var(--section-padding);
    background: var(--blizzard-blue-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: var(--glass-bg);
    font-weight: 700;
    color: var(--blizzard-cyan-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th.highlight {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.comparison-table td.highlight {
    background: rgba(77, 217, 255, 0.08);
}

.comparison-table td {
    color: var(--gray-300);
}

.text-green {
    color: var(--success);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.text-red {
    color: var(--danger);
}

.text-yellow {
    color: var(--warning);
    text-shadow: 0 0 10px rgba(255, 128, 0, 0.6);
}

.comparison-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */
.testimonials {
    padding: var(--section-padding);
    background: var(--blizzard-blue-darkest);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: var(--glass-backdrop);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--blizzard-cyan-bright);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(255, 128, 0, 0.6));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.author-info strong {
    display: block;
    color: var(--white);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* =============================================================================
   FAQ SECTION
   ============================================================================= */
.faq {
    padding: var(--section-padding);
    background: var(--blizzard-blue-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg);
    margin-bottom: 8px;
    border-radius: var(--radius-lg);
    padding: 0 20px;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blizzard-cyan-bright);
}

.faq-question i {
    transition: var(--transition);
    color: var(--blizzard-cyan-bright);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */
.cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(77, 217, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234dd9ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
    background: var(--blizzard-blue-darkest);
    color: var(--gray-400);
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    color: var(--gray-400);
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--blizzard-cyan-bright);
    box-shadow: var(--shadow-glow);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--blizzard-cyan-bright);
    text-shadow: 0 0 10px rgba(77, 217, 255, 0.6);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
    font-size: 0.75rem;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .dashboard-preview {
        transform: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: var(--glass-backdrop);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active .nav-link {
        color: var(--gray-300);
        padding: 12px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.featured {
        grid-column: span 1;
    }

    .step {
        flex-direction: column;
        gap: 20px;
    }

    .step::after {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .pricing-card {
        padding: 24px;
    }

    .amount {
        font-size: 2.5rem;
    }
}
