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

        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient-dark);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -5%;
            right: -3%;
            width: 40%;
            height: 60%;
            background: radial-gradient(circle, rgba(255, 46, 99, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -5%;
            left: -3%;
            width: 45%;
            height: 65%;
            background: radial-gradient(circle, rgba(8, 217, 214, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse 10s ease-in-out infinite reverse;
        }

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

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

        .hero-section h1 {
            margin-bottom: 2rem;
            text-shadow: 0 0 40px rgba(255, 46, 99, 0.5);
            animation: fadeInUp 1s ease;
        }

        .hero-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: var(--text-secondary);
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-section .cta-button {
            font-size: 1.3rem;
            padding: 1.25rem 3rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

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

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

        .table-of-contents details {
            background: rgba(8, 217, 214, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(8, 217, 214, 0.2);
        }

        .table-of-contents summary {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary);
            cursor: pointer;
            user-select: none;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .table-of-contents summary::before {
            content: '▶';
            transition: transform 0.3s ease;
            color: var(--primary);
        }

        .table-of-contents details[open] summary::before {
            transform: rotate(90deg);
        }

        .table-of-contents ul {
            margin-top: 1.5rem;
            list-style: none;
            display: grid;
            gap: 0.75rem;
        }

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

        .table-of-contents li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        .table-of-contents a {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .table-of-contents a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .timeline h3 {
            position: relative;
            padding-left: 2rem;
            margin-top: 3rem;
        }

        .timeline h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--gradient-primary);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(255, 46, 99, 0.6);
        }

        .cards-grid-3 {
            background: var(--dark-alt);
        }

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

        .highlight-boxes {
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
        }

        .highlight-boxes .card {
            background: linear-gradient(135deg, rgba(8, 217, 214, 0.1) 0%, rgba(255, 46, 99, 0.05) 100%);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .highlight-boxes .card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: var(--gradient-secondary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .highlight-boxes .card:hover::before {
            opacity: 1;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: var(--dark-alt);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .comparison-table thead {
            background: var(--gradient-secondary);
        }

        .comparison-table th {
            padding: 1.25rem;
            text-align: left;
            font-weight: 600;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .comparison-table td {
            padding: 1.25rem;
            border-bottom: 1px solid rgba(8, 217, 214, 0.1);
            color: var(--text-secondary);
        }

        .comparison-table tbody tr {
            transition: all 0.3s ease;
        }

        .comparison-table tbody tr:hover {
            background: rgba(8, 217, 214, 0.05);
            transform: scale(1.01);
        }

        .accordion .accordion-item {
            background: var(--dark-alt);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(8, 217, 214, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion .accordion-item:hover {
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(8, 217, 214, 0.2);
        }

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1.3rem;
            color: var(--text-primary);
            position: relative;
        }

        .accordion-header::after {
            content: '+';
            font-size: 2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
            font-weight: 300;
        }

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

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

        .accordion-item.active .accordion-body {
            max-height: 2000px;
            padding: 0 1.5rem 1.5rem;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -5%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 235, 59, 0.3) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-section h2 {
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-button {
            background: var(--dark);
            color: var(--text-primary);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-button:hover {
            background: var(--dark-alt);
        }

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

            .hero-section {
                min-height: 70vh;
                padding: 4rem 0;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.25rem;
            }

            .cta-button, .btn {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem;
                font-size: 0.9rem;
            }

            .accordion-header {
                font-size: 1.1rem;
                padding: 1rem;
            }

            .accordion-body {
                padding: 0 1rem;
            }

            .accordion-item.active .accordion-body {
                padding: 0 1rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }