﻿:root {
            --unja-green: #0b7a3b;
            --unja-gold: #f4b000;
            --unja-dark: #0f172a;
            --unja-muted: #64748b;
            --unja-soft: #f8fafc;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--unja-dark);
            background: #ffffff;
            overflow-x: hidden;
        }

        .navbar {
            padding: 18px 0;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(18px);
            box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--unja-dark) !important;
            font-weight: 900;
        }

        .navbar-brand img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .navbar-brand span,
        .hero-title span {
            color: var(--unja-green);
        }

        .nav-link {
            margin: 0 8px;
            color: #334155 !important;
            font-weight: 700;
        }

        .nav-link:hover {
            color: var(--unja-green) !important;
        }

        .btn-unja,
        .btn-unja-outline:hover {
            color: #ffffff !important;
            background: linear-gradient(135deg, var(--unja-green), #10a65a);
            border: 0;
            box-shadow: 0 14px 30px rgba(11, 122, 59, 0.28);
        }

        .btn-unja,
        .btn-unja-outline {
            padding: 12px 24px;
            border-radius: 999px;
            font-weight: 800;
        }

        .btn-unja-outline {
            color: var(--unja-green) !important;
            background: #ffffff;
            border: 1px solid rgba(11, 122, 59, 0.22);
        }

        .hero {
            position: relative;
            min-height: 92vh;
            padding: 135px 0 86px;
            background:
                radial-gradient(circle at 8% 12%, rgba(244, 176, 0, 0.24), transparent 28%),
                radial-gradient(circle at 86% 20%, rgba(11, 122, 59, 0.18), transparent 32%),
                linear-gradient(135deg, #f8fff9, #ffffff 46%, #effdf5);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(11, 122, 59, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(11, 122, 59, 0.05) 1px, transparent 1px);
            background-size: 42px 42px;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            color: var(--unja-green);
            background: rgba(11, 122, 59, 0.09);
            border-radius: 999px;
            font-size: 0.86rem;
            font-weight: 900;
        }

        .hero-title {
            margin-top: 22px;
            font-size: clamp(2.55rem, 5vw, 5rem);
            line-height: 1.02;
            font-weight: 950;
            letter-spacing: -0.055em;
        }

        .hero-text {
            max-width: 620px;
            margin: 24px 0 32px;
            color: var(--unja-muted);
            font-size: 1.08rem;
            line-height: 1.85;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .trust {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 34px;
            color: #475569;
            font-weight: 800;
        }

        .trust span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .trust i {
            color: var(--unja-green);
        }

        .mockup {
            position: relative;
            padding: 24px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.75));
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 34px;
            box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
        }

        .mockup::before {
            content: '';
            position: absolute;
            top: -52px;
            right: -48px;
            z-index: -1;
            width: 210px;
            height: 210px;
            background: rgba(244, 176, 0, 0.22);
            border-radius: 50%;
        }

        .dots {
            display: flex;
            gap: 8px;
            padding: 6px 0 22px;
        }

        .dots span {
            width: 12px;
            height: 12px;
            background: #ef4444;
            border-radius: 50%;
        }

        .dots span:nth-child(2) {
            background: #f59e0b;
        }

        .dots span:nth-child(3) {
            background: #22c55e;
        }

        .mini-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 16px;
            background: #f8fafc;
            border-radius: 22px;
        }

        .mini-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 900;
        }

        .mini-logo img {
            width: 34px;
        }

        .pill {
            padding: 8px 12px;
            color: var(--unja-green);
            background: #dcfce7;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 900;
            white-space: nowrap;
        }

        .asset-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-top: 18px;
        }

        .tile {
            min-height: 142px;
            padding: 18px;
            background: #ffffff;
            border: 1px solid #edf2f7;
            border-radius: 24px;
        }

        .tile.big {
            grid-column: span 2;
            min-height: 174px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--unja-green), #0f9f55);
        }

        .icon {
            display: grid;
            place-items: center;
            width: 58px;
            height: 58px;
            margin-bottom: 22px;
            color: var(--unja-green);
            background: #dcfce7;
            border-radius: 18px;
            font-size: 1.65rem;
            font-weight: 900;
        }

        .tile .icon {
            width: 42px;
            height: 42px;
            margin-bottom: 0;
            border-radius: 14px;
            font-size: 1.3rem;
        }

        .big .icon {
            color: var(--unja-gold);
            background: rgba(255, 255, 255, 0.18);
        }

        .tile h3 {
            margin: 16px 0 2px;
            font-size: 1.8rem;
            font-weight: 900;
        }

        .tile p {
            margin: 0;
            color: #64748b;
            font-weight: 700;
        }

        .big p {
            color: rgba(255, 255, 255, 0.78);
        }

        .stats {
            position: relative;
            z-index: 5;
            margin-top: -54px;
        }

        .stats-box {
            padding: 30px;
            background: #ffffff;
            border: 1px solid #edf2f7;
            border-radius: 30px;
            box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
        }

        .stat {
            padding: 14px;
            text-align: center;
        }

        .stat strong {
            display: block;
            color: var(--unja-green);
            font-size: 2.35rem;
            font-weight: 950;
            letter-spacing: -0.04em;
        }

        .stat span {
            color: var(--unja-muted);
            font-weight: 800;
        }

        .section {
            padding: 92px 0;
        }

        .muted {
            background: var(--unja-soft);
        }

        .heading {
            max-width: 730px;
            margin: 0 auto 46px;
            text-align: center;
        }

        .heading h2 {
            font-size: clamp(2rem, 3vw, 3.1rem);
            font-weight: 950;
            letter-spacing: -0.035em;
        }

        .heading p {
            color: var(--unja-muted);
            line-height: 1.8;
        }

        .cardx {
            height: 100%;
            padding: 28px;
            background: #ffffff;
            border: 1px solid #edf2f7;
            border-radius: 28px;
            box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
            transition: 0.25s ease;
        }

        .cardx:hover {
            transform: translateY(-8px);
            box-shadow: 0 26px 70px rgba(15, 23, 42, 0.11);
        }

        .cardx h4 {
            margin-bottom: 12px;
            font-weight: 900;
        }

        .cardx p {
            margin: 0;
            color: var(--unja-muted);
            line-height: 1.75;
        }

        .cta {
            padding: 88px 0;
            color: #ffffff;
            background:
                radial-gradient(circle at 12% 20%, rgba(244, 176, 0, 0.25), transparent 26%),
                linear-gradient(135deg, #063d22, #0b7a3b);
        }

        .cta-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: wrap;
        }

        .cta h2 {
            max-width: 760px;
            font-size: clamp(2rem, 4vw, 3.4rem);
            font-weight: 950;
            letter-spacing: -0.045em;
        }

        .cta p {
            max-width: 650px;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.8;
        }

        .footer {
            padding: 34px 0;
            color: rgba(255, 255, 255, 0.72);
            background: #061b12;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #ffffff;
            font-weight: 900;
        }

        .footer-brand img {
            width: 38px;
        }

        @media (max-width: 991px) {
            .hero {
                padding-top: 112px;
            }

            .mockup {
                margin-top: 46px;
            }
        }

        @media (max-width: 575px) {
            .asset-grid {
                grid-template-columns: 1fr;
            }

            .tile.big {
                grid-column: span 1;
            }

            .hero-actions .btn-unja,
            .hero-actions .btn-unja-outline {
                width: 100%;
                text-align: center;
            }
        }
