:root {
    --green-900: #074d26;
    --green-800: #0b6733;
    --green-600: #24843f;
    --green-100: #eaf6e8;
    --orange-600: #f36b21;
    --orange-100: #fff0e5;
    --earth: #7a5b34;
    --ink: #15251b;
    --muted: #66776b;
    --line: #dfe9dd;
    --cream: #fbfff7;
    --shadow: 0 16px 45px rgba(8, 65, 30, .12);
    --img-hero: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80");
    --img-farmer-main: url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1100&q=80");
    --img-farmers: url("https://images.unsplash.com/photo-1592982537447-7440770cbfc9?auto=format&fit=crop&w=1400&q=80");
    --img-about-farmers: url("https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&w=1200&q=80");
    --img-farmer-field: url("https://images.unsplash.com/photo-1586771107445-d3ca888129ff?auto=format&fit=crop&w=1100&q=80");
    --img-banner: url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=1800&q=80");
    --img-tractor: url("https://images.unsplash.com/photo-1495107334309-fcf20504a5ab?auto=format&fit=crop&w=1600&q=80");
    --img-crops: url("https://images.unsplash.com/photo-1598030304671-5aa1d6f21128?auto=format&fit=crop&w=1600&q=80");
    --img-seedlings: url("https://images.unsplash.com/photo-1574943320219-553eb213f72d?auto=format&fit=crop&w=900&q=80");
    --img-vegetables: url("https://images.unsplash.com/photo-1566385101042-1a0aa0c1268c?auto=format&fit=crop&w=900&q=80");
    --img-grains: url("https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?auto=format&fit=crop&w=900&q=80");
    --img-orchard: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=900&q=80");
}

* { box-sizing: border-box; }
body {
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.section-padding { padding: 86px 0; }
.section-soft { background: linear-gradient(180deg, #f7fcf4 0%, #fff 100%); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes softZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
}
@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-7px) rotate(2deg); }
}
@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(243, 107, 33, .32); }
    70% { box-shadow: 0 0 0 13px rgba(243, 107, 33, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 107, 33, 0); }
}
.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
.eyebrow {
    color: var(--orange-600);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: .82rem;
}
.section-title {
    color: var(--green-900);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
}
.fw-black { font-weight: 950; }
.lead-muted { color: var(--muted); }
.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: .78rem 1.22rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-brand {
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    border: 0;
    color: #fff;
    box-shadow: 0 10px 24px rgba(11, 103, 51, .24);
}
.btn-brand:hover { color: #fff; transform: translateY(-1px); }
.btn-orange {
    background: var(--orange-600);
    border: 0;
    color: #fff;
}
.btn-orange:hover { background: #d95713; color: #fff; }
.btn-outline-brand {
    border: 2px solid var(--green-700, #166d36);
    color: var(--green-900);
    background: #fff;
}
.btn-outline-brand:hover { background: var(--green-900); color: #fff; }

.site-header { box-shadow: 0 8px 24px rgba(5, 50, 22, .08); }
.navbar { min-height: 78px; }
.navbar-brand img {
    width: 82px;
    height: 56px;
    object-fit: contain;
}
.navbar-brand strong {
    display: block;
    color: var(--green-900);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 900;
}
.navbar-brand small {
    display: block;
    color: var(--earth);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
}
.navbar-nav .nav-link {
    color: #25392a;
    font-weight: 800;
    font-size: .94rem;
    padding: 1rem .72rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--green-800); }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 45%, rgba(255,255,255,.42) 100%),
        var(--img-hero) center/cover no-repeat;
    animation: softZoom 1.2s ease both;
}
.hero:after {
    content: "";
    position: absolute;
    inset: auto -10% -150px -10%;
    height: 250px;
    background: #fff;
    border-radius: 50% 50% 0 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 70px 0 120px;
    animation: fadeUp .9s ease .12s both;
}
.hero h1 {
    color: var(--green-900);
    font-size: clamp(2.15rem, 5vw, 4.75rem);
    font-weight: 950;
    line-height: 1.02;
}
.hero .tagline {
    display: inline-block;
    background: var(--green-800);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 900;
    margin: 16px 0;
    animation: pulseRing 2.4s ease-out 1.2s infinite;
}
.hero-panel {
    position: relative;
    z-index: 3;
    margin-top: -95px;
}
.feature-card,
.service-card,
.product-card,
.info-card,
.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover,
.service-card:hover,
.product-card:hover,
.info-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(8,65,30,.18); }
.feature-card:hover .icon-badge,
.service-card:hover .icon-badge,
.info-card:hover .icon-badge,
.admin-card:hover .icon-badge {
    animation: floatLeaf 1.2s ease-in-out infinite;
}
.icon-badge {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    color: var(--green-900);
    background: linear-gradient(135deg, var(--green-100), var(--orange-100));
    font-size: 1.7rem;
    transition: transform .25s ease, background .25s ease;
}
.service-card { padding: 26px; }
.service-card h3,
.product-card h3 { color: var(--green-900); font-weight: 900; font-size: 1.12rem; }
.service-card p,
.product-card p { color: var(--muted); margin-bottom: 0; }
.service-detail-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
.service-detail-list li {
    display: flex;
    gap: 8px;
    color: #334539;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
}
.service-detail-list i {
    color: var(--green-800);
    flex: 0 0 auto;
    margin-top: 1px;
}
.impact-card {
    padding: 26px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-900), var(--green-600));
    border-radius: 8px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease;
}
.impact-card:hover { transform: translateY(-4px) scale(1.01); }
.impact-card:after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -35px;
    bottom: -35px;
    border-radius: 50%;
    background: rgba(255,255,255,.13);
}
.impact-number { font-size: 2.15rem; font-weight: 950; line-height: 1; }
.image-panel {
    min-height: 360px;
    border-radius: 8px;
    background:
        linear-gradient(140deg, rgba(7,77,38,.1), rgba(243,107,33,.2)),
        var(--img-farmers) center/cover no-repeat;
    box-shadow: var(--shadow);
    transition: transform .45s ease, filter .45s ease;
}
.image-panel:hover {
    transform: scale(1.015);
    filter: saturate(1.08);
}
.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334539;
    font-weight: 700;
}
.check-list i { color: var(--green-700, #176c35); }
..product-card { overflow: hidden; }
.gallery-card,
.product-card,
.service-card {
    min-width: 0;
    width: 100%;
}
.product-card *,
.gallery-card *,
.service-card * {
    min-width: 0;
}
.product-card h3,
.gallery-card h3,
.service-card h3 {
    word-break: break-word;
    hyphens: auto;
}
.product-card p,
.service-card p,
.gallery-card .p-3 span,
.service-card .service-detail-list li {
    word-break: break-word;
}
.product-visual,
.gallery-visual {
    min-height: 150px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.25), transparent 24%),
        linear-gradient(135deg, #0b6733, #f36b21);
    font-size: 3rem;
    transition: transform .35s ease, filter .35s ease;
}
.product-card:hover .product-visual,
.gallery-card:hover .gallery-visual {
    transform: scale(1.04);
    filter: saturate(1.12);
}

/* Disable all visual variations (transitions/animations) for product page */
.product-card,
.product-card * {
    transition: none !important;
    animation: none !important;
}
.product-card:hover {
    transform: none !important;
    box-shadow: var(--shadow) !important;
}
.product-visual,
.gallery-visual {
    transition: none !important;
    transform: none !important;
    filter: none !important;
}
.product-card:hover .product-visual,
.gallery-card:hover .gallery-visual {
    transform: none !important;
    filter: none !important;
}
/* Ensure reveal-on-scroll doesn't hide product cards */
.product-card.reveal-on-scroll,
.product-card.reveal-on-scroll.is-visible,
.product-card.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.product-card .card-body { padding: 22px; }
.filter-btn.active { background: var(--green-900); color: #fff; }
.gallery-card,
.product-card,
.service-card {
    min-width: 0;
    width: 100%;
}
.gallery-card button,
.product-card,
.service-card {
    display: flex;
    flex-direction: column;
}
.product-card .card-body,
.service-card,
.gallery-card .p-3 {
    padding: 18px;
}
.product-card h3,
.gallery-card h3,
.service-card h3 {
    word-break: break-word;
    hyphens: auto;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
}
.product-card p,
.service-card p,
.gallery-card .p-3 span,
.service-card .service-detail-list li {
    word-break: break-word;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .product-card .card-body,
    .service-card,
    .gallery-card .p-3 {
        padding: 14px;
    }
    .product-card .btn,
    .gallery-card button,
    .service-card .product-visual {
        width: 100%;
    }
    .gallery-card h3,
    .product-card h3,
    .service-card h3 {
        font-size: 1.05rem;
    }
    .product-card .card-body {
        padding: 16px 14px;
    }
    .gallery-card {
        min-height: auto;
    }
    .service-card {
        padding: 18px;
    }
}
.page-banner {
    padding: 86px 0;
    background:
        linear-gradient(95deg, rgba(7,77,38,.92), rgba(36,132,63,.78)),
        var(--img-banner) center/cover no-repeat;
    color: #fff;
}
.page-banner h1 { font-weight: 950; }
.cta-band {
    background:
        linear-gradient(90deg, rgba(7,77,38,.94), rgba(7,77,38,.72)),
        var(--img-tractor) center/cover no-repeat;
    color: #fff;
    border-radius: 8px;
    padding: 44px;
}
.gallery-card {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    cursor: pointer;
}
.gallery-card h3 { font-size: 1rem; font-weight: 900; color: var(--green-900); }
.map-placeholder {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--green-100), #fff, var(--orange-100));
    border: 1px dashed #9ab995;
    border-radius: 8px;
}
.form-control,
.form-select {
    border-radius: 8px;
    border-color: #d6e2d2;
    padding: .82rem 1rem;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 .2rem rgba(36,132,63,.14);
}

.site-footer {
    color: #fff;
    padding: 70px 0 22px;
    background:
        linear-gradient(90deg, rgba(7,77,38,.98), rgba(7,77,38,.92)),
        var(--img-crops) bottom right/cover no-repeat;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img {
    width: 78px;
    height: 58px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}
.footer-brand h3 { margin: 0; font-weight: 950; }
.footer-text { color: rgba(255,255,255,.82); margin-top: 18px; }
.site-footer h4 { font-size: 1.05rem; font-weight: 900; margin-bottom: 18px; }
.footer-link {
    display: block;
    color: rgba(255,255,255,.82);
    margin-bottom: 8px;
}
.footer-link:hover { color: #fff; transform: translateX(3px); }
.footer-socials a,
.to-top {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.13);
    margin-right: 6px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.16);
    margin-top: 42px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.admin-body { background: #f4f8f2; }
.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(7,77,38,.92), rgba(243,107,33,.65)),
        var(--img-hero) center/cover no-repeat;
}
.login-card {
    width: min(100%, 430px);
    background: #fff;
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 28px 70px rgba(0,0,0,.25);
}
.login-card img { width: 150px; display: block; margin: 0 auto 18px; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 280px;
    background: var(--green-900);
    color: #fff;
    padding: 22px;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.admin-logo img { width: 54px; height: 42px; object-fit: contain; background: #fff; border-radius: 8px; }
.admin-nav button {
    width: 100%;
    color: rgba(255,255,255,.86);
    background: transparent;
    border: 0;
    text-align: left;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}
.admin-nav button.active,
.admin-nav button:hover { background: rgba(255,255,255,.13); color: #fff; }
.admin-main { flex: 1; padding: 26px; min-width: 0; }
.admin-topbar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 22px;
    box-shadow: 0 8px 28px rgba(8,65,30,.08);
}
.admin-card { padding: 22px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.table > :not(caption) > * > * { vertical-align: middle; }

@media (max-width: 991px) {
    .navbar-brand strong { font-size: 1.16rem; }
    .hero { min-height: auto; }
    .hero-content { padding: 56px 0 105px; }
    .admin-layout { display: block; }
    .admin-sidebar { position: static; width: 100%; height: auto; }
    .admin-main { padding: 18px; }
}
@media (max-width: 575px) {
    .section-padding { padding: 58px 0; }
    .hero h1 { font-size: 2rem; }
    .cta-band { padding: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .navbar-brand img { width: 64px; }
}

/* Reference-inspired homepage layout */
.site-body {
    background:
        radial-gradient(circle at 12% 18%, rgba(246, 191, 73, .18), transparent 22%),
        linear-gradient(180deg, #f3fff0 0%, #fff 34%, #f7fff4 100%);
}
.site-header {
    background: transparent;
}
.site-header .navbar {
    width: min(100% - 28px, 1280px);
    margin: 14px auto 10px;
    border-radius: 28px;
    min-height: 72px;
    box-shadow: 0 14px 32px rgba(7, 77, 38, .18);
}
.navbar-brand img {
    width: 78px;
    height: 64px;
}
.navbar-brand strong {
    font-size: 1.75rem;
    letter-spacing: .5px;
}
.navbar-nav .nav-link {
    font-size: .82rem;
    text-transform: uppercase;
}
.navbar-nav .nav-link.active {
    position: relative;
}
.navbar-nav .nav-link.active:after {
    content: "";
    position: absolute;
    left: .72rem;
    right: .72rem;
    bottom: 8px;
    height: 3px;
    border-radius: 99px;
    background: var(--green-800);
}
.home-hero {
    min-height: 560px;
    align-items: start;
    padding: 34px 0 125px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 44%, rgba(255,255,255,.24) 100%),
        linear-gradient(180deg, rgba(246, 191, 73, .18), rgba(255,255,255,.1)),
        var(--img-hero) center/cover no-repeat;
}
.home-hero:after {
    inset: auto -5% -155px -5%;
    height: 210px;
    border-radius: 55% 55% 0 0;
}
.home-hero .hero-content {
    padding: 10px 0 40px;
    max-width: 650px;
}
.home-hero .hero-content h1 {
    font-size: clamp(3.05rem, 6.8vw, 5.35rem);
    line-height: .94;
    margin: 12px 0 8px;
    color: #07571f;
    letter-spacing: 0;
}
.home-hero .hero-content h2 {
    font-size: clamp(1.6rem, 3.1vw, 2.75rem);
    line-height: 1;
    margin: 0;
    font-weight: 950;
    text-transform: uppercase;
    color: #1b241b;
}
.home-hero .tagline {
    border-radius: 7px;
    font-size: 1.15rem;
    padding: 5px 14px;
}
.home-hero .lead {
    max-width: 560px;
    font-weight: 700;
    color: #28392b;
}
.hero-collage {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1 / .88;
    margin-left: auto;
    filter: drop-shadow(0 22px 30px rgba(7, 77, 38, .18));
}
.collage-farmer-badge {
    position: absolute;
    left: 6%;
    bottom: 10%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--green-800);
    border: 4px solid #fff;
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(7, 77, 38, .22);
}
.collage-farmer-badge i {
    color: #ffc247;
}
.collage-main,
.collage-tile {
    position: absolute;
    background-size: cover;
    background-position: center;
    border: 7px solid #fff;
}
.collage-main {
    inset: 5% 12% 2% 4%;
    border-radius: 50%;
    background-image:
        linear-gradient(180deg, rgba(255,255,255,0), rgba(7,77,38,.08)),
        var(--img-farmer-main);
    background-position: center top;
}
.collage-tile {
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(7, 77, 38, .18);
}
.tile-tractor {
    left: 0;
    top: 8%;
    width: 42%;
    height: 30%;
    background-image: var(--img-farmer-field);
}
.tile-drone {
    right: 6%;
    top: 0;
    width: 34%;
    height: 29%;
    background-image: url("https://images.unsplash.com/photo-1508614589041-895b88991e3e?auto=format&fit=crop&w=700&q=80");
}
.tile-crop {
    right: 0;
    top: 35%;
    width: 34%;
    height: 28%;
    background-image: var(--img-seedlings);
}
.tile-meeting {
    right: 8%;
    bottom: 2%;
    width: 38%;
    height: 27%;
    background-image: var(--img-tractor);
}
.hero-panel {
    margin-top: -104px;
}
.reference-service-card {
    min-height: 178px;
    border-radius: 16px;
    padding: 18px 12px !important;
    overflow: hidden;
}
.reference-service-card .icon-badge {
    width: 54px;
    height: 54px;
    margin-bottom: 10px !important;
    color: var(--green-800);
}
.reference-service-card strong {
    min-height: 38px;
    color: var(--green-900);
    font-size: .88rem;
    line-height: 1.08;
    text-transform: uppercase;
}
.reference-service-card small {
    display: block;
    color: #4f5f53;
    font-size: .68rem;
    line-height: 1.25;
    margin-top: 6px;
}
.reference-service-card .card-arrow {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    margin: 10px auto 0;
    border-radius: 50%;
    color: #fff;
    background: var(--green-800);
    font-size: .8rem;
}
.home-about-band {
    padding-top: 54px;
    padding-bottom: 42px;
    background:
        linear-gradient(100deg, #fff 0%, #fff 34%, rgba(239, 250, 232, .78) 100%);
}
.home-about-band .section-title,
.product-strip-section .section-title,
.gallery-strip-section .section-title,
.why-cta-band .section-title {
    text-transform: uppercase;
}
.about-photo {
    min-height: 260px;
    border-radius: 28px;
    background:
        linear-gradient(140deg, rgba(7,77,38,.08), rgba(243,107,33,.12)),
        var(--img-about-farmers) center/cover no-repeat;
}
.impact-board {
    min-height: 260px;
    padding: 24px;
    color: #fff;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(7, 77, 38, .98), rgba(13, 109, 54, .96)),
        var(--img-crops) center/cover no-repeat;
    box-shadow: var(--shadow);
}
.impact-board h3 {
    font-size: 1.1rem;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.impact-board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.impact-board-grid div {
    min-height: 82px;
    border-right: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
    padding: 8px;
}
.impact-board-grid i {
    font-size: 1.8rem;
    color: #fff3a1;
}
.impact-board-grid strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 950;
}
.impact-board-grid span {
    display: block;
    font-size: .78rem;
    line-height: 1.15;
    color: rgba(255,255,255,.88);
}
.compact-section {
    padding-top: 46px;
    padding-bottom: 48px;
}
.compact-section .service-card {
    border-radius: 18px;
}
.product-strip-section {
    padding-top: 28px;
    padding-bottom: 34px;
    background: #fff;
}
.product-strip {
    display: grid;
    grid-template-columns: 42px repeat(8, minmax(95px, 1fr)) 42px;
    align-items: center;
    gap: 10px;
}
.strip-control {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: var(--green-800);
}
.product-mini-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(7, 77, 38, .12);
    text-align: center;
    color: #fff;
}
.product-mini-visual {
    min-height: 112px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 2.3rem;
    background:
        linear-gradient(135deg, rgba(7, 77, 38, .35), rgba(243, 107, 33, .18)),
        var(--img-crops) center/cover no-repeat;
}
.product-mini-card:nth-of-type(2) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-grains);
}
.product-mini-card:nth-of-type(3) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-seedlings);
}
.product-mini-card:nth-of-type(4) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-vegetables);
}
.product-mini-card:nth-of-type(5) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-orchard);
}
.product-mini-card:nth-of-type(6) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-farmer-field);
}
.product-mini-card:nth-of-type(7) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-banner);
}
.product-mini-card:nth-of-type(8) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-tractor);
}
.product-mini-card:nth-of-type(9) .product-mini-visual {
    background-image: linear-gradient(135deg, rgba(7, 77, 38, .28), rgba(243, 107, 33, .14)), var(--img-farmers);
}
.product-mini-card div:last-child {
    padding: 6px 4px 7px;
    background: var(--green-800);
    font-size: .78rem;
    font-weight: 800;
}
.why-cta-band {
    padding-top: 42px;
    padding-bottom: 38px;
    background: linear-gradient(180deg, #fff 0%, #f6fff2 100%);
}
.compact-checks {
    gap: 6px;
}
.growth-circle {
    width: min(100%, 240px);
    aspect-ratio: 1;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 10px solid #f1f8ec;
    color: var(--green-800);
    background:
        radial-gradient(circle, rgba(255,255,255,.9) 0 34%, rgba(231, 247, 221, .78) 35% 100%),
        var(--img-crops) center/cover no-repeat;
    box-shadow: var(--shadow);
    font-size: 4.5rem;
}
.compact-cta {
    min-height: 205px;
    border-radius: 28px;
    padding: 28px;
}
.compact-cta h2 {
    font-size: 1.75rem;
    line-height: 1.05;
}
.gallery-strip-section {
    padding-top: 26px;
    padding-bottom: 34px;
    background: #fff;
}
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(95px, 1fr));
    gap: 10px;
}
.gallery-mini-card {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(7, 77, 38, .12);
}
.gallery-mini-card .gallery-visual {
    min-height: 72px;
    font-size: 1.8rem;
}
.gallery-mini-card span {
    display: block;
    padding: 6px;
    color: var(--green-900);
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-mini-section {
    padding-top: 36px;
    padding-bottom: 40px;
}
.site-footer {
    padding-top: 42px;
}

@media (max-width: 1199px) {
    .product-strip {
        grid-template-columns: repeat(4, minmax(120px, 1fr));
    }
    .strip-control {
        display: none;
    }
    .gallery-strip {
        grid-template-columns: repeat(4, minmax(120px, 1fr));
    }
}
@media (max-width: 991px) {
    .site-header .navbar {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    .home-hero {
        padding: 42px 0 110px;
    }
    .hero-collage {
        margin: 0 auto;
    }
    .hero-panel {
        margin-top: -76px;
    }
}
@media (max-width: 575px) {
    .home-hero .hero-content h1 {
        font-size: 2.75rem;
    }
    .home-hero .hero-content h2 {
        font-size: 1.35rem;
    }
    .product-strip,
    .gallery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .impact-board-grid {
        grid-template-columns: 1fr;
    }
}
