* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1e293b;
            background: linear-gradient(to bottom right, #fef3c7, #ffffff, #fed7aa);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-section img {
            height: 2.5rem;
            width: 2.5rem;
        }

        .logo-section span {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
        }

        nav {
            display: none;
            gap: 2rem;
        }

        nav a {
            color: #475569;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #0f172a;
        }

        @media (min-width: 768px) {
            nav {
                display: flex;
            }
        }

        /* Hero Section */
        .hero {
            padding: 5rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        @media (min-width: 768px) {
            .hero {
                padding: 8rem 0;
            }
        }

        .hero-content h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #0f172a;
        }

        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        .hero-content h1 .highlight {
            color: #f97316;
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 0.75rem;
            background: #fed7aa;
            color: #9a3412;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #475569;
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .button-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .button-group {
                flex-direction: row;
            }
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(to right, #f97316, #fb923c);
            color: white;
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            color: #0f172a;
            border: 2px solid #cbd5e1;
        }

        .btn-secondary:hover {
            background: #f1f5f9;
        }

        .hero-image {
            display: none;
        }

        .hero-image img {
            max-width: 100%;
            filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
        }

        /* Features Section */
        .features {
            background: linear-gradient(to right, #fef3c7, #fef08a);
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
            color: #0f172a;
        }

        @media (min-width: 768px) {
            .section-header h2 {
                font-size: 3rem;
            }
        }

        .section-header p {
            font-size: 1.25rem;
            color: #475569;
            max-width: 42rem;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            background: white;
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }

        .feature-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .feature-icon.orange {
            background: linear-gradient(135deg, #f97316, #fb923c);
        }

        .feature-icon.teal {
            background: linear-gradient(135deg, #ea580c, #d97706);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: #0f172a;
        }

        .feature-card p {
            color: #475569;
            font-size: 0.95rem;
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .step-number.orange {
            background: linear-gradient(135deg, #f97316, #fb923c);
        }

        .step-number.teal {
            background: linear-gradient(135deg, #ea580c, #d97706);
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: #0f172a;
        }

        .step p {
            color: #475569;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(to right, #f97316, #fb923c);
            padding: 5rem 0;
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .cta h2 {
                font-size: 3rem;
            }
        }

        .cta p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .btn-cta {
            background: white;
            color: #f97316;
            padding: 1rem 2.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-cta:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 3rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-section h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
        }

        .logo-footer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .logo-footer img {
            height: 2rem;
            width: 2rem;
        }

        .logo-footer span {
            color: white;
            font-weight: 700;
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Arrow icon */
        .arrow {
            width: 1.25rem;
            height: 1.25rem;
            display: inline-block;
        }
        