<style>


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            color: #1a1a1a;
            padding: 8rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            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); }
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.3rem;
            color: #2d2d2d;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Features Grid */
        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 5%;
            background: #ffffff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 5rem;
        }

        .feature-card {
            background: white;
            border: 2px solid #fef3c7;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.25);
            border-color: #fbbf24;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-weight: 700;
        }

        .feature-card p {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .feature-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .feature-list li {
            padding: 0.6rem 0;
            padding-left: 1.8rem;
            position: relative;
            color: #666;
        }

        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #fbbf24;
            font-weight: bold;
            font-size: 1.2rem;
        }


        /* Detailed Feature Section */
        .detailed-feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 5rem 0;
            padding: 3rem;
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            border-radius: 20px;
            border: 2px solid #fef3c7;
        }

        .detailed-feature:nth-child(even) {
            direction: rtl;
            background: linear-gradient(to bottom, #ffffff 0%, #fffbeb 100%);
        }

        .detailed-feature:nth-child(even) > * {
            direction: ltr;
        }

        .feature-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .feature-content h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #fbbf24, transparent);
            border-radius: 2px;
        }

        .feature-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .feature-content p strong {
            color: #1a1a1a;
            font-weight: 700;
        }

        .feature-image {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            border: 2px solid #fef3c7;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-image:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2);
            border-color: #fbbf24;
        }

        .feature-image-placeholder {
            font-size: 5rem;
            opacity: 0.6;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 5rem 5%;
            margin: 5rem 0;
            background: linear-gradient(135deg, #f0c34deb 0%, #f59e0be8 50%, #e3a863 90%);
            border-radius: 20px;
            max-width: 1200px;
            margin: 5rem auto;
            position: relative;
            overflow: hidden;
        }

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

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #2d2d2d;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }


        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 0.8rem 3%;
            }

            .logo {
                font-size: 1.3rem;
            }

            .cta-button {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }

            .hero {
                padding: 3rem 4% 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .detailed-feature {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem;
            }

            .nav-links {
                display: none;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .feature-content h3 {
                font-size: 1.6rem;
            }

            .feature-content p {
                font-size: 1rem;
            }

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

            .hero::after {
                background: linear-gradient(to bottom, transparent 49%, #ffffff 50%);
            }
        }