        :root {
            --primary-green: #84CC16;
            --primary-green-dark: #65A30D;
            --dark: #0F172A;
            --gray-900: #111827;
            --gray-800: #1F2937;
            --gray-700: #374151;
            --gray-600: #4B5563;
            --gray-500: #6B7280;
            --gray-400: #9CA3AF;
            --gray-100: #F3F4F6;
            --gray-50: #F9FAFB;
            --white: #FFFFFF;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            background-color: var(--white);
            overflow-x: hidden;
            width: 100%;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray-100);
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            position: relative;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        /* Desktop Navigation - Hidden on Mobile */
        .nav-menu {
            display: none;
            list-style: none;
            gap: 24px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-green);
        }

        .nav-signin {
            color: var(--gray-700) !important;
            font-weight: 600;
        }

        .nav-signup {
            background: var(--primary-green);
            color: var(--white) !important;
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-signup:hover {
            background: var(--primary-green-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(132, 204, 22, 0.4);
        }

        /* Mobile Menu Toggle - Visible on Mobile Only */
        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
            gap: 5px;
            padding: 10px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--gray-800);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Navigation Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding: 80px 24px 24px;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-nav a {
            display: block;
            padding: 16px;
            text-decoration: none;
            color: var(--gray-800);
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .mobile-nav a:hover {
            background: var(--gray-50);
            color: var(--primary-green);
        }

        .mobile-nav .nav-signup {
            background: var(--primary-green);
            color: var(--white) !important;
            text-align: center;
            margin-top: 8px;
        }

        .mobile-nav .nav-signin {
            text-align: center;
            border: 2px solid var(--gray-200);
            margin-top: 8px;
        }

        .mobile-contact {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-100);
        }

        .mobile-contact p {
            font-size: 0.9rem;
            color: var(--gray-600);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Hero Section - Full Screen */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 60px;
            background: linear-gradient(135deg, #FAFDF7 0%, #F0FDF4 100%);
            overflow: hidden;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(132, 204, 22, 0.1);
            color: var(--primary-green-dark);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            width: fit-content;
        }

        .hero-badge i {
            font-size: 0.8rem;
        }

        /* Mobile Optimized Font Sizes - SMALLER */
        .hero h1 {
            font-size: 1.5rem;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .hero h1 span {
            color: var(--primary-green);
            position: relative;
        }

        .hero-description {
            font-size: 0.9rem;
            color: var(--gray-600);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .hero-tagline {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-green-dark);
            margin-bottom: 20px;
            font-style: italic;
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .btn-primary {
            background: var(--primary-green);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(132, 204, 22, 0.4);
        }

        .btn-primary:hover {
            background: var(--primary-green-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(132, 204, 22, 0.5);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--gray-800);
            border: 2px solid var(--gray-200);
        }

        .btn-secondary:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
        }

        .hero-note {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-bottom: 20px;
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.75rem;
            color: var(--gray-600);
            flex-wrap: wrap;
        }

        .stars {
            color: #FBBF24;
            letter-spacing: -2px;
        }

        .hero-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            background: var(--white);
            border: 1px solid var(--gray-100);
        }

        .hero-image img {
            width: 100%;
            height: auto;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 6px 10px;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.65rem;
            font-weight: 600;
            animation: float 3s ease-in-out infinite;
        }

        .floating-card.mpesa {
            bottom: 15px;
            left: 10px;
            color: #00A650;
        }

        .floating-card.kra {
            top: 15px;
            right: 10px;
            color: var(--primary-green);
            animation-delay: 1s;
        }

        .floating-card i {
            font-size: 0.9rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Trust Logos */
        .trust-logos {
            padding: 40px 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-100);
        }

        .trust-logos p {
            text-align: center;
            font-size: 0.65rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .logos-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            opacity: 0.6;
        }

        .logos-grid span {
            font-size: 0.8rem;
        }

        /* Why Choose Section - 2x4 Grid */
        .why-choose {
            padding: 50px 0;
            background: var(--gray-50);
        }

        .section-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .section-header h2 {
            font-size: 1.35rem;
            color: var(--dark);
            margin-bottom: 10px;
            font-weight: 800;
            line-height: 1.3;
        }

        .section-header p {
            font-size: 0.85rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        /* 2x4 Grid for Why Choose */
        .why-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .why-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 14px;
            padding: 20px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-green);
        }

        .why-icon {
            width: 48px;
            height: 48px;
            background: rgba(132, 204, 22, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            color: var(--primary-green);
            font-size: 1.3rem;
        }

        .why-card h3 {
            font-size: 0.95rem;
            margin-bottom: 6px;
            color: var(--dark);
            font-weight: 700;
        }

        .why-card p {
            font-size: 0.8rem;
            color: var(--gray-600);
            line-height: 1.5;
        }

        /* Modules Section */
        .modules {
            padding: 50px 0;
            background: var(--white);
            
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            
        }

        .module-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 12px;
            padding: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .module-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-green);
        }

        .module-icon {
            width: 36px;
            height: 36px;
            background: rgba(132, 204, 22, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: var(--primary-green);
            font-size: 1.1rem;
        }

        .module-card h3 {
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: var(--dark);
            font-weight: 700;
        }

        .module-card p {
            font-size: 0.8rem;
            color: var(--gray-600);
            line-height: 1.5;
        }

        .module-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary-green);
            color: var(--white);
            font-size: 0.6rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .modules-cta {
            text-align: center;
            margin-top: 28px;
        }

        .btn-outline-green {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            display: inline-flex;
            width: auto;
            padding: 10px 24px;
            font-size: 0.85rem;
        }

        .btn-outline-green:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        /* Pricing Section - PURE WHITE BACKGROUND */
        .pricing-new {
            padding: 50px 0;
            background: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 100%;
            margin: 0 auto;
            background: var(--white);
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--gray-100);
            border-radius: 16px;
            padding: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .pricing-card.featured {
            border-color: var(--primary-green);
            box-shadow: 0 10px 40px -10px rgba(132, 204, 22, 0.2);
            order: -1;
        }

        .pricing-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--primary-green);
            color: var(--white);
            font-size: 0.65rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .pricing-header {
            margin-bottom: 14px;
        }

        .pricing-header h3 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 4px;
            font-weight: 700;
        }

        .pricing-header p {
            font-size: 0.75rem;
            color: var(--gray-500);
        }

        .price {
            margin-bottom: 16px;
        }

        .price-amount {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }

        .price-amount span {
            font-size: 0.8rem;
            color: var(--gray-500);
            font-weight: 500;
        }

        .price-period {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 4px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 18px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--gray-700);
        }

        .pricing-features i {
            color: var(--primary-green);
            font-size: 0.8rem;
        }

        .pricing-features .disabled {
            color: var(--gray-400);
            text-decoration: line-through;
        }

        .pricing-features .disabled i {
            color: var(--gray-300);
        }

        .pricing-cta {
            width: 100%;
            text-align: center;
            justify-content: center;
            padding: 10px;
            font-size: 0.85rem;
        }

        .pricing-note {
            text-align: center;
            margin-top: 24px;
            font-size: 0.75rem;
            color: var(--gray-500);
        }

        /* CTA Section */
        .cta-section {
            padding: 50px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(132, 204, 22, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 1.35rem;
            color: var(--white);
            margin-bottom: 12px;
            font-weight: 800;
            line-height: 1.3;
        }

        .cta-content p {
            font-size: 0.85rem;
            color: var(--gray-400);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 100%;
            margin: 0 auto;
        }

        .btn-white {
            background: var(--white);
            color: var(--dark);
        }

        .btn-white:hover {
            background: var(--gray-100);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: var(--gray-400);
            padding: 40px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            max-width: 100%;
        }

        .footer-brand .logo {
            margin-bottom: 16px;
        }

        .footer-brand .logo-text {
            color: var(--white);
        }

        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .footer-social a:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 0.95rem;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.85rem;
        }

        .footer-contact i {
            color: var(--primary-green);
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
        }

        /* Tablet Breakpoint (640px and up) - 2 COLUMNS FOR PRICING */
        @media (min-width: 640px) {
            .container {
                padding: 0 24px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-cta-group {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .btn {
                width: auto;
                font-size: 0.9rem;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .modules-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            /* 2 columns for pricing on tablet */
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                max-width: 100%;
            }

            .pricing-card.featured {
                order: 0;
                transform: scale(1.02);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Breakpoint (768px and up) */
        @media (min-width: 768px) {
            .hero .container {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .why-choose, .modules, .pricing {
                padding: 60px 0;
            }

            .cta-content h2 {
                font-size: 1.75rem;
            }

            .cta-buttons {
                flex-direction: row;
                justify-content: center;
                max-width: none;
            }
        }

        /* Large Desktop Breakpoint (1024px and up) - 3 COLUMNS FOR PRICING */
        @media (min-width: 1024px) {
            .mobile-menu-toggle {
                display: none;
            }

            .nav-menu {
                display: flex;
            }

            .mobile-nav {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.05rem;
            }

            .why-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }

            .modules-grid {
                grid-template-columns: repeat(3, 1fr);
                
            }

            /* 3 columns for pricing on desktop */
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                max-width: 1000px;
                align-items: start;
            }

            .pricing-card.featured {
                order: 0;
                transform: scale(1.05);
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 2fr;
            }
        }

        /* Prevent horizontal scroll */
        html, body {
            overflow-x: hidden;
            position: relative;
            width: 100%;
        }