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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #1f2937;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            text-decoration: none;
        }

        .logo-icon {
            width: 24px;
            height: 24px;
            color: #16a34a;
        }

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

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

        nav a:hover {
            color: #16a34a;
        }

        .header-buttons {
            display: none;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-primary {
            background: #16a34a;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
             animation: pulse 2s infinite;
        }

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

        .btn-primary:hover {
            background: #15803d;
        }

        .btn-secondary {
            background: transparent;
            color: #1f2937;
            border: 1px solid #e5e7eb;
        }

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

        .btn-ghost {
            background: transparent;
            color: #1f2937;
        }

        .btn-ghost:hover {
            background: #f9fafb;
        }

        .menu-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 1rem;
            padding: 1rem 0;
            border-top: 1px solid #e5e7eb;
        }

        .mobile-menu.active {
            display: flex;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to bottom right, #f0fdf4, #ffffff, #ecfdf5);
            padding: 3rem 0;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #dcfce7;
            color: #166534;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            width: fit-content;
        }

        .hero h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            font-weight: 300;
        }

        .hero h1 .highlight {
            color: #16a34a;
        }

        .hero p {
            font-size: 1.125rem;
            color: #4b5563;
        }
        
        a{
            text-decoration: none;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding-top: 1rem;
            flex-wrap: wrap;
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .stat-divider {
            width: 1px;
            background: #d1d5db;
            height: 3rem;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        /* Features Section */
        .features {
            padding: 2rem 0;
            background: white;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .section-header p {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .feature-card {
            padding: 1.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: #86efac;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .feature-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #16a34a;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
                font-weight: 500;
        }

        .feature-card p {
            color: #6b7280;
        }

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

        .how-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .step {
            display: flex;
            gap: 1rem;
        }

        .step-icon {
            width: 3.5rem;
            height: 3.5rem;
            background: #16a34a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: white;
        }

        .step-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .step-content p {
            color: #6b7280;
        }

        .how-image {
            position: relative;
        }

        .how-image img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        /* Testimonials */
        .testimonials {
            padding: 3rem 0;
            background: white;
        }

        .testimonials-grid {
            overflow-x: auto;
            display: flex;
            flex-wrap: nowrap;
            gap: 2rem;
            -webkit-overflow-scrolling: touch;
        }
        .testimonials-grid::-webkit-scrollbar {
            display: none;
        }


        .testimonial-card {
            flex-shrink: 0;
            padding: 1.5rem;
            width: 100%;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            background: white;
            transition: box-shadow 0.3s;
        }

        .testimonial-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .star {
            width: 1.25rem;
            height: 1.25rem;
            color: #fbbf24;
            fill: #fbbf24;
        }

        .testimonial-text {
            color: #374151;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            font-weight: 500;
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Pricing */
        .pricing {
            padding: 5rem 0;
            background: #f9fafb;
        }

        .pricing-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            padding: 2rem;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 1rem;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            border-color: #86efac;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.highlighted {
            border-color: #16a34a;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }

        .popular-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: #16a34a;
            color: white;
            border-radius: 9999px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .plan-description {
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .plan-features {
            list-style: none;
            margin-top: 2rem;
        }

        .plan-features li {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .check-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #16a34a;
            flex-shrink: 0;
        }

        /* CTA Section */
        .cta {
            padding: 3rem 0;
            background: linear-gradient(to bottom right, #16a34a, #059669);
            color: white;
        }

        .cta-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
                font-weight: 300;
        }

        .cta p {
            font-size: 1.125rem;
            color: #dcfce7;
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .btn-white {
            background: white;
            color: #16a34a;
        }

        .btn-white:hover {
            background: #f3f4f6;
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            border: 1px solid white;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .cta-note {
            font-size: 0.875rem;
            color: #dcfce7;
        }

        .cta-image img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: #111827;
            color: #d1d5db;
            padding: 3rem 0;
        }

        .footer-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            margin-bottom: 2rem;
        }

        .footer-brand p {
            font-size: 0.875rem;
            margin-top: 1rem;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 1rem;
        }

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

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

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #86efac;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            font-size: 0.875rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: #d1d5db;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #86efac;
        }

        .social-icon {
            width: 1.25rem;
            height: 1.25rem;
        }

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

            .header-buttons {
                display: flex;
            }

            .menu-toggle {
                display: none;
            }

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

            .hero-buttons {
                flex-direction: row;
            }

            .hero-grid,
            .how-grid,
            .cta-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 4rem;
            }

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

            .cta h2 {
                font-size: 3rem;
            }
        }