@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-Variable.woff2') format('woff2-variations'),
         url('../fonts/NunitoSans-Variable.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
}

@font-face {
    font-family: 'WorkSans-Light';
    src: url('../fonts/WorkSans-Light.woff2') format('woff2');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'WorkSans-Regular';
    src: url('../fonts/WorkSans-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'WorkSans-Medium';
    src: url('../fonts/WorkSans-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'WorkSans-SemiBold';
    src: url('../fonts/WorkSans-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.35;
    font-family: "Nunito Sans", sans-serif;
    color: #0E0D0D;
    background-color: #fdfdf0;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* ============================
   GLOBAL TRANSITIONS & FOCUS
============================ */
a, button {
    transition: color .3s ease, background-color .3s ease, transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #f2a531;
    outline-offset: 4px;
    border-radius: 6px;
}

img {
    transition: transform .5s ease;
}

/* ============================
   SCROLL REVEAL
============================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }


.container {
    max-width: 1440px;
    padding: 0 10px;
    margin: 0 auto;
}

.container-big {
    max-width: 1820px;
    padding: 0 10px;
    margin: 0 auto;

}

.menu__btn {
    display: none;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(253, 253, 240, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow .35s ease, background-color .35s ease, padding .35s ease;
}

.header.is-scrolled {
    box-shadow: 0 6px 24px rgba(14, 13, 13, 0.08);
    background-color: rgba(253, 253, 240, 0.95);
}

.header.is-scrolled .header__inner {
    padding: 18px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    align-items: center;
    padding: 30px 0;
    transition: padding .35s ease;
}

.logo img {
    transition: transform .4s ease, filter .4s ease;
}

.logo:hover img {
    transform: scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 4px 10px rgba(242, 165, 49, 0.35));
}

.menu__list {
    display: flex;
    gap: 0 30px
}

.menu__link {
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    display: inline-block;
}

.menu__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f2a531;
    transition: width .35s ease;
}

.menu__link:hover {
    color: #f2a531;
}

.menu__link:hover::after {
    width: 100%;
}

.header__contacts {
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 40px;
    background-color: #0E0D0D;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-align: right;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header__contacts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f2a531 0%, #e08a14 100%);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s ease;
    z-index: -1;
}

.header__contacts:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(242, 165, 49, 0.35);
}

.header__contacts:hover::before {
    transform: scaleX(1);
}

.about {
    margin-bottom: 180px;
}

.about__top {
    text-align: center;
    color: #fdfdf0;
    background-image: url(../img/about/about-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    text-transform: uppercase;
    min-height: 748px;
    border-radius: 20px;
}

.about__title {
    font-family: 'WorkSans-SemiBold', sans-serif;
    font-size: 250px;
    line-height: 0.9;
    font-weight: 600;
    padding-top: 85px;
    animation: heroFadeIn 1.1s ease both;
}

.about__text {
    animation: heroFadeIn 1.1s ease .25s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: -0.05em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

.about__text {
    font-family: 'WorkSans-Medium', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.about__achievements {
    display: flex;
    justify-content: space-between;
    margin-top: -55px;
    margin-bottom: 90px;

}

.about__achievement {
    display: flex;
    gap: 0 25px;
    background-color: #f4f4e7;
    border-radius: 20px;
    max-width: 580px;
    padding: 14px 10px;
    transition: transform .4s ease, box-shadow .4s ease, background-color .4s ease;
}

.about__achievement:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(14, 13, 13, 0.12);
    background-color: #fbfbe9;
}

.about__achievement-imgbox {
    position: relative;
    min-width: 214px;
    overflow: hidden;
    border-radius: 14px;
}

.about__achievement-img {
    transition: transform .6s ease;
    width: 100%;
}

.about__achievement:hover .about__achievement-img {
    transform: scale(1.08);
}

.about__achievement-arrow {
    position: absolute;
    right: 0;
    top: 5px;
    width: 36px;
    height: 36px;
    background-image: url(../img/about/achievement-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .4s ease;
    pointer-events: none;
}

.about__achievement:hover .about__achievement-arrow {
    transform: translate(6px, -6px) rotate(-12deg);
}

.about__achievement-title {
    transition: color .3s ease;
}

.about__achievement:hover .about__achievement-title {
    color: #f2a531;
}

.about__achievement-title {
    margin-bottom: 20px;
    font-weight: 500;
    padding-top: 10px;
}

.about__achievement-text {
    font-weight: 300;
    font-size: 14px;
}

.text--bold {
    font-weight: 600;
}

.text--color {
    font-weight: 600;
    color: #f2a531;
}

.about__stats {
    display: flex;
    justify-content: space-between;
    gap: 0 90px;
    padding: 30px 18px;
    border-radius: 20px;
    background-color: #f4f4e7;
    margin-bottom: 70px;
}

.about__stats-item {
    text-align: center;
    width: 300px;
    padding: 10px;
    border-radius: 14px;
    transition: transform .35s ease, background-color .35s ease;
    cursor: default;
}

.about__stats-item:hover {
    transform: translateY(-6px) scale(1.03);
    background-color: rgba(242, 165, 49, 0.12);
}

.about__stats-item dt {
    font-family: 'WorkSans-SemiBold', sans-serif;
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 600;
    transition: color .35s ease;
}

.about__stats-item:hover dt {
    color: #f2a531;
}
.about__stats-item dd {
    margin: 0;
    color: #0E0D0D;
    font-size: 22px;
    opacity: .7;

}

.about__progress-text {
    font-family: 'WorkSans-Light', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.17;
    margin-bottom: 40px;
}

.about__progress-text span {
    font-family: 'WorkSans-Medium', sans-serif;
    font-weight: 600;
}

.about__progress-box {
    display: flex;
    gap: 0 140px;
}

.about__progress-boxtext {
    font-size: 18px;
    margin-bottom: 45px;
    padding-right: 50px;
    line-height: 1.5;
    padding-top: 5px;
}

.about__progress-boxtext .text--bold {
    font-weight: 700;
}
.about__progress-table {
    border-top: 1px solid rgba(14, 13, 13, 0.23);
}

.about__progress-item {
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(14, 13, 13, 0.23);
    transition: background-color .3s ease, padding-left .3s ease;
    border-radius: 6px;
}

.about__progress-item:hover {
    background-color: rgba(242, 165, 49, 0.08);
    padding-left: 18px;
}

.about__progress-item + .about__progress-item {
    padding-top: 20px;
}

.about__progress-item dt {
    font-family: 'WorkSans-Medium', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.about__progress-item dt span {
    color: #f2a531;
    font-weight: 600;
}

.about__progress-item dd {
    opacity: .71;
}

.products__wrapper {
    padding: 50px 0;
    background-color: #f4f4e7;
    border-radius: 20px;
}

.products__title {
    font-family: 'WorkSans-Medium', sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}

.products__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.products__item {
    border-radius: 10px;
    min-height: 322px;
    margin-bottom: 12px;
    padding: 50px 24px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    transition: transform .45s ease, box-shadow .45s ease, background-size 1s ease;
}

.products__item:hover {
    background-size: 115%;
}

.products__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.products__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 44px rgba(14, 13, 13, 0.22);
}

.products__item:hover::before {
    opacity: 1;
}

.products__item-title,
.products__item-text {
    transition: transform .45s ease;
}

.products__item:hover .products__item-title {
    transform: translateY(-4px);
}

.products__item-btn {
    position: absolute;
    bottom: -12px;
    left: -8px;
    width: 60px;
    height: 60px;
    background-image: url(../img/products/products-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .4s ease;
    pointer-events: none;
}

.products__item:hover .products__item-btn {
    transform: translate(8px, -8px) rotate(-15deg);
}

.products__item-title {
    font-family: 'WorkSans-Regular', sans-serif;
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 400;
}

.products__item-text {
    font-weight: 300;
}

.products__item:nth-child(odd) {
    color:#fff;
}

.button {
    display: inline-block;
    width: 300px;
    padding: 19px 97px 19px 38px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #0E0D0D;
    border-radius: 96px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f2a531 0%, #e08a14 100%);
    transform: translateX(-105%);
    transition: transform .5s ease;
    z-index: -1;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(242, 165, 49, 0.4);
}

.button:hover::before {
    transform: translateX(0);
}

.button svg {
    position: absolute;
    top: 3px;
    right: 4px;
    transition: transform .45s ease;
}

.button:hover svg {
    transform: rotate(45deg);
}

.button:hover svg circle {
    fill: #0E0D0D;
}

.button:hover svg path {
    stroke: #fff;
}

.products__link {
    display: block;
    margin: 0 auto;
}



.slogan {
    text-align: center;
    text-transform: uppercase;
    padding-top: 115px;
}

.slogan__text {
    font-family: 'WorkSans-Medium', sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 40px;
    line-height: 1.3;

}

.slogan__title {
    font-family: 'WorkSans-SemiBold', sans-serif;
    font-weight: 600;
    font-size: 300px;
    margin-left: -50px;
    line-height: 1;
    background: linear-gradient(90deg, #f2a531 0%, #e08a14 25%, #f2a531 50%, #e08a14 75%, #f2a531 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.slogan__img {
    display: inline-block;
    margin-top: -145px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.partners {
    padding: 130px 0 150px 0;
}

.partners__inner {
    display: flex;
    justify-content: space-between;
    gap: 0 120px;
}

.partners__info {
    max-width: 580px;
    display: flex;
    flex-direction: column;
}

.partners__info-title {
    font-family: 'WorkSans-Regular', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.3;
}

.partners__info-text {
    margin-top: auto;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
}

.partners__box-top {
    display: flex;
    justify-content: space-between;
    background-color:  #f4f4e7;
    border-radius: 10px;
    gap: 0 20px;
    margin-bottom: 15px;
    position: relative;
}

.partners__box-top::before {
    content: '';
    position: absolute;
    background-image: url(../img/partners/logo-min.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 20px;
    top: 30px;
    width: 63px;
    height: 56px;
}

.partners__box-list {
    padding-left: 24px;
    padding-bottom: 30px;
    margin-top: auto;
}

.partners__box-item + .partners__box-item {
    margin-top: 15px;
}

.partners__box-item {
    font-weight: 500;
    color: black;
    padding-left: 39px;
    position: relative;
    transition: transform .35s ease, color .35s ease;
    cursor: default;
}

.partners__box-item:hover {
    transform: translateX(8px);
    color: #f2a531;
}

.partners__box-item:hover::before {
    transform: translateY(-50%) scale(1.2) rotate(15deg);
}

.partners__box-item::before {
    content: '';
    position: absolute;
    left: 0;
    background-image: url(../img/partners/partners-dots.svg);
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .4s ease;
}


.partners__box-item span {
    font-weight: 600;
    color: #f2a531;

}

.partners__box-text {
    border-radius: 10px;
    padding: 30px 80px 30px 30px;
    background-color: #0d1615;
    color: #fff;
    font-weight: 300;

}

.partners__box-text span {
    color: #f2a531;
    font-weight: 700;
}

.blog {
    margin-bottom: 80px;
}

.blog__wrapper {
    background-color: #f4f4e7;
    border-radius: 4px;
    padding: 100px 0;
}

.blog__title {
    font-family: 'WorkSans-Medium', sans-serif;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    font-weight: 500;
    font-size: 40px;
}

.blog__items {
    display: grid;
    grid-template-columns: 580px auto;
    grid-template-rows: 1fr 1fr;
    gap: 32px 44px;
}

.blog__item-big,
.blog__item-small {
    transition: transform .4s ease;
}

.blog__item-big:hover,
.blog__item-small:hover {
    transform: translateY(-6px);
}

.blog__item-big {
    grid-row: 1 / -1;
}

.blog__item-big .blog__item-img {
    margin-bottom: 32px;
}

.blog__item-img {
    border-radius: 10px;
    overflow: hidden;
    transition: transform .6s ease, box-shadow .4s ease;
}

.blog__item-big:hover .blog__item-img,
.blog__item-small:hover .blog__item-img {
    transform: scale(1.04);
    box-shadow: 0 12px 28px rgba(14, 13, 13, 0.18);
}

.blog__item-small {
    display: flex;
    align-items: center;
    gap: 0 24px;
}

.blog__item-info {
    color: #f2a531;
    font-size: 14px;
    margin-bottom: 12px;
}

.blog__item-titlelink {
    display: block;
    margin-bottom: 12px;
}

.blog__item-title  {
    font-family: 'WorkSans-Medium', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #101828;
    position: relative;
    padding-right: 30px;
    transition: color .3s ease;
}

.blog__item-titlelink:hover .blog__item-title {
    color: #f2a531;
}

.blog__item-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../img/blog/blog-arrow.svg);
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .35s ease;
}

.blog__item-titlelink:hover .blog__item-title::after {
    transform: translate(6px, -50%) rotate(-12deg);
}

.blog__item-link {
    transition: color .3s ease;
}

.blog__item-link:hover {
    color: #e08a14;
    text-decoration: underline;
}


.blog__item-text {
    color: #667085;
}

.footer {
    background-color: #0e0d0d;
    padding: 100px 0;
    color: white;

}

.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}



.footer__element-title {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer__element-link,
.footer__bottom a {
    position: relative;
    display: inline-block;
    transition: color .3s ease, transform .3s ease;
}

.footer__element-link::after,
.footer__bottom a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background-color: #f2a531;
    transition: width .35s ease;
}

.footer__element-link:hover,
.footer__bottom a:hover {
    color: #f2a531;
    transform: translateX(4px);
}

.footer__element-link:hover::after,
.footer__bottom a:hover::after {
    width: 100%;
}

.footer__logo img {
    transition: transform .5s ease, filter .5s ease;
}

.footer__logo:hover img {
    transform: scale(1.05) rotate(-3deg);
    filter: drop-shadow(0 4px 14px rgba(242, 165, 49, 0.5));
}

.footer__item + .footer__item {
    padding-top: 15px;
}


.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #ffffff;
    font-size: 14px;
}

@media (max-width: 1600px) {
    .container-big {
        padding: 0;
    }
    .about__top {
        border-radius: 0;
    }
    .slogan__title {
        font-size: 140px;
        margin-left: 0;
    }
    .slogan__text {
        font-size: 26px;
    }
    .slogan__img {
        margin-top: -75px;
    }

}
@media (max-width: 1280px) {
    .about__title {
        font-size: 140px;
    }
    .about__achievements {
        gap: 20px;
    }
    .about__progress-box {
        gap: 0 20px;
    }
    .partners__inner {
        gap: 20px;
    }
    .blog__items {
         gap: 20px;
        grid-template-columns: 380px auto;
     }
    .partners__info {
        max-width: 350px;
    }
}

@media (max-width: 1048px) {
    .blog__items {
        grid-template-columns: 1fr;
    }
    .blog__item-link {
        max-width: 500px;
    }
}

@media (max-width: 980px) {
    .about__title {
        font-size: 100px;
    }
    .about__text {
        font-size: 24px;
    }
    .about__achievement {
        flex-wrap: wrap;
    }
    .about__stats {
        gap: 20px;
    }
    .blog__item-img {
        width: 100%;
    }
    .partners__inner {
        flex-wrap: wrap;
    }
    .partners__info {
        max-width: 100%;
    }
    .partners__box {
        width: 100%;
    }
    .menu__btn {
        display: flex;
        width: 40px;
        height: 40px;
        flex-direction: column;
        gap: 8px;
        padding: 0;
        border: none;
        background-color: transparent;
        position: relative;
        z-index: 5;
    }
    .menu {
        order: 1;
    }
    .menu__btn span {
        width: 100%;
        height: 3px;
        background-color: #000;
    }

    .menu__list {
        position: absolute;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        padding: 95px 0;
        gap: 20px 0;
        top: 0;
        transform: translateY(-100%);
        transition: transform .5s ease;
    }
    .menu__list.menu--active {
        transform: translateY(0);
    }

}

@media (max-width: 870px) {
    .about__progress-text {
        font-size: 28px;
    }
    .about__progress-img {
        width: 100%;
        object-fit: cover;
        height: 350px;
    }
    .about__progress-box {
        flex-wrap: wrap;
    }
    .about__stats {
        flex-wrap: wrap;
    }
    .products__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .slogan__title {
        font-size: 64px;
    }
    .slogan__img {
        margin-top: -35px;
    }
    .footer__top {
        padding-top: 0;
    }
}

@media (max-width: 790px) {
    .footer__top {
        flex-wrap: wrap;
    }
    .footer__logo {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 680px) {
    .about__stats-item {
        width: 100%;
        border-bottom: 1px solid #0E0D0D;
        padding-bottom: 10px;
    }
    .blog__item-small {
        gap: 20px;
        flex-wrap: wrap;
    }
    .partners__box-text {
        padding: 20px;
    }
    .partners__box-top {
        flex-wrap: wrap;
    }
    .partners__box-top img {
        width: 100%;
    }
    .partners__box-list {
        margin-top: 120px;
    }
}

@media (max-width: 560px) {
    .footer__element {
        width: 100%;
        margin-bottom: 30px;
    }
    .footer__bottom {
        display: block;
    }
    .footer__bottom-item {
        margin-bottom: 10px;
    }
}

/* ============================
   SCROLL TO TOP BUTTON
============================ */
.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2a531 0%, #e08a14 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease, box-shadow .35s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(242, 165, 49, 0.35);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 32px rgba(242, 165, 49, 0.5);
}

.scroll-top svg {
    width: 22px;
    height: 22px;
}

/* ============================
   ANIMATED BURGER MENU
============================ */
.menu__btn span {
    transition: transform .35s ease, opacity .25s ease;
    transform-origin: center;
}

.menu__btn.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu__btn.is-active span:nth-child(2) {
    opacity: 0;
}

.menu__btn.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ============================
   REDUCED MOTION
============================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 510px) {
    .about {
        margin-bottom: 50px;
    }
    .about__title {
        font-size: 64px;
    }
    .about__text {
        font-size: 18px;
    }
    .about__achievements {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .about__achievement-img {
        width: 100%;
    }
    .about__achievement-imgbox {
        min-width: 100%;
    }
    .about__top {
        min-height: 440px;
    }
    .about__stats {
        margin-bottom: 30px;
    }
    .about__progress-text {
        font-size: 22px;
    }
    .about__progress-img dd {
        margin-left: 0;
        margin-top: 15px;
    }
    .products__list {
        grid-template-columns: repeat(1, 1fr);
    }
    .products__list-title {
        font-size: 24px;
    }
    .products__title {
        font-size: 24px;
    }
    .slogan {
        padding-top: 30px;
    }
    .slogan__text {
        font-size: 18px;
    }
    .partners {
        padding: 50px 0;
    }
    .partners__info-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .partners__box-list {
        padding-left: 0;
    }
    .blog__wrapper {
        padding: 50px 0;
    }
    .footer {
        padding: 50px 0;
    }
    .header__inner {
        flex-wrap: wrap;
        gap: 20px 65px;
    }
    .menu {
        order: 0;
    }
    .header__contacts {
        margin-left: auto;
    }
}

