@layer base, layout, components, utilities;

@layer base {
    :root {
        --green-primary: #4fa349;
        --green-bright: #57b650;
        --green-dark: #197415;
        --green-cta: #38af2f;
        --green-light-bg: #e3f4e3;
        --green-card-bg: #f4fff4;
        --text-dark: #343434;
        --text-mid: #5d5d5d;
        --text-light: #d6d6d6;
        --white: #ffffff;
        --bg-light: #fafafa;
        --bg-card: #fcfdfc;
        --border-green: #2e8628;
        --shadow-card: 0 0 1.9px rgba(0, 0, 0, 0.25);
        --font-outfit: "Outfit", sans-serif;
        --font-mulish: "Mulish", sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        color: var(--text-dark, #343434);
        background: var(--white, #ffffff);
        width: 100%;
        max-width: 100%;
        min-width: 320px;
        overflow-x: hidden;
    }

    img {
        display: block;
        max-width: 100%;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
    ul {
        list-style: none;
    }
}

@layer layout {
    .container {
        max-width: 1360px;
        margin-inline: auto;
        padding-inline: 40px;
    }

    .section-title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 32px;
        font-weight: 600;
        color: #343434;
        line-height: 1.3;
    }

    .section-desc {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 16px;
        font-weight: 500;
        color: #343434;
        margin-block-start: 12px;
        max-width: 600px;
    }

    .text-green {
        color: #57b650;
    }
    .text-green1 {
        color: #57b650;
    }
}

@layer components {
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 16px;
        font-weight: 500;
        border-radius: 46px;
        padding-block: 14px;
        padding-inline: 28px;
        cursor: pointer;
        border: none;
        outline: none;
        transition:
            opacity 0.2s,
            transform 0.15s;
        white-space: nowrap;
    }
    .sub-head{
        font-weight: 700 ;
        color:#000 ;
        font-size: 14px;
        margin: 5px 18px ;
    }
    .btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .btn--primary {
        background: linear-gradient(
            90deg,
            #2e8628 0%,
            #61b95b 49.52%,
            #2e8628 100%
        );
        color: var(--white, #ffffff);
        box-shadow: rgb(0, 0, 0) 0px 3px 11.1px -5px;
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }
    .btn--primary::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.28) 50%,
            transparent 100%
        );
        transform: translateX(110%);
        transition: transform 0.55s ease;
        pointer-events: none;
    }
    .btn--primary:hover::before {
        transform: translateX(-110%);
    }
    .btn--primary span,
    .btn--primary img {
        position: relative;
        z-index: 1;
    }
    .btn--outline {
        background:
            linear-gradient(#1f1f1f) padding-box,
            linear-gradient(90deg, #265023 0%, #a9ffa2 58.65%, #57b650 100%)
                border-box;

        border: 1px solid transparent;
        border-radius: 34px;
        color: #57b650;
        font-weight: 600;
    }
    .dark-green {
        color: #197415;
        font-weight: 500;
        font-size: 16px;
        font-family: "outfit", sans-serif;
    }
    .btn--contact {
        background: linear-gradient(
            90deg,
            #38af2f 0%,
            #7abf75 52.84%,
            #38af2f 100%
        );

        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px); /* Safari */

        box-shadow: 0px 12px 12.1px -7px rgb(20, 35, 9);
        border: 1px solid rgba(255, 255, 255, 0.12);

        color: #fff;
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-weight: 600;
        font-size: 16px;

        padding-block: 10px;
        padding-inline: 34px;
        border-radius: 10px;
        margin-inline-start: 20px;

        flex-shrink: 0;
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }
    /* Right-to-left glow sweep on hover */
    .btn--contact::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.299) 50%,
            transparent 100%
        );
        transform: translateX(110%);
        transition: transform 0.55s ease;
        pointer-events: none;
    }
    .btn--contact:hover::before {
        transform: translateX(-110%);
    }

    .btn--green-outline {
        background: var(--green-cta, #38af2f);
        color: #ffffff;
        padding: 15px 20px;
        border-radius: 10px;
        font-weight: 500;
        font-size: 18px;
        gap: 10px;
        flex-shrink: 0;
    }

    .btn--explore {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--green-primary, #4fa349);
        color: var(--white, #ffffff);
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 16px;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 6px;
        margin-block-start: 20px;
        align-self: flex-start;
        position: relative;
        overflow: hidden;
        isolation: isolate;
        transition: color 0.35s ease;
    }

    /* Circle rises from bottom to fill button with white */
    .btn--explore::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -10%;
        width: 0;
        height: 0;
        background: #ffffff;
        border-radius: 50%;
        transform: translateX(-50%);
        transition:
            width 0.45s ease,
            height 0.45s ease,
            bottom 0.45s ease;
        pointer-events: none;
        z-index: 0;
    }
    .btn--explore:hover::before {
        width: 250%;
        height: 500%;
        bottom: -100%;
    }
    .btn--explore:hover {
        color: var(--green-primary, #4fa349);
    }
    .btn--explore span,
    .btn--explore i,
    .btn--explore img {
        position: relative;
        z-index: 1;
    }
    .btn--explore img {
        width: 14px;
        height: auto;
    }

    .btn--explore-outline {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--green-bright, #57b650);
        font-size: 16px;
        padding-block: 14px;
        padding-inline: 24px;
        border-radius: 46px;
        position: relative;
        overflow: hidden;
        isolation: isolate;
        transition: color 0.35s ease;
    }
    .btn--explore-outline::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -10%;
        width: 0;
        height: 0;
        background: #ffffff;
        border-radius: 50%;
        transform: translateX(-50%);
        transition:
            width 0.45s ease,
            height 0.45s ease,
            bottom 0.45s ease;
        pointer-events: none;
        z-index: 0;
    }
    .btn--explore-outline:hover::before {
        width: 250%;
        height: 500%;
        bottom: -100%;
    }
    .btn--explore-outline:hover {
        color: var(--green-primary, #4fa349);
    }
    .btn--explore-outline span {
        position: relative;
        z-index: 1;
    }

    .btn__arrow {
        width: 16px;
        height: auto;
    }
    .btn__arrow--flip {
        transform: rotate(180deg);
    }

    /* ------ NAVBAR ------ */
    .navbar {
        position: fixed;
        inset-block-start: 0;
        inset-inline-start: 0;
        width: 100%;
        max-width: 100vw;
        z-index: 100;
        background: var(--white, #ffffff);
        height: 75px;
        display: flex;
        align-items: center;
        padding-inline: 35px;
        gap: 40px;
        box-shadow: 0px -6px 12.1px 0px #000000;
        overflow: clip;
    }

    .navbar__logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .navbar__logo img {
        height: 55px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
    }

    .navbar__links {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-inline-start: auto;
    }

    .navbar__item {
        display: flex;
        align-items: center;
    }

    .navbar__item--mega::after {
        content: "";
        display: none;
        position: fixed;
        inset-block-start: 52px;
        inset-inline: 0;
        height: 23px;
        background: transparent;
        z-index: 101;
    }

    .navbar__link {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 16px;
        font-weight: 400;
        color: var(--text-dark, #343434);
        padding-block: 8px;
        padding-inline: 16px;
        border-radius: 23px;
        display: flex;
        align-items: center;
        gap: 4px;
        transition:
            background 0.2s,
            color 0.2s;
        border: none;
        background: transparent;
        cursor: pointer;
    }
    .navbar__link:hover {
        color: var(--green-dark, #197415);
    }
    .navbar__item--mega:hover > .navbar__link,
    .navbar__item--mega:focus-within > .navbar__link,
    .navbar__item--mega:has(.mega-menu__toggle[aria-expanded="true"])
        > .navbar__link {
        color: var(--green-dark, #197415);
    }

    .navbar__link--active {
        background: var(--green-light-bg, #e3f4e3);
        color: var(--green-dark, #197415);
    }

    body[data-nav="home"] .navbar .navbar__link[href="index.html"],
    body[data-nav="products"]
        .navbar
        .mega-menu__toggle[aria-controls="productsMegaMenu"],
    body[data-nav="solutions"]
        .navbar
        .mega-menu__toggle[aria-controls="solutionsMegaMenu"],
    body[data-nav="industries"]
        .navbar
        .mega-menu__toggle[aria-controls="industriesMegaMenu"],
    body[data-nav="company"]
        .navbar
        .mega-menu__toggle[aria-controls="companyMegaMenu"],
    body[data-nav="support"]
        .navbar
        .mega-menu__toggle[aria-controls="supportMegaMenu"],
    body[data-nav="resources"]
        .navbar
        .mega-menu__toggle[aria-controls="resourcesMegaMenu"] {
        background: var(--green-light-bg, #e3f4e3);
        color: var(--green-dark, #197415);
    }

    .nav-chevron {
        font-size: 14px;
        color: #343434;
        transition:
            transform 0.2s ease,
            color 0.2s ease;
        margin-inline-start: 2px;
    }
    .navbar__link:hover .nav-chevron,
    .navbar__link--active .nav-chevron,
    .navbar__item--mega:hover > .navbar__link .nav-chevron,
    .navbar__item--mega:focus-within > .navbar__link .nav-chevron,
    .navbar__item--mega:has(.mega-menu__toggle[aria-expanded="true"])
        > .navbar__link
        .nav-chevron {
        color: var(--green-dark, #197415);
        transform: rotate(-180deg);
    }

    .navbar__item--mega:hover::after,
    .navbar__item--mega:focus-within::after,
    .navbar__item--mega:has(.mega-menu__toggle[aria-expanded="true"])::after {
        display: block;
    }

    .mega-menu {
        position: fixed;
        inset-block-start: 75px;
        inset-inline: 0;
        background: var(--white, #ffffff);
        border-block-start: 4px solid var(--green-cta, #38af2f);
        box-shadow: 0 18px 34px rgba(25, 116, 21, 0.12);
        padding-block: 32px 38px;
        padding-inline: 36px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
        z-index: 99;
    }

    .navbar__item--mega:hover > .mega-menu,
    .navbar__item--mega:focus-within > .mega-menu,
    .navbar__item--mega:has(.mega-menu__toggle[aria-expanded="true"])
        > .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mega-menu__grid {
        display: grid;
        grid-template-columns: repeat(7, minmax(130px, 1fr));
        gap: 28px 34px;
        max-width: 1860px;
        margin-inline: auto;
    }

    .mega-menu__grid--compact {
        grid-template-columns: repeat(4, minmax(170px, 1fr));
        max-width: 1180px;
    }

    .mega-menu__column {
        min-width: 0;
    }

    .mega-menu__heading {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 42px;
        color: #15221a;
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .mega-menu__heading i {
        width: 18px;
        flex: 0 0 20px;
        color: var(--green-cta, #38af2f);
        font-size: 18px;
        text-align: center;
    }

    .mega-menu__heading-link {
        display: inline-flex;
        align-items: center;
        gap: inherit;
        color: inherit;
        text-decoration: none;
    }

    .mega-menu__divider {
        height: 2px;
        width: 100%;
        background: #cfe3d2;
        margin-block: 12px 24px;
    }

    .mega-menu__link {
        display: block;
        color: #5f7d66;
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        font-weight: 500;
        padding-block: 10px;
        padding-inline: 0;
        border-radius: 6px;
        transition:
            color 0.2s ease,
            transform 0.2s ease;
    }

    .mega-menu__link:hover,
    .mega-menu__link:focus-visible {
        color: var(--green-dark, #197415);
        transform: translateX(4px);
    }

    .navbar__hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        margin-inline-start: auto;
        padding: 8px;
    }
    .navbar__hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-dark, #343434);
        border-radius: 2px;
        transition: transform 0.3s;
    }

    /* ------ HERO ------ */
    .hero {
        position: relative;
        margin-block-start: 75px;
        height: calc(100vh - 75px);
        min-height: calc(100vh - 75px);
        overflow: hidden;
        background-color: #ededed;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: auto;
    }

    .hero__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
    }

    .hero__inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: calc(100vh - 75px);
        min-height: calc(100vh - 75px);
        width: 100%;
        padding-block-start: 60px;
        padding-block-end: 40px;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 740px;
        padding-inline: 40px;
        margin-block-end: 36px;
    }

    .hero__title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 42px;
        font-weight: 500;
        color: #343434;
        line-height: 1.2;
        margin-block-end: 20px;
        text-align: center;
    }
    .hero__desc {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark, #343434);
        line-height: 1.6;
        max-width: 650px;
        margin-block-end: 32px;
        text-align: center;
    }

    .hero__hero-copy {
        position: absolute;
        inset-inline-start: 50%;
        inset-block-start: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: min(100%, 1280px);
        padding: 0 24px;
        text-align: center;
    }

    .hero__ctas {
        position: absolute;
        inset-inline-start: 50%;
        inset-block-end: 50px;
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
        text-align: center;
    }

    .hero__cta-heading {
        width: 100%;
        margin: 0 0 34px;
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: clamp(44px, 8vw, 112px);
        font-weight: 700;
        line-height: 0.95;
        letter-spacing: -0.05em;
        color: #ffffff;
        text-align: center;
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
        text-wrap: balance;
    }

    .hero__illustration {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
        display: block;
    }
    .hero__illustration img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* ------ HERO PARTICLES ------ */
    .hero-particles {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .hero-particle {
        position: absolute;
        border-radius: 50%;
        background: #4fa349;
        box-shadow:
            0px 0px 3.6px 0px #4fa349,
            0px 0px 7.2px 0px #4fa349,
            0px 0px 15.2px 0px #4fa349,
            0px 0px 50.4px 0px #4fa349,
            0px 0px 86.4px 0px #4fa349,
            0px 0px 151.2px 0px #4fa349;
        animation: particle-drift linear infinite;
        pointer-events: none;
        will-change: transform, opacity;
    }

    /* Clean straight-line travel — dissolve only on arrival */
    @keyframes particle-drift {
        0% {
            transform: translate(0, 0);
            opacity: 0;
        }
        8% {
            transform: translate(0, 0);
            opacity: var(--op, 0.9);
        }
        92% {
            transform: translate(var(--dx), var(--dy));
            opacity: var(--op, 0.9);
        }
        100% {
            transform: translate(var(--dx), var(--dy));
            opacity: 0;
        }
    }

    /* ------ STATS ------ */
    .stats {
        background: var(--white, #ffffff);
        padding-block: 60px;
    }

    .stats .container {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .stats__header {
        flex: 0 0 270px;
        margin-block-end: 0;
    }

    .stats__title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 28px;
        font-weight: 600;
        color: var(--text-dark, #343434);
    }

    .stats__grid {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .stats__card {
        background: #ffffff;
        border-radius: 4px;
        box-shadow: 0px 0px 1.9px 0px #0000004d;
        padding: 10px 15px;
    }

    .stats__number {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 26px;
        font-weight: 500;
        color: #4fa349;
        margin-block-end: 4px;
    }

    .stats__label {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 16px;
        font-weight: 500;
        color: #000000;
    }

    /* ------ FEATURED PRODUCTS ------ */
    .featured-products {
        background: #fafafa;
        padding-block: 60px;
    }

    .fp-header {
        text-align: center;
        max-width: 560px;
        margin-inline: auto;
        margin-block-end: 40px;
    }

    .fp-header__title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 36px;
        font-weight: 700;
        color: #343434;
        margin-block-end: 10px;
    }

    .fp-header__sub {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 18px;
        font-weight: 500;
        color: #343434;
        margin-block-end: 14px;
    }

    .fp-header__desc {
        font-size: 15px;
        font-weight: 500;
        color: #343434;
    }

    .fp-divider {
        width: 150px;
        height: 3px;
        background: #197415;
        border-radius: 2px;
        margin-inline: auto;
        margin-block-end: 40px;
    }

    .fp-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 40px;
    }

    .fp-card {
        position: relative;
        background: #ffffff;
        box-shadow: 0px 0px 4px 0px #00000040;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition:
            border-color 0.3s ease,
            transform 0.3s ease;
        padding: 20px;
    }

    .fp-card:hover {
        border-color: #4fa349;
        transform: translateY(-4px);
    }

    .fp-card__featured-tag {
        position: absolute;
        bottom: 0;
        right: 0;

        width: 145px;
        height: 68px;

        background: #c4e4c1;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);

        display: flex;
        align-items: flex-end;
        justify-content: center;

        color: #197415;
        font-size: 12px;
        font-weight: 700;
        text-transform: capitalize;

        padding-bottom: 12px;

        transform: rotate(0deg); /* keep shape fixed */
        z-index: 3;
        pointer-events: none;
    }

    .fp-card__featured-tag {
        writing-mode: horizontal-tb;
    }

    .fp-card__featured-tag span,
    .fp-card__featured-tag {
        transform-origin: center;
    }

    .fp-card__featured-tag {
        transform: none;
    }

    .fp-card__featured-tag::before {
        content: "Featured";
        position: absolute;
        bottom: 12px;
        right: 18px;
        transform: rotate(-24deg);
    }
    .fp-card__img-wrap {
        position: relative;
        background: #ffffff;
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 12px;
    }

    .fp-card__img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .fp-card__big-label {
        position: absolute;
        bottom: 12px;
        left: 16px;
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 52px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.07);
        line-height: 1;
        pointer-events: none;
        user-select: none;
    }

    .fp-card__grade small {
        font-size: 11px;
        font-weight: 400;
        color: #4fa349;
    }

    .fp-card__body {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .fp-card__name {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 22px;
        font-weight: 700;
        color: var(--white, #ffffff);
        margin-block-end: 4px;
    }

    .fp-card__sub {
        font-size: 18px;
        font-family: var(--font-outfit);
        font-weight: 500;
        color: #1c1c1c;
        margin-block-end: 12px;
    }

    .fp-card__desc {
        font-size: 14px;
        font-weight: 500;
        color: #343434;
        font-family: Mulish;
        flex: 1;
        margin-block-end: 20px;
    }

    .fp-card__btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        background: #4fa349;
        border: 1px solid rgba(79, 163, 73, 0.35);
        border-radius: 6px;
        padding: 8px 18px;
        align-self: flex-start;
        transition:
            background 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease;
    }

    .fp-card__btn:hover {
        background: #4fa349;
        border-color: #4fa349;
        color: #ffffff;
    }

    /* ------ WHERE WE OUTPERFORM ------ */
    .outperform {
        background: #f4f1ea;
        padding: 0 20px 80px;
        width: 95%;
        border-radius: 40px;
        margin: 40px auto;
    }

    .outperform__header {
        text-align: center;
        max-width: 580px;
        margin-inline: auto;
        margin-block-end: 52px;
    }

    .outperform__badge-outer {
        display: inline-block;
        background: #ffffff;
        padding: 10px 15px;
        border-radius: 0 0 25px 25px;
        border-top: none;
        margin-block-end: 28px;
    }

    .outperform__badge {
        display: inline-block;
        background: #e7f2e7;
        color: #197415;
        font-size: 14px;
        font-weight: 600;
        padding: 6px 18px;
        border-radius: 20px;
    }

    .outperform__title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 32px;
        font-weight: 600;
        color: #343434;
        margin-block-end: 16px;
    }

    .outperform__desc {
        font-size: 15px;
        font-weight: 500;
        color: #343434;
        line-height: 1.7;
    }

    .outperform__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .outperform__card {
        background: #fbfffb;
        border-radius: 12px;
        padding: 28px 22px 24px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
        border-inline-start: 2px solid #197415;
    }

    .outperform__card-label {
        font-size: 14px;
        font-weight: 500;
        color: #197415;
        letter-spacing: 0.03em;
        font-family: "Outfit", serif;
        margin-block-end: 10px;
    }

    .outperform__card-title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 19px;
        font-weight: 500;
        color: #343434;
        line-height: 1.3;
        margin-block-end: 12px;
    }

    .outperform__card-desc {
        font-size: 13px;
        color: #343434;
        line-height: 1.65;
        flex: 1;
        margin-block-end: 22px;
    }
    .datasolution__card-desc {
        font-size: 13px;
        color: #343434;
        line-height: 1.65;
        flex: 1;
    }
    .outperform__card-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #4fa349;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: 20px;
        align-self: flex-start;
        transition: opacity 0.2s;
    }

    .outperform__card-btn:hover {
        opacity: 0.85;
    }

    .solution__card {
        background: #fbfffb;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
        border-inline-start: 2px solid #197415;
    }
    .clients {
        background: var(--white, #ffffff);
        padding-block: 60px 70px;
    }

    .clients__header {
        text-align: center;
        margin-block-end: 40px;
    }

    .clients__title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 32px;
        font-weight: 600;
        color: #343434;
        margin-block-end: 8px;
    }

    .clients__sub {
        font-size: 15px;
        font-weight: 400;
        color: #343434;
    }

    .clients__marquee-wrap {
        overflow: hidden;
        width: 90%;
        margin-inline: auto;
        mask-image: linear-gradient(
            to right,
            transparent,
            black 8%,
            black 92%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 8%,
            black 92%,
            transparent
        );
    }

    .clients__marquee-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: clients-scroll 20s linear infinite;
        margin-block-end: 20px;
    }

    .clients__marquee-track--reverse {
        animation-name: clients-scroll-reverse;
    }

    .clients__marquee-track:last-child {
        margin-block-end: 0;
    }

    .clients__marquee-track:hover {
        animation-play-state: paused;
    }

    @keyframes clients-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes clients-scroll-reverse {
        0% {
            transform: translateX(-50%);
        }
        100% {
            transform: translateX(0);
        }
    }

    .clients__logo-card {
        background: var(--white, #ffffff);
        
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 16px;
        width: 180px;
        height: 110px;
        flex-shrink: 0;
    }

    .clients__logo-card img {
        max-width: 155px;
        max-height: 90px;
        object-fit: contain;
        width: auto;
        height: auto;
    }

    /* ------ PRODUCTS ------ */
    .products {
        padding-block: 60px;
        background: var(--white, #ffffff);
    }

    .products__header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-block-end: 48px;
    }

    .products__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

        .products__card {
        background: var(--white, #ffffff);
        border: 1px solid #2e8628;
        border-radius: 12px;
        padding: 24px 22px 22px;
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.2s, transform 0.2s;
        display: flex;
        flex-direction: column;
    }

    .products__card:hover {
        box-shadow: 0 2px 4px rgba(47, 134, 40, 0.12);
        transform: translateY(-3px);
    }
    .btn-grey{
    background-color: #D3E6D2;
    color: #197415;
    }
    .products__card--grey {
        background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F2 71.43%);
        border: 1px solid #E0E0E5;
        box-shadow: -2px 4px 4px 0px rgba(255, 255, 255, 0.8) inset, -1px 7px 10px 2px rgb(0 0 0 / 30%);
    }

    /* .products__card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 65px 65px 0;
        border-color: transparent #4fa349 transparent transparent;
    } */

    .products__card-deco {
        display: none;
    }

    .products__card-title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 18px;
        font-weight: 500;
        color: #343434;
        margin-block: 0 10px;
    }

    .products__card-desc {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 13px;
        font-weight: 500;
        color: #343434;
        line-height: 1.65;
        margin-block-end: 14px;
    }
    .solution-list {
        padding-bottom: 40px;
    }
    .sol-badge {
        margin: 15px 0;
    }
    .products__card-list {
        list-style: disc;
        padding-inline-start: 18px;
        margin-block-end: 10px;
        flex: 1;
    }
    .products-list {
        list-style: disc;
        padding-inline-start: 18px;
        margin-block-end: 10px;
        flex: 1;
        font-size: 14px;
    }
    .products__card-list li {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 13px;
        font-weight: 500;
        color: #444444;
        line-height: 1.8;
    }

    /* ------ SOLUTIONS ------ */
    .solutions {
        position: relative;
        padding-block: 80px;
        background: #ffffff;
    }
    .solutions__blob {
        position: absolute;
        left: -40%;
        top: -15%;
        width: 65%;
        height: 95%;
        background: #e5f0e4;
        border-radius: 50%;
        filter: blur(57px);
        transform: rotate(33deg);
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .solutions__bg {
        display: none;
    }

    .solutions__inner {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .solutions__left {
        flex: 1;
        min-width: 0;
    }

    .solutions__label-badge {
        display: none;
    }

    .solutions__left .section-title {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.35;
        margin-block-end: 12px;
    }

    .solutions__left .section-desc {
        font-size: 14px;
        color: #343434;
        font-weight: 500;
        margin-block-start: 0;
        margin-block-end: 0;
        max-width: 420px;
    }

    .solutions__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-block-start: 28px;
        padding-bottom: 12px;
        overflow: visible;
        /* background: #d8d8d0; */
    }

    .solutions__card {
        position: relative;
        background: #ffffff;
        padding: 24px 20px 22px;
        display: flex;
        flex-direction: column;
        border-left: 1px solid #197415;
        box-shadow: 0px 1px 2.6px 0px #0000001c;
        gap: 12px;
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
        will-change: transform;
        z-index: 1;
    }

    .solutions__card:hover {
        box-shadow: 0 12px 30px rgba(31, 32, 31, 0.18);
        transform: translateY(-8px) scale(1.02);
        z-index: 5;
    }

    .solutions__card-icon {
        width: 45px;
        height: 43px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 6px;
    }
    .solutions__card-icon img {
        width: 45px;
        height: 43px;
        object-fit: contain;
    }

    .solutions__card-icon--dark {
        background: transparent;
    }

    .solutions__card-title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark, #343434);
        margin-block-end: 4px;
    }

    .solutions__card-desc {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 13px;
        font-weight: 500;
        color: #666666;
        line-height: 1.55;
    }

    .solutions__right {
        width: 480px;
        flex-shrink: 0;
    }
    .solutions__right img {
        width: 100%;
        height: auto;
    }

    /* ------ WHY CHOOSE (dark card overrides) ------ */
    .why-choose {
        background: #f4f1ea;
        width: 95%;
        margin: 0 auto;
        border-radius: 40px;
    }
    .solution {
        background: #f8f8f8;
        width: 100%;
        margin: 0 auto;
        border-radius: 0;
        padding: 40px;
    }
    .sol-badge {
        color: #197415;
        font-size: 16px;
        font-weight: 600;
    }

    .why-choose .outperform__card {
        background: #162013;

        border-inline-start: none;
        border-radius: 14px;
        box-shadow: none;
        gap: 10px;
        position: relative;
        overflow: hidden;
    }
    .why-choose .outperform__card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            ellipse at 47% 13%,
            #6d904b 18%,
            transparent 81%
        );
        opacity: 0.35;
        pointer-events: none;
    }

    .wc-icon,
    .why-choose .outperform__card-title,
    .why-choose .outperform__card-desc {
        transition: transform 0.3s ease;
    }
    .why-choose .outperform__card:hover .wc-icon,
    .why-choose .outperform__card:hover .outperform__card-title,
    .why-choose .outperform__card:hover .outperform__card-desc {
        transform: translateY(-8px);
    }

    .wc-icon {
        font-size: 22px;
        color: #ffffff;
        margin-block-end: 4px;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        object-fit: contain;
    }

    .why-choose .outperform__card-title {
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
    }

    .why-choose .outperform__card-desc {
        color: #d6d6d6;
        font-size: 14px;
        margin-block-end: 0;
    }

    .why-choose .outperform__header .outperform__title,
    .why-choose .outperform__header .outperform__desc {
        color: #343434;
    }

    .automation-action {
        padding: 34px 0 12px;
        background: #f8f8f8;
    }

    .automation-action .container {
        max-width: 1180px;
    }

    .automation-action__header {
        margin-bottom: 26px;
    }

    .automation-action__eyebrow {
        display: inline-block;
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        font-weight: 600;
        color: #4e8e41;
        margin-bottom: 12px;
    }

    .automation-action__title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 32px;
        font-weight: 600;
        color: #343434;
        margin: 0;
    }

    .automation-action__list {
        display: grid;
        gap: 18px;
    }

    .automation-action__card {
        background: linear-gradient(180deg, #fbfffa 0%, #f6fbf5 100%);
        border: 1px solid rgba(79, 163, 73, 0.45);
        border-radius: 14px;
        padding: 24px 26px 22px;
        box-shadow: 0 8px 24px rgba(71, 96, 64, 0.06);
    }

    .automation-action__card-title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 20px;
        font-weight: 500;
        line-height: 1.25;
        color: #343434;
        margin: 0 0 14px;
    }

    .automation-action__card-desc {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 15px;
        font-weight: 500;
        line-height: 1.72;
        color: #4c4c4c;
        max-width: 980px;
        margin: 0 0 18px;
    }

    .automation-action__flow {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 10px;
    }

    .automation-action__step {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        color: #343434;
    }

    .automation-action__arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #57a24d;
        font-size: 13px;
        flex-shrink: 0;
    }

    /* ------ CASE STUDY ------ */
    .case-study {
        padding-block: 80px;
        background: var(--white, #ffffff);
    }

    .case-study__badge {
        display: inline-block;
        background: var(--green-light-bg, #e3f4e3);
        color: var(--green-dark, #197415);
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 16px;
        font-weight: 600;
        padding-block: 6px;
        padding-inline: 22px;
        border-radius: 25px;
        margin-block-end: 20px;
    }

    .case-study > .container > .section-title {
        max-width: 320px;
    }
    .case-study > .container > .section-desc {
        max-width: 500px;
        margin-block-end: 40px;
    }

    .case-study__card {
        background: var(--white, #ffffff);
        border-radius: 10px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
        padding-block: 40px;
        padding-inline: 48px;
        max-width: 1277px;
    }

    .case-study__card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-block-end: 20px;
    }

    .case-study__industry {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 16px;
        font-weight: 500;
        color: var(--green-dark, #197415);
        margin-block-end: 6px;
    }

    .case-study__org {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 24px;
        font-weight: 600;
        color: var(--text-dark, #343434);
    }

    .case-study__nav {
        display: flex;
        gap: 12px;
    }

    .case-study__nav-btn {
        background: #515151;
        border: none;
        border-radius: 6px;
        width: 36px;
        height: 36px;
        font-size: 32px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        transition:
            border-color 0.2s,
            color 0.2s;
    }
    .case-study__nav-btn:hover {
        border-color: var(--green-primary, #4fa349);
        color: var(--green-primary, #4fa349);
    }

    .case-study__columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-block-end: 32px;
    }

    .case-study__col {
        display: flex;
        gap: 14px;
    }

    .case-study__col-bar {
        width: 12px;
        min-height: 76px;
        border-radius: 2px;
        flex-shrink: 0;
    }
    .case-study__col-bar--red {
        background: #d43f3f;
    }
    .case-study__col-bar--green-light {
        background: #89e662;
    }
    .case-study__col-bar--green {
        background: #197415;
    }

    .case-study__col-label {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark, #343434);
        margin-block-end: 4px;
    }

    .case-study__col-text {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 16px;
        font-weight: 500;
        color: #343434;
        line-height: 1.5;
    }

    .case-study__quote {
        background: #323232;
        border-radius: 9px;
        padding-block: 20px;
        padding-inline: 40px;
        max-width: 543px;
        margin-inline: auto;
        margin-block-end: 24px;
    }
    .case-study__quote p {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 20px;
        font-weight: 600;
        font-style: italic;
        color: #ffffff;
        text-align: center;
        line-height: 1.5;
    }

    .case-study__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .case-study__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        transition: background 0.2s;
    }
    .case-study__dot--active {
        background: var(--green-primary, #4fa349);
        width: 24px;
        border-radius: 4px;
    }

    /* ------ CTA SECTION ------ */
    .cta-section {
        position: relative;
        background: #000;
        padding-block: 60px;
        overflow: hidden;
    }

    .cta-section__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .cta-section__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.27;
    }

    .cta-section__deco {
        --deco-speed: 120s;
        position: absolute;
        inset-block-start: 50%;
        transform: translateY(-50%) rotate(90deg);
        z-index: 0;
        width: 332px;
        height: 332px;
        mix-blend-mode: color-dodge;
        pointer-events: none;
        animation: deco-spin var(--deco-speed) linear infinite;
    }
    @keyframes deco-spin {
        to {
            transform: translateY(-50%) rotate(450deg);
        }
    }
    .cta-section__deco--left {
        inset-inline-start: 45px;
    }
    .cta-section__deco--right {
        inset-inline-end: -190px;
    }
    .cta-section__deco--rightindex {
        inset-inline-end: 40px;
    }
    .cta-section__deco img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cta-section__inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: #191919;
        border-radius: 55px;
        max-width: 1000px;
        margin-inline: auto;
        padding: 60px 80px;
        overflow: hidden;
    }

    .cta-section__inner::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: 55px;
        background: linear-gradient(
            180deg,
            #000000 15.18%,
            #89e662 40.77%,
            #000000 93.75%
        );

        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);

        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .cta-section__title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 32px;
        font-weight: 700;
        color: var(--white, #ffffff);
        margin-block-end: 16px;
    }

    .cta-section__desc {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 20px;
        font-weight: 500;
        color: #d6d6d6;
        max-width: 620px;
        margin-block-end: 40px;
        line-height: 1.5;
    }

    .cta-section__ctas {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ------ NEWS ------ */
    .news {
        padding-block: 80px;
        background: var(--white, #ffffff);
    }

    .news__header {
        margin-block-end: 48px;
    }

    .news__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .news__card {
        background: var(--white, #ffffff);
        border: 1px solid var(--green-bright, #57b650);
        border-radius: 10px;
        padding-block: 24px;
        padding-inline: 22px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition: box-shadow 0.2s;
    }
    .news__card:hover {
        box-shadow: 0 4px 16px rgba(87, 182, 80, 0.15);
    }

    .news__card-meta {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .news__card-category {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 14px;
        font-weight: 500;
        color: var(--text-mid, #5d5d5d);
    }

    .news__card-date {
        display: inline-block;
        background: var(--green-light-bg, #e3f4e3);
        color: var(--green-primary, #4fa349);
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 14px;
        font-weight: 500;
        padding-block: 2px;
        padding-inline: 12px;
        border-radius: 22px;
        width: fit-content;
    }

    .news__card-title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 16px;
        font-weight: 500;
        color: #000;
        line-height: 1.45;
        flex: 1;
    }

    .news__card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-block-start: auto;
    }

    .news__card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 14px;
        font-weight: 500;
        color: var(--green-dark, #197415);
        transition: gap 0.2s;
    }
    .news__card-link:hover {
        gap: 10px;
    }

    .news__card-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--green-primary, #4fa349);
        color: #ffffff;
        font-size: 14px;
        flex-shrink: 0;
        transition:
            background 0.2s,
            transform 0.2s;
    }
    .news__card-btn i {
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
    }
    .news__card-btn:hover i {
        transform: rotate(0deg);
    }
    .news__card-btn:hover {
        background: var(--green-dark, #197415);
        transform: scale(1.1);
    }

    /* ------ FOOTER ------ */
    .footer {
        position: relative;
        background: #e9e9e9;
        padding-block-start: 64px;
        overflow: hidden;
    }

    .footer__inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
        gap: 48px;
        padding-block-end: 40px;
    }

    .footer__logo {
        height: 50px;
        width: 50%;
        object-fit: contain;
        margin-block-end: 16px;
    }

    .footer__tagline {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark, #343434);
        line-height: 1.6;
        max-width: 305px;
        margin-block-end: 24px;
    }

    .footer_company {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark, #343434);
        line-height: 1.6;
        max-width: 305px;
        margin: 0 0 12px;
    }

    .footer_company svg {
        flex: 0 0 auto;
    }

    .footer_company span {
        flex: 1;
    }

    .footer__social {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .footer__social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        color: #5aa555;
        font-size: 20px;
        transition:
            color 0.35s ease;
        background: #000000;
        border: 1px solid;
        border: linear-gradient(
            180deg,
            #66a462 0%,
            #000000 78.01%
        );
        margin-top: 20px;
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

    .footer__social a::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -10%;
        width: 0;
        height: 0;
        background: #ffffff;
        border-radius: 50%;
        transform: translateX(-50%);
        transition:
            width 0.45s ease,
            height 0.45s ease,
            bottom 0.45s ease;
        pointer-events: none;
        z-index: 0;
    }

    .footer__social a i {
        position: relative;
        z-index: 1;
        line-height: 1;
    }

    .footer__social a:hover::before {
        width: 250%;
        height: 500%;
        bottom: -100%;
    }

    .footer__social a:hover {
        color: var(--green-primary, #4fa349);
    }

    .footer__col-title {
        font-family: var(--font-outfit, "Outfit", sans-serif);
        font-size: 18px;
        font-weight: 400;
        color: #197415;
        margin-block-end: 20px;
    }

    .footer__col-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .footer__col-links a {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        font-weight: 400;
        color: var(--text-dark, #343434);
        line-height: 1.8;
        transition: color 0.2s;
    }
    .footer__col-links a:hover {
        color: #197415;
    }

    .footer__bottom {
        position: relative;
        z-index: 1;
        border-block-start: 1px solid #c8c8c8;
        padding-block: 20px;
    }

    .footer__bottom-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer__copyright {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        font-weight: 400;
        color: var(--text-dark, #343434);
    }

    .footer__legal {
        display: flex;
        gap: 24px;
    }
    .footer__legal a {
        font-family: var(--font-mulish, "Mulish", sans-serif);
        font-size: 14px;
        color: var(--text-dark, #343434);
        transition: color 0.2s;
    }
    .footer__legal a:hover {
        color: var(--green-primary, #4fa349);
    }
}

@layer utilities {
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}
