* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(145deg, #f8fafc 0%, #eef2ff 100%);
            overflow-x: hidden;
        }

        /* floating animation for accent */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse-glow {
            0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
            100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
        }

        /* header / navbar style */
        .navbar {
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #e65c00, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .logo i {
            background: none;
            -webkit-background-clip: unset;
            color: #f97316;
            margin-right: 6px;
        }

        .nav-links {
            display: flex;
            gap: 1.8rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2d3e50;
            transition: 0.2s;
        }

        .nav-links a:hover {
            color: #f97316;
        }

        .btn-outline-nav {
            border: 2px solid #f97316;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
        }

        /* hero section */
        .hero {
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 2rem 4rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
        }

        .hero-left {
            flex: 1.2;
            min-width: 280px;
        }

        .hero-badge {
            background: #fff3e0;
            color: #f97316;
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.8rem;
            margin-bottom: 1.2rem;
        }

        .hero-left h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1e293b;
        }

        .gradient-text {
            background: linear-gradient(125deg, #f97316, #eab308);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-left p {
            font-size: 1.1rem;
            color: #475569;
            margin: 1.2rem 0 1.8rem;
            line-height: 1.5;
        }

        .offer-strip {
            background: #fef9c3;
            padding: 0.7rem 1.2rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            margin-bottom: 1.8rem;
        }

        .btn-hero {
            background: linear-gradient(95deg, #f97316, #ea580c);
            color: white;
            padding: 1rem 2.4rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 60px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 12px 20px -8px rgba(249,115,22,0.4);
            transition: all 0.25s;
            animation: pulse-glow 2s infinite;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            background: linear-gradient(95deg, #ea580c, #c2410c);
        }

        .btn-secondary {
            background: white;
            color: #f97316;
            border: 2px solid #f97316;
            padding: 0.9rem 2rem;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-left: 1rem;
            transition: 0.2s;
        }

        .btn-secondary:hover {
            background: #fff7ed;
        }

        .hero-right {
            flex: 1;
            background: linear-gradient(145deg, #ffffff, #fff5eb);
            border-radius: 2rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
        }

        .hero-right img {
            max-width: 100%;
            width: 280px;
            animation: float 3s ease-in-out infinite;
        }

        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
            gap: 1rem;
        }

        .stat-item {
            background: white;
            border-radius: 1.2rem;
            padding: 0.5rem;
            flex: 1;
        }

        /* features section */
        .features {
            background: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2.5rem;
            color: #0f172a;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: #fefcf7;
            padding: 2rem 1.2rem;
            border-radius: 1.8rem;
            transition: 0.2s;
            border: 1px solid #ffe6d5;
        }

        .feature-card i {
            font-size: 2.5rem;
            color: #f97316;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 0.5rem;
        }

        /* cta banner */
        .cta-banner {
            background: linear-gradient(115deg, #1e293b, #0f172a);
            margin: 2rem;
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            color: white;
        }

        .cta-banner h2 {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
        }

        .btn-white {
            background: white;
            color: #f97316;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 1rem;
        }

        /* footer */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2rem;
            text-align: center;
            font-size: 0.85rem;
        }

        .contact-row {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 1rem 0;
        }

        @media (max-width: 860px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 2rem 1.2rem;
            }
            .hero-left h1 {
                font-size: 2.2rem;
            }
            .btn-secondary {
                margin-left: 0;
                margin-top: 0.8rem;
            }
            .navbar {
                flex-direction: column;
            }
            .cta-banner {
                margin: 1rem;
            }
        }