        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }
        
        :root {
            --primary: #1B7FC0;
            --accent-start: #FF8C42;
            --accent-end: #FF6B35;
            --dark: #0A1628;
            --dark-lighter: #0F1B2D;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Mesh Gradient Background */
        .mesh-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(-45deg, var(--primary), var(--accent-end), #8B5CF6, #00274D);
            background-size: 400% 400%;
            animation: meshMove 20s ease infinite;
            opacity: 0.12;
            z-index: 0;
        }

        @keyframes meshMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Navigation styles moved to partials/navigation.html */

        /* Container - FULL WIDTH */
        .container {
            width: 100%;
            padding: 0 60px;
            position: relative;
            z-index: 10;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 240px 0 80px;
        }

        .badge {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #A78BFA;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
            50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end), #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 20px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 60px;
        }

        .btn-large {
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-gradient {
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
            border: none;
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .btn-gradient:hover {
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
            transform: translateY(-3px);
        }

        .btn-glass {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            color: white;
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Stats Row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* Live Metrics Bar */
        .live-metrics {
            background: linear-gradient(135deg, rgba(27, 127, 192, 0.1), rgba(255, 107, 53, 0.1));
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px 40px;
            margin: 80px 0;
        }

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

        .metric-item {
            text-align: center;
        }

        .metric-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-end);
            margin-bottom: 8px;
        }

        .metric-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        /* НОВАЯ СЕКЦИЯ: Live Dashboard Demo */
        .live-dashboard-demo {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .demo-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .demo-title {
            font-size: 24px;
            font-weight: 700;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid #10B981;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: #10B981;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #10B981;
            border-radius: 50%;
            animation: pulseDot 2s ease-in-out infinite;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px #10B981; }
            50% { opacity: 0.5; transform: scale(1.3); box-shadow: 0 0 20px #10B981; }
        }

        /* Dashboard Mini Cards */
        .dashboard-mini-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .mini-metric-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s;
        }

        .mini-metric-card:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-3px);
        }

        .mini-metric-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .mini-metric-value {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 5px;
        }

        .mini-metric-trend {
            font-size: 12px;
            font-weight: 600;
        }

        .trend-up {
            color: #10B981;
        }

        .trend-down {
            color: var(--accent-end);
        }

        /* Live Chart Animation */
        .live-chart-container {
            position: relative;
            height: 250px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            padding: 20px;
        }

        .chart-area {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .chart-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, 
                rgba(27, 127, 192, 0.3) 0%, 
                rgba(27, 127, 192, 0.05) 100%);
            clip-path: polygon(
                0% 65%, 
                5% 70%, 
                10% 62%, 
                15% 68%, 
                20% 58%, 
                25% 63%, 
                30% 55%, 
                35% 60%, 
                40% 50%, 
                45% 55%, 
                50% 45%, 
                55% 48%, 
                60% 42%, 
                65% 45%, 
                70% 38%, 
                75% 40%, 
                80% 35%, 
                85% 38%, 
                90% 30%, 
                95% 33%, 
                100% 28%, 
                100% 100%, 
                0% 100%
            );
            animation: chartFlow 4s ease-in-out infinite;
        }

        @keyframes chartFlow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Chart dots with staggered animation */
        .chart-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .chart-dot {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--primary);
            animation: dotPulse 3s ease-in-out infinite;
        }

        .chart-dot:nth-child(1) { left: 10%; top: 38%; animation-delay: 0s; }
        .chart-dot:nth-child(2) { left: 20%; top: 42%; animation-delay: 0.3s; }
        .chart-dot:nth-child(3) { left: 30%; top: 45%; animation-delay: 0.6s; }
        .chart-dot:nth-child(4) { left: 40%; top: 50%; animation-delay: 0.9s; }
        .chart-dot:nth-child(5) { left: 50%; top: 55%; animation-delay: 1.2s; }
        .chart-dot:nth-child(6) { left: 60%; top: 58%; animation-delay: 1.5s; }
        .chart-dot:nth-child(7) { left: 70%; top: 62%; animation-delay: 1.8s; }
        .chart-dot:nth-child(8) { left: 80%; top: 65%; animation-delay: 2.1s; }
        .chart-dot:nth-child(9) { left: 90%; top: 70%; animation-delay: 2.4s; }

        @keyframes dotPulse {
            0%, 100% { 
                transform: scale(1); 
                opacity: 1;
                box-shadow: 0 0 15px var(--primary);
            }
            50% { 
                transform: scale(1.4); 
                opacity: 0.8;
                box-shadow: 0 0 25px var(--primary);
            }
        }

        /* Bento Grid */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            margin: 80px 0;
        }

        .bento-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .bento-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .bento-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .bento-large {
            grid-column: span 7;
        }

        .bento-medium {
            grid-column: span 5;
        }

        .bento-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .bento-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
        }

        .bento-badge {
            padding: 6px 12px;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: #A78BFA;
        }

        .bento-card img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            transition: transform 0.4s;
        }

        .bento-card:hover img {
            transform: scale(1.05);
        }

        /* How It Works */
        .how-it-works {
            margin: 120px 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .step-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(30px);
        }

        .step-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            margin: 0 auto 20px;
        }

        .step-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .step-duration {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #A78BFA;
            margin-bottom: 15px;
        }

        .step-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* ROI Calculator */
        .roi-calculator {
            background: linear-gradient(135deg, rgba(27, 127, 192, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 60px;
            margin: 80px 0;
            text-align: center;
        }

        .roi-calculator h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 40px;
        }

        .calculator-inputs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .input-group {
            text-align: left;
        }

        .input-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
        }

        .input-group input {
            width: 100%;
            padding: 15px 20px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .calculator-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .result-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
        }

        .result-value {
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .result-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Problem Cards */
        .problems-section {
            margin: 120px 0;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .problem-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(30px);
        }

        .problem-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .problem-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 107, 53, 0.5);
        }

        .problem-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .problem-amount {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent-end);
            margin-bottom: 15px;
        }

        .problem-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .problem-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Social Proof */
        .social-proof {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(27, 127, 192, 0.1));
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 60px;
            margin: 80px 0;
            text-align: center;
        }

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

        .proof-stat {
            padding: 30px;
        }

        .proof-number {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .proof-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            margin: 120px 0;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary), #8B5CF6);
            border-radius: 24px;
            padding: 80px 60px;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-box h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-box p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }

        .cta-form input {
            flex: 1;
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: #fff;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
        }

        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-form input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.3);
        }

        .cta-form button {
            padding: 18px 40px;
            background: white;
            color: var(--primary);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 60px 0 40px;
            margin-top: 120px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand img {
            height: 45px;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            max-width: 300px;
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        /* Floating CTA Button */
        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            background: #25D366;
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
            z-index: 999;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            animation: slideUp 0.5s ease forwards 1s;
        }

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

        .floating-whatsapp svg {
            flex-shrink: 0;
        }

        .floating-whatsapp:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
            background: #20BA5A;
        }

        .floating-whatsapp:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .floating-whatsapp {
                bottom: 20px;
                right: 20px;
                padding: 14px 20px;
            }
            
            .whatsapp-text {
                display: none;
            }
            
            .floating-whatsapp {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                padding: 0;
                justify-content: center;
            }
            
            .floating-whatsapp svg {
                width: 32px;
                height: 32px;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .container { padding: 0 40px; }
            .hero h1 { font-size: 56px; }
            .bento-large, .bento-medium { grid-column: span 12; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .hero h1 { font-size: 42px; }
            .stats-row, .metrics-grid, .steps-grid, .problems-grid, .proof-stats, .calculator-inputs, .calculator-results, .dashboard-mini-grid {
                grid-template-columns: 1fr;
            }
            .nav-content { gap: 20px; }
            .nav-links { display: none; }
            .footer-content { grid-template-columns: 1fr; }
            .cta-form { flex-direction: column; }
        }

        /* Competitive Advantage Section */
        .competitive-section {
            margin: 120px 0;
        }

        .competitive-table {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .competitive-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .competitive-table th {
            padding: 20px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .competitive-table td {
            padding: 25px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        .highlight-row {
            background: linear-gradient(135deg, rgba(27, 127, 192, 0.15), rgba(139, 92, 246, 0.15));
        }

        .highlight-row td {
            font-weight: 600;
        }

        .price-highlight {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 5px;
        }

        .usd-price {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .comparison-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
        }

        .check-big {
            color: #10B981;
            font-size: 24px;
            display: block;
            margin-bottom: 5px;
        }

        .cross-big {
            color: rgba(255, 255, 255, 0.3);
            font-size: 24px;
            display: block;
            margin-bottom: 5px;
        }

        .roi-badge {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, #10B981, #059669);
            border-radius: 20px;
            font-weight: 700;
            font-size: 14px;
            color: white;
        }

        .competitive-highlights {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .highlight-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s;
        }

        .highlight-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(27, 127, 192, 0.3);
        }

        .highlight-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .highlight-stat {
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .highlight-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        @media (max-width: 1200px) {
            .competitive-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .competitive-table {
                overflow-x: auto;
            }

            .competitive-highlights {
                grid-template-columns: 1fr;
            }
        }
