section {
            padding: 5rem 0;
            position: relative;
        }

        .hero-section {
            padding: 8rem 0 6rem;
            background: 
                radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 107, 0.15) 0%, transparent 40%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -3%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -3%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 0, 107, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            animation: float 8s ease-in-out infinite reverse;
        }

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

        .hero-section h1 {
            margin-bottom: 2rem;
        }

        .hero-section p {
            font-size: 1.125rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .table-of-contents {
            background: rgba(10, 14, 39, 0.4);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(0, 217, 255, 0.2);
        }

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

        .table-of-contents .checklist {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .table-of-contents .checklist li {
            position: relative;
            padding-left: 2rem;
        }

        .table-of-contents .checklist li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .table-of-contents .checklist a {
            color: var(--text-muted);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .table-of-contents .checklist a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .timeline-item {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 4rem;
            border-left: 2px solid rgba(0, 217, 255, 0.3);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 14px;
            height: 14px;
            background: var(--gradient-2);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--darker), 0 0 20px rgba(255, 0, 107, 0.5);
        }

        .timeline-item h3 {
            margin-bottom: 1.5rem;
        }

        .icon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-block {
            background: rgba(10, 14, 39, 0.5);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-block::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-2);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .feature-block:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .feature-block:hover::before {
            opacity: 0.15;
        }

        .feature-block h3 {
            margin-bottom: 1.25rem;
        }

        .cards-grid-2 .card {
            margin-bottom: 2rem;
        }

        .accordion-item {
            background: rgba(10, 14, 39, 0.5);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 1.5rem 3rem 1.5rem 1.5rem;
            cursor: pointer;
            font-size: 1.25rem;
            color: var(--text);
            position: relative;
            transition: all 0.3s ease;
        }

        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.75rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-header::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 1.5rem 0.3rem 1.5rem !important;
        }

        .accordion-item.active .accordion-body {
            max-height: 500px;
            padding: 0 1.5rem 0.3rem 1.5rem !important;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.03) 20px
            );
            animation: slide 20s linear infinite;
        }

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

        .cta-section h2 {
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .cta-section h2::after {
            display: none;
        }

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

        .cta-section .btn-primary {
            background: var(--gradient-2);
            font-size: 18px;
            padding: 18px 50px;
        }

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

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

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.35rem;
            }

            .table-of-contents {
                padding: 2rem 1.5rem;
            }

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

            .timeline-item {
                padding-left: 2rem;
            }

            .icon-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-block {
                padding: 1.75rem;
            }

            .card {
                padding: 1.75rem;
            }

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

            .btn {
                padding: 14px 32px;
                font-size: 15px;
            }

            table th,
            table td {
                padding: 1rem 0.75rem;
                font-size: 13px;
            }
        }

        @media (min-width: 1440px) {
            .container {
                max-width: 1320px;
            }
        }