
.hero {

    padding: 7.5rem 1rem 3.5rem;

    background: transparent;

}

.hero-inner {


    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

/* лява колона */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--brand);
    font-weight: 800;
}


.hero h1 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.15;
    color: var(--accent);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text);
    max-width: 30rem;
}

.hero-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.8rem 1.6rem;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    box-shadow: var(--shadow);
}


.hero-carousel {

    background: var(--bacgraund-linear-green);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1.4rem 1.2rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.hero-product {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    transition: opacity .5s ease;
}

.hero-product img {


    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;




}

.hero-product h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--brand);
}

.hero-product p {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent);
}


.hero-product.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    inset: 0;
    background: transparent;
}


/* ================= IMAGE CAROUSEL ================= */

.carousel-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.img-carousel {
    width: 100%;
    height: 100%;
    position: relative;

}

.img-carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity .8s ease;
    box-shadow: var(--shadow);

}

.img-carousel img.active {
    opacity: 1;

}


/* ================= VIDEO + TEXT SECTION ================= */

.about-grid {
    padding: 3.5rem 1rem;

}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
    align-items: start;

    grid-auto-rows: minmax(0, auto);

    position: relative;
    z-index: 1;

}


.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper video {
    width: 100%;
    height: 100%;

    border-radius: 1rem;
    border-color: var(--brand);

}


.about-text h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    color: var(--text);
    max-width: 90%;
    font-weight: 700;
}


.about-text {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 12px;
}


/* ================= ACCORDION ================= */

.accordion {
    display: flex;
    flex-direction: column;
    gap: .02rem;
}

.acc-item {

    background: var(--bacgraund-linear-green);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    font-weight: 700;


}

.acc-btn {
    width: 100%;

    background: var(--bacgraund-linear-green);

    color: var(--brand);
    text-align: left;
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 16px 16px 0 0;


    display: flex;
    justify-content: space-between;
    align-items: center;


}

.acc-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.acc-icon {
    font-size: 1.3rem;
    transition: transform .25s ease;
    display: inline-block;
}


.acc-btn.active .acc-icon {
    transform: rotate(180deg);
}


.acc-btn:hover {
    background: #0b5f3c;
}

.acc-panel {
    max-height: 0;
    overflow: hidden;

    background: var(--bacgraund-linear-green);
    padding: 0 1.2rem;
    transition: max-height .3s ease;


}


.acc-panel p {
    padding: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text);
}


/* ================= USP SECTION ================= */
.usp {
    padding: 3rem 1rem 2rem;
    background: #f6fbf8;
}

.usp-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.usp-item {
     background: var(--bacgraund-linear-green);
    border-radius: 18px;
    padding: 1.6rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.25s ease;

}

.usp-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.usp-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.6rem;
    color: var(--accent);
}

.usp-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--accent);
}

.usp-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.45;
}


@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-text {
        order: 1;
    }

    .hero-carousel {
        order: 2;
        margin-top: 0.5rem;
    }

    /*video sec */
    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        text-align: left;
    }
}

@media (min-width: 901px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }
}







