.hero-section {
            padding: 6rem 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

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

        .hero-section .container {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-section .lead {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin: 2rem auto;
            max-width: 900px;
            color: rgba(248, 249, 250, 0.85);
            line-height: 1.8;
        }

        .hero-section .cta-button {
            margin-top: 2rem;
            font-size: 1.3rem;
            padding: 20px 60px;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 8px 30px rgba(255, 0, 107, 0.4); }
            50% { box-shadow: 0 8px 50px rgba(255, 0, 107, 0.7); }
        }

        .table-of-contents {
            background: var(--dark-alt);
            padding: 3rem 0;
        }

        .table-of-contents h2 {
            margin-bottom: 2rem;
        }

        .table-of-contents ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .table-of-contents li {
            margin: 0;
        }

        .table-of-contents a {
            display: block;
            padding: 1rem 1.5rem;
            background: var(--dark);
            border-radius: 12px;
            border: 2px solid rgba(0, 217, 255, 0.2);
            transition: all 0.3s ease;
            color: var(--light);
        }

        .table-of-contents a:hover {
            background: rgba(0, 217, 255, 0.1);
            border-color: var(--primary);
            transform: translateX(10px);
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }

        .timeline-marker {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
        }

        .timeline-content {
            padding-left: 2rem;
            border-left: 3px solid rgba(0, 217, 255, 0.3);
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 1rem 0;
            padding-left: 3rem;
            position: relative;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .bonuses .card {
            text-align: center;
            margin-bottom: 2rem;
        }

        .bonus-amount {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-cyber);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1rem 0;
        }

        .bonuses .card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-block {
            margin: 3rem 0;
            padding: 2rem;
            background: var(--dark-alt);
            border-radius: 20px;
            border: 2px solid rgba(0, 217, 255, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
        }

        .feature-icon img {
            width: 48px;
            height: 48px;
        }

        .numbered-list {
            counter-reset: item;
            list-style: none;
            padding: 0;
        }

        .numbered-list li {
            counter-increment: item;
            padding: 1.5rem 0;
            padding-left: 4rem;
            position: relative;
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

        .numbered-list li::before {
            content: counter(item);
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .accordion-item {
            background: var(--dark-alt);
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 2px solid rgba(0, 217, 255, 0.2);
            overflow: hidden;
        }

        .accordion-header button {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            text-align: left;
            color: var(--light);
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            min-height: 44px;
        }

        .accordion-header button:hover {
            background: rgba(0, 217, 255, 0.05);
        }

        .accordion-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .accordion-icon::after {
            content: '+';
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .accordion-header button[aria-expanded="true"] .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-body {
            display: none;
            padding: 0 1.5rem 1.5rem;
        }

        .accordion-body.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-section {
            background: var(--gradient-cyber);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }

        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-section h2::after {
            background: white;
            left: 50%;
            transform: translateX(-50%);
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.95);
        }

        .cta-section .cta-button {
            background: white;
            color: var(--dark);
            font-size: 1.3rem;
            padding: 20px 60px;
        }

        .cta-section .cta-button:hover {
            color: var(--dark);
            transform: translateY(-5px) scale(1.05);
        }

        @media (max-width: 991px) {
            section {
                padding: 3rem 0;
            }

            .hero-section {
                padding: 4rem 0;
            }

            .timeline-item {
                grid-template-columns: 50px 1fr;
                gap: 1rem;
            }

            .timeline-marker {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .timeline-content {
                padding-left: 1rem;
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                padding: 3rem 0;
            }

            .hero-section .cta-button {
                font-size: 1.1rem;
                padding: 16px 40px;
            }

            .table-of-contents ul {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                grid-template-columns: 1fr;
            }

            .timeline-marker {
                width: 100%;
                max-width: 60px;
                margin: 0 auto;
            }

            .timeline-content {
                padding-left: 0;
                border-left: none;
                border-top: 3px solid rgba(0, 217, 255, 0.3);
                padding-top: 2rem;
            }

            .feature-list li {
                padding-left: 2.5rem;
            }

            .feature-list li::before {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }

            .numbered-list li {
                padding-left: 3rem;
            }

            .numbered-list li::before {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .cta-section .cta-button {
                font-size: 1.1rem;
                padding: 16px 40px;
            }

            table th, table td {
                padding: 0.8rem;
                font-size: 0.9rem;
            }
        }

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

            h2::after {
                width: 40px;
            }

            .bonus-amount {
                font-size: 2rem;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
            }

            .feature-icon img {
                width: 36px;
                height: 36px;
            }
        }