.hero-section {
            position: relative;
            padding: 8rem 0 6rem;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 45, 85, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }

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

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

        .hero-section p {
            font-size: 1.25rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .table-of-contents {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            margin: 4rem auto;
            border: 1px solid rgba(0, 217, 255, 0.2);
        }

        .table-of-contents h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--accent);
        }

        .table-of-contents ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 1rem;
        }

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

        .table-of-contents a {
            display: block;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border-left: 3px solid var(--primary);
            transition: all 0.3s;
        }

        .table-of-contents a:hover {
            background: rgba(255, 45, 85, 0.1);
            transform: translateX(8px);
            border-left-color: var(--accent);
        }

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

        .timeline-item {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--primary);
            transition: all 0.3s;
        }

        .timeline-item:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }

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

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

        .highlight-list {
            background: linear-gradient(135deg, rgba(255, 45, 85, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .highlight-list ul {
            margin: 1rem 0 0 0;
        }

        .highlight-boxes {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        .highlight-box {
            background: var(--gradient-1);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
        }

        .highlight-box h4 {
            color: var(--text-primary);
            margin-top: 0;
        }

        .highlight-box p {
            color: rgba(255, 255, 255, 0.9);
        }

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

        .feature-block {
            position: relative;
            padding-left: 4rem;
        }

        .feature-block::before {
            content: '→';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: bold;
        }

        .numbered-list {
            counter-reset: step-counter;
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        .numbered-list article {
            counter-increment: step-counter;
            position: relative;
            padding-left: 5rem;
        }

        .numbered-list article::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            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;
            box-shadow: var(--shadow-md);
        }

        .accordion-item {
            background: var(--bg-card);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .accordion-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            position: relative;
            margin: 0;
            transition: all 0.3s;
            user-select: none;
        }

        .accordion-header:hover {
            background: rgba(255, 45, 85, 0.1);
        }

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

        .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 1.5rem 0.3rem 1.5rem !important;
        }

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

        .info-card {
            background: var(--gradient-2);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: var(--shadow-md);
        }

        .info-card h4 {
            color: var(--text-primary);
            margin-top: 0;
        }

        .info-card p {
            color: rgba(255, 255, 255, 0.95);
        }

        .checklist ul {
            list-style: none;
            margin-left: 0;
        }

        .checklist li::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
            display: inline-block;
            width: 1.5rem;
            margin-left: -1.5rem;
            margin-right: 0.5rem;
        }

        .text-block {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--accent);
        }

        .partnerships {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 45, 85, 0.1) 100%);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 45, 85, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

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

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

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        dl {
            display: grid;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        dt {
            color: var(--accent);
            font-weight: 600;
            font-size: 1.125rem;
        }

        dd {
            color: var(--text-secondary);
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }

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

            .hero-section::before,
            .hero-section::after {
                width: 300px;
                height: 300px;
            }

            section {
                padding: 3rem 0;
            }

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

            .cards-grid-2,
            .cards-grid-3 {
                grid-template-columns: 1fr;
            }

            .feature-block {
                padding-left: 3rem;
            }

            .feature-block::before {
                font-size: 2rem;
            }

            .numbered-list article {
                padding-left: 4rem;
            }

            .numbered-list article::before {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .accordion-header {
                padding: 1.25rem 1.5rem;
                padding-right: 3rem;
            }

            .accordion-header::after {
                right: 1.5rem;
            }

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

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

        @media (min-width: 768px) and (max-width: 1023px) {
            .cards-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

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