:root {
    --leaf: #2f7d32;
    --seed: #82c341;
    --soil: #5c3d2e;
    --sun: #ffb703;
    --sky: #7ad3ff;
}

* { box-sizing: border-box; }

body {
    background:
        radial-gradient(circle at 10% 0%, rgba(130, 195, 65, 0.18), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(255, 183, 3, 0.16), transparent 34%),
        linear-gradient(180deg, #f8fcf5 0%, #f4faf0 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(90deg, rgba(23, 88, 34, 0.96), rgba(90, 142, 31, 0.92));
    backdrop-filter: blur(6px);
}

.site-header.compact {
    position: relative;
    background: linear-gradient(90deg, rgba(23, 88, 34, 0.96), rgba(46, 122, 44, 0.92));
}

.nav-link {
    position: relative;
    opacity: 0.88;
    transition: opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 8px;
    background: var(--sun);
}

.mobile-link {
    display: block;
    padding: 0.55rem 0.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.slide {
    display: none;
    min-height: 520px;
    background-size: cover;
    background-position: center;
}

.slide.active { display: block; }

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.slide-btn:hover { background: rgba(255, 255, 255, 0.4); }
.slide-btn.prev { left: 18px; }
.slide-btn.next { right: 18px; }

.slide-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    cursor: pointer;
}

.dot.active { background: #fff; }

.card-vibrant {
    border-radius: 1.35rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid rgba(47, 125, 50, 0.14);
    box-shadow: 0 18px 45px rgba(47, 125, 50, 0.1);
}

.card-vibrant.accent {
    background: linear-gradient(180deg, rgba(233, 248, 221, 0.94), rgba(245, 252, 236, 0.96));
}

.section-title {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 900;
    color: #1f5d26;
}

.agro-band {
    background:
        linear-gradient(135deg, rgba(37, 110, 35, 0.96), rgba(125, 181, 44, 0.9)),
        linear-gradient(45deg, rgba(255, 183, 3, 0.6), rgba(122, 211, 255, 0.55));
}

.mini-card {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    padding: 1.2rem;
}

.mini-card h4 {
    color: #1b5e20;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.pill,
.pill-dark {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pill {
    background: rgba(130, 195, 65, 0.16);
    color: #2f7d32;
}

.pill-dark {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.service-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-left: 6px solid var(--leaf);
    border-radius: 1rem;
    padding: 1.1rem 1.2rem;
}

.service-box h2 {
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.service-box ul {
    margin-left: 1.1rem;
    list-style: disc;
}

.impact-chip {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    font-weight: 700;
}

.form-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #fff;
    padding: 0.75rem 0.9rem;
}

.site-footer {
    background: #102a15;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover { color: #fff; }

@media (max-width: 1024px) {
    .hero-slider,
    .slide {
        min-height: 470px;
    }
}

@media (max-width: 640px) {
    .hero-slider,
    .slide {
        min-height: 430px;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}
