
/* -------------------------
   Variables
------------------------- */

:root {
    --fba-green: #05683a;
    --fba-green-dark: #023f25;
    --fba-gold: #c3ab6b;
    --fba-text: #111827;
    --fba-muted: #6b7280;
    --fba-border: rgba(5, 104, 58, 0.18);
    --fba-light: #f7f8f4;
}



.logo,
.desktopHeader,
.mobileHeader,
.navigationBar {
    display: none !important;
}

.site-header *,
.site-footer *,
.hero-home * {
    box-sizing: border-box;
}


/*.site-header {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    background: linear-gradient(*/
/*        180deg,*/
/*        rgba(255,255,255,0.78) 0%,*/
/*        rgba(255,255,255,0.38) 65%,*/
/*        rgba(255,255,255,0) 100%*/
/*    );*/
/*    border-bottom: 0;*/
/*    z-index: 1000;*/
/*}*/
.site-header{
     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
     background: var(--fba-light);
    border: 1px solid rgba(5, 104, 58, 0.12);
    /*background: #fff;*/
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
     border-bottom: 0;
    z-index: 1000;

}
.site-header__inner {
    max-width: 100%;
   min-height: 80px;
    padding: 0 42px 0 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.site-header nav a{
    color:#000;
}
/* Logo */

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-right: 90px;
    text-decoration: none !important;
}

.site-header__logo img {
    width: 78px;
    height: auto;
    display: block;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__brand-fba {
    font-size: 38px;
    font-weight: 800;
    color: var(--fba-green);
}

.site-header__divider {
    font-size: 34px;
    font-weight: 300;
    color: var(--fba-gold);
}

.site-header__brand-text {
    font-size: 34px;
    font-weight: 300;
    color: var(--fba-gold);
    letter-spacing: 0.02em;
}

/* Navigation */

.site-nav {
    flex: 1;
}

.fba-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.fba-nav__links {
    display: flex;
    align-items: center;
    gap: 54px;
}

.fba-nav__links a {
    position: relative;
    color: #111827;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
       
    
}

.fba-nav__links a:hover,
.fba-nav__links a.active {
    color: #045c34;
}

.fba-nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--fba-gold);
    transition: width 0.25s ease;
}

.fba-nav__links a:hover::after {
    width: 100%;
}

.fba-nav__links a.active::after {
    width: 24px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile menu button */

.mobile-menu-btn {
    display: none ;
    margin-left: auto;
    background: none;
    border: 0;
    padding: 0;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-home {
    position: relative;
     min-height: calc(100vh - 108px);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 145px 80px 70px;
}

.hero-home__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-home__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.22) 0%,
            rgba(255,255,255,0.06) 30%,
            rgba(0,0,0,0.20) 66%,
            rgba(0,0,0,0.82) 100%
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.70) 0%,
            rgba(255,255,255,0.42) 22%,
            rgba(255,255,255,0.10) 40%,
            rgba(255,255,255,0.00) 58%,
            rgba(0,0,0,0.16) 100%
        );
}

.hero-home__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
}

.hero-home__eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--fba-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
    font-weight: 800;
}

.hero-home__eyebrow::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: var(--fba-gold);
    margin-top: 18px;
}

.hero-home h1 {
    max-width: 980px;
    font-size: clamp(48px, 4.45vw, 76px);
    line-height: 0.98;
    color: #111827;
    font-family: Georgia, serif;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.04em;
}

.hero-home h1 span {
    color: var(--fba-green);
}

.hero-home p {
    max-width: 590px;
    color: rgba(17,24,39,0.84);
    font-size: 20px;
    line-height: 1.7;
    margin: 32px 0 0;
}

/* =========================================================
   HERO CARDS
   ========================================================= */

.hero-home__cards {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1420px;
    margin-top: 30px;
}

.hero-home__cards-label {
    width: 100%;
    text-align: center;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.88);

    font-style: italic;
    font-weight: 700;
   
    text-transform: uppercase;
    display: block;

    font-family: inherit; 

    font-size: 26px;
    line-height: 1.08;

    text-transform: none; 

}

.hero-home__cards-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.hero-card {
    width: 100%;
    min-width: 0;
    min-height: 185px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(8,18,14,0.34);
    backdrop-filter: blur(18px);
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
    overflow: hidden;
}

/*.hero-card:hover {*/
/*    transform: translateY(-5px);*/
/*    border-color: rgba(195,171,107,0.45);*/
/*    background:*/
/*        linear-gradient(*/
/*            180deg,*/
/*            rgba(255,255,255,0.03) 0%,*/
/*            rgba(5,104,58,0.14) 100%*/
/*        ),*/
/*        rgba(8,18,14,0.46);*/
/*    box-shadow: 0 12px 34px rgba(0,0,0,0.34);*/
/*}*/
.hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(195,171,107,0.5);
    background:
        linear-gradient(
            180deg,
            rgba(195,171,107,0.08) 0%,
            rgba(195,171,107,0.14) 100%
        ),
        rgba(195,171,107,0.06);
    box-shadow: 0 12px 34px rgba(195,171,107,0.16);
}

.hero-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-bottom: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(127,208,159,0.22);
    background: rgba(5,104,58,0.18);
}

.hero-card__icon i {
    font-size: 19px;
    color: #73d69a;
}

.hero-card:hover .hero-card__icon {
    border-color: rgba(195,171,107,0.5);
    background: rgba(195,171,107,0.12);
}

.hero-card h3 {
    color: #fff;
    font-size: 26px;
    line-height: 1.08;
    margin: 0 0 16px;
    font-weight: 700;
}

.hero-card p {
    color: rgba(255,255,255,0.78);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
    text-shadow: none;
}

.hero-card strong {
    margin-top: auto;
    /*padding-top: 24px;*/
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

.hero-card::after {
    display: none !important;
    content: none !important;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #fff;
}

.site-footer__main {
    max-width: 1480px;
    margin: 0 auto;
    /*padding: 56px 48px;*/
      padding: 25px 48px 0 48px;
    display: grid;
        grid-template-columns: 1.5fr 1fr 1.4fr;
    gap: 48px;
}

.site-footer__brand img {
    width: 90px;
    height: auto;
    margin-bottom: 22px;
}

.site-footer__brand p {
    margin: 0;
    color: #434343;
    line-height: 1.7;
    max-width: 360px;
     font-size: 18px;
}
.site-footer .svg-inline--fa {
    
    height: 1.3em;
 
}
.about-hero h1{
    font-family: Georgia, serif;
}
.site-footer__col h3 {
    color: var(--fba-green);
    /*font-size: 15px;*/
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    font-family: Georgia, serif;
}

.site-footer__col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
}

.site-footer__col li {
    display: flex;
    gap: 12px;
 color: #434343;
    line-height: 1.6;
    margin-bottom: 12px;
}

.site-footer__col i {
    color: var(--fba-green);
    margin-top: 4px;
    min-width: 18px;
}

.site-footer__col a {
        color: #434343;
    text-decoration: none !important;
}

.site-footer__col a:hover {
    color: var(--fba-green);
}

.site-footer__bottom {
    border-top: 1px solid #e5e7eb;
    padding: 20px 48px;
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
    color: var(--fba-muted);
    /*font-size: 14px;*/
        font-size: 18px;
            color: #434343;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1500px) {
    .hero-home__cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .site-header__logo {
        margin-right: 70px;
    }

    .fba-nav__links {
        gap: 32px;
    }

    .fba-nav__links a {
        font-size: 15px;
    }

    .site-header__logo img {
        width: 64px;
    }

    .site-header__brand-fba {
        font-size: 30px;
    }

    .site-header__brand-text {
        font-size: 28px;
    }

    .site-header__divider {
        font-size: 28px;
    }
      .hero-home__cards-label 
    { color: rgba(17,24,39,0.84);
                font-size: 17px;
    }
}
@media (max-width: 1199px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 99999;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 22px 28px 28px;
        border-top: 1px solid rgba(5, 104, 58, 0.12);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
        z-index: 99998;
    }

    .site-nav.is-open {
        display: block !important;
    }

    .fba-nav,
    .fba-nav__links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .fba-nav__links a {
        font-size: 18px;
        color: #111827;
    }

    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        z-index: 100000;
        pointer-events: auto;
    }
}

@media (max-width: 767px) {
    .site-header__inner {
        min-height: 74px;
        padding: 0 18px;
    }

    .site-header__logo img {
        width: 48px;
    }

    .site-header__brand {
        gap: 8px;
    }

    .site-header__brand-fba {
        font-size: 24px;
    }

    .site-header__divider {
        font-size: 22px;
    }

    .site-header__brand-text {
        font-size: 21px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .site-header__brand-text {
        font-size: 18px;
    }

    .site-header__brand-fba {
        font-size: 22px;
    }

    .site-header__logo img {
        width: 42px;
    }
    .about-hero__content{
            margin-right: 15px;
    }
    .soil-hero__content{padding: 0 !important;}
 
}
@media (max-width: 1100px) {
    .hero-home {
        min-height: auto;
        padding: 145px 40px 70px;
    }

    .hero-home h1 {
        font-size: 58px;
    }

    .hero-home__cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .site-header {
        background: rgba(255,255,255,0.96);
    }

    .site-header__inner {
        min-height: 78px;
        padding: 0 18px;
    }

    .site-header__logo {
        margin-right: 0;
    }

    .site-header__logo img {
        width: 54px;
    }

    .site-header__brand-fba {
        font-size: 24px;
    }

    .site-header__brand-text {
        font-size: 22px;
    }

    .site-header__divider {
        font-size: 22px;
    }

    .fba-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hero-home {
        padding: 120px 28px 55px;
    }

    .hero-home h1 {
        font-size: 48px;
    }

    .hero-home p {
        font-size: 17px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        padding: 44px 28px;
    }
}

@media (max-width: 768px) {
    .hero-home {
        padding: 120px 24px 45px;
    }

    .hero-home h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .hero-home__cards {
        margin-top: 42px;
    }

    .hero-home__cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: auto;
        padding: 24px;
    }

    .hero-card h3 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .site-header__brand-text,
    .site-header__divider {
        display: none;
    }

    .hero-home h1 {
        font-size: 36px;
    }

    .site-footer__bottom {
        padding: 20px 24px;
    }
}

/* MEGA MENU - SERVICES */

.fba-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}
.fba-nav-item--has-menu {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: -40px;
}
.fba-nav-item > a {
    color: #111827;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none !important;
}
.fba-nav-chevron {
    display: inline-block;
    transition: transform 0.25s ease;
}

.fba-nav-item--has-menu.open .fba-nav-chevron {
    transform: rotate(180deg) !important;
}
.fba-nav-item > a i {
       font-size: 10px;
    margin-left: 6px;
    opacity: 0.7;
    position: relative;
    top: -1px;
    transition: transform 0.25s ease;
}
.fba-nav__links a,
.fba-nav-item > a {
    font-size: 17px;
}
.fba-nav-item.open > a i {
    transform: rotate(180deg);
}

.site-header .fba-mega-menu {
    position: fixed;
    top: 92px;
    left: 50%;
    width: min(1320px, calc(100vw - 80px));
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-50%) translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-header .fba-mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.fba-mega-menu__inner {
    padding: 34px;
    background: rgba(8,18,14,0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 80px rgba(0,0,0,0.42);
}

.fba-mega-menu__header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(195,171,107,0.35);
}

.fba-mega-menu__header span {
    color: var(--fba-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.fba-mega-menu__header h3 {
    margin: 8px 0 0;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

.fba-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.fba-mega-card img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.08);
}

.fba-mega-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 14px;
}

.fba-mega-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fba-mega-card li {
    margin-bottom: 9px;
}

.fba-mega-card a {
    color: rgba(255,255,255,0.78) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.fba-mega-card a:hover {
    color: var(--fba-gold) !important;
}
/*@media (max-width: 991px) {*/
/*    .site-header .fba-mega-menu {*/
/*        display: none;*/
/*    }*/
/*}*/
@media (max-width: 991px) {
    .site-header .fba-mega-menu {
        display: none;
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        margin-top: 14px;
    }

    .fba-nav-item--has-menu.open .fba-mega-menu {
        display: block !important;
    }

    .fba-mega-menu__inner {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .fba-mega-menu__header,
    .fba-mega-card img {
        display: none;
    }

    .fba-mega-menu__grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .fba-nav-item--has-menu {
        width: 100%;
        display: block;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .fba-mega-card {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}
@media (min-width: 992px) {

    .fba-nav-item--has-menu:hover .fba-mega-menu,
    .fba-nav-item--has-menu.open .fba-mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .fba-nav-item--has-menu:hover .fba-nav-chevron,
    .fba-nav-item--has-menu.open .fba-nav-chevron {
        transform: rotate(180deg);
    }
}
.mobile-menu-btn {
    width: 46px;
    height: 46px;

    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;

    backdrop-filter: blur(10px);

    cursor: pointer;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;

    background: #111827;

    border-radius: 999px;

    transition: all 0.25s ease;
}

@media (max-width: 991px) {
    .site-nav {
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    .fba-nav__links {
        padding-bottom: 40px;
    }
}
@media (max-width: 991px) {
    .site-nav {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        background: rgba(8,18,14,0.96);
        backdrop-filter: blur(20px);
        padding: 28px 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: all 0.25s ease;
        z-index: 9999;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .fba-nav {
        display: block;
    }

    .fba-nav__links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .fba-nav__links a,
    .fba-nav-item > a {
        color: #fff !important;
        font-size: 20px;
    }

    .mobile-menu-btn.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}




.soil-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--fba-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
    font-weight: 800;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading h2 {
    color: var(--fba-green);
    font-size: 52px;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 400;
}

/* HERO */

.soil-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    padding: 160px 80px 90px;
    overflow: hidden;
}

.soil-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soil-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(205, 220, 188, 0.52) 0%,
            rgba(190, 210, 170, 0.42) 24%,
            rgba(145, 175, 118, 0.24) 48%,
            rgba(82, 120, 58, 0.10) 72%,
            rgba(0, 0, 0, 0.06) 100%
        );
}

.soil-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 28px 34px;
    border-radius: 4px;
     margin-left: 24px;
}
.soil-hero h1 {
    margin: 0;
    font-size: clamp(56px, 5vw, 90px);
    line-height: 0.95;
    font-family: Georgia, serif;
    color: #111827;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 10px rgba(255,255,255,0.18);
}

.soil-hero p {
    margin-top: 24px;
    max-width: 620px;
    color: #000;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 500;
}

/* INTRO */

.soil-intro {
    /*padding: 90px 0;*/
    padding: 70px 0;
    background: #fff;
}

.soil-intro__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.soil-intro h2 {
    color: var(--fba-green);
    font-size: 56px;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 24px;
}

.soil-intro p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.soil-info-card {
    padding: 42px;
    background: var(--fba-light);
    border: 1px solid rgba(5,104,58,0.12);
}

.soil-info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.soil-info-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: #374151;
    line-height: 1.6;
}

.soil-info-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--fba-gold);
}

/* SOIL ANALYSIS CARDS */

.soil-tests-showcase {
    /*padding: 90px 0;*/
    padding: 70px 0;
    background: #f7f8f4;
}

.soil-analysis-grid--equal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.soil-analysis-card {
    background: #fff;
    border: 1px solid rgba(5,104,58,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 720px;
    transition: 0.25s ease;
}

.soil-analysis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(17,24,39,0.08);
}

.soil-analysis-card__image {
    height: 410px;
    padding: 18px;
    background: #f3f5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(5,104,58,0.08);
}

.soil-analysis-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #fff;
}
/*.soil-analysis-card {*/
/*    min-height: 780px;*/
/*}*/

.soil-analysis-card__image {
    height: 500px;
    padding: 22px;
}

.soil-analysis-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.soil-analysis-card__content {
    flex: 1;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
}

.soil-analysis-card__content span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--fba-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 800;
}

.soil-analysis-card__content h3 {
    margin: 0 0 18px;
    color: var(--fba-green);
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
}

.soil-analysis-card__content p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
}

/* LAST CARD WITHOUT IMAGE */

/*.soil-analysis-card--text-only {*/
/*    background: linear-gradient(*/
/*        135deg,*/
/*        rgba(2,63,37,0.98),*/
/*        rgba(5,104,58,0.88)*/
/*    );*/
/*}*/
/*.soil-analysis-card--green {*/
/*    background: linear-gradient(*/
/*        135deg,*/
/*        rgba(2, 63, 37, 0.98),*/
/*        rgba(5, 104, 58, 0.88)*/
/*    );*/
/*}*/

.soil-analysis-card--text-only .soil-analysis-card__content {
    height: 100%;
    min-height: 720px;
    justify-content: center;
    padding: 48px 38px;
}

.soil-analysis-card--text-only,
.soil-analysis-card--green {
    background: linear-gradient(
        135deg,
        rgba(2, 63, 37, 0.98),
        rgba(5, 104, 58, 0.88)
    );
}
.soil-analysis-card--green {border: none;}
.soil-analysis-card--green .soil-analysis-card__image {
    background: transparent;
    border-bottom: none;
    padding: 70px 20px 35px;
    height: 390px;
}

.soil-analysis-card--green .soil-analysis-card__image img {
    background: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soil-analysis-card--green .soil-analysis-card__content {
    padding: 42px 32px 48px;
}

.soil-analysis-card--text-only .soil-analysis-card__content h3,
.soil-analysis-card--text-only .soil-analysis-card__content p,
.soil-analysis-card--green .soil-analysis-card__content h3,
.soil-analysis-card--green .soil-analysis-card__content p {
    color: #fff !important;
}

.soil-analysis-card--text-only .soil-analysis-card__content p,
.soil-analysis-card--green .soil-analysis-card__content p {
    color: rgba(255,255,255,0.86) !important;
}

.soil-analysis-card--text-only .soil-analysis-card__content span,
.soil-analysis-card--green .soil-analysis-card__content span {
    color: var(--fba-gold) !important;
}
/* SOLVITA + SOIL TEXTURE */

.soil-detail-section {
    /*padding: 100px 0;*/
    padding: 70px 0;
}

.soil-detail-section--white {
    background: #fff;
}

.soil-detail-section--green {
    background: #f7f8f4;
}

.soil-detail {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.soil-detail--reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.soil-detail--reverse .soil-detail__media {
    order: 2;
}

.soil-detail__media {
    min-height: 440px;
    background: #fff;
    border: 1px solid rgba(5,104,58,0.12);
    box-shadow: 0 22px 70px rgba(17,24,39,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.soil-detail__media img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: contain;
    padding: 34px;
}

.soil-detail__media--video {
    padding: 0;
    overflow: hidden;
    background: #000;
}

.soil-detail__media--video iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

.soil-detail__content h2 {
    margin: 0 0 24px;
    color: var(--fba-green);
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 0.95;
    font-weight: 400;
}

.soil-detail__lead {
    color: #111827;
    font-size: 23px;
    line-height: 1.55;
    margin-bottom: 26px;
}

.soil-detail__content p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.85;
}
.soil-btn--solid {
    background: var(--fba-gold);
    color: #fff !important;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.soil-btn--solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(180,140,60,0.28);
    background: #c79b45;
}

/* PROCESS */

.soil-process {
    /*padding: 100px 0;*/
    padding: 70px 0;
    background: #fff;
}

.soil-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.soil-step {
    padding: 40px;
    border-top: 2px solid var(--fba-gold);
    background: var(--fba-light);
}

.soil-step__number {
    margin-bottom: 28px;
    color: var(--fba-gold);
    font-size: 54px;
    font-family: Georgia, serif;
    line-height: 1;
}

.soil-step h3 {
    margin-bottom: 18px;
    color: var(--fba-green);
    font-size: 28px;
    font-family: Georgia, serif;
    font-weight: 400;
}

.soil-step p {
    color: #4b5563;
    line-height: 1.7;
}

/* CTA */

.soil-cta {
    padding: 90px 0;
    background: linear-gradient(
        90deg,
        rgba(2,63,37,0.98),
        rgba(5,104,58,0.92)
    );
}

.soil-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.soil-cta h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: 400;
}

.soil-cta__actions {
    display: flex;
    gap: 14px;
    text-align: center;    
}

.soil-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    text-decoration: none !important;
    font-weight: 700;
}

.soil-btn--solid {
    background: var(--fba-gold);
    color: #fff !important;
}

.soil-btn--outline {
    border: 1px solid rgba(255,255,255,0.42);
    color: #fff !important;
}

/* RESPONSIVE */



@media (max-width: 991px) {
    .soil-container {
        width: min(100% - 40px, 100%);
    }

    .soil-hero {
        padding: 130px 24px 70px;
    }

    .soil-intro__grid,
    .soil-detail,
    .soil-detail--reverse,
    .soil-steps,
    .soil-cta__inner {
        grid-template-columns: 1fr;
    }

    .soil-detail--reverse .soil-detail__media {
        order: 0;
    }

    .soil-analysis-grid--equal {
        grid-template-columns: 1fr;
    }

    .soil-analysis-card {
        min-height: auto;
    }

    .soil-analysis-card__image {
        height: 340px;
    }

    .soil-analysis-card--text-only .soil-analysis-card__content {
        min-height: 420px;
    }

    .soil-analysis-card__content {
        padding: 28px;
    }

    .soil-analysis-card__content h3 {
        font-size: 38px;
    }

    .soil-hero h1,
    .soil-intro h2,
    .section-heading h2,
    .soil-detail__content h2,
    .soil-cta h2 {
        font-size: 30px;
    }

    .soil-detail__media,
    .soil-detail__media img {
        min-height: 280px;
    }

    .soil-detail__media--video iframe {
        min-height: 280px;
    }

    .soil-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.soil-sampling-modern {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #fff;
}

.soil-sampling-modern__image {
    min-height: 860px;
    position: relative;
    overflow: hidden;
}

.soil-sampling-modern__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soil-sampling-modern__content {
    padding: 100px 90px;
    background: #f7f8f4;
}

.soil-sampling-modern__content h2 {
    margin: 0 0 50px;
    color: var(--fba-green);
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 0.95;
    font-weight: 400;
}

.sampling-advice-list {
    display: grid;
    gap: 30px;
}

.sampling-advice-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(5,104,58,0.14);
}

.sampling-advice-item > span {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: var(--fba-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 22px;
}

.sampling-advice-item h3,
.sampling-bottom-grid h3 {
    margin: 0 0 12px;
    color: var(--fba-green);
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
}

.sampling-advice-item p,
.sampling-bottom-grid p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.75;
}

.sampling-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.sampling-bottom-grid > div {
    padding: 34px;
    background: #fff;
    border-top: 3px solid var(--fba-gold);
    box-shadow: 0 18px 50px rgba(17,24,39,0.05);
}

@media (max-width: 991px) {
    .soil-sampling-modern {
        grid-template-columns: 1fr;
    }

    .soil-sampling-modern__image {
        min-height: 320px;
    }

    .soil-sampling-modern__content {
        padding: 70px 24px;
    }

    .soil-sampling-modern__content h2 {
        font-size: 42px;
    }

    .sampling-bottom-grid {
        grid-template-columns: 1fr;
    }
}

.soil-btn--sampling {
    margin-bottom: 50px;
    background: var(--fba-green);
    color: #fff !important;
    width: fit-content;
    transition: 0.25s ease;
}

.soil-btn--sampling:hover {
    transform: translateY(-2px);
    background: #034f2d;
}
.modal-content {
    border: 0;
    border-radius: 0;
}

.modal-body {
    padding: 0;
    background: #f7f8f4;
}

.modal-body img {
    width: 100%;
    display: block;
}

/* grass testing*/
 .modern-page {
        background: #f6f7f4;
        color: #1d2b22;
    }

    .modern-container {
        width: min(1320px, calc(100% - 80px));
        margin: 0 auto;
    }

    .modern-hero {
        position: relative;
        min-height: 420px;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #07140f;
    }

    .modern-hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .55;
    }

    .modern-hero__overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(4, 30, 18, .92), rgba(4, 30, 18, .55), rgba(4, 30, 18, .15)),
            linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
    }

    .modern-hero__content {
        position: relative;
        z-index: 2;
        max-width: 760px;
        padding: 90px 0;
        color: #fff;
    }

 

    .modern-hero h1 {
        font-size: clamp(2.4rem, 5vw, 4.8rem) !important;
        line-height: 1;
        margin: 0 0 22px;
        font-weight: 800;
    }

    .modern-hero p {
        max-width: 660px;
        font-size: 1.1rem;
        line-height: 1.75;
        color: rgba(255,255,255,.86);
        margin: 0;
    }

    .modern-intro {
        padding: 80px 0;
        background: #fff;
    }

    .modern-blocks {
        display: grid;
        gap: 28px;
    }

    .modern-two-col {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .modern-card {
        background: #fff;
        border: 1px solid rgba(5,104,58,.12);
        border-radius: 26px;
        padding: 34px;
        box-shadow: 0 18px 45px rgba(0,0,0,.08);
    }

    .modern-card h3 {
        font-size: 1.55rem !important;
        color: #05683A;
        margin-bottom: 18px;
    }

    .modern-card p,
    .modern-card li {
        color: #3f4b44;
        line-height: 1.75;
    }

    .modern-card ul {
        padding-left: 1.2rem;
        margin-bottom: 0;
    }

    .modern-content-section {
        padding: 90px 0;
        background:
            linear-gradient(180deg, rgba(5,104,58,.06), rgba(255,255,255,0));
    }

    .modern-content-box {
        max-width: 980px;
        margin: 0 auto;
        background: #fff;
        border-radius: 30px;
        padding: 48px;
        box-shadow: 0 18px 45px rgba(0,0,0,.08);
        border: 1px solid rgba(5,104,58,.12);
    }

    .modern-content-box h2,
    .modern-content-box h3 {
        color: #05683A;
    }

    .modern-content-box p,
    .modern-content-box li {
        line-height: 1.75;
        color: #39443e;
    }

    .modern-feature-section {
        position: relative;
        padding: 90px 0;
        background: #08120e;
        overflow: hidden;
    }

    .modern-feature-section__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .28;
    }

    .modern-feature-section__overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(8,18,14,.95), rgba(8,18,14,.72)),
            linear-gradient(180deg, rgba(5,104,58,.22), rgba(0,0,0,.35));
    }

    .modern-feature-content {
        position: relative;
        z-index: 2;
        max-width: 980px;
        margin: 0 auto;
        color: #fff;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(195,171,107,.24);
        border-radius: 30px;
        padding: 48px;
        backdrop-filter: blur(8px);
    }

    .modern-feature-content h2,
    .modern-feature-content h3 {
        color: #fff;
    }

    .modern-feature-content p,
    .modern-feature-content li {
        color: rgba(255,255,255,.82);
        line-height: 1.75;
    }

    .accordion {
        margin-bottom: 40px;
    }

    .accordion-item {
        background: transparent;
        border: none;
        margin-bottom: 18px;
    }

    .accordion-header {
        border-radius: 16px;
    }

    .accordion-button {
        background: #05683A !important;
        color: #fff !important;
        border-radius: 16px !important;
        padding: 18px 22px !important;
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        box-shadow: none !important;
    }

    .accordion-button:not(.collapsed),
    .accordion-button:hover {
        background: #04562f !important;
        color: #fff !important;
    }

    .accordion-button::after {
        filter: brightness(0) invert(1) !important;
    }

    .accordion-button:focus {
        box-shadow: none !important;
        border-color: transparent !important;
    }

    .accordion-body {
        padding: 24px 20px !important;
        background: #fff !important;
        border-radius: 0 0 18px 18px;
        color: #333 !important;
        font-size: 1rem !important;
        line-height: 1.7 !important;
        border: 1px solid rgba(5,104,58,.12);
        border-top: 0;
    }

    iframe {
        max-width: 100%;
        /*border-radius: 22px;*/
    }

    @media (max-width: 900px) {
        .modern-container {
            width: min(100% - 32px, 1320px);
        }

        .modern-two-col {
            grid-template-columns: 1fr;
        }

        .modern-content-box,
        .modern-feature-content {
            padding: 30px;
            
        }

        .modern-hero {
            min-height: 360px;
        }
    }

    @media (max-width: 560px) {
        .modern-hero__content {
            padding: 70px 0;
        }

        .modern-intro,
        .modern-content-section,
        .modern-feature-section {
            padding: 55px 0;
        }

        .modern-card {
            padding: 26px;
        }
    }
    
    
   /* USERS PAGES */

.user-header {
    padding: 110px 0 60px;
    /*background: #f7f8f4;*/
    text-align: center;
}

.user-header h1 {
    margin: 0 0 20px;
    color: var(--fba-green);
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1;
    font-family: Georgia, serif;
    
}

.user-header p {
        max-width: 760px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 22px;
    line-height: 1.8;
    font-weight: 600;
}

.user-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.user-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--fba-gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    font-weight: 800;
}

.user-cards-section {
    padding: 20px 0 90px;
    /*background: #f7f8f4;*/
}

.user-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.user-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(17,24,39,0.12);
    transition: 0.25s ease;
}

.user-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(17,24,39,0.18);
}

.user-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.user-card:hover .user-card__image {
    transform: scale(1.06);
}

.user-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,31,20,0.42) 0%,
            rgba(0,31,20,0.62) 55%,
            rgba(0,31,20,0.82) 100%
        );
}

.user-card__content {
     position: relative;
    z-index: 2;
    height: 100%;
    min-height: 245px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.user-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fba-green);
    font-size: 24px;
    margin-bottom: auto;
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.user-card h3 {
    margin: 0 0 16px;
    color: #fff;
     font-size: 24px;
    font-family: Georgia, serif;
    line-height: 1.05;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.user-card p {
    margin: 0 0 22px;
   color: rgba(255,255,255,0.98);
    text-shadow: 0 2px 10px rgba(0,0,0,0.28);
  
    
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.user-card span {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: var(--fba-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.user-card span i {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1200px) {

    .user-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .user-container {
        width: min(100% - 32px, 1320px);
    }

    .user-header {
        padding: 90px 0 50px;
    }

    .user-card-grid {
        grid-template-columns: 1fr;
    }

    .user-header h1 {
        font-size: 38px;
    }
}
/* about us */
.about-container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}


.about-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-hero__overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(244,245,239,0.94) 0%,
            rgba(244,245,239,0.84) 24%,
            rgba(244,245,239,0.54) 46%,
            rgba(244,245,239,0.14) 66%,
            rgba(0,0,0,0.12) 100%
        );
}
.about-hero__content {
    padding-top: 40px;
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: max(40px, calc((100vw - 1320px) / 2));
}

.about-hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    max-width: 760px;
}

.about-hero p {
    max-width: 520px;
    color: #111827;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.about-details {
    padding: 70px 0 40px;
    background: #fff;
}

.about-detail {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}

.about-detail--reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.about-detail--reverse .about-detail__text {
    order: 2;
}

.about-detail--reverse .about-detail__image {
    order: 1;
}

.about-detail h2,
.about-section-heading h2 {
    margin: 0 0 26px;
    color: var(--fba-green);
    font-family: Georgia, serif;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.08;
    font-weight: 500;
}

.about-detail__copy {
    color: #1f2933;
    font-size: 16px;
    line-height: 1.8;
}

.about-detail__image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 24px;
    background: var(--fba-green);
    color: #fff;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
}

.about-btn:hover {
    background: #034d2a;
    color: #fff;
}

.about-standards {
    padding: 70px 0 80px;
    background: #f6f7f3;
}

.about-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.standard-card {
    padding: 42px 28px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.standard-card__icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f1f2ee;
    color: var(--fba-gold);
    font-size: 32px;
}

.standard-card h3 {
    margin: 0 0 16px;
    color: var(--fba-green);
    font-family: Georgia, serif;
    font-size: 20px;
}

.standard-card p {
    margin: 0;
    color: #1f2933;
    line-height: 1.7;
}

.about-timeline {
    padding: 75px 0;
    background: #fff;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    position: relative;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-item__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fba-green);
    color: #fff;
    font-size: 22px;
}

.timeline-item strong {
    display: block;
    margin-bottom: 12px;
    color: #111827;
    font-size: 18px;
}

.timeline-item h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 17px;
    font-weight: 800;
}

.timeline-item p {
    margin: 0 auto;
    max-width: 230px;
    color: #374151;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-container {
        width: min(100% - 32px, 1320px);
    }


    .about-detail,
    .about-detail--reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-detail--reverse .about-detail__text,
    .about-detail--reverse .about-detail__image {
        order: initial;
    }

    .about-detail__image img {
        height: 360px;
    }

    .standards-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}


/* Content Group Section */

.content-group-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(195,171,107,0.14), transparent 32%),
        #f4f5ef;
}

.content-group-section__header {
    max-width: 860px;
    margin-bottom: 46px;
}

.content-group-section__label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--fba-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    font-weight: 800;
}

.content-group-section__title {
    margin: 0;
    color: var(--fba-green);
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.03em;
    
    
}

.content-group-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.content-group-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(15, 63, 46, 0.10);
    /*border-radius: 28px;*/
    padding: 34px 34px 32px;
    box-shadow: 0 22px 55px rgba(15, 63, 46, 0.09);
}

.content-group-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--fba-green), var(--fba-gold));
}

.content-group-card h3 {
    margin: 0 0 22px;
    color: var(--fba-green);
    font-size: 25px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: Georgia, serif;
}

.content-group-card__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-group-card__content li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    color: #31443a;
    font-size: 16px;
    line-height: 1.45;
}

.content-group-card__content li::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: var(--fba-gold);
   
}

.content-group-card__content li:last-child {
    margin-bottom: 0;
}

.content-group-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(15, 63, 46, 0.13);
}

@media (max-width: 1100px) {
    .content-group-section__grid {
        grid-template-columns: 1fr;
    }

    .content-group-section__title {
        font-size: clamp(36px, 7vw, 56px);
    }
}

@media (max-width: 640px) {
    .content-group-section {
        padding: 60px 0;
    }

    .content-group-card {
        padding: 28px 24px;
       
    }

    .content-group-card h3 {
        font-size: 22px;
    }
}
/* cta small*/

.portal-access {
    padding: 0;
}

.portal-access .soil-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.portal-access__inner {
    width: 100%;
      
    padding: 34px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    background:
        linear-gradient(
            90deg,
            #00552f 0%,
            #0c6a3a 45%,
            #23834a 100%
        );

    position: relative;

    overflow: hidden;
}

.portal-access__inner::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at left center,
            rgba(195,171,107,0.14),
            transparent 30%
        );

    pointer-events: none;
}

.portal-access__title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
   font-size: clamp(34px, 4vw, 58px);
     line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 500;
    font-family: Georgia, serif;
}

.portal-access__buttons {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.portal-access__button {
    min-width: 220px;
    padding: 18px 24px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
    text-decoration: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.portal-access__button:hover {
    transform: translateY(-2px);
    border-color: rgba(195,171,107,0.45);
    background: rgba(255,255,255,0.08);
}

.portal-access__button-title {
    display: block;
   margin-bottom: 6px;
    color: rgba(255,255,255,0.72);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.portal-access__button-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
}

@media (max-width: 1100px) {

    .portal-access__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 40px;
    }

    .portal-access__buttons {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 680px) {

    .portal-access__inner {
        min-height: unset;
        padding: 50px 24px;
    }

    .portal-access__title {
        font-size: 44px;
    }

    .portal-access__buttons {
        width: 100%;
        flex-direction: column;
    }

    .portal-access__button {
        width: 100%;
        min-width: unset;
    }
}



/* carousel */

.industry-integrations .about-section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px;
}

.industry-integrations__intro {
    margin: 0 auto;
    max-width: 680px;
    color: #5f6b66;
    font-size: 1.05rem;
    line-height: 1.7;
}

.industry-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.industry-carousel__track {
    display: flex;
    transition: transform 0.35s ease;
}

.industry-carousel__slide {
    flex: 0 0 25%;
    min-height: 180px;
    /*padding: 10px 20px;*/

    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-carousel__slide img {
    width: auto;
    height: 140px;
    max-width: 260px;

    object-fit: contain;
    display: block;
}
.industry-carousel__arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    border: 1px solid rgba(5, 104, 58, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #00683a;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.industry-carousel__arrow:hover {
    background: #00683a;
    color: #fff;
    border-color: #00683a;
}

@media (max-width: 991px) {
    .industry-carousel__slide {
        flex-basis: 33.333%;
    }
}

@media (max-width: 640px) {
    .industry-integrations {
        padding: 65px 0;
    }

    .industry-carousel {
        gap: 12px;
    }

    .industry-carousel__slide {
        flex-basis: 100%;
        padding: 16px 20px;
    }

    .industry-carousel__slide img {
        max-width: 170px;
        max-height: 80px;
    }

    .industry-carousel__arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}



.accreditation-document {
    padding: 110px 0;
    /*background: #f3f4f1;*/
}

.accreditation-document__inner {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.accreditation-document__content {
    margin-bottom: 42px;
}

.accreditation-document__content h2 {
    margin: 16px 0 18px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    color: var(--fba-green);
    font-weight: 500;
    letter-spacing: -0.03em;
    font-family: Georgia, serif;
}

.accreditation-document__content p {

    font-size: 19px;
    line-height: 1.7;
    color: #526071;
}

.accreditation-document__image {
    display: flex;
    justify-content: center;
    margin-bottom: 42px;
}

.accreditation-document__image img {
    max-width: 520px;
    /*width: 100%;*/
    height: auto;
    display: block;
    object-fit: contain;
}

.document-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 28px;

    background: var(--fba-gold);
    color: #fff;

    border: none;
    border-radius: 0;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.document-btn:hover {
       transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(180, 140, 60, 0.28);
    background: #c79b45;
}
.accreditation-document__button {
    display: flex;
    justify-content: center;
}


#accreditationModal .modal-dialog {
    max-width: 600px;
}


#accreditationModal .modal-content {
    background: transparent;
    border: none;
}

#accreditationModal .modal-header {
    background: #fff;
    border-bottom: none;
}

#accreditationModal .modal-body {
    padding: 0;
    overflow: visible;
}

#accreditationModal .modal-body img {
    width: 100%;
    height: auto;
    display: block;
}
.soil-detail__media {
    width: 100%;
 
    overflow: hidden;
}

.soil-detail__media--video {
    aspect-ratio: 16 / 9;
}

.soil-detail__media video,
.soil-detail__media iframe,
.soil-detail__media img {
    width: 100%;
    display: block;

}

.soil-detail__media video,
.soil-detail__media iframe {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.soil-detail__media img {
   
    object-fit: cover;
}
.sampling-bottom-grid ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.sampling-bottom-grid li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #526071;
    line-height: 1.7;
}

.sampling-bottom-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--fba-gold);
}

.sampling-bottom-grid a {
    color: var(--fba-green);
    font-weight: 600;
    text-decoration: underline;
}
.sampling-bottom-grid p {
    color: #526071;
    line-height: 1.7;
}
.sampling-bottom-grid .soil-btn {
    margin-top: 22px;
    display: flex;
    width: fit-content;
    margin-inline: auto;
}

.pricing-section {
    padding: 90px 0;
    background: #f7f8f4;
}

.pricing-section__inner {
    background: #fff;
    border-top: 3px solid var(--fba-gold);
    padding: 48px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.06);
}

.pricing-section h2 {
    margin: 0 0 30px;
    color: var(--fba-green);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.pricing-section__content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.pricing-section__content td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: #526071;
    font-size: 17px;
}

.pricing-section__content td:last-child {
    text-align: right;
    font-weight: 700;
    color: #123;
    white-space: nowrap;
}

.pricing-section__content tr:nth-child(odd) {
    background: #f3f4f1;
}

.pricing-section__content p {
    margin: 18px 0 28px;
    color: #526071;
    font-size: 17px;
}
/* portals */
.portal-section {
    padding: 70px 0;
    background: #f7f8f4;
}

.portal-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.portal-section__heading {
    text-align: center;
    margin-bottom: 42px;
}

.portal-section__heading h2 {
    margin: 10px 0 0;
    padding-bottom: 20px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    color: var(--fba-green);
    letter-spacing: -0.03em;
    font-family: Georgia, serif;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.portal-card {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    /*border-radius: 18px;*/
    background: #fcfcfa;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.11);
}

.portal-card__bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 48%;
    object-fit: cover;
    opacity: 0.9;
}
.portal-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fff 47%,
            rgba(255,255,255,0.82) 58%,
            rgba(255,255,255,0.42) 78%,
            rgba(255,255,255,0.18) 100%
        );
}

.portal-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 34px 38px 32px;
}

.portal-card__icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    font-size: 30px;
}

.portal-card--green .portal-card__icon {
    background: var(--fba-green);
}

.portal-card--gold .portal-card__icon {
    background: var(--fba-gold);
}

.portal-card h3 {
    margin: 0 0 16px;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.portal-card--green h3 {
    color: var(--fba-green);
    font-family: Georgia, serif;
}

.portal-card--gold h3 {
    color: var(--fba-gold);
    font-family: Georgia, serif;
}

.portal-card__description {
    margin: 0 0 24px;
    max-width: 430px;
    color: #2f3d4a;
    font-size: 16px;
    line-height: 1.75;
}

.portal-card__features {
    margin: 0 0 28px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.portal-card__features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portal-card__features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #1f2f3d;
    font-size: 15px;
    line-height: 1.55;
}

.portal-card__features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 17px;
    border-radius: 999px;
    color: #fff;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-card--green .portal-card__features li::before {
    background: var(--fba-green);
}

.portal-card--gold .portal-card__features li::before {
    background: var(--fba-gold);
}

.portal-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 58px;
    /*border-radius: 10px;*/
    text-decoration: none;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        letter-spacing 0.25s ease;
}

.portal-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.96);
}

.portal-card--green .portal-btn {
    background: var(--fba-green);
    box-shadow: 0 10px 24px rgba(6, 120, 58, 0.22);
}

.portal-card--gold .portal-btn {
    background: var(--fba-gold);
    box-shadow: 0 10px 24px rgba(185, 151, 75, 0.24);
}
.portal-btn,
.portal-btn:hover,
.portal-btn:focus,
.portal-btn:active,
.portal-btn:visited {
    color: #fff !important;
    text-decoration: none;
}
.portal-card--green .portal-btn:hover {
    background: #056530;
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(6, 120, 58, 0.34);
    letter-spacing: 0.02em;
}
.portal-card--gold .portal-btn:hover {
    background: #a7863f;
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(185, 151, 75, 0.34);
    letter-spacing: 0.02em;
}

.portal-btn:hover i,
.portal-btn:hover svg {
    transform: translateX(4px);
}

.portal-btn i,
.portal-btn svg {
    transition: transform 0.25s ease;
}
@media (max-width: 1100px) {
    .portal-grid {
        grid-template-columns: 1fr;
    }

    .portal-card {
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .portal-section {
        padding: 60px 0;
    }

    .portal-container {
        width: min(100% - 28px, 1180px);
    }

    .portal-card {
        min-height: 500px;
    }

    .portal-card__content {
        padding: 28px 24px;
    }

    .portal-card h3 {
        font-size: 30px;
    }

    .portal-card__description {
        font-size: 15px;
    }
}


.portal-videos {
   padding: 0 0 70px;
    background: #f7f8f4;
}

.portal-videos__inner {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(16, 82, 49, 0.10);
    /*border-radius: 28px;*/
    padding: 50px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.portal-videos__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.portal-videos__header h2 {
    margin: 12px 0 18px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    color: var(--fba-green);
    letter-spacing: -0.03em;
    font-family: Georgia, serif;
}

.portal-videos__header p {
    margin: 0 auto;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
    color: #5f6b7a;
}

.portal-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.portal-video-card {
    background: #fff;
    /*border-radius: 10px;*/
    overflow: hidden;
    border: 1px solid rgba(16, 82, 49, 0.10);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.portal-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.portal-video-card__thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.portal-video-card__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.portal-video-card:hover .portal-video-card__thumb img {
    transform: scale(1.05);
}

.portal-video-card__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.16);
}

.portal-video-card__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-video-card__play span {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fba-green);
    font-size: 24px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.portal-video-card__content {
    padding: 28px;
}

.portal-video-card__label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.portal-video-card__content h3 {
    margin: 0 0 14px;
    font-size: clamp(25px, 2.2vw, 34px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.025em;
    font-family: Georgia, serif;
}

.portal-video-card__content p {
    margin: 0 0 28px;
    font-size: 16.5px;
    line-height: 1.65;
    color: #5f6b7a;
}

.portal-video-btn {
    min-height: 56px;
    /*border-radius: 8px;*/
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.portal-video-card.green .portal-video-card__label,
.portal-video-card.green .portal-video-card__content h3,
.portal-video-card.green .portal-video-btn {
    color: var(--fba-green);
}
.modal-title {font-family: Georgia, serif;}
.portal-video-card.green .portal-video-card__play span {
    color: var(--fba-green);
}

.portal-video-card.green .portal-video-btn:hover {
    background: var(--fba-green);
    color: #fff;
}

.portal-video-card.gold .portal-video-card__label,
.portal-video-card.gold .portal-video-card__content h3,
.portal-video-card.gold .portal-video-btn {
    color: #c9a85d;
}

.portal-video-card.gold .portal-video-card__play span {
    color: #c9a85d;
}

.portal-video-card.gold .portal-video-btn:hover {
    background: #c9a85d;
    color: #fff;
}

@media (max-width: 991px) {
    .portal-videos__grid {
        grid-template-columns: 1fr;
    }

    .portal-videos__inner {
        padding: 50px 24px;
    }
}

@media (max-width: 575px) {
    .portal-videos {
        padding: 60px 0 80px;
    }

    .portal-videos__inner {
        width: min(100% - 28px, 1400px);
        border-radius: 22px;
    }

    .portal-video-card__thumb {
        height: 200px;
    }
}


@media (max-width: 991px) {

    .fba-mega-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        background: transparent !important;
        margin-top: 14px;
    }

    .fba-mega-menu__inner {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .fba-mega-menu__header {
        display: none;
    }

    .fba-mega-menu__grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .fba-mega-card img {
        display: none;
    }

    .fba-mega-card {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .fba-mega-card h4 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .fba-mega-card a {
        font-size: 15px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1550px) {
    .fba-nav__links a,
    .fba-nav-item > a {
        font-size: 15px;
    }
}
.site-header__inner {
    justify-content: space-between;
}

.site-nav {
    flex: 0 0 auto;
}

.fba-nav {
    flex: 0 0 auto;
}

.fba-nav__links {
    justify-content: flex-end;
}
.site-header,
.hero-home {
    width: 100%;
    max-width: none;
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .site-header__inner {
        padding: 0 24px;
    }

    .site-header__logo {
        margin-right: 35px;
        gap: 10px;
    }

    .site-header__logo img {
        width: 62px;
    }

    .site-header__brand-fba {
        font-size: 30px;
    }

    .site-header__brand-text,
    .site-header__divider {
        font-size: 26px;
    }

    .fba-nav__links {
        gap: 24px;
    }

    .fba-nav__links a,
    .fba-nav-item > a {
        font-size: 14px;
        white-space: nowrap;
    }
}
@media (max-width: 910px) {

    .about-hero__overlay, .soil-hero__overlay {
        background: rgba(244,245,239,0.74);
    }
}
@media (max-width: 768px) {

    .pricing-section table,
    .pricing-section tbody,
    .pricing-section tr,
    .pricing-section td {
        display: block;
        width: 100%;
    }

    .pricing-section tr {
        padding: 18px 0;
        border-bottom: 1px solid rgba(5,104,58,0.12);
    }

    .pricing-section td {
        padding: 0;
        border: 0 !important;
    }

    .pricing-section td:first-child {
        margin-bottom: 10px;
        padding-right: 0;
        font-size: 17px;
        line-height: 1.6;
    }

    .pricing-section td:last-child {
       
        font-weight: 800;
        color: var(--fba-green);
    }

    .pricing-section .table-striped > tbody > tr:nth-of-type(odd) {
        background: transparent;
    }
}


/* contact */

.contact-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 14, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 24px;
}

.contact-popup {
    width: 100%;
    max-width: 480px;
    background: #fff;
    padding: 54px 46px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
    animation: popupIn .28s ease;
}

.contact-popup-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: rgba(5,104,58,.08);
    color: #05683A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.contact-popup h3 {
    font-size: 42px;
    color: #05683A;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    font-weight: 500;
}

.contact-popup p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 20px;
}

.contact-popup-btn {
    border: 0;
    background: #05683A;
    color: #fff;
    padding: 15px 34px;
    font-weight: 700;
    transition: .2s ease;
    font-size: 16px;
    cursor: pointer;
}

.contact-popup-btn:hover {
    background: #044f2d;
    transform: translateY(-2px);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}