main {
            padding-top: 90px;
        }

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

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: radial-gradient(ellipse at top, rgba(0, 102, 255, 0.15) 0%, transparent 70%),
                        radial-gradient(ellipse at bottom right, rgba(255, 0, 110, 0.1) 0%, transparent 60%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

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

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

        .overview {
            background: var(--gradient-3);
        }

        .overview table {
            margin-top: 3rem;
        }

        .timeline {
            background: var(--bg-dark);
        }

        .timeline-item {
            padding-left: 3rem;
            position: relative;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

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

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 24px;
            width: 2px;
            height: calc(100% + 20px);
            background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        }

        .timeline-item:last-child::after {
            display: none;
        }

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

        .cards-grid-3 .container {
            display: block;
        }

        .cards-grid-3 .cards-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        @media (max-width: 1024px) {
            .cards-grid-3 .cards-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .cards-grid-3 .cards-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .tabs-container {
            background: var(--bg-dark);
        }

        .tabs-nav {
            display: flex;
            gap: 1rem;
            margin: 3rem 0 2rem;
            flex-wrap: wrap;
        }

        .tab-link {
            background: var(--secondary);
            color: var(--text-light);
            border: 2px solid transparent;
            padding: 14px 32px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .tab-link:hover {
            border-color: var(--accent);
        }

        .tab-link.active {
            background: var(--gradient-1);
            box-shadow: var(--shadow-md);
        }

        .tab-content {
            display: none;
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
        }

        .tab-content.active {
            display: block;
        }

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

        .tab-content img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 16px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow-lg);
        }

        .feature-list {
            background: var(--gradient-3);
        }

        .feature-item {
            background: var(--secondary);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent);
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
        }

        .highlight-boxes {
            background: var(--bg-dark);
        }

        .highlight-boxes .container {
            display: block;
        }

        .highlight-boxes-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (max-width: 1024px) {
            .highlight-boxes-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .highlight-boxes-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .highlight-box {
            background: var(--secondary);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .highlight-box:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .highlight-box:hover::before {
            transform: scaleX(1);
        }

        .accordion {
            background: var(--secondary);
        }

        .accordion-item {
            background: var(--primary);
            margin-bottom: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-md);
        }

        .accordion-header {
            padding: 1.75rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

        .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 2rem;
        }

        .accordion-item.active .accordion-body {
            max-height: 500px;
            padding: 0 2rem 1.75rem;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 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;
        }

        @media (max-width: 768px) {
            header .container {
                padding: 1rem 20px;
            }

            .hamburger {
                display: flex;
            }

            header nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 320px;
                height: 100vh;
                background: rgba(10, 15, 30, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                transition: right 0.4s ease;
                gap: 0;
                padding-top: 80px;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
                z-index: 1000;
            }

            header nav.active {
                right: 0;
            }

            header .nav-menu {
                flex-direction: column;
                gap: 0;
                text-align: left;
                margin-bottom: 2rem;
                padding: 0 2rem;
            }

            header .nav-menu li {
                border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            }

            header .nav-menu li a {
                font-size: 1.125rem;
                padding: 1.25rem 0;
                display: block;
            }

            header .cta-button {
                width: calc(100% - 4rem);
                max-width: none;
                margin: 0 2rem;
                text-align: center;
            }

            section {
                padding: 4rem 0;
            }

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

            .tabs-nav {
                flex-direction: column;
            }

            .tab-link {
                width: 100%;
                text-align: center;
            }

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

            footer {
                display: block !important;
            }

            footer nav {
                display: block !important;
            }

            .footer-menu {
                display: flex !important;
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                visibility: visible !important;
                opacity: 1 !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            .footer-menu li {
                display: list-item !important;
                visibility: visible !important;
                opacity: 1 !important;
            }

            .footer-menu li a {
                display: block !important;
                visibility: visible !important;
                opacity: 0.8 !important;
            }

            table {
                font-size: 0.875rem;
            }

            th, td {
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            .btn-primary {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .card {
                padding: 1.5rem;
            }

            .highlight-box {
                padding: 1.5rem;
            }

            .feature-item {
                padding: 1.5rem;
            }
        }