﻿:root {
            --ag-primary: #2e7d32;
            --ag-primary-dark: #245f29;
            --ag-earth: #8a6335;
            --ag-surface: #f7faf6;
            --ag-border: #d8e6d4;
            --ag-text: #1f2a1f;
            --ag-muted: #5d6d5f;
            --ag-header-dark: #173524;
            --ag-header-dark-2: #214731;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--ag-text);
            background-color: #ffffff;
        }

        main {
            overflow-x: clip;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Manrope', sans-serif;
            color: #17311f;
        }

        .section-space {
            padding: 5rem 0;
        }

        .section-space-sm {
            padding: 3.5rem 0;
        }

        .text-muted-ag {
            color: var(--ag-muted);
        }

        .bg-soft-ag {
            background-color: var(--ag-surface);
        }

        .btn-ag-primary {
            background-color: var(--ag-primary);
            border-color: var(--ag-primary);
            color: #fff;
            font-weight: 600;
        }

        .btn-ag-primary:hover {
            background-color: var(--ag-primary-dark);
            border-color: var(--ag-primary-dark);
            color: #fff;
        }

        .btn-ag-outline {
            border: 1px solid var(--ag-primary);
            color: var(--ag-primary);
            font-weight: 600;
        }

        .btn-ag-outline:hover {
            background-color: var(--ag-primary);
            color: #fff;
        }

        .site-header-wrap {
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 8px 30px rgba(13, 38, 20, 0.08);
            border-bottom: 1px solid #e7efe5;
            backdrop-filter: blur(8px);
            z-index: 1030;
        }

        .header-topbar {
            background: linear-gradient(90deg, var(--ag-header-dark), var(--ag-header-dark-2));
            color: #dcedde;
            font-size: 0.82rem;
            border-bottom: 1px solid rgba(220, 237, 222, 0.18);
        }

        .header-topbar .topbar-inner {
            min-height: 2.1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .topbar-item {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: #e4efe6;
        }

        .topbar-item strong {
            color: #ffffff;
            font-weight: 700;
        }

        .topbar-sep {
            width: 0.28rem;
            height: 0.28rem;
            border-radius: 50%;
            background: rgba(220, 237, 222, 0.72);
            margin: 0 0.65rem;
        }

        .topbar-chip {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-weight: 700;
            color: #e8f6eb;
            border: 1px solid rgba(232, 246, 235, 0.28);
            border-radius: 99rem;
            padding: 0.2rem 0.58rem;
            margin-right: 0.8rem;
        }

        .topbar-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.2s ease;
        }

        .topbar-link:hover {
            color: #ffffff;
            opacity: 0.84;
        }

        .navbar-ag {
            --bs-navbar-padding-y: 0;
            padding: 0.78rem 0;
            border-top: 1px solid rgba(215, 228, 212, 0.5);
        }

        .brand-wrap {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            gap: 0.7rem;
        }

        .brand-mark {
            width: 2.48rem;
            height: 2.48rem;
            border-radius: 0.72rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #2f8444, #1d5b2c);
            color: #fff;
            font-weight: 800;
            font-size: 0.79rem;
            letter-spacing: 0.04em;
            box-shadow: 0 8px 20px rgba(25, 72, 38, 0.22);
            flex-shrink: 0;
        }

        .brand-text-wrap {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-text {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            color: #14311d;
            letter-spacing: 0.01em;
            font-size: 1.08rem;
        }

        .brand-subtitle {
            margin-top: 0.15rem;
            font-size: 0.72rem;
            color: #53725d;
            letter-spacing: 0.02em;
            font-weight: 600;
        }

        .navbar-toggler {
            border: 1px solid #dbe8d8;
            border-radius: 0.6rem;
            padding: 0.45rem 0.55rem;
            box-shadow: none;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.14);
        }

        .navbar-toggler-icon {
            width: 1.2rem;
            height: 1.2rem;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2820,49,29,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .nav-link {
            font-weight: 600;
            color: #27422f !important;
            padding: 0.55rem 0.82rem !important;
            border-radius: 0.6rem;
            position: relative;
            transition: color 0.2s ease, background-color 0.2s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0.82rem;
            right: 0.82rem;
            bottom: 0.32rem;
            height: 0.11rem;
            border-radius: 99rem;
            background-color: var(--ag-primary);
            opacity: 0;
            transform: scaleX(0.6);
            transition: opacity 0.22s ease, transform 0.22s ease;
        }

        .nav-link:hover {
            background-color: #f1f8ef;
            color: var(--ag-primary-dark) !important;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .nav-link.active {
            color: var(--ag-primary-dark) !important;
            background-color: #eef7eb;
        }

        .header-cta .btn {
            border-radius: 0.6rem;
            font-size: 0.86rem;
            letter-spacing: 0.01em;
            box-shadow: 0 9px 18px rgba(34, 92, 42, 0.17);
        }

        .hero {
            background: linear-gradient(125deg, #f5fbf2 0%, #eaf4e7 58%, #fff8ef 100%);
            padding: 6.5rem 0 5.25rem;
        }

        .hero-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 1.25rem;
        }

        .hero-card {
            background: #ffffff;
            border: 1px solid var(--ag-border);
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(24, 53, 31, 0.06);
        }

        .label-soft {
            display: inline-flex;
            background: rgba(46, 125, 50, 0.12);
            color: var(--ag-primary-dark);
            border-radius: 99rem;
            padding: 0.28rem 0.8rem;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            margin-bottom: 0.85rem;
        }

        .stat-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            padding: 0.45rem 0.85rem;
            background-color: #edf6e9;
            border-radius: 0.6rem;
            color: #215f2e;
            margin: 0 0.45rem 0.45rem 0;
            font-size: 0.86rem;
        }

        .section-title {
            font-size: clamp(1.6rem, 2.3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 0.8rem;
        }

        .trust-card,
        .product-card,
        .info-card {
            border: 1px solid #e4ece1;
            border-radius: 1rem;
            background-color: #fff;
            padding: 1.3rem;
            height: 100%;
            box-shadow: 0 10px 24px rgba(16, 33, 20, 0.04);
        }

        .trust-card h5,
        .product-card h5,
        .info-card h5 {
            margin-bottom: 0.55rem;
            font-size: 1.02rem;
        }

        .category-tag {
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--ag-earth);
        }

        .process-step {
            border-left: 4px solid var(--ag-primary);
            background: #f9fcf8;
            border-radius: 0.6rem;
            padding: 1rem 1rem 1rem 1.1rem;
            margin-bottom: 0.9rem;
        }

        .cta-strip {
            background: linear-gradient(135deg, #1f6b31, #2a8541);
            color: #fff;
            border-radius: 1rem;
            padding: 2rem;
        }

        .contact-detail {
            display: flex;
            gap: 0.85rem;
            margin-bottom: 1rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 0.5rem;
            background-color: #eaf5e7;
            color: var(--ag-primary-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.86rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .map-placeholder {
            background: repeating-linear-gradient(45deg, #f4f8f2, #f4f8f2 10px, #edf4ea 10px, #edf4ea 20px);
            border: 1px dashed #b8ccb5;
            border-radius: 1rem;
            padding: 3rem 1rem;
            text-align: center;
            color: #44604a;
            font-weight: 600;
        }

        .footer-main {
            position: relative;
            overflow: hidden;
            background: linear-gradient(145deg, #112c1f 0%, #173a28 48%, #1f4933 100%);
            color: #dcecdf;
            padding: 0 0 1.8rem;
            margin-top: 4rem;
        }

        .footer-main::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.18;
            background-image: linear-gradient(45deg, rgba(237, 248, 240, 0.42) 0.5px, transparent 0.5px);
            background-size: 12px 12px;
        }

        .footer-main::after {
            content: '';
            position: absolute;
            width: 27rem;
            height: 27rem;
            top: -15rem;
            right: -9rem;
            border-radius: 50%;
            pointer-events: none;
            background: radial-gradient(circle, rgba(219, 238, 224, 0.23) 0%, rgba(219, 238, 224, 0) 68%);
        }

        .footer-inner {
            position: relative;
            z-index: 1;
            padding-top: 2.35rem;
        }

        .footer-top-panel {
            border: 1px solid rgba(225, 244, 230, 0.25);
            border-radius: 1.02rem;
            background: rgba(234, 248, 238, 0.09);
            box-shadow: 0 16px 34px rgba(6, 20, 12, 0.24);
            backdrop-filter: blur(4px);
            padding: 1.25rem 1.15rem;
            margin-bottom: 1.32rem;
        }

        .footer-top-kicker {
            display: inline-flex;
            align-items: center;
            border-radius: 99rem;
            padding: 0.24rem 0.62rem;
            border: 1px solid rgba(232, 246, 236, 0.32);
            background: rgba(232, 246, 236, 0.13);
            color: #eef9f1;
            font-size: 0.71rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .footer-top-title {
            color: #ffffff;
            margin-bottom: 0.34rem;
            font-size: 1.22rem;
        }

        .footer-top-copy {
            color: rgba(225, 243, 230, 0.92);
            font-size: 0.9rem;
            line-height: 1.48;
            max-width: 43rem;
        }

        .footer-top-actions .btn {
            font-weight: 700;
            border-radius: 0.62rem;
        }

        .footer-top-actions .btn-outline-light {
            border-color: rgba(236, 248, 239, 0.5);
            color: #effaf2;
        }

        .footer-top-actions .btn-outline-light:hover {
            background-color: #effaf2;
            border-color: #effaf2;
            color: #1f4f2f;
        }

        .footer-brand-card {
            border: 1px solid rgba(221, 240, 226, 0.24);
            border-radius: 1rem;
            background: rgba(234, 248, 238, 0.08);
            padding: 1.05rem 0.96rem;
            box-shadow: 0 14px 30px rgba(6, 21, 12, 0.22);
            height: 100%;
        }

        .footer-brand-head {
            display: flex;
            align-items: center;
            gap: 0.68rem;
            margin-bottom: 0.66rem;
        }

        .footer-brand-mark {
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 0.65rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.78rem;
            letter-spacing: 0.04em;
            color: #ffffff;
            background: linear-gradient(145deg, #2f8444, #1d5b2c);
            box-shadow: 0 8px 18px rgba(9, 30, 16, 0.28);
            flex-shrink: 0;
        }

        .footer-brand-name {
            margin: 0;
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 800;
        }

        .footer-brand-tag {
            margin: 0;
            color: rgba(224, 243, 229, 0.86);
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .footer-brand-copy {
            margin-bottom: 0.68rem;
            color: rgba(226, 244, 230, 0.92);
            font-size: 0.86rem;
            line-height: 1.5;
        }

        .footer-stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.42rem;
        }

        .footer-stat-chip {
            display: inline-flex;
            align-items: center;
            border-radius: 99rem;
            border: 1px solid rgba(222, 240, 226, 0.28);
            background: rgba(239, 250, 242, 0.12);
            padding: 0.24rem 0.58rem;
            color: #edf9f0;
            font-size: 0.71rem;
            font-weight: 700;
        }

        .footer-col-title {
            margin-bottom: 0.68rem;
            font-size: 0.79rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: rgba(234, 248, 238, 0.92);
            font-weight: 700;
        }

        .footer-link-list,
        .footer-product-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-link-list li + li,
        .footer-product-list li + li {
            margin-top: 0.48rem;
        }

        .footer-link-list a {
            color: rgba(224, 243, 229, 0.95);
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link-list a:hover {
            color: #ffffff;
        }

        .footer-product-list li {
            position: relative;
            padding-left: 0.88rem;
            color: rgba(224, 243, 229, 0.93);
            font-size: 0.83rem;
            line-height: 1.42;
        }

        .footer-product-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.48rem;
            width: 0.38rem;
            height: 0.38rem;
            border-radius: 50%;
            background: #95d7a8;
            box-shadow: 0 0 0 3px rgba(149, 215, 168, 0.16);
        }

        .footer-contact-list {
            display: grid;
            gap: 0.55rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.56rem;
            border: 1px solid rgba(224, 243, 229, 0.2);
            border-radius: 0.72rem;
            background: rgba(239, 250, 242, 0.08);
            padding: 0.56rem 0.54rem;
        }

        .footer-contact-icon {
            width: 1.82rem;
            height: 1.82rem;
            border-radius: 0.52rem;
            border: 1px solid rgba(224, 243, 229, 0.3);
            background: rgba(239, 250, 242, 0.14);
            color: #eaf8ed;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .footer-contact-icon svg {
            width: 0.88rem;
            height: 0.88rem;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .footer-contact-copy strong {
            display: block;
            color: #f3fbf5;
            font-size: 0.83rem;
            line-height: 1.35;
        }

        .footer-contact-copy span {
            display: block;
            color: rgba(220, 240, 226, 0.88);
            font-size: 0.77rem;
            line-height: 1.4;
        }

        .footer-trust-row {
            margin-top: 0.62rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.38rem;
        }

        .footer-trust-pill {
            display: inline-flex;
            align-items: center;
            border-radius: 99rem;
            border: 1px solid rgba(224, 243, 229, 0.28);
            background: rgba(239, 250, 242, 0.1);
            color: #ecf8ef;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.52rem;
        }

        .footer-cert-row {
            margin-top: 1.05rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(220, 239, 226, 0.2);
            display: flex;
            flex-wrap: wrap;
            gap: 0.48rem;
        }

        .footer-cert-chip {
            display: inline-flex;
            align-items: center;
            border-radius: 0.55rem;
            border: 1px solid rgba(220, 239, 226, 0.24);
            background: rgba(239, 250, 242, 0.08);
            color: rgba(228, 245, 233, 0.96);
            font-size: 0.74rem;
            font-weight: 700;
            padding: 0.32rem 0.56rem;
        }

        .footer-main a {
            color: #dcecdf;
            text-decoration: none;
        }

        .footer-main a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(220, 236, 223, 0.2);
            margin-top: 1rem;
            padding-top: 0.95rem;
            font-size: 0.84rem;
            color: rgba(223, 243, 229, 0.88);
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: space-between;
        }

        .footer-bottom strong {
            color: #f4fbf6;
        }

        @media (max-width: 991.98px) {
            .navbar-ag {
                padding: 0.72rem 0;
            }

            .brand-subtitle {
                display: none;
            }

            .nav-link {
                margin-bottom: 0.22rem;
            }

            .nav-link::after {
                display: none;
            }

            .header-cta {
                margin-top: 0.4rem;
            }

            .hero {
                padding-top: 5.2rem;
            }

            .footer-main {
                margin-top: 3rem;
            }

            .footer-inner {
                padding-top: 2rem;
            }

            .footer-top-panel {
                padding: 1rem;
                margin-bottom: 1.05rem;
            }
        }

        @media (max-width: 575.98px) {
            .footer-top-actions .btn {
                width: 100%;
            }

            .footer-brand-card {
                padding: 0.9rem 0.82rem;
            }

            .footer-cert-row {
                gap: 0.4rem;
            }
        }
/* Reveal animation system */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
