/* ============================================
   Agroswift color palette — Primary #2b4424, Secondary #6b1a0f
   Tints = white mix | Shades = black mix | AAA/AA contrast noted
   ============================================ */
:root {
    /* Primary — forest green */
    --primary: #2b4424;
    --primary-tint-90: #eaece9;
    --primary-tint-80: #d5dad3;
    --primary-tint-60: #aab4a7;
    --primary-tint-40: #808f7c;
    --primary-tint-20: #556950;
    --primary-shade-20: #22361d;
    --primary-shade-40: #1a2916;

    /* Secondary — burgundy / terracotta */
    --secondary: #6b1a0f;
    --secondary-tint-90: #f0e8e7;
    --secondary-tint-80: #e1d1cf;
    --secondary-tint-60: #c4a39f;
    --secondary-tint-40: #a6766f;
    --secondary-tint-20: #89483f;
    --secondary-shade-20: #56150c;
    --secondary-shade-40: #401009;

    /* Semantic aliases (map to palette) */
    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --accent-color: #8dbf3f;
    --dark-color: #1F1F1F;
    --light-color: var(--primary-tint-90);
    --white: #ffffff;
    --grey: var(--primary-tint-40);
    --light-grey: var(--primary-tint-80);
    --transition: all 0.3s ease;
    --font-main: 'Myriad Pro', 'Myriad', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

body.nav-menu-open,
body.lightbox-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.highlight {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    /* text-transform: uppercase; Removed per brand guidelines (sentence case) */
    font-size: 16px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 16px rgba(43, 68, 36, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-tint-90);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

/* Home page: navbar transparent over hero until scroll */
.page-home .navbar:not(.scrolled) {
    background: transparent;
    box-shadow: none;
    border-bottom-color: transparent;
}

.page-home .navbar:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

.page-home .navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.page-home .navbar:not(.scrolled) .nav-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-home .navbar:not(.scrolled) .nav-link--cta {
    background-color: var(--accent-color);
    color: var(--primary-shade-40) !important;
}

.page-home .navbar:not(.scrolled) .nav-link--cta:hover {
    background-color: #9bc94a;
    color: var(--primary-shade-40) !important;
}

.page-home .navbar:not(.scrolled) .menu-toggle .bar {
    background-color: var(--white);
}

/* Navbar solid on scroll (deep.html style) */
.navbar.scrolled {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-link {
    color: var(--primary-tint-80);
}

.navbar.scrolled .nav-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .nav-link--cta {
    background-color: var(--accent-color);
    color: var(--primary-shade-40) !important;
}

.navbar.scrolled .nav-link--cta:hover {
    background-color: #9bc94a;
    color: var(--primary-shade-40) !important;
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo-wrap:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.logo-wrap:active {
    transform: scale(0.98);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop: nav menu is a flex row (card + lists inline) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu-card {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-separator {
    display: none;
}

.nav-menu-element {
    margin: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-color);
    padding: 10px 14px;
    border-radius: 8px;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.nav-link .nav-icon {
    font-size: 14px;
    opacity: 0.85;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--primary-tint-90);
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
    opacity: 1;
}

.nav-link:active {
    transform: scale(0.97);
}

.nav-link--cta {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 18px;
}

.nav-link--cta .nav-icon {
    opacity: 1;
}

.nav-link--cta:hover {
    background-color: var(--primary-shade-20);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(43, 68, 36, 0.25);
}

.nav-link--cta:hover .nav-icon {
    transform: translateX(2px);
}

.nav-link--cta:active {
    transform: scale(0.98);
}

/* Legacy class support */
.nav-link.btn-primary {
    color: var(--white);
    padding: 10px 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.menu-toggle:hover {
    background-color: var(--primary-tint-90);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.bar {
    display: block;
    width: 24px;
    height: 2.5px;
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.25s ease, background-color 0.25s ease;
    background-color: var(--dark-color);
    border-radius: 2px;
}

/* Mobile menu backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 41, 22, 0.4);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-backdrop.is-visible {
    pointer-events: auto;
    opacity: 1;
}

/* Hero Section — base */
.hero {
    color: var(--white);
    position: relative;
    padding-top: 70px;
    margin-bottom: 50px;
}

/* Full-screen hero (home page — deep.html style) */
.hero-fullscreen {
    height: 100vh;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(
        115deg,
        rgba(43, 68, 36, 0.88) 0%,
        rgba(43, 68, 36, 0.78) 50%,
        rgba(43, 68, 36, 0.92) 100%
    ), url('assets/images/hero/blog.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-fullscreen .hero-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    z-index: 2;
    animation: heroFadeInUp 1s ease-out;
}

.hero-pre-headline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    color: var(--primary-tint-60);
    font-weight: 500;
    animation: heroFadeInUp 1s ease-out 0.2s both;
}

.hero-headline {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    animation: heroFadeInUp 1s ease-out 0.35s both;
}

.hero-headline .hero-accent {
    color: var(--accent-color);
    position: relative;
}

.hero-subheadline {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: var(--primary-tint-80);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    animation: heroFadeInUp 1s ease-out 0.5s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeInUp 1s ease-out 0.65s both;
}

.hero-cta-group .btn {
    padding: 1rem 2.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-group .btn-primary {
    background: var(--accent-color);
    color: var(--primary-shade-40);
    box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.35);
}

.hero-cta-group .btn-primary:hover {
    background: #9bc94a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.4);
}

.hero-cta-group .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-cta-group .btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-shade-40);
    transform: translateY(-2px);
}

/* Top accent bar on full-screen hero (deep.html) */
.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
    z-index: 5;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-tint-60);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: heroBounce 2s infinite;
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease;
}

.hero-scroll-indicator:hover {
    color: var(--white);
}

.hero-scroll-indicator span {
    color: inherit;
    font-weight: 500;
}

.hero-seedling-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    transition: transform 0.25s ease, color 0.25s ease;
}

.hero-scroll-indicator:hover .hero-seedling-icon {
    transform: scale(1.1);
    color: var(--white);
}

/* Scroll target: avoid fixed nav covering content */
#welcome,
#about,
#contact {
    scroll-margin-top: 72px;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        background-attachment: scroll;
    }
    .hero-fullscreen .hero-content {
        padding: 1rem;
    }
    .hero-pre-headline {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }
    .hero-headline {
        font-size: clamp(1.9rem, 8vw, 2.75rem);
    }
    .hero-scroll-indicator {
        bottom: 1.5rem;
    }
    .hero-seedling-icon {
        width: 32px;
        height: 32px;
    }
}

/* Edge-to-edge split panel hero (home slider) — legacy / other pages */
.hero.hero-three {
    padding-top: 70px;
}

.hero-three {
    width: 100%;
    height: calc(70px + 85vh);
    max-height: calc(70px + 820px);
    min-height: calc(70px + 600px);
    background: var(--primary-shade-40);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.35);
    margin-bottom: 50px;
}

.hero-three .hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-three .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    background: none;
}

.hero-three .hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Deep layout: full-bleed background + centered content (like deep.html) */
.hero-layout-deep.hero-three {
    height: 100vh;
    min-height: 500px;
    max-height: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
}

.hero-layout-deep .hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.hero-layout-deep .hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    padding-top: 70px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.hero-layout-deep .hero-inner::after {
    display: none;
}

.hero-layout-deep .hero-text-panel--center {
    flex: none;
    max-width: 1200px;
    width: 90%;
    text-align: center;
    background: transparent;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.hero-layout-deep .hero-text-panel--center::after,
.hero-layout-deep .hero-text-panel--center::before {
    display: none;
}

.hero-layout-deep .slide-label {
    align-self: center;
}

.hero-layout-deep .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-layout-deep .btn-group {
    justify-content: center;
}

/* Top accent bar (deep.html) */
.hero-layout-deep.hero-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary) 100%);
    z-index: 25;
}

/* Slide image as faint background on mobile only */
.hero-slide-bg-mobile {
    display: none;
}

.hero-inner {
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    padding-top: 70px;
    box-sizing: border-box;
    position: relative;
}

/* Gradient fade on the IMAGE (right side only): darkest at center, fades toward right; covers 50% of the image */
.hero-inner::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 25%;
    background: linear-gradient(to right, var(--primary-shade-40) 0%, rgba(26, 41, 22, 0.75) 20%, rgba(26, 41, 22, 0.2) 55%, transparent 100%);
    pointer-events: none;
    z-index: 15;
}

/* Left text panel — gradient blend at right edge */
.hero-text-panel {
    flex: 1 1 45%;
    background: linear-gradient(170deg, var(--primary-shade-40) 0%, var(--primary-shade-20) 120%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem 4rem 5rem;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.hero-text-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--primary-shade-40) 90%);
    pointer-events: none;
    z-index: 5;
    opacity: 0.95;
}

.hero-text-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(141, 191, 63, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.slide-label {
    display: inline-block;
    background: var(--secondary-tint-20);
    color: var(--white);
    border-radius: 40px;
    padding: 0.4rem 1.6rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.8rem;
    align-self: flex-start;
    text-transform: uppercase;
    border: 1px solid var(--secondary-tint-40);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 20;
    position: relative;
}

.hero-title span {
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(141, 191, 63, 0.3));
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.5;
    max-width: 550px;
    color: var(--primary-tint-80);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    z-index: 20;
    position: relative;
}

.hero .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    z-index: 20;
    position: relative;
}

.hero .btn {
    padding: 0.9rem 2.3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero .btn-primary {
    background: var(--accent-color);
    color: var(--primary-shade-40);
    border-color: var(--accent-color);
    font-weight: 600;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.5);
}

.hero .btn-primary:hover {
    background: #a0cf5a;
    border-color: #a0cf5a;
    transform: scale(1.02);
}

.hero .btn-outline-light {
    background: transparent;
    border: 2px solid var(--primary-tint-60);
    color: var(--white);
}

.hero .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-shade-40);
    border-color: var(--white);
}

/* Right visual panel */
.hero-visual-panel {
    flex: 1 1 45%;
    background: var(--primary-shade-40);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Image layer — inline background-image so images always show */
.visual-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary-shade-40);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.visual-layer {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(107, 26, 15, 0.35) 0%, transparent 45%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 210px;
    height: 210px;
    right: 5%;
    top: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(141, 191, 63, 0.4) 0%, rgba(141, 191, 63, 0) 75%);
    border-radius: 50%;
    filter: blur(35px);
    z-index: 2;
    mix-blend-mode: screen;
}

.foreground-grain {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M30 110 L45 70 L70 120 L100 40 L130 90 L160 50" stroke="%23aab4a7" stroke-width="2" fill="none" opacity="0.3"/><circle cx="170" cy="170" r="15" fill="%236b1a0f" opacity="0.25"/></svg>');
    background-size: 250px 250px;
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-visual-panel .bottom-accent {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--secondary-tint-40) 0%, transparent 80%);
    filter: blur(30px);
    opacity: 0.4;
    mix-blend-mode: lighten;
    z-index: 3;
}

/* Subpage hero - shorter height, same visual language */
.hero--subpage {
    height: 320px;
    min-height: auto;
    max-height: none;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.hero--subpage .hero-slider {
    display: none;
}

.hero--subpage {
    background: linear-gradient(135deg, var(--primary-shade-40) 0%, var(--primary-shade-20) 50%, var(--primary) 100%);
}

/* Products page intro — redesigned */
.products-intro {
    padding: calc(70px + 3rem) 0 4.5rem;
    background: linear-gradient(160deg, var(--primary-tint-95) 0%, var(--white) 45%, var(--secondary-tint-95) 100%);
    border-bottom: 1px solid var(--primary-tint-80);
}
.products-intro-inner {
    max-width: 720px;
    position: relative;
}
/* Inline icons (replacing emojis in headings/copy) */
.inline-icon {
    display: inline;
    margin: 0 0.25em;
    font-size: 1.25em;
    vertical-align: middle;
    color: var(--primary);
}

.products-intro-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    background: var(--accent-color);
    border-radius: 100px;
    color: var(--primary-shade-40);
}
.products-intro-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--primary-shade-40);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.products-intro-lead {
    font-size: 1.1rem;
    color: var(--primary-tint-20);
    line-height: 1.55;
    margin: 0;
}
.products-intro-accent {
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary));
    border-radius: 2px;
}

/* Hero dots — split panel */
.hero-three .hero-dots {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive — stack panels, gradient to bottom */
@media (max-width: 850px) {
    .hero-three {
        height: auto;
        min-height: 90vh;
        max-height: none;
    }

    .hero-three .hero-inner {
        flex-direction: column;
    }

    .hero-inner::after {
        display: none;
    }

    .hero-text-panel {
        padding: 3rem 2rem 3rem 2.5rem;
        flex: 1 1 auto;
        min-height: 40vh;
    }

    .hero-text-panel::after {
        width: 100%;
        height: 80px;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(to bottom, transparent 0%, var(--primary-shade-40) 90%);
    }

        /* On mobile: do not display the bottom image — slide image as background only */
    .hero-three .hero-visual-panel {
        display: none !important;
    }

    .hero-text-panel {
        min-height: 50vh;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Hero slide image as background behind text on mobile (only place image shows) */
    .hero-slide-bg-mobile {
        display: block;
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.2;
        z-index: 0;
        pointer-events: none;
    }

    .hero-inner {
        position: relative;
        z-index: 1;
    }

    /* Deep layout: keep full-bleed + centered on mobile */
    .hero-layout-deep.hero-three {
        height: 100vh;
        min-height: 100vh;
    }
    .hero-layout-deep .hero-slide-bg {
        background-attachment: scroll;
    }
    .hero-layout-deep .hero-text-panel--center {
        padding: 1.5rem 1rem;
    }
}

@media (max-height: 650px) {
    .hero-three {
        height: auto;
        min-height: 580px;
    }
}

/* Hero prev/next arrows — manual scroll, translucent, near edges */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.98);
}

.hero-arrow--prev {
    left: 8px;
}

.hero-arrow--next {
    right: 8px;
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.hero-dot:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.3);
}

.hero-dot.active {
    background: var(--white);
    border-color: var(--white);
}

/* Hero slide counter (01 / 03) */
.hero-slide-counter {
    position: absolute;
    bottom: 32px;
    left: 28px;
    z-index: 4;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
}
.hero-slide-divider { margin: 0 0.2em; opacity: 0.6; }
.hero-slide-total { opacity: 0.7; }

/* Scroll indicator at bottom of 3-slide hero (seedling + Discover) */
.hero-three .hero-scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-tint-60);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: heroBounce 2s infinite;
    z-index: 4;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease;
}
.hero-three .hero-scroll-indicator:hover { color: var(--white); }
.hero-three .hero-seedling-icon {
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.25s ease, color 0.25s ease;
}
.hero-three .hero-scroll-indicator:hover .hero-seedling-icon {
    transform: scale(1.1);
    color: var(--white);
}

/* Fallback when hero images fail to load */
.hero-slide:not([style*="background-image"]) {
    background-image: none;
    background-color: var(--primary-shade-40);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Welcome to Agroswift */
/* Decorative agriculture icons — sprinkled across sections */
.section-deco {
    position: relative;
    overflow: hidden;
}

.section-deco .container,
.section-deco .about-agroswift-inner {
    position: relative;
    z-index: 1;
}

.deco-icon {
    position: absolute;
    color: var(--primary);
    opacity: 0.11;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Faint icons over text — very low opacity so they don't compete with copy */
.deco-icon--faint {
    opacity: 0.05;
}
.section-deco:hover .deco-icon--faint {
    opacity: 0.08;
}

.section-deco:hover .deco-icon {
    opacity: 0.16;
}
.section-deco:hover .deco-icon--faint {
    opacity: 0.08;
}

.deco-icon i {
    display: block;
}

/* Welcome */
.deco-icon--leaf { top: 2rem; right: 8%; font-size: clamp(3rem, 6vw, 4.8rem); transform: rotate(-15deg); }
.deco-icon--wheat { bottom: 3rem; left: 5%; font-size: clamp(2.4rem, 4.8vw, 3.6rem); transform: rotate(8deg); }
.deco-icon--seedling { top: 50%; right: 2%; font-size: clamp(2.2rem, 4.2vw, 3rem); transform: rotate(12deg); }

/* Trust */
.deco-icon--tractor { top: 1.5rem; left: 6%; font-size: clamp(2.6rem, 4.8vw, 3.8rem); transform: rotate(-8deg); }
.deco-icon--sun { bottom: 2rem; right: 10%; font-size: clamp(2.4rem, 4.2vw, 3.4rem); transform: rotate(5deg); }

/* About */
.deco-icon--apple { top: 3rem; right: 4%; font-size: clamp(2.4rem, 4.2vw, 3.2rem); transform: rotate(-20deg); }
.deco-icon--basket { bottom: 4rem; left: 8%; font-size: clamp(3rem, 4.8vw, 3.8rem); transform: rotate(10deg); }
.deco-icon--droplet { top: 45%; left: 2%; font-size: clamp(2rem, 3.6vw, 2.6rem); transform: rotate(-5deg); }

/* Why Us */
.deco-icon--tree { top: 2rem; right: 12%; font-size: clamp(3.4rem, 6vw, 4.6rem); transform: rotate(3deg); }
.deco-icon--hand-seed { bottom: 2rem; left: 5%; font-size: clamp(2.4rem, 4.2vw, 3.2rem); transform: rotate(-12deg); }

/* Explore */
.deco-icon--earth { top: 1.5rem; left: 7%; font-size: clamp(2.9rem, 4.8vw, 3.8rem); transform: rotate(-6deg); }
.deco-icon--carrot { bottom: 2.5rem; right: 6%; font-size: clamp(2.2rem, 3.6vw, 2.9rem); transform: rotate(15deg); }

/* Products intro */
.deco-icon--boxes { top: 2rem; right: 10%; font-size: clamp(2.8rem, 5vw, 3.8rem); transform: rotate(-10deg); }
.deco-icon--cart { bottom: 2rem; left: 6%; font-size: clamp(2.2rem, 4vw, 3rem); transform: rotate(8deg); }

/* Impact intro */
.deco-icon--chart-line { top: 1.5rem; left: 8%; font-size: clamp(2.6rem, 4.5vw, 3.4rem); transform: rotate(5deg); }
.deco-icon--users { bottom: 2.5rem; right: 8%; font-size: clamp(2.4rem, 4vw, 3.2rem); transform: rotate(-8deg); }

/* Distribution intro */
.deco-icon--truck { top: 2rem; right: 7%; font-size: clamp(2.8rem, 5vw, 3.6rem); transform: rotate(-12deg); }
.deco-icon--map { bottom: 2rem; left: 10%; font-size: clamp(2.2rem, 4vw, 3rem); transform: rotate(6deg); }

/* Over-text / center positions — faint icons in content area */
.deco-icon--center { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-5deg); font-size: clamp(4rem, 12vw, 8rem); }
.deco-icon--center-top { top: 35%; left: 50%; transform: translate(-50%, -50%) rotate(3deg); font-size: clamp(3rem, 8vw, 5rem); }
.deco-icon--center-left { top: 45%; left: 15%; font-size: clamp(2.2rem, 5vw, 3.2rem); transform: rotate(-10deg); }
.deco-icon--center-right { top: 45%; right: 15%; left: auto; font-size: clamp(2.2rem, 5vw, 3.2rem); transform: rotate(8deg); }
.deco-icon--mid-left { top: 40%; left: 3%; font-size: clamp(2rem, 4vw, 2.8rem); transform: rotate(12deg); }
.deco-icon--mid-right { top: 40%; right: 3%; left: auto; font-size: clamp(2rem, 4vw, 2.8rem); transform: rotate(-12deg); }

/* Extra positions for more sprinkle icons */
.deco-icon--pos1 { top: 12%; left: 18%; font-size: clamp(1.8rem, 3.2vw, 2.4rem); transform: rotate(-18deg); }
.deco-icon--pos2 { top: 22%; right: 22%; left: auto; font-size: clamp(1.6rem, 2.8vw, 2.2rem); transform: rotate(14deg); }
.deco-icon--pos3 { bottom: 28%; left: 12%; font-size: clamp(1.8rem, 3vw, 2.3rem); transform: rotate(7deg); }
.deco-icon--pos4 { bottom: 18%; right: 15%; left: auto; font-size: clamp(1.7rem, 2.9vw, 2.2rem); transform: rotate(-9deg); }
.deco-icon--pos5 { top: 38%; left: 8%; font-size: clamp(1.5rem, 2.6vw, 2rem); transform: rotate(22deg); }
.deco-icon--pos6 { top: 55%; right: 8%; left: auto; font-size: clamp(1.6rem, 2.7vw, 2.1rem); transform: rotate(-15deg); }
.deco-icon--pos7 { top: 18%; left: 45%; font-size: clamp(1.4rem, 2.4vw, 1.8rem); transform: rotate(5deg); }
.deco-icon--pos8 { top: 65%; right: 28%; left: auto; font-size: clamp(1.5rem, 2.5vw, 1.9rem); transform: rotate(-8deg); }
.deco-icon--pos9 { bottom: 35%; left: 25%; font-size: clamp(1.6rem, 2.8vw, 2.1rem); transform: rotate(11deg); }
.deco-icon--pos10 { top: 42%; right: 25%; left: auto; font-size: clamp(1.5rem, 2.6vw, 2rem); transform: rotate(-6deg); }
.deco-icon--pos11 { top: 28%; left: 28%; font-size: clamp(1.4rem, 2.3vw, 1.8rem); transform: rotate(16deg); }
.deco-icon--pos12 { top: 48%; right: 35%; left: auto; font-size: clamp(1.3rem, 2.2vw, 1.7rem); transform: rotate(-11deg); }
.deco-icon--pos13 { bottom: 42%; left: 35%; font-size: clamp(1.5rem, 2.5vw, 1.9rem); transform: rotate(9deg); }
.deco-icon--pos14 { top: 72%; left: 18%; font-size: clamp(1.4rem, 2.4vw, 1.8rem); transform: rotate(-14deg); }
.deco-icon--pos15 { top: 8%; right: 35%; left: auto; font-size: clamp(1.6rem, 2.7vw, 2rem); transform: rotate(8deg); }

@media (max-width: 768px) {
    .deco-icon { opacity: 0.08; }
    .section-deco:hover .deco-icon { opacity: 0.12; }
    .deco-icon--faint { opacity: 0.04; }
    .deco-icon--seedling,
    .deco-icon--droplet,
    .deco-icon--cart,
    .deco-icon--map { display: none; }
    .deco-icon--center,
    .deco-icon--center-top { display: none; }
}

.welcome-section {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-tint-97) 100%);
    border-bottom: 1px solid var(--primary-tint-85);
}

.welcome-inner {
    max-width: 820px;
    margin: 0 auto;
}

.welcome-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--primary-shade-40);
    margin-bottom: 0.5rem;
}

.welcome-tagline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.welcome-lead {
    font-size: 1.1rem;
    color: var(--primary-tint-20);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.welcome-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.welcome-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-color);
    color: var(--primary-shade-40);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.welcome-block {
    padding: 2rem 2rem 2.25rem;
    background: var(--white);
    border-radius: 1.25rem 1.25rem 1.1rem 1.1rem;
    border: 1px solid var(--primary-tint-80);
    border-left: 5px solid var(--primary);
    box-shadow: 0 12px 32px rgba(43, 68, 36, 0.1), 0 0 0 1px rgba(43, 68, 36, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: welcomeBlockReveal 0.6s ease backwards;
}

.welcome-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(43, 68, 36, 0.12), 0 0 0 1px var(--primary-tint-70);
    border-color: var(--primary-tint-60);
}

.welcome-block:nth-child(1) { animation-delay: 0.1s; }
.welcome-block:nth-child(2) { animation-delay: 0.25s; }
.welcome-block:nth-child(3) { animation-delay: 0.4s; }

@keyframes welcomeBlockReveal {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-block-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
    background: var(--primary-tint-92);
    color: var(--primary);
    border-radius: 10px;
    font-size: 1.15rem;
}

.welcome-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-shade-40);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.welcome-block p {
    font-size: 1rem;
    color: var(--primary-tint-20);
    line-height: 1.6;
    margin: 0;
}

/* Trust Section — matches impact/distribution card style */
.trust-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--primary-tint-92) 0%, var(--secondary-tint-94) 100%);
    margin-bottom: 0;
    border-top: 1px solid var(--primary-tint-85);
}

.trust-section .section-header {
    margin-bottom: 2rem;
}

.trust-section .section-header h2 {
    color: var(--primary-shade-40);
}

.trust-section .section-header p {
    color: var(--primary-tint-25);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.trust-item {
    padding: 0;
}

/* Trust cards — product (farm) card style, no image section */
.trust-card {
    background: var(--white);
    border-radius: 2rem 2rem 1.8rem 1.8rem;
    overflow: hidden;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-tint-80);
    height: 100%;
    padding: 2rem 1.5rem 2rem;
    animation: trustCardReveal 0.5s ease backwards;
}

.trust-item:nth-child(1) .trust-card { animation-delay: 0.05s; }
.trust-item:nth-child(2) .trust-card { animation-delay: 0.12s; }
.trust-item:nth-child(3) .trust-card { animation-delay: 0.19s; }
.trust-item:nth-child(4) .trust-card { animation-delay: 0.26s; }

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -14px var(--primary-shade-20), 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-tint-40);
}

@keyframes trustCardReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title + icon on same horizontal line (trust, distribution, impact, explore cards) */
.card-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.card-title-row h3 {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.card-title-row .trust-card-icon,
.card-title-row .distribution-card-icon,
.card-title-row .impact-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.trust-card .trust-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    background: var(--primary-tint-92);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.35rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.trust-card:hover .trust-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.trust-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-shade-40);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--primary-tint-25);
    line-height: 1.5;
    margin: 0;
}

/* Explore section — home page solution cards (matches impact/distribution) */
.explore-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-tint-97) 100%);
    border-top: 1px solid var(--primary-tint-88);
}

.explore-section .section-header--explore {
    margin-bottom: 2rem;
}

.explore-section .section-header--explore h2 {
    color: var(--primary-shade-40);
}

.explore-section .section-header--explore p {
    color: var(--primary-tint-25);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.explore-card {
    padding: 0;
}

.explore-card-border {
    padding: 3px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-tint-70), var(--primary), var(--secondary-tint-60));
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.explore-card-border:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(43, 68, 36, 0.15);
}

.explore-card-inner {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.explore-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    background: var(--primary-tint-92);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.35rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.explore-card-border:hover .explore-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.explore-card-inner h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-shade-40);
}

.explore-card-inner p {
    font-size: 0.95rem;
    color: var(--primary-tint-25);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    transition: color 0.2s ease, gap 0.2s ease;
}

.explore-link:hover {
    color: var(--primary-shade-20);
    gap: 0.6rem;
}

.explore-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.explore-link:hover i {
    transform: translateX(4px);
}

/* Explore cards — product (farm) card style */
.explore-grid--products-style {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.explore-card--products-style {
    background: var(--white);
    border-radius: 2rem 2rem 1.8rem 1.8rem;
    overflow: hidden;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-tint-80);
}

.explore-card--products-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -14px var(--primary-shade-20), 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-tint-40);
}

.explore-card-visual {
    position: relative;
    min-height: 180px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-tint-80), var(--primary-tint-60));
    transition: transform 0.4s ease;
}

.explore-card--products-style:hover .explore-card-visual {
    transform: scale(1.02);
}

.explore-card-visual .explore-card-icon {
    width: 72px;
    height: 72px;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.explore-card--products-style:hover .explore-card-visual .explore-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.explore-card-visual--products { background: linear-gradient(145deg, var(--primary-tint-80), var(--primary-tint-60)); }
.explore-card-visual--why { background: linear-gradient(145deg, var(--secondary-tint-80), var(--secondary-tint-60)); }
.explore-card-visual--impact { background: linear-gradient(145deg, var(--accent-color) 0%, var(--primary-tint-60) 100%); }
.explore-card-visual--distribution { background: linear-gradient(145deg, var(--primary-tint-70), var(--primary-tint-50)); }

.explore-card--products-style .explore-card-content {
    padding: 1.8rem 1.5rem 2rem;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: none;
    border-radius: 0;
}

.explore-card-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-tint-40);
    margin-bottom: 0.4rem;
}

.explore-card--products-style .explore-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-shade-40);
}

.explore-card--products-style .explore-card-content p {
    font-size: 0.95rem;
    color: var(--primary-tint-20);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.explore-card--products-style .explore-link {
    margin-top: auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--grey);
    font-size: 16px;
}

/* Products Section */
.products-section {
    padding: 0 0 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(43, 68, 36, 0.06);
    transition: var(--transition);
    border: 1px solid var(--primary-tint-80);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    background-color: var(--primary-tint-90);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img i {
    font-size: 60px;
    opacity: 0.5;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 24px;
    /* Brand H3 */
    font-weight: 600;
}

.product-info p {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more i {
    font-size: 12px;
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Gallery Section — secondary tint for warmth */
.gallery-section {
    padding: 40px 0 80px;
    background-color: var(--secondary-tint-90);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-grid--single {
    grid-template-columns: 1fr;
    max-width: 100%;
}

.gallery-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--secondary-tint-80);
    box-shadow: 0 5px 15px rgba(107, 26, 15, 0.04);
}

.gallery-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.gallery-card p {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 16px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-images img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
}

/* Farmstead-style cards (display.html) — Hatchery, Ranch, Agrovet sections */
.farmstead-section .section-header--farmstead {
    margin-bottom: 2.5rem;
}

.farmstead-section .section-header--farmstead h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-shade-40);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.farmstead-section .section-header--farmstead h2 span {
    background: var(--primary-tint-20);
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.2rem 1.2rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
}

.farmstead-section .section-header--farmstead p {
    color: var(--primary-tint-20);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
}

.farmstead-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.farm-card {
    background: var(--white);
    border-radius: 2rem 2rem 1.8rem 1.8rem;
    overflow: hidden;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-tint-80);
}

.farm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -14px var(--primary-shade-20), 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-tint-40);
}

.farmstead-section .card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-tint-60);
    transition: transform 0.4s ease;
    position: relative;
}

.farmstead-section .card-image.card-image--img {
    background-blend-mode: normal;
}

.farm-card:hover .card-image {
    transform: scale(1.02);
}

.farmstead-section .card-image::after {
    content: 'Agroswift';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--primary-shade-40);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Farm card image carousel — multiple images, auto + manual, full image visible */
.farmstead-section .card-carousel-wrap {
    position: relative;
    min-height: 220px;
    aspect-ratio: 4 / 3;
    background: var(--primary-tint-60);
    overflow: hidden;
}
.farmstead-section .card-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}
.farmstead-section .card-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}
.farmstead-section .card-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-tint-70);
    transition: opacity 0.35s ease;
}
.farmstead-section .card-carousel-slide:not(.active) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}
.farmstead-section .card-carousel-slide.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}
.farmstead-section .card-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
}
.farmstead-section .card-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-shade-40);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.2s;
}
.farmstead-section .card-carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.05);
}
.farmstead-section .card-carousel-prev { left: 8px; }
.farmstead-section .card-carousel-next { right: 8px; }
.farmstead-section .card-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 2;
}
.farmstead-section .card-carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.farmstead-section .card-carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}
.farmstead-section .card-carousel-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}
.farm-card:hover .card-carousel-btn {
    opacity: 1;
}

.farmstead-section .card-content {
    padding: 1.8rem 1.5rem 2rem;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.farmstead-section .product-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-tint-40);
    margin-bottom: 0.4rem;
}

.farmstead-section .card-content h3 {
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--primary-shade-40);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.farmstead-section .product-desc {
    color: var(--primary-tint-20);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
    flex: 1;
}

@media (max-width: 900px) {
    .farmstead-section .farmstead-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .farmstead-section .farmstead-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .farmstead-section .card-content h3 {
        font-size: 1.7rem;
    }
}

/* About Agroswift — dedicated to improving smallholder agriculture */
.about-agroswift-section {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, var(--primary-tint-95) 0%, var(--secondary-tint-95) 50%, var(--primary-tint-95) 100%);
    border-top: 1px solid var(--primary-tint-85);
}

.about-agroswift-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* The company — same content width as welcome section (820px), title centered */
.company-section-inner {
    max-width: 820px;
    margin: 0 auto;
}

.company-title--center {
    text-align: center;
}

/* The company — logo left, description right */
.company-intro {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.company-intro-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.company-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.company-intro-text {
    font-size: 1rem;
    color: var(--primary-tint-20);
    line-height: 1.65;
}

.company-intro-text p {
    margin-bottom: 1rem;
}

.company-intro-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .company-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-intro-logo {
        max-width: 180px;
        margin: 0 auto;
    }
}

.about-agroswift-title {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 600;
    color: var(--primary-shade-40);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-agroswift-lead,
.about-agroswift-text {
    font-size: 1rem;
    color: var(--primary-tint-20);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.about-stat {
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(43, 68, 36, 0.08);
    border: 1px solid var(--primary-tint-80);
}

.about-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--primary-tint-30);
    font-weight: 500;
    line-height: 1.2;
}

/* About premium block — mission, vision, what we do (impact-style cards) */
.about-premium {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-premium--impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-premium-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.about-premium-label--light {
    color: rgba(255, 255, 255, 0.9);
}

.about-premium-mission {
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 8px 32px rgba(43, 68, 36, 0.08), 0 0 0 1px var(--primary-tint-90);
    border-left: 4px solid var(--primary);
}

.about-premium-headline {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--primary-shade-40);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-premium-innovation {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-tint-95) 0%, var(--primary-tint-98) 100%);
    border-radius: 12px;
    border: 1px solid var(--primary-tint-85);
}

.about-premium-innovation-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.25rem;
}

.about-premium-innovation h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-shade-40);
    margin: 0 0 0.4rem;
}

.about-premium-innovation p {
    font-size: 0.95rem;
    color: var(--primary-tint-25);
    line-height: 1.55;
    margin: 0;
}

.about-premium-vision {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-shade-20) 100%);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 12px 40px rgba(43, 68, 36, 0.2);
    color: var(--white);
}

.about-premium-vision-inner h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-premium-vision-inner p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.about-premium-what {
    padding: 2rem 0 0;
    border-top: 1px solid var(--primary-tint-80);
}

.about-premium-what .about-premium-label {
    margin-bottom: 1.25rem;
}

.about-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-premium-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(43, 68, 36, 0.06);
    border: 1px solid var(--primary-tint-88);
    font-size: 0.95rem;
    color: var(--primary-tint-20);
    line-height: 1.45;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-premium-item:hover {
    box-shadow: 0 8px 24px rgba(43, 68, 36, 0.1);
    border-color: var(--primary-tint-70);
}

.about-premium-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-tint-60) 100%);
    color: var(--primary-shade-40);
    border-radius: 10px;
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .about-premium-grid {
        grid-template-columns: 1fr;
    }
    .about-premium-mission,
    .about-premium-vision {
        padding: 1.5rem 1.5rem;
    }
}

.about-what-we-offer {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--primary-tint-80);
}

.about-agroswift-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-shade-40);
    margin-bottom: 0.75rem;
}

.about-agroswift-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1rem 0 0.5rem;
}

.about-what-we-offer ul {
    margin: 0.75rem 0 1rem;
    padding-left: 1.5rem;
    color: var(--primary-tint-20);
    line-height: 1.6;
}

.about-brands {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.about-brands li {
    margin: 0;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.about-link:hover {
    color: var(--primary-shade-20);
}

.about-technology {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-shade-30);
    border-top: 1px solid var(--primary-tint-80);
}

@media (max-width: 640px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Why Us Section — improved layout */
.why-us-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--secondary-tint-90) 0%, var(--primary-tint-90) 100%);
}

.why-us-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.why-us-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--primary-shade-40);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.why-us-lead {
    font-size: 1.2rem;
    color: var(--primary-tint-20);
    line-height: 1.6;
}

.why-us-card {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.42fr);
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px -12px rgba(26, 41, 22, 0.12);
    border: 1px solid var(--primary-tint-80);
    overflow: hidden;
}

.why-us-main {
    padding: 2.5rem 2.25rem;
    position: relative;
    overflow: hidden;
}

/* Farmer-first block: image as visible background */
.why-us-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero/18.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}

.why-us-main > * {
    position: relative;
    z-index: 1;
}

.why-us-intro {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--primary-tint-90);
}

.why-us-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-shade-20);
    margin-bottom: 0.75rem;
}

.why-us-desc {
    font-size: 1.05rem;
    color: var(--primary-tint-20);
    line-height: 1.6;
    margin: 0;
}

.benefits-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--primary-tint-80);
    transition: background 0.2s ease;
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-item:first-of-type {
    padding-top: 0;
}

.benefit-icon {
    flex-shrink: 0;
    width: 1.5rem;
    margin-top: 0.2rem;
}

.benefit-icon i {
    color: var(--secondary);
    font-size: 1.15rem;
}

.benefit-text {
    font-size: 1rem;
    color: var(--primary-tint-20);
    line-height: 1.55;
}

.benefit-text strong {
    color: var(--primary-shade-20);
    font-weight: 600;
}

.why-us-cta {
    margin-top: 0.5rem;
}

.why-us-cta .btn {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.why-us-visual {
    min-height: 320px;
}

.why-us-img {
    height: 100%;
    min-height: 320px;
    background: var(--primary-tint-90);
    display: block;
    position: relative;
}

.why-us-img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.why-us-img-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: var(--primary-tint-90);
}

.why-us-img-fallback.show {
    display: flex;
}

.why-us-img-fallback i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.25;
}

/* Impact Section — matches trust-section / gallery look */
.impact-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--primary-tint-92) 0%, var(--secondary-tint-92) 100%);
    border-top: 1px solid var(--primary-tint-85);
}

.impact-section .section-header--impact {
    text-align: center;
    margin-bottom: 2rem;
}

.impact-section .section-header--impact h2 {
    color: var(--primary-shade-40);
}

.impact-section .section-header--impact p {
    color: var(--primary-tint-25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
}

.stats-grid--impact .stat-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(43, 68, 36, 0.08);
    border: 1px solid var(--primary-tint-85);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stats-grid--impact .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43, 68, 36, 0.12);
}

.stat-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-tint-60));
    color: var(--primary-shade-40);
    border-radius: 12px;
    font-size: 1.25rem;
}

.stat-item h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-tint-30);
}

/* Impact stories — trust-card style with gradient border */
.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-card {
    padding: 0;
}

.impact-card-border {
    padding: 3px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-tint-60), var(--primary), var(--primary-shade-20));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-card-border:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(43, 68, 36, 0.15);
}

.impact-card-inner {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.impact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    background: var(--primary-tint-92);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.35rem;
}

.impact-card .card-title-row .impact-card-icon {
    margin-bottom: 0;
}

.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary-shade-40);
}

.impact-card p {
    font-size: 0.95rem;
    color: var(--primary-tint-25);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 640px) {
    .stats-grid--impact {
        grid-template-columns: 1fr;
    }
}

/* Distribution Section — matches trust-section / gallery look */
.distribution-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--secondary-tint-92) 0%, var(--primary-tint-95) 100%);
    border-top: 1px solid var(--primary-tint-85);
}

.distribution-section .section-header--distribution {
    text-align: center;
    margin-bottom: 2rem;
}

.distribution-section .section-header--distribution h2 {
    color: var(--primary-shade-40);
}

.distribution-section .section-header--distribution p {
    color: var(--primary-tint-25);
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Distribution cards — product/trust style (no image section) */
.distribution-card {
    background: var(--white);
    border-radius: 2rem 2rem 1.8rem 1.8rem;
    overflow: hidden;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-tint-80);
    height: 100%;
    padding: 2rem 1.5rem 2rem;
}

.distribution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -14px var(--primary-shade-20), 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-tint-40);
}

.distribution-card .distribution-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    background: var(--primary-tint-92);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.35rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.distribution-card .card-title-row .distribution-card-icon {
    margin-bottom: 0;
}

.distribution-card:hover .distribution-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.distribution-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-shade-40);
}

.distribution-card p {
    font-size: 0.95rem;
    color: var(--primary-tint-25);
    line-height: 1.5;
    margin: 0;
}

.distribution-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.distribution-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.distribution-cta .btn:hover i {
    transform: translateX(4px);
}

.distribution-cta .btn i {
    transition: transform 0.2s ease;
}

/* Advisory Section — light primary tint */
.advisory-section {
    padding: 80px 0;
    background-color: var(--primary-tint-90);
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.advisory-card {
    border-radius: 10px;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--primary-tint-80);
}

.advisory-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.advisory-card p {
    font-size: 14px;
    color: var(--grey);
}

.advisory-note {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--grey);
}

.advisory-note a {
    color: var(--primary);
    font-weight: 600;
}

/* Footer — deep primary green (shade-40) */
.footer {
    background-color: var(--primary-shade-40);
    color: var(--primary-tint-60);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--primary-tint-60);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--secondary-tint-40);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
}

.contact-info i {
    color: var(--secondary-tint-40);
    margin-top: 5px;
}

.contact-offices {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-office {
    font-size: 14px;
    line-height: 1.5;
}

.contact-office h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-shade-40);
    margin-bottom: 0.5rem;
}

.contact-office .contact-address {
    color: var(--primary-tint-40);
    margin-bottom: 0.5rem;
}

.contact-office p {
    margin-bottom: 0.35rem;
}

.contact-office a {
    color: var(--primary-tint-30);
}

.contact-office a:hover {
    color: var(--accent-color);
}

.contact-office i {
    margin-right: 0.4rem;
    color: var(--secondary-tint-40);
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--primary-shade-20);
    border: 1px solid var(--primary-tint-40);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: var(--primary-tint-60);
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--secondary-tint-40);
}

.footer-bottom {
    border-top: 1px solid var(--primary-shade-20);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 42px;
    }

    .why-us-card {
        grid-template-columns: 1fr;
    }

    .why-us-visual {
        min-height: 280px;
    }

    .why-us-img,
    .why-us-img img {
        min-height: 280px;
    }

    .why-us-main {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-backdrop {
        display: block;
    }

    /* Mobile: 75% width & height, content left-aligned */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 75vw;
        height: 75vh;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        z-index: 1002;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Card container — site colours: dark green gradient, content left-aligned */
    .nav-menu-card {
        position: relative;
        width: 100%;
        min-height: 100%;
        background: linear-gradient(139deg, var(--primary-shade-40) 0%, var(--primary-shade-20) 50%, var(--primary) 100%);
        border-radius: 0;
        padding: 56px 16px 32px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0;
        box-shadow: -8px 0 40px rgba(26, 41, 22, 0.25);
    }

    /* Close (X) button — top right of mobile menu */
    .nav-menu-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: rgba(255, 255, 255, 0.15);
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 300;
        cursor: pointer;
        border-radius: 50%;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        z-index: 10;
        line-height: 1;
        padding: 0;
    }

    .nav-menu-close:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }

    .nav-menu-close:active {
        transform: scale(0.98);
    }

    .nav-menu-separator {
        display: block;
        border-top: 1.5px solid var(--primary-tint-40);
        margin: 10px 0;
        width: 100%;
        opacity: 0.6;
    }

    .nav-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 0;
        width: 100%;
    }

    .nav-menu-list:last-child {
        margin-top: 4px;
    }

    /* List element — icon + label, Uiverse-style */
    .nav-menu-element {
        list-style: none;
        margin: 0;
        opacity: 0;
        transform: translateX(16px);
        transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.25s ease, color 0.25s ease;
    }

    .nav-menu.active .nav-menu-element {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-menu-list:nth-child(1) .nav-menu-element:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active .nav-menu-list:nth-child(1) .nav-menu-element:nth-child(2) { transition-delay: 0.08s; }
    .nav-menu.active .nav-menu-list:nth-child(1) .nav-menu-element:nth-child(3) { transition-delay: 0.11s; }
    .nav-menu.active .nav-menu-list:nth-child(1) .nav-menu-element:nth-child(4) { transition-delay: 0.14s; }
    .nav-menu.active .nav-menu-list:nth-child(1) .nav-menu-element:nth-child(5) { transition-delay: 0.17s; }
    .nav-menu.active .nav-menu-list:nth-child(1) .nav-menu-element:nth-child(6) { transition-delay: 0.2s; }
    .nav-menu.active .nav-menu-list:nth-child(3) .nav-menu-element { transition-delay: 0.24s; }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        color: var(--primary-tint-60);
        transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
        width: 100%;
        text-align: left;
    }

    .nav-menu .nav-link .nav-icon {
        font-size: 18px;
        width: 22px;
        text-align: center;
        color: var(--primary-tint-60);
        transition: color 0.25s ease;
    }

    .nav-menu .nav-link:hover {
        background-color: var(--primary-tint-20);
        color: var(--white);
        transform: translate(2px, -2px);
    }

    .nav-menu .nav-link:hover .nav-icon {
        color: var(--white);
    }

    .nav-menu .nav-link:active {
        transform: scale(0.98);
    }

    /* CTA group — secondary/accent tint */
    .nav-menu-element--cta .nav-link,
    .nav-menu-list:last-child .nav-link {
        color: var(--secondary-tint-60);
    }

    .nav-menu-list:last-child .nav-icon {
        color: var(--secondary-tint-60);
    }

    .nav-menu-element--cta .nav-link:hover,
    .nav-menu-list:last-child .nav-link:hover {
        background-color: var(--secondary);
        color: var(--white);
    }

    .nav-menu-list:last-child .nav-link:hover .nav-icon {
        color: var(--white);
    }

    .nav-menu .nav-link--cta {
        justify-content: flex-start;
        margin-top: 4px;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Product image lightbox popup */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10002;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10002;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.lightbox--single .lightbox-prev,
.lightbox--single .lightbox-next {
    display: none;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 0.5rem;
    }
    .lightbox-next {
        right: 0.5rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.25);
    }
}