:root {
    --blue: #0b5ba8;
    --green: #57b33e;
    --gold: #b59f11;
    --dark: #062544;
    --muted: #52606b;
    --light: #f6f8f3;
    --white: #fff
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    color: #24313d;
    font-family: Outfit, Arial, sans-serif;
    line-height: 1.65;
    background: #fff
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto
}

.topbar {
    background: var(--blue);
    color: #fff;
    font-size: 15px
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    box-shadow: 0 10px 35px #00000014
}

.nav-inner {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand img {
    max-width: 180px;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 800;
    color: #101820
}

.nav-links a {
    white-space: nowrap
}

.nav-links a:hover {
    color: var(--green)
}

.nav-cta,
.catalogue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    color: #fff;
    font-weight: 900;
    background: var(--green);
    border-radius: 3px;
    box-shadow: 0 12px 26px #57b33e3d
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    color: #fff;
    background: var(--green);
    font-size: 24px
}

.hero {
    position: relative;
    height: 720px;
    overflow: hidden;
    color: #fff;
    background: #3f454b
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    background-position: center;
    background-size: cover;
    transform: scale(1.08);
    transition: opacity 1s ease, visibility 1s ease, transform 5s ease
}

.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #02182961, #02182929 44%, #021829c7)
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: start;
    max-width: 720px;
    margin-right: calc((100vw - min(1200px, calc(100% - 32px)))/2);
    margin-left: auto;
    padding-top: 72px
}

.hero-content p {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700
}

.hero-content h1,
.hero-content .hero-title {
    margin: 0;
    font-size: clamp(44px, 5.2vw, 82px);
    line-height: 1.07;
    font-weight: 900
}

.round-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 38px;
    font-weight: 900
}

.round-link span {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: var(--green);
    background: #fff;
    border-radius: 50%
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 1px solid #ffffff59;
    color: #fff;
    background: #ffffff1f;
    font-size: 42px;
    transform: translateY(-50%);
    cursor: pointer
}

.slider-arrow:hover {
    background: var(--green);
    border-color: var(--green)
}

.prev {
    left: 26px
}

.next {
    right: 26px
}

.inner-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 355px;
    color: #fff;
    text-align: center;
    background: linear-gradient(#041d32c7, #041d32c7), url("https://validthemes.net/themeforest/wp/consua/wp-content/uploads/2023/05/18.png") center/cover
}

.inner-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 900
}

.breadcrumbs {
    color: #ffffffe0;
    font-weight: 800
}

.about-section {
    padding: 120px 0;
    background: url("https://aturfood.com/wp-content/uploads/2025/10/farm-1.jpg") center/cover fixed
}

.about-grid,
.split-grid {
    display: grid;
    grid-template-columns: 44% 1fr;
    align-items: center;
    gap: 70px
}

.about-image {
    display: grid;
    place-items: center
}

.about-image img {
    max-height: 560px;
    filter: drop-shadow(0 24px 35px #00000038)
}

.section-kicker {
    color: var(--green);
    font-size: 22px;
    font-weight: 900
}

.about-copy h2,
.section-title h2,
.split-grid h2,
.plain-content h2 {
    margin: 12px 0 22px;
    color: var(--blue);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 900
}

.about-copy p,
.split-grid p,
.plain-content p,
.plain-content li {
    color: var(--muted);
    font-size: 18px
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 28px
}

.stats strong {
    color: var(--blue);
    font-size: 48px;
    line-height: 1
}

.stats strong span {
    color: var(--green)
}

.stats small {
    display: block;
    color: #202b34;
    font-size: 18px;
    font-weight: 800
}

.page-section,
.process-section,
.products-section,
.testimonials-section,
.blog-section {
    padding: 110px 0
}

.alt,
.products-section,
.testimonials-section {
    background: var(--light)
}

.section-title.center {
    text-align: center
}

.gradient-label {
    display: inline-block;
    margin-bottom: 10px;
    color: transparent;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--green), var(--gold));
    -webkit-background-clip: text;
    background-clip: text
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 60px
}

.process-grid:before {
    content: "";
    position: absolute;
    top: 96px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, #57b33e00, #57b33e6b, #b59f116b, #57b33e00)
}

.process-grid article {
    position: relative;
    z-index: 1;
    padding: 56px 30px 42px;
    text-align: center;
    background: linear-gradient(180deg, #fff, #fbfdf8);
    border: 1px solid #57b33e1f;
    box-shadow: 0 18px 45px #13253414;
    border-radius: 7px;
    transition: .25s
}

.process-grid article:hover {
    transform: translateY(-10px);
    border-color: #57b33e5c;
    box-shadow: 0 28px 65px #13253424
}

.process-grid img {
    height: 118px;
    margin: 0 auto 28px;
    object-fit: contain;
    filter: drop-shadow(0 15px 18px #0625441a)
}

.process-grid b {
    position: absolute;
    top: -28px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    box-shadow: 0 14px 30px #57b33e4d;
    transform: translateX(-50%)
}

.process-grid h3 {
    margin: 0;
    color: var(--dark);
    font-size: 24px;
    line-height: 1.25
}

.process-grid p {
    margin: 14px 0 0;
    color: var(--muted)
}

.mission-faq-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background: #fff
}

.mission-faq-section:after {
    content: "";
    position: absolute;
    top: 90px;
    right: 3%;
    width: 250px;
    height: 250px;
    background: #0b5ba80f;
    border-radius: 50%
}

.mission-faq-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 84px;
    align-items: center
}

.mission-tabs {
    display: flex;
    gap: 18px;
    margin-bottom: 38px
}

.mission-tab {
    min-width: 205px;
    min-height: 72px;
    border: 0;
    border-radius: 40px;
    color: #111722;
    background: #fff;
    box-shadow: 0 18px 35px #06254414;
    font: inherit;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer
}

.mission-tab.active {
    color: #fff;
    background: #1e222b
}

.mission-panel {
    display: none
}

.mission-panel.active {
    display: block
}

.mission-copy h2 {
    margin: 0 0 24px;
    color: #68be3f;
    font-size: clamp(36px, 4.2vw, 48px);
    line-height: 1.18;
    font-weight: 800
}

.mission-copy p {
    max-width: 760px;
    margin: 0;
    color: #060b12;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 500
}

.faq-accordion {
    display: grid;
    gap: 18px
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 44px #06254414
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 94px;
    border: 0;
    padding: 24px 32px;
    color: var(--blue);
    background: #fff;
    text-align: left;
    font: inherit;
    font-size: 23px;
    line-height: 1.24;
    font-weight: 800;
    cursor: pointer
}

.faq-item.active .faq-question {
    color: #fff;
    background: linear-gradient(90deg, var(--blue), #073172)
}

.faq-question span {
    flex: 1
}

.faq-question b {
    font-size: 28px;
    line-height: 1
}

.faq-answer {
    display: none;
    padding: 32px 38px 36px;
    color: #060b12;
    font-size: 20px;
    line-height: 1.7
}

.faq-item.active .faq-answer {
    display: block
}

.product-grid,
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 44px
}

.product-grid article,
.catalog-card {
    overflow: hidden;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 14px 35px #0f273d17;
    transition: .25s
}

.product-grid article:hover,
.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px #0f273d24
}

.product-grid img {
    width: 100%;
    aspect-ratio: 1/.78;
    object-fit: cover;
    background: #eef4e9
}

.product-grid h3,
.catalog-card h3 {
    margin: 24px;
    color: var(--dark);
    font-size: 24px
}

.product-grid p {
    min-height: 90px;
    margin: 0 24px 28px;
    color: var(--muted)
}

.catalog-card {
    display: grid;
    align-content: space-between;
    min-height: 320px;
    padding: 26px
}

.catalog-card img {
    width: 100%;
    height: 190px;
    object-fit: contain
}

.catalog-card h3 {
    margin: 18px 0 0;
    text-transform: uppercase
}

.partners-section {
    padding: 105px 0;
    background: #fff
}

.partners-grid {
    display: grid;
    grid-template-columns: 44% 1fr;
    align-items: center;
    gap: 60px
}

.partner-map {
    position: relative
}

.partner-count {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center
}

.partner-count strong {
    color: var(--blue);
    font-size: 98px;
    line-height: 1;
    font-weight: 900
}

.partner-count span {
    color: var(--dark);
    font-size: 22px;
    font-weight: 900
}

.logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center
}

.logos img {
    margin: 0 auto;
    max-height: 58px;
    filter: grayscale(1);
    opacity: .72
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 70px;
    align-items: center
}

.testimonial-art {
    position: relative;
    min-height: 430px
}

.testimonial-art img:first-child {
    width: 78%;
    border-radius: 7px;
    box-shadow: 0 28px 60px #00000029
}

.testimonial-art img:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    border: 12px solid #fff;
    border-radius: 7px;
    box-shadow: 0 22px 42px #00000029
}

.testimonial-slider {
    position: relative;
    min-height: 320px
}

.testimonial {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: .5s
}

.testimonial.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.stars {
    color: #ffb400;
    font-size: 22px
}

.testimonial h2 {
    margin: 18px 0;
    color: var(--blue);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15
}

.testimonial p {
    font-size: 20px
}

.team-grid,
.certificate-grid,
.contact-card-grid,
.faq-grid,
.expert-grid {
    display: grid;
    gap: 30px
}

.team-grid {
    grid-template-columns: repeat(3, 1fr)
}

.team-card,
.contact-info-card,
.faq-card,
.expert-card,
.post-detail,
.sidebar-box,
.privacy-box {
    overflow: hidden;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 16px 42px #06254417
}

.team-card img,
.expert-card img {
    width: 100%;
    aspect-ratio: 1/1.05;
    object-fit: cover;
    background: #edf5ec
}

.team-card div,
.expert-card div,
.faq-card,
.post-detail div,
.sidebar-box,
.privacy-box {
    padding: 30px
}

.team-card h3,
.expert-card h3,
.faq-card h3 {
    margin: 0 0 6px;
    color: var(--dark);
    font-size: 24px
}

.contact-card-grid,
.certificate-grid {
    grid-template-columns: repeat(3, 1fr)
}

.contact-info-card {
    padding: 34px
}

.contact-info-card b {
    display: block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 18px
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 42px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 18px 48px #0625441a
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e0e7ee;
    border-radius: 3px;
    padding: 16px 18px;
    font: inherit
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical
}

.contact-form button {
    min-height: 54px;
    border: 0;
    color: #fff;
    background: var(--green);
    border-radius: 3px;
    font: inherit;
    font-weight: 900
}

.certificate-grid img {
    width: 100%;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 14px 36px #0625441f
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 42px
}

.post-detail img {
    width: 100%;
    border-radius: 7px 7px 0 0
}

.post-detail h2 {
    color: var(--dark);
    font-size: 38px
}

.sidebar-post {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center
}

.sidebar-post img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 5px
}

.rounded-photo {
    width: 100%;
    border-radius: 7px;
    box-shadow: 0 24px 55px #06254421
}

.footer {
    color: #cfd7dd;
    background: #061c2f
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr .85fr 1fr;
    gap: 42px;
    padding: 80px 0 64px
}

.footer-logo {
    max-width: 190px;
    max-height: 76px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    padding: 6px 12px;
    background: #fff;
    border-radius: 6px
}

.footer h4 {
    margin: 0 0 26px;
    color: #fff;
    font-size: 23px
}

.footer a {
    display: block;
    margin: 8px 0;
    color: #cfd7dd
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px
}

.socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: #fff;
    background: #ffffff1a;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800
}

.copyright {
    padding: 20px 16px;
    text-align: center;
    color: #e8eef3;
    border-top: 1px solid #ffffff1f
}

.floating-contact {
    position: fixed;
    right: 34px;
    bottom: 22px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 14px
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    color: #30343b;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 18px #00000029;
    font-size: 19px
}

.chat-dot {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: #fff;
    background: #5268d8;
    border-radius: 50%;
    box-shadow: 0 10px 25px #5268d84d;
    font-size: 24px
}

@media(max-width:1100px) {
    .nav-links {
        gap: 16px;
        font-size: 14px
    }

    .nav-cta {
        display: none
    }

    .product-grid,
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:860px) {
    .topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 22px;
        padding: 8px 0
    }

    .nav-inner {
        height: auto;
        min-height: 82px;
        flex-wrap: wrap;
        padding: 12px 0
    }

    .brand img {
        max-width: 150px;
        max-height: 58px
    }

    .menu-toggle {
        display: block
    }

    .nav-links {
        display: none;
        width: 100%;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start
    }

    .nav-links.open {
        display: flex
    }

    .hero {
        height: 600px
    }

    .hero-content {
        margin: 0 auto;
        padding-top: 42px
    }

    .slider-arrow {
        display: none
    }

    .about-grid,
    .split-grid,
    .process-grid,
    .partners-grid,
    .testimonial-grid,
    .footer-grid,
    .mission-faq-grid,
    .blog-layout {
        grid-template-columns: 1fr
    }

    .process-grid:before {
        display: none
    }

    .product-grid,
    .catalog-grid,
    .team-grid,
    .contact-card-grid,
    .certificate-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .container {
        width: min(100% - 24px, 1200px)
    }

    .hero {
        height: 540px
    }

    .hero-content h1,
    .hero-content .hero-title {
        font-size: 40px
    }

    .product-grid,
    .catalog-grid,
    .team-grid,
    .contact-card-grid,
    .certificate-grid {
        grid-template-columns: 1fr
    }

    .stats,
    .mission-tabs {
        flex-direction: column
    }

    .mission-tab {
        width: 100%
    }

    .faq-question {
        padding: 22px;
        font-size: 19px
    }

    .faq-answer {
        padding: 24px;
        font-size: 17px
    }

    .floating-contact {
        right: 14px;
        bottom: 14px
    }

    .contact-pill {
        display: none
    }

    .logos {
        grid-template-columns: repeat(2, 1fr)
    }
}