* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1A2C2E;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Color Palette */
        :root {
            --primary: #035938;
            --primary-dark: #02452b;
            --primary-soft: #e0f0e8;
            --secondary: #7ead36;
            --secondary-dark: #5f8229;
            --gray-light: #f8fafc;
            --gray-border: #eef2f0;
            --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
            --gradient-primary: linear-gradient(135deg, #035938 0%, #1b8c5a 100%);
            --gradient-accent: linear-gradient(120deg, #7ead36, #9dcb5a);
        }

        /* Custom Scroll */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* Typography */
        h1, h2, h3, h4, .fw-semibold {
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .display-lead {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .display-lead {
                font-size: 2.3rem;
            }
        }

        /* Buttons & UI */
        .btn-primary-custom {
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 60px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(3, 89, 56, 0.2);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #024b2f, #0e6e48);
            box-shadow: 0 12px 20px -10px rgba(3, 89, 56, 0.4);
        }
        .btn-outline-custom {
            border: 1.5px solid var(--primary);
            background: transparent;
            color: var(--primary);
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 60px;
            transition: all 0.2s ease;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .btn-secondary-custom {
            background: var(--secondary);
            border: none;
            color: white;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 60px;
            transition: all 0.2s ease;
        }
        .btn-secondary-custom:hover {
            background: var(--secondary-dark);
            transform: scale(1.02);
        }

        /* Navbar */
        .navbar {
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 2px 12px rgba(0,0,0,0.02);
            transition: all 0.3s;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            font-weight: 500;
            color: #1e2f32;
            margin: 0 6px;
            transition: 0.2s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        /* Cards & Sections */
        .card-feature {
            border: none;
            background: white;
            border-radius: 28px;
            padding: 1.8rem 1.5rem;
            transition: all 0.25s ease;
            box-shadow: var(--shadow-sm);
            height: 100%;
            border: 1px solid var(--gray-border);
        }
        .card-feature:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }
        .icon-wrapper {
            width: 64px;
            height: 64px;
            background: var(--primary-soft);
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 2rem;
            transition: 0.2s;
        }
        .step-circle {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            margin-bottom: 1.2rem;
        }
        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 1.8rem;
            border: 1px solid var(--gray-border);
            box-shadow: var(--shadow-sm);
            transition: 0.2s;
        }
        .trust-badge {
            background: #f4fbf7;
            border-radius: 60px;
            padding: 6px 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: var(--primary);
        }
        .faq-item {
            border-bottom: 1px solid var(--gray-border);
            padding: 1rem 0;
        }
        .faq-question {
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            justify-content: space-between;
        }
        .faq-answer {
            display: none;
            padding-top: 0.8rem;
            color: #4a5b5e;
        }
        .faq-question.active + .faq-answer {
            display: block;
        }
        .footer {
            background: #0a1f1c;
            color: #cddfdb;
        }
        .app-preview-placeholder {
            background: linear-gradient(145deg, #f2f6f4, #e6ece9);
            border-radius: 42px;
            padding: 2rem;
            text-align: center;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.02), 0 20px 30px -15px rgba(0,0,0,0.1);
        }
        .illustration-placeholder {
            background: radial-gradient(circle at 30% 20%, rgba(3,89,56,0.04), transparent 70%);
            border-radius: 48px;
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .bg-soft-primary {
            background-color: var(--primary-soft);
        }