main {
            margin-top: 80px;
        }

        section {
            padding: 5rem 0;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

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

        section:nth-child(2) { animation-delay: 0.1s; }
        section:nth-child(3) { animation-delay: 0.2s; }
        section:nth-child(4) { animation-delay: 0.3s; }

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

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(247,184,1,0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

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

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

        .hero-section h1 {
            -webkit-text-fill-color: white;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .hero-section p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            max-width: 900px;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.9);
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .text-block {
            background: white;
        }

        .feature-table {
            background: white;
        }

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

        .timeline-item {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

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

        .checklist li {
            background: white;
            padding: 1rem 1rem 1rem 3rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
        }

        .checklist li::before {
            content: '✓';
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            height: auto;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
            font-size: 1.2rem;
        }

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

        .highlight-box {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-md);
            border-top: 4px solid var(--accent);
            transition: all 0.4s ease;
        }

        .highlight-box:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        .cards-grid-3 {
            background: white;
        }

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

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

        .cards-grid-2 .container > div:not(.card) {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-list li {
            background: white;
            padding: 1.5rem 1.5rem 1.5rem 3.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }

        .feature-list li::before {
            left: 1.5rem;
            width: 12px;
            height: 12px;
        }

        .comparison-table {
            overflow-x: auto;
        }

        .accordion {
            background: white;
        }

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

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

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            user-select: none;
            position: relative;
            background: var(--gradient-3);
            transition: all 0.3s ease;
        }

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

        .accordion-item.active .accordion-header::after {
            content: '−';
            transform: translateY(-50%) rotate(180deg);
        }

        .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: 1000px;
            padding: 0 1.5rem 1.5rem;
        }

        .cta-section {
            background: var(--gradient-1);
            color: white;
            text-align: center;
            padding: 6rem 0;
            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) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

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

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

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

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

        .cta-section .btn-primary {
            background: white;
            color: var(--primary);
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            padding: 18px 50px;
        }

        .cta-section .btn-primary:hover {
            background: var(--light);
            transform: translateY(-5px) scale(1.05);
        }

        @media (max-width: 768px) {
            table {
                display: block;
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .hamburger {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                transition: left 0.4s ease;
                padding: 2rem;
            }

            .main-nav.active {
                left: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .nav-list li {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .nav-list a {
                display: block;
                font-size: 1.2rem;
            }

            header .cta-button {
                display: none;
            }

            .cards-grid-3 .container > div:not(.card),
            .cards-grid-2 .container > div:not(.card) {
                grid-template-columns: 1fr;
            }

            table {
                font-size: 0.85rem;
            }

            table th,
            table td {
                padding: 0.75rem 0.5rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-list {
                gap: 1rem;
            }

            .nav-list a {
                font-size: 0.9rem;
            }
        }