/* ============================================
   PREMIUM SAAS LANDING PAGE STYLES
   Modern, Expensive, Aesthetically Pleasing
   ============================================ */

/* CSS Variables & Design Tokens */
:root {
    /* Premium Color Palette */
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-300: #a5b4fc;
    --primary-400: #818cf8;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-800: #3730a3;
    --primary-900: #312e81;

    --accent-400: #fbbf24;
    --accent-500: #f59e0b;
    --accent-600: #d97706;

    --success-400: #4ade80;
    --success-500: #22c55e;
    --success-600: #16a34a;

    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
    --shadow-glow-accent: 0 0 40px rgba(245, 158, 11, 0.4);

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Transitions */
    --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);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--slate-50);
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated Background */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -2;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-400);
    top: -200px;
    right: -100px;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--purple-400);
    bottom: 20%;
    left: -200px;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

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

/* Typography */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
}

.brand-icon svg {
    width: 24px;
    height: 24px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.brand-accent {
    color: var(--primary-600);
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-600);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-nav {
    padding: 12px 24px;
    background: var(--slate-900);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: var(--slate-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    padding: 16px 32px;
    background: var(--gradient-accent);
    color: white;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    box-shadow: var(--shadow-glow-accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-cta {
    padding: 24px 48px;
    background: white;
    color: var(--slate-900);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-2xl);
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-700);
    margin: 0 auto 32px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-500);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-bonus {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--slate-500);
    font-weight: 500;
    justify-content: center;
}

.hero-bonus svg {
    width: 18px;
    height: 18px;
    color: var(--accent-500);
}

/* Hero Visual - Dashboard */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 80px;
    }

    .hero-content {
        align-items: flex-start;
        flex: 3;
        width: auto;
        max-width: none;
        margin: 0;
    }

    .hero-badge {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-title {
        text-align: left;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        text-align: left;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: row;
    }

    .hero-visual {
        flex: 2;
        width: auto;
        max-width: none;
        justify-content: flex-end;
    }
}

.hero-dashboard {
    position: relative;
    width: 100%;
}

/* Live CSS Dashboard Styles */
.hero-dashboard-live {
    width: 100%;
    max-width: 650px;
    height: auto;
    aspect-ratio: 650/420;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: floatDashboard 8s ease-in-out infinite;
    display: flex;
    flex-direction: column;
}

/* Glass Shine Effect */
.glass-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.4) 25%,
            transparent 30%);
    pointer-events: none;
    z-index: 10;
}

/* Header */
.dash-header {
    height: 50px;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.control.red {
    background: #FF5F56;
}

.control.yellow {
    background: #FFBD2E;
}

.control.green {
    background: #27C93F;
}

.dash-search {
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 200px;
    color: var(--slate-500);
    font-size: 0.8rem;
}

.dash-icon-sm {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.dash-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

/* Dashboard Body */
.dash-body {
    flex: 1;
    display: flex;
    padding: 20px;
    gap: 20px;
}

.dash-sidebar {
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
    align-items: center;
    border-right: 1px solid var(--slate-200);
    margin-right: -10px;
}

.dash-nav-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all 0.3s ease;
}

.dash-nav-item.active {
    background: var(--primary-50);
    color: var(--primary-600);
}

.dash-nav-item svg {
    width: 18px;
    height: 18px;
}

/* Main Content Area */
.dash-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 15px;
}

.stat-card {
    flex: 1;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stat-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.stat-trend {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.stat-trend.up {
    color: var(--success-600);
    background: var(--success-50);
    /* Subtle bg for trend */
    padding: 2px 6px;
    border-radius: 12px;
}

.stat-trend.neutral {
    color: var(--slate-500);
    background: var(--slate-100);
    padding: 2px 6px;
    border-radius: 12px;
}

/* Graph Area */
.graph-card {
    flex: 1;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--slate-800);
    font-weight: 600;
}

.graph-tabs span {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--slate-500);
    cursor: pointer;
}

.graph-tabs span.active {
    background: var(--slate-100);
    color: var(--slate-900);
    font-weight: 600;
}

.css-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
    padding-bottom: 5px;
}

.bar {
    flex: 1;
    background: var(--slate-100);
    border-radius: 4px;
    position: relative;
    transition: height 1s ease;
}

.bar.active {
    background: linear-gradient(to top, var(--primary-600), var(--primary-400));
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.tooltip {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--slate-900);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    border: none;
    opacity: 0;
    animation: fadeIn 0.5s ease 1s forwards;
    box-shadow: var(--shadow-md);
}

/* List Card */
.list-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.list-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 4px 0;
}

.monitor-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monitor-icon.success {
    background: var(--success-50);
    color: var(--success-600);
}

.monitor-icon.warning {
    background: var(--accent-100);
    color: var(--accent-600);
}

.monitor-icon svg {
    width: 16px;
    height: 16px;
}

.list-text {
    display: flex;
    flex-direction: column;
}

.list-title {
    font-size: 0.85rem;
    color: var(--slate-900);
    font-weight: 600;
}

.list-sub {
    font-size: 0.7rem;
    color: var(--slate-500);
}

/* Floating Notification */
.floating-notif {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: floatNotif 8s ease-in-out infinite 1s;
    z-index: 20;
}

.notif-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--slate-100);
}

.notif-icon {
    font-size: 1.2rem;
}

@keyframes floatNotif {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes floatDashboard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        order: -1;
    }

    .floating-card-1 {
        left: 20px;
    }

    .floating-card-2 {
        right: 20px;
    }
}

/* ============================================
   TRUST BANNER
   ============================================ */
.trust-banner {
    padding: 50px 24px;
    background: linear-gradient(180deg, var(--slate-100) 0%, var(--slate-50) 100%);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    text-align: center;
}

.trust-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.trust-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-400);
    letter-spacing: 0.05em;
}

.trust-cities .divider {
    width: 6px;
    height: 6px;
    background: var(--slate-300);
    border-radius: 50%;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.section-title.light {
    color: white;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    padding: var(--section-padding) 24px;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    padding: 40px;
    background: linear-gradient(135deg, var(--slate-50) 0%, white 100%);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.problem-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 28px;
}

.problem-card h3 svg {
    width: 24px;
    height: 24px;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--slate-700);
}

.problem-list li svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.quote-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.quote-icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.quote-card blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    padding: var(--section-padding) 24px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.solution-card.featured {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.solution-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.solution-icon.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.solution-icon.purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.solution-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.solution-tag.blue {
    color: #60a5fa;
}

.solution-tag.green {
    color: #4ade80;
}

.solution-tag.purple {
    color: #c084fc;
}

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.solution-card p {
    color: var(--slate-400);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-padding) 24px;
    background: var(--slate-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-step {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.feature-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.feature-step:hover .step-icon {
    background: var(--gradient-primary);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-600);
    transition: var(--transition-base);
}

.feature-step:hover .step-icon svg {
    color: white;
}

.feature-step h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.feature-step p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--section-padding) 24px;
    background: linear-gradient(180deg, white 0%, var(--slate-100) 100%);
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: var(--slate-900);
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--primary-500);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}

.pricing-badge svg {
    width: 16px;
    height: 16px;
}

.pricing-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    position: relative;
}

.pricing-desc {
    color: var(--slate-400);
    margin-bottom: 32px;
    position: relative;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    position: relative;
}

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

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

.period {
    font-size: 1.2rem;
    color: var(--slate-400);
    font-weight: 500;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate-300);
    font-size: 0.95rem;
    list-style: none;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success-400);
    flex-shrink: 0;
}

.bonuses {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
}

.bonus {
    padding: 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-lg);
    text-align: left;
    color: white;
}

.bonus-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-500);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.bonus strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .pricing-card {
        padding: 40px 24px;
    }

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

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 24px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 32px;
}

.cta-badge svg {
    width: 18px;
    height: 18px;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-guarantee svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 24px 40px;
    background: var(--slate-950);
    color: var(--slate-500);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--slate-800);
    margin-bottom: 40px;
}

.footer .brand-logo {
    gap: 12px;
}

.footer .brand-icon {
    width: 40px;
    height: 40px;
}

.footer .brand-name {
    font-size: 1.3rem;
    color: white;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--slate-500);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--slate-600);
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
    }
}