
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a1a2e;
            color: #fff;
            overflow-x: hidden;
        }

        .slide-container {
            width: 100vw;
            height: 100vh;
            position: relative;
            scroll-snap-type: y mandatory;
            overflow-y: scroll;
        }

        .slide {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
            scroll-snap-align: start;
            position: relative;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.05;
            background: linear-gradient(45deg, transparent 30%, #00d4ff 30%, #00d4ff 70%, transparent 70%);
            background-size: 100px 100px;
        }

        .slide-content {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #00d4ff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #00d4ff;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        h3 {
            font-size: 1.8rem;
            color: #00ff88;
            margin-bottom: 20px;
        }

        p, li {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 15px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .stat-card {
            background: rgba(0, 212, 255, 0.1);
            border: 2px solid #00d4ff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.8s ease both;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #00ff88;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #fff;
        }

        .budget-table {
            width: 100%;
            margin: 30px 0;
            border-collapse: separate;
            border-spacing: 0 15px;
        }

        .budget-table th {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            padding: 20px;
            font-size: 1.3rem;
            text-align: left;
        }

        .budget-table td {
            background: rgba(0, 212, 255, 0.1);
            padding: 20px;
            font-size: 1.2rem;
            border-left: 3px solid #00d4ff;
        }

        .budget-table tr {
            animation: slideInLeft 0.6s ease both;
        }

        .budget-table tr:nth-child(n) {
            animation-delay: calc(0.1s * var(--i));
        }

        .price-card {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.1));
            border: 2px solid #00d4ff;
            border-radius: 20px;
            padding: 40px;
            margin: 20px 0;
            transition: transform 0.3s ease;
        }

        .price-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
        }

        .price-header {
            font-size: 2rem;
            color: #00ff88;
            margin-bottom: 15px;
        }

        .price-amount {
            font-size: 3.5rem;
            color: #00d4ff;
            margin: 20px 0;
        }

        .price-features {
            list-style: none;
            margin: 20px 0;
        }

        .price-features li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ff88;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: linear-gradient(135deg, #00d4ff, #00ff88);
            color: #1a1a2e;
            font-size: 1.5rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: pulse 2s infinite;
        }

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

        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 40px 0;
        }

        .comparison-card {
            padding: 30px;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .comparison-card.bad {
            background: rgba(255, 0, 0, 0.1);
            border: 2px solid #ff4444;
        }

        .comparison-card.good {
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid #00ff88;
        }

        .comparison-card:hover {
            transform: translateY(-5px);
        }

        .slide-number {
            position: fixed;
            bottom: 30px;
            right: 30px;
            font-size: 1.2rem;
            color: #00d4ff;
            z-index: 100;
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .highlight {
            color: #00ff88;
            font-weight: bold;
        }

        .emoji {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .slide { padding: 30px; }
            .comparison { grid-template-columns: 1fr; }
        }
    