/* =========================================================
   01. HOME HERO
========================================================= */

/* ---------- 01.1 Hero Container ---------- */

.home-hero {
    position: relative;
    width: 100vw;
    height: 800px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;

    background-color: #ffffff;
    background-image: url("../imgs/bg1.png");
    background-repeat: no-repeat;
    background-position: calc(100% + 200px) bottom;
    background-size: auto 100%;
}

.home-hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1800px;
    height: 100%;
    margin: 0 auto;
    padding: 0 80px;

    display: flex;
    align-items: center;
}


/* ---------- 01.2 Hero Content ---------- */

.hero-content {
    position: relative;
    z-index: 3;

    width: 48%;
    max-width: 600px;
    margin-left: 12px;
}


/* ---------- 01.3 Hero Typography ---------- */

.hero-kicker {
    position: relative;

    margin: 0 0 20px;
    padding-left: 58px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: #6fa945;
}

.hero-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 34px;
    height: 2px;

    background: #6fa945;
}

.hero-content h1 {
    margin: 0;

    font-size: clamp(62px, 5.7vw, 92px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    color: #050606;
}

.hero-content h1 span {
    color: #6fa945;
}

.hero-text {
    margin: 28px 0 0;
    max-width: 80%;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;

    color: rgba(24, 32, 40, .78);
}


/* ---------- 01.4 Hero Buttons ---------- */

.hero-actions {
    margin-top: 36px;

    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-btn-main,
.hero-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;
}

.hero-btn-main .arrow,
.hero-btn-light .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: transform .32s ease;
}

.hero-btn-main:hover .arrow,
.hero-btn-light:hover .arrow {
    transform: translateX(6px);
}


/* Main green button */

.hero-btn-main {
    position: relative;
    overflow: hidden;

    height: 54px;
    padding: 0 32px;

    border: 0;
    border-radius: 6px;

    background: #6fa945;
    color: #ffffff;

    box-shadow: 0 12px 28px rgba(111, 169, 69, .24);
    transition: box-shadow .32s ease, transform .32s ease;
}

.hero-btn-main::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background: #182028;
    transform: translateX(-100%);
    transition: transform .35s ease;
}

.hero-btn-main span,
.hero-btn-main i {
    position: relative;
    z-index: 2;
}

.hero-btn-main:hover::before {
    transform: translateX(0);
}

.hero-btn-main:hover {
    box-shadow: 0 16px 34px rgba(24, 32, 40, .18);
}

.hero-btn-main:active {
    transform: scale(.98);
}


/* Transparent link button */

.hero-btn-light {
    position: relative;

    height: auto;
    padding: 0 0 9px;

    border: 0;
    border-radius: 0;
    background: transparent;
    color: #182028;

    box-shadow: none;
    transition: color .32s ease, transform .32s ease;
}

.hero-btn-light::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: rgba(24, 32, 40, .22);
}

.hero-btn-light::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #6fa945;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.hero-btn-light:hover::before {
    transform: scaleX(1);
}

.hero-btn-light:hover {
    color: #182028;
}

.hero-btn-light:active {
    transform: scale(.98);
}


/* =========================================================
   02. HOME CATEGORIES
========================================================= */

/* ---------- 02.1 Section ---------- */

.home-categories {
    width: 100%;
    padding: 34px 0 46px;

    background: #ffffff;
}

.home-categories-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}


/* ---------- 02.2 Section Title ---------- */

.home-section-title {
    margin: 0 0 42px;

    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;

    color: #111;
}


/* ---------- 02.3 Categories Grid ---------- */

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
}


/* ---------- 02.4 Category Card ---------- */

.home-category-card {
    position: relative;

    min-height: 145px;
    padding: 16px 30px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #111;
    text-decoration: none;
}

.home-category-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;

    width: 1px;
    height: 108px;

    background: rgba(24, 32, 40, .14);
}


/* ---------- 02.5 Category Icon ---------- */

.home-category-icon {
    width: 140px;
    height: 72px;
    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-category-icon img {
    max-width: 140px;
    max-height: 72px;
    object-fit: contain;

    opacity: .75;

    transition:
        opacity .25s ease,
        transform .25s ease,
        filter .25s ease;
}


/* ---------- 02.6 Category Text ---------- */

.home-category-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-align: center;

    transition: color .25s ease;
}


/* ---------- 02.7 Category Hover ---------- */

.home-category-card:hover .home-category-icon img {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.15) saturate(1.2);
}

.home-category-card:hover .home-category-name {
    color: #6fa945;
}


/* =========================================================
   03. RESPONSIVE
========================================================= */

/* ---------- 03.1 Large Desktop ---------- */

@media (max-width: 1500px) {
    .home-hero {
        height: 660px;
        background-size: auto 94%;
        background-position: calc(100% + 200px) bottom;
    }

    .home-hero-inner {
        padding: 0 64px;
    }

    .hero-content {
        width: 44%;
        max-width: 540px;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: clamp(56px, 5.2vw, 78px);
    }

    .hero-text {
        font-size: 15px;
    }
}


/* ---------- 03.2 Desktop / Tablet ---------- */

@media (max-width: 1180px) {
    .home-hero {
        height: 580px;
        background-size: auto 78%;
        background-position: calc(100% + 150px) bottom;
    }

    .home-hero-inner {
        padding: 0 42px;
    }

    .hero-content {
        width: 55%;
        max-width: 600px;
        margin-left: 20px;
    }

    .hero-content h1 {
        font-size: clamp(50px, 6vw, 68px);
    }

    .hero-text {
        font-size: 14px;
    }
}


/* ---------- 03.3 Small Tablet ---------- */

@media (max-width: 980px) {
    .home-hero {
        height: 540px;
        background-size: auto 65%;
        background-position: calc(100% + 140px) center;
    }

    .home-hero-inner {
        padding: 22px 34px 0;
        align-items: flex-start;
    }

    .hero-content {
        width: 58%;
        max-width: 520px;
    }

    .hero-content h1 {
        font-size: clamp(44px, 6.2vw, 58px);
    }
}


/* ---------- 03.4 Mobile Hero ---------- */

@media (max-width: 760px) {
    .home-hero {
        height: auto;
        min-height: 520px;
        padding: 0;

        background-image: url("../imgs/bg2.png");
        background-position: right center;
        background-size: contain;
    }

    .home-hero-inner {
        height: auto;
        min-height: 520px;
        padding: 10px 22px 40px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0 0 0 10px;
        padding-top: 20px;
    }

    .hero-text {
        width: 75%;
        font-weight: 800;
    }
}


/* ---------- 03.5 Categories Responsive ---------- */

@media (max-width: 1300px) {
    .home-categories-inner {
        padding: 0 54px;
    }

    .home-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
    }

    .home-category-card:nth-child(3n)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .home-categories-inner {
        padding: 0 42px;
    }

    .home-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
    }

    .home-category-card:nth-child(3n)::after {
        display: none;
    }
}

@media (max-width: 760px) {
    .home-categories {
        padding: 34px 0 42px;
    }

    .home-categories-inner {
        padding: 0 22px;
    }

    .home-section-title {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .home-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .home-category-card {
        min-height: 126px;
        padding: 18px 12px;

        border: 1px solid rgba(24, 32, 40, .10);
        border-radius: 18px;
        background: #ffffff;
    }

    .home-category-card::after {
        display: none;
    }

    .home-category-icon {
        width: 96px;
        height: 50px;
        margin-bottom: 14px;
    }

    .home-category-icon img {
        max-width: 96px;
        max-height: 50px;
    }

    .home-category-name {
        font-size: 13px;
    }
}

/* =========================================================
   04. HOME FEATURED PRODUCTS
========================================================= */


.home-featured-products {
    padding: 0 0 54px;
    background: #fff;
}

.home-featured-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.home-featured-products .home-section-title {
    margin: 0 0 24px;
}

.home-featured-slider {
    position: relative;
    min-height: 485px;
    padding: 44px 46px 34px;

    background: #f3f3f2;

    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.home-featured-content {
    position: relative;
    z-index: 5;
    height: 100%;
    min-height: 395px;
}

.home-featured-slide {
    display: none;
}

.home-featured-slide.active {
    display: block;
}

.featured-brand {
    margin: 0 0 14px;
    min-height: 34px;

    display: flex;
    align-items: center;

    color: var(--brand-color, #6fa945);
}

.featured-brand span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.featured-brand img {
    display: block;
    max-width: 120px;
    max-height: 34px;
    object-fit: contain;
}

.home-featured-slide h2 {
    margin: 0;

    max-width: 330px;

    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;

    color: #050606;
}

.featured-description {
    margin: 24px 0 24px;

    max-width: 300px;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;

    color: rgba(24, 32, 40, .72);
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;

    color: #050606;
    text-decoration: none;
}

.featured-link i {
    font-size: 14px;
    color: var(--brand-color);
    transition: transform .25s ease;
}

.featured-link:hover i {
    transform: translateX(6px);
}

.featured-bottom {
    position: absolute;
    left: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 42px;
}

.featured-counter {
    display: flex;
    align-items: baseline;
    gap: 10px;

    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;

    color: #050606;
}

.featured-counter span:nth-child(2),
.featured-counter span:nth-child(3) {
    font-size: 22px;
    color: rgba(24, 32, 40, .28);
}

.featured-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-arrow {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(24, 32, 40, .14);
    border-radius: 50%;
    background: transparent;

    color: rgba(24, 32, 40, .45);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .25s ease;
}

.featured-arrow:hover {
    border-color: #6fa945;
    color: #6fa945;
}

.home-featured-images {
    position: relative;
    height: 395px;
}

.featured-image {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    opacity: 0;
    visibility: hidden;
    transform: translateX(25px);

    transition: opacity .4s ease, transform .4s ease, visibility .4s ease;
}

.featured-image.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.featured-image img {
    width: 100%;
    max-width: 900px;
    max-height: 390px;

    object-fit: contain;
}

/* ---------- Featured products responsive ---------- */

@media (max-width: 1180px) {
    .home-featured-inner {
        padding: 0 42px;
    }

    .home-featured-slider {
        grid-template-columns: 330px 1fr;
        min-height: 430px;
        padding: 38px 36px 30px;
    }

    .home-featured-slide h2 {
        font-size: 38px;
    }

    .home-featured-images {
        height: 350px;
    }

    .featured-image img {
        max-height: 340px;
    }
}

@media (max-width: 860px) {
    .home-featured-products {
        padding-bottom: 42px;
    }

    .home-featured-inner {
        padding: 0 22px;
    }

    .home-featured-slider {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: auto;
        padding: 28px 24px 26px;
    }

    .home-featured-images {
        order: -1;
        height: 260px;
    }

    .featured-image {
        justify-content: center;
    }

    .featured-image img {
        max-height: 250px;
    }

    .home-featured-content {
        min-height: 315px;
    }

    .home-featured-slide h2 {
        max-width: 100%;
        font-size: 42px;
    }

    .featured-description {
        max-width: 100%;
        margin: 20px 0 22px;
    }

    .featured-bottom {
        left: 0;
        bottom: 0;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 560px) {
    .home-featured-products .home-section-title {
        margin-bottom: 18px;
    }

    .home-featured-slider {
        padding: 24px 18px 22px;
    }

    .home-featured-images {
        height: 210px;
    }

    .featured-image img {
        max-height: 205px;
    }

    .home-featured-content {
        min-height: 330px;
    }

    .featured-brand {
        font-size: 13px;
    }

    .home-featured-slide h2 {
        font-size: 36px;
    }

    .featured-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .featured-counter {
        font-size: 30px;
    }

    .featured-counter span:nth-child(2),
    .featured-counter span:nth-child(3) {
        font-size: 19px;
    }

    .featured-arrow {
        width: 44px;
        height: 44px;
    }
}

/* =========================================================
   05. HOME ABOUT SPLIT
========================================================= */

.home-about-split {
    width: 100%;
    margin: 0 auto 54px;

    display: grid;
    grid-template-columns: 40% 60%;

    background: #050606;
}

.home-about-info {
    position: relative;
    min-height: 360px;
    padding: 46px 54px;
    padding-left: 134px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
    color: #ffffff;
}


.about-line {
    width: 38px;
    height: 2px;
    margin-bottom: 18px;

    background: #6fa945;
}

.home-about-info h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 24px;

    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.home-about-info p {
    position: relative;
    z-index: 2;

    max-width: 500px;
    margin: 0 0 18px;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;

    color: rgba(255, 255, 255, .82);
}

.about-link {
    position: relative;
    z-index: 2;

    width: fit-content;
    margin-top: 8px;
    padding-bottom: 8px;

    display: inline-flex;
    align-items: center;
    gap: 16px;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;

    color: #ffffff;
}

.about-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, .35);
}

.about-link i {
    color: #6fa945;
    transition: transform .25s ease;
}

.about-link:hover i {
    transform: translateX(6px);
}

.home-about-image {
    min-height: 360px;
    overflow: hidden;
}

.home-about-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    transition: transform 1s ease-in-out;
    margin-left: auto;
}

.home-about-split:hover .home-about-image img {
    transform: scale(1.01);
}


/* ---------- About responsive ---------- */

@media (max-width: 1180px) {
    .home-about-split {
        padding-left:42px;
        grid-template-columns: 42% 58%;
    }

    .home-about-info {
        padding: 42px 38px;
    }

    .home-about-info h2 {
        font-size: 34px;
    }
}

@media (max-width: 860px) {
    .home-about-split {
        padding: 0 22px;
        grid-template-columns: 1fr;
        background: transparent;
    }

    .home-about-info {
        min-height: auto;
        padding: 36px 28px;
        background: #050606;
    }

    .home-about-image {
        min-height: 170px;
    }
}

@media (max-width: 560px) {
    .home-about-info {
        padding: 32px 22px;
    }

    .home-about-info h2 {
        font-size: 30px;
    }

    .home-about-info p {
        font-size: 14px;
    }

    .home-about-image {
        min-height: 130px;
    }
}

.home-about-split {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.home-about-split.visible {
    opacity: 1;
    transform: translateY(0);
}




.about-liquid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    opacity: .22;
    pointer-events: none;
}

.about-liquid-lines path {
    fill: none;
    stroke: #6fa945;
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   06. HOME ADVANTAGES + PARTNERS
========================================================= */

.home-advantages,
.home-partners {
    background: #f7f7f6;
}

.home-advantages {
    padding: 58px 0 26px;
}

.home-partners {
    padding: 22px 0 58px;
}

.home-advantages-inner,
.home-partners-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.home-block-head {
    margin-bottom: 30px;
    text-align: center;
}

.home-block-head span {
    width: 42px;
    height: 3px;
    margin: 0 auto 14px;

    display: block;
    background: #6fa945;
}

.home-block-head h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;

    color: #050606;
}

.home-block-head p {
    margin: 10px 0 0;

    font-size: 15px;
    font-weight: 500;
    color: rgba(24, 32, 40, .72);
}

/* ---------- Advantages ---------- */

.home-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.home-advantage-card {
    position: relative;
    min-height: 180px;
    padding: 30px 28px 30px;

    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 22px;

    border: 1px solid rgba(24, 32, 40, .08);
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(24, 32, 40, .08);

    overflow: hidden;
    transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.advantage-icon {
    width: 96px;
    height: 96px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f0f1ef;

    color: #5f943b;
    font-size: 40px;

    transition: color .28s ease, background .28s ease;
}

.home-advantage-card h3 {
    margin: 0 0 10px;

    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .01em;
    text-transform: uppercase;

    color: #050606;
}

.home-advantage-card p {
    margin: 0;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;

    color: rgba(24, 32, 40, .68);
}

.advantage-line {
    position: absolute;
    left: 28px;
    bottom: 18px;

    width: 44px;
    height: 3px;

    background: #6fa945;
    transition: width .28s ease;
}

.home-advantage-card:hover {
    border-color: rgba(111, 169, 69, .30);
    box-shadow: 0 18px 38px rgba(24, 32, 40, .11);
}

.home-advantage-card:hover .advantage-icon {
    color: #6fa945;
    background: rgba(111, 169, 69, .10);
}

.home-advantage-card:hover .advantage-line {
    width: 70px;
}

/* ---------- Partners slider ---------- */

.home-partners-slider {
    position: relative;

    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 18px;
}

.home-partners-viewport {
    overflow: hidden;
}

.home-partners-track {
    display: flex;
    gap: 18px;
    transition: margin-left .35s ease;
}

.home-partner-logo {
    flex: 0 0 calc((100% - 72px) / 5);
    height: 78px;
    padding: 18px 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(24, 32, 40, .06);
    border-radius: 9px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(24, 32, 40, .07);

    transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.home-partner-logo img {
    max-width: 150px;
    max-height: 42px;
    object-fit: contain;

    opacity: .72;
    filter: grayscale(100%);

    transition: opacity .28s ease, filter .28s ease;
}

.home-partner-logo:hover {
    border-color: rgba(111, 169, 69, .30);
    box-shadow: 0 16px 34px rgba(24, 32, 40, .10);
}

.home-partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0);
}

.partners-arrow {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(111, 169, 69, .75);
    border-radius: 50%;
    background: transparent;

    color: #5f943b;
    font-size: 14px;
    cursor: pointer;

    transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}

.partners-arrow:hover {
    background: #6fa945;
    border-color: #6fa945;
    color: #ffffff;
}

.partners-arrow.disabled,
.partners-arrow:disabled {
    opacity: .28;
    cursor: default;
    pointer-events: none;
}

.partners-dots {
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partners-dot {
    width: 10px;
    height: 10px;

    border: 0;
    border-radius: 50%;
    background: rgba(24, 32, 40, .16);
    cursor: pointer;

    transition: background .25s ease, opacity .25s ease;
}

.partners-dot.active {
    background: #6fa945;
}

.partners-dot:only-child {
    display: none;
}

/* ---------- Static state: 1-5 branduri ---------- */

.home-partners-slider.is-static {
    display: block;
}

.home-partners-slider.is-static .partners-arrow {
    display: none;
}

.home-partners-slider.is-static .home-partners-viewport {
    overflow: visible;
}

.home-partners-slider.is-static .home-partners-track {
    justify-content: center;
    margin-left: 0 !important;
}

.home-partners-slider.is-static + .partners-dots {
    display: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1300px) {
    .home-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-partner-logo {
        flex-basis: calc((100% - 54px) / 4);
    }
}

@media (max-width: 1180px) {
    .home-advantages-inner,
    .home-partners-inner {
        padding: 0 42px;
    }
}

@media (max-width: 860px) {
    .home-partner-logo {
        flex-basis: calc((100% - 36px) / 3);
    }
}

@media (max-width: 760px) {
    .home-advantages {
        padding: 42px 0 20px;
    }

    .home-partners {
        padding: 18px 0 42px;
    }

    .home-advantages-inner,
    .home-partners-inner {
        padding: 0 22px;
    }

    .home-block-head {
        margin-bottom: 24px;
    }

    .home-block-head h2 {
        font-size: 28px;
    }

    .home-block-head p {
        font-size: 14px;
    }

    .home-advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-advantage-card {
        min-height: auto;
        padding: 24px 22px 28px;
        grid-template-columns: 74px 1fr;
        gap: 18px;
    }

    .advantage-icon {
        width: 74px;
        height: 74px;
        font-size: 31px;
    }

    .home-advantage-card h3 {
        font-size: 19px;
    }

    .home-advantage-card p {
        font-size: 14px;
    }

    .advantage-line {
        left: 22px;
        bottom: 15px;
        width: 38px;
    }

    .home-partners-slider {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 10px;
    }

    .partners-arrow {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .home-partners-track {
        gap: 14px;
    }

    .home-partner-logo {
        flex-basis: calc((100% - 14px) / 2);
        height: 74px;
        padding: 16px 20px;
    }

    .home-partner-logo img {
        max-width: 118px;
        max-height: 36px;
    }
}

/* =========================================================
   07. HOME CTA
========================================================= */

.home-cta {
    padding: 28px 0;

}

.home-cta-inner {
    position: relative;

    max-width: 1600px;
    min-height: 190px;
    margin: 0 auto;
    padding: 38px 46px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;

    border-radius: 12px;
    overflow: hidden;

    background:
        linear-gradient(90deg, rgba(5, 6, 6, .96) 0%, rgba(5, 6, 6, .82) 42%, rgba(5, 6, 6, .30) 100%),
        url("../imgs/cta-season.png") center / cover no-repeat;
}

.home-cta-content {
    position: relative;
    z-index: 2;
}

.home-cta h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: .01em;
    text-transform: uppercase;

    color: #ffffff;
}

.home-cta h2 span {
    color: #6fa945;
}

.home-cta p {
    max-width: 430px;
    margin: 14px 0 0;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;

    color: rgba(255, 255, 255, .86);
}

.home-cta-btn {
    position: relative;
    z-index: 2;

    height: 58px;
    padding: 0 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    border: 0;
    border-radius: 6px;
    background: #6fa945;

    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;

    color: #ffffff;
    cursor: pointer;

    box-shadow: 0 12px 28px rgba(111, 169, 69, .26);

    transition: background .28s ease, box-shadow .28s ease;
}

.home-cta-btn:hover {
    background: #5f943b;
    box-shadow: 0 16px 34px rgba(111, 169, 69, .32);
}

.home-cta-btn i {
    font-size: 14px;
}

@media (max-width: 1180px) {
    .home-cta {
        padding-left: 42px;
        padding-right: 42px;
    }

    .home-cta-inner {
        min-height: 180px;
        padding: 34px 38px;
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 760px) {
    .home-cta {
        padding: 0 22px 42px;
    }

    .home-cta-inner {
        min-height: auto;
        padding: 30px 24px;

        grid-template-columns: 1fr;
        gap: 24px;

        background:
            linear-gradient(90deg, rgba(5, 6, 6, .96) 0%, rgba(5, 6, 6, .80) 100%),
            url("../imgs/cta-season.png") center / cover no-repeat;
    }

    .home-cta h2 {
        font-size: 30px;
    }

    .home-cta p {
        font-size: 14px;
    }

    .home-cta-btn {
        width: fit-content;
        height: 54px;
        padding: 0 28px;
    }
}



/* =========================================================
   08. FOOTER
========================================================= */


.gt-footer {
    width: 100%;
    background: #050606;
    color: #ffffff;
}

.gt-footer-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 42px 80px 24px;
}

.gt-footer-top {
    display: grid;
    align-items: stretch;
    gap: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.gt-footer-top.has-socials {
    grid-template-columns: 1.5fr .9fr .9fr 1.25fr .9fr;
}

.gt-footer-top.no-socials {
    grid-template-columns: 1.45fr .95fr .95fr 1.25fr;
}

.gt-footer-brand,
.gt-footer-col,
.gt-footer-contact,
.gt-footer-social {
    min-width: 0;
    padding: 0 34px;
}

.gt-footer-brand {
    position: relative;
    overflow: hidden;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, .13);
}



.gt-footer-logo,
.gt-footer-brand p {
    position: relative;
    z-index: 2;
}

.gt-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.gt-footer-logo img {
    display: block;
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
}

.gt-footer-brand p {
    max-width: 255px;
    margin: 16px auto 0;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;

    color: rgba(255, 255, 255, .72);
}

.gt-footer-col,
.gt-footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gt-footer-col {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.gt-footer-contact {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.gt-footer-top.no-socials .gt-footer-contact {
    border-right: 0;
}

.gt-footer h3 {
    margin: 0 0 14px;

    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;

    color: #ffffff;
}

.gt-footer-col a,
.gt-footer-col span,
.gt-footer-contact a,
.gt-footer-contact span {
    display: block;
    width: fit-content;
    max-width: 100%;

    margin-bottom: 7px;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;

    color: rgba(255, 255, 255, .72);
    text-decoration: none;

    transition: color .25s ease;
}

.gt-footer-col a:hover,
.gt-footer-contact a:hover,
.gt-footer-legal a:hover {
    color: #6fa945;
}

.gt-footer-contact-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;

    margin-bottom: 9px;
}

.gt-footer-contact-item i {
    margin-top: 3px;

    font-size: 13px;
    color: #ffffff;
}

.gt-footer-contact-item a,
.gt-footer-contact-item span {
    margin-bottom: 0;
}

.gt-footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;

    padding-right: 0;
}

.gt-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 20px;
    text-decoration: none;

    transition: color .25s ease, transform .25s ease;
}

.gt-footer-social a:hover {
    color: #6fa945;
    transform: translateY(-3px);
}

.gt-footer-bottom {
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gt-footer-bottom p {
    margin: 0;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;

    color: rgba(255, 255, 255, .72);
}

.gt-footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gt-footer-legal a {
    position: relative;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;

    color: rgba(255, 255, 255, .78);
    text-decoration: none;

    transition: color .25s ease;
}

.gt-footer-legal a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;

    width: 1px;
    height: 14px;

    background: rgba(255, 255, 255, .22);
    transform: translateY(-50%);
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

/* =========================================================
   FOOTER RESPONSIVE FIX
========================================================= */

@media (max-width: 1100px) {
    .gt-footer-inner {
        padding: 42px 58px 26px;
    }

    .gt-footer-top.has-socials,
    .gt-footer-top.no-socials {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 42px;
        align-items: start;
    }

    .gt-footer-brand {
        grid-column: 1 / -1;
        min-height: auto;
        padding: 0 0 34px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .gt-footer-brand-bg {
        left: 50%;
        top: 50%;
        width: 260px;
        height: 170px;
        transform: translate(-62%, -50%);
    }

    .gt-footer-logo img {
        max-width: 210px;
    }

    .gt-footer-brand p {
        max-width: 420px;
        font-size: 14px;
    }

    .gt-footer-col,
    .gt-footer-contact,
    .gt-footer-social {
        padding: 0;
        border-right: 0;
    }

    .gt-footer-contact {
        border-right: 0;
    }

    .gt-footer-social {
        grid-column: 1 / -1;
        justify-content: center;
        padding-top: 8px;
    }

    .gt-footer-bottom {
        margin-top: 4px;
    }
}

@media (max-width: 760px) {
    .gt-footer-inner {
        padding: 36px 22px 24px;
    }

    .gt-footer-top.has-socials,
    .gt-footer-top.no-socials {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 26px;
    }

    .gt-footer-brand {
        padding-bottom: 28px;
    }

    .gt-footer-brand-bg {
        left: 50%;
        width: 230px;
        height: 155px;
        opacity: .08;
        transform: translate(-64%, -50%);
    }

    .gt-footer-logo img {
        max-width: 190px;
    }

    .gt-footer-brand p {
        max-width: 330px;
        margin-top: 16px;
        text-align: center;
        font-size: 14px;
        line-height: 1.65;
    }

    .gt-footer h3 {
        margin-bottom: 13px;
    }

    .gt-footer-col,
    .gt-footer-contact {
        text-align: center;
        align-items: center;
    }

    .gt-footer-col a,
    .gt-footer-col span {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .gt-footer-contact-item {
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 18px minmax(0, auto);
        text-align: left;
    }

    .gt-footer-social {
        justify-content: center;
        gap: 24px;
    }

    .gt-footer-bottom {
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .gt-footer-bottom p {
        text-align: center;
    }

    .gt-footer-legal {
        align-items: center;
        text-align: center;
    }
}

.gt-scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 900;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(111,169,69,.28);
    border-radius: 50%;

    background: rgba(111,169,69,.20);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 15px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(20px) scale(.82);

    transition:
        opacity .5s ease,
        transform .5s cubic-bezier(.2,.8,.2,1),
        background .5s ease,
        visibility .5s;
}

.gt-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
}

.gt-scroll-top:hover {
    background: rgba(111,169,69,.35);
    transform: translateY(-3px) scale(1.06);
}

.gt-scroll-top:active {
    transform: scale(.95);
}

.gt-scroll-top i{
    transition: transform .25s ease;
}

.gt-scroll-top:hover i{
    transform: translateY(-2px);
}