
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #000;
    --secondary-accent: #F6CF00;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

h1 {
    font-size: 50px;
    line-height: 60px;
}

h2 {
    font-size: 24px;
    line-height: 40px;
}
h3 {
    font-size: 28px;
    line-height: 32px;
}
h4 {
    font-size: 22px;
    line-height: 100%;
}
h5 {
    font-size: 18px;
    line-height: 26px;
}
h6 {
    font-size: 16px;
    line-height: 26px;
}

p {

    font-size: 16px;
    line-height: 26px;
}
.toggle-text {
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
}


.input-group {
    position: relative;
    width: 48%;
}

.input-group input {
    width: 100%;
    /*padding: 20px 12px 6px 12px;*/
    border: none;
    /*border-radius: 12px;*/
    /*background: #f9f9f9;*/
    /*font-size: 16px;*/
    /*outline: none;*/
    /*width: 100%;*/
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 18px;
    color: #777;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 12px;
    color: #000;
}



.review-card__text.truncated {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* показати 2 рядки */
    -webkit-box-orient: vertical;
}

section {
    scroll-margin-top: 80px;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: #F6CF00;
    color: var(--secondary-color);
    box-shadow: var(--shadow);
    font-size: 14px;
}
.btn--secondary {
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #f6cf00;
    border-radius: 6px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 11px 15px;
    display: flex;
    font-weight: 700;
    gap: 10px;
    font-size: 14px;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn--large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    background: rgba(255,255,255,.8);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* If admin bar is visible, push down fixed header */
.admin-bar .site-header {
    top: 32px; /* height of admin bar on desktop */
}
.lang-switch {
    display: flex;
    align-items: center;
    border: 4px solid #f1c40f;
    border-radius: 50px;
    padding: 6px;
    background-color: white;
    width: 100px;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    overflow: hidden; /* опціонально */
}


.lang-switch span {
    width: 50%;
    text-align: center;
    font-weight: bold;
    z-index: 2;
    color: black;
    user-select: none;

}

.lang-switch .circle {
    position: absolute;
    top: 2px;
    left: 5px;
    width: 40px;
    height: 33px;
    background-color: #f1c40f;
    border-radius: 20px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.lang-switch.active .circle {
    transform: translateX(42px); /* або 100% залежно від ширини */
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header__logo {
    font-family: 'Unbounded', sans-serif;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 5px;
}
.header__logo img {
    width: 150px;
    height: auto;
}
.header__buttons {
    display: flex;
    gap: 5px;
}



.header__logo-text {
    margin-right: 8px;
}

.header__logo-icon {
    color: var(--primary-color);
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
    font-size: 16px;
}

.nav__link:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    background: #F6CF00;
    border-radius: 10px;
}

.burger__line {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 0;
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;

}

.swiper-hero {
    overflow: hidden;
    position: relative;
}
.swiper-hero .swiper-button-prev {
    left: calc(100% - 120px)!important;
    top: calc(100% - 80px);

}
.swiper-hero .swiper-button-next {
    right: 10px!important;
    top: calc(100% - 80px);
}
.swiper-scrollbar {
    display: none;
}
.swiper-pagination {
    bottom: -50px!important;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-accent);
}

.hero__content {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}
.hero .hero__content .hero__title img {
    margin-bottom: 15px;
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
}
.hero-2 .hero__content img {
    margin-bottom: 8px;
}
.hero__text {
    width: 60%;
}
.hero_title {
    display: flex;
    gap: 10px;
    align-items: start;
    -webkit-line-clamp: 4;
}

.hero__title {
    font-size: 70px;
    margin-bottom: 10px;
    line-height: 64px;
    font-weight: 800;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.hero-2 .hero__text {
    width: 100%;
}
.hero-2 .hero__title {
    font-size: 50px;
    margin-bottom: 10px;
    line-height: 64px;
    font-weight: 800;
    display: -webkit-box;
    -webkit-box-orient: vertical;

}
.hero-2 .hero__title-accent {
    font-size: 50px;
    line-height: 64px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--secondary-color);
    text-shadow: 2px -2px 0 var(--secondary-accent);
}

.hero__title-accent {
    font-size: 60px;
    line-height: 64px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--secondary-color);
    text-shadow: 3px -3px 0 var(--secondary-accent);

}
.section-header__title .hero__title-accent {
    font-size: 50px;
    line-height: 70px;

}

.section-header__title img {
    margin-bottom: 8px;
    width: 16px;
    max-width: 16px;
    max-height: 16px;
}
.hero__subtitle {
    font-size: 30px;
    color: #000;
    line-height: 40px;
    margin-bottom: 2rem;
    text-align: right;
}

.features {
    margin-bottom: 3rem;
}

.features__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .5rem;
}

.features__icon img{
    width: 85px;
    height: 85px;
}

.features__text {
    display: flex;
    flex-direction: column;
    color: #000;
}

.features__title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.features__desc p{
    color: #000;
    font-size: 18px;
    line-height: 26px;
}
.hero__consultation {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: -20px;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px
}
.consultation__title {
    font-size: 34px;
    line-height: 40px;
}
.consultation__p {
    font-size: 16px;
    line-height: 26px;
    color: #606268;
}

.form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form__input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid #f6f6f6;
    border-radius: 6px;
    font-size: 16px;
    background: #f6f6f6;
    transition: var(--transition);
}

.form__input:focus, input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__submit {
    min-width: 200px;
}

.hero__image {
    position: absolute;
    right: 0;
}


.hero__img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -50px;
}


/* Section Header */
.section-header {
    text-align: center;
    /*margin-bottom: 3rem;*/
}

.section-header__title {
    font-size: 50px;
    line-height: 70px;
    font-weight: 800;
    margin-bottom: 25px;
}


.section-header__subtitle {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    color: #000;
    text-align: left;
    margin: 30px 0;
}

/* Services Section */
.services {
    padding: 180px 0 80px;
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.services__grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.card {
    width: 24%;
    background: #f6f6f6;
    padding: 20px 10px;
    border-radius: 20px;
    /*box-shadow: var(--shadow);*/
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*.card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 8px 30px rgba(0,0,0,0.15);*/
/*}*/
.card__num {
    color: #606268;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 40px;
    font-weight: 300;
}
.card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card__title {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-image: url("../img/bgwhy.png");
    background-color: #F6F6F6;
}

.why-choose__content {
    display: flex;
    align-items: center;
    background-image: url("../img/why.png");
    background-size: contain;
    background-position: bottom right -50px;
    background-repeat: no-repeat;
}

.why-choose__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.why-choose__accent {
    color: var(--primary-color);
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 67%;
    justify-content: space-between;
    margin-top: 40px;
}

.stats__item {
    width: 49%;
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--bg-color);
    z-index: 2;
}
.stats__item:last-child {
    width: 100%;
}


.stats__number {
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}
.stats__img {
    width: 205px;
    height: 205px;
    background: #f6f6f6;
    position: absolute;
    top: -95px;
    right: -95px;
    border-radius: 50%;
    z-index: 1;
}
.stats__item img {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;

}
.stats__desc {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.stats__badge {
    background: var(--gradient);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.why-choose__img {
    width: 100%;
    height: auto;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--bg-color);
}


.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    transition: var(--transition);
    background-image: url("../img/bg-services.png");
    background-position: top right;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 20px;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.product-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-card__desc {
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;

}

.reviews__tab {
    display: none;
    position: relative;
}
.reviews__tab.active {
    display: block;
}
.swiper_rev {
    overflow: hidden;
}
.swiper_rev .swiper-button-prev {
    left: -60px!important;
    top: 50% !important;

}

.swiper_rev .swiper-button-next {
    right: -60px!important;
    top: 50% !important;
}
    /* (опціонально) стилі активної платформи */
.platforms__item.active {
    outline: 2px solid var(--primary-color); /* або будь-який ефект */
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #F6CF00;
}
.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    border: 2px solid #E6E6E6;
    border-radius: 50%;
}
.swiper-button-next{
    right: 0;
    background: #fff;
}
.swiper-button-prev {
    left: 0;
    background: #fff;
}
.swiper-button-next:after {
    display: flex;
    align-items: center;
    justify-content: center;
    content: url('../img/next.svg');
    font-size: unset;
    margin-top: 2px;
}
.swiper-button-prev:after {
    display: flex;
    align-items: center;
    justify-content: center;
    content: url('../img/prev.svg');
    margin-top: 2px;
    font-size: unset;
}

.platforms {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.platforms__item {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 3px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid #FFF;
    cursor: pointer;
}

.platforms__item .rating img {
    width: 13px;
    height: 13px;
}

.rating_link {
    display: flex;
    gap: 15px;
    align-items: center;
}
.rating_link a {
    border-radius: 6px;
    border: 2px solid transparent;
    background: #F6F6F6;
    transition: 1s ease;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rating_link a img {
    width: 90px;
    height: auto;
}
.rating_link a:hover {
    border: 2px solid #F6CF00;

}




.review-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.review-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
hr {
    margin: 20px 0;
    background-color: #E6E6E6;
    border: none;
    height: 1px;
}
.review-card__info {
    width: calc(100% - 80px);
}
.review-card__info a {
    color: #000;
}
.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
}
.review-card__avatar img {
    width: 100%;
    height: auto;
}

.review-card__name {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-card__rating {
    font-size: 0.9rem;
}
.review-card__footer {
    display: flex;
    flex-direction: column;
    gap: 30px
}
.review-card__footer .toggle-text {
    color: #F6CF00;
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
}
.review-card__text {
    color: #606268;
    font-size: 14px;
    line-height: 22px;
}



/* Cases Section */
.cases {
    padding: 80px 0;
    background: var(--bg-color);
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-card {
    background: var(--bg-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-image: url("../img/bg-services.png");
    background-position: top right;
    background-repeat: no-repeat;
    padding: 30px 20px;
    border-radius: 20px;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.case-card.case__card-last{
    background: #F6CF00;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}
.case-card .rectangle {
    background-color: #f6cf00;
    border-radius: 0 5px 5px 0;
    width: 5px;
    height: 27px;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 10;
}

/*.case-card:hover {*/
/*    transform: translateY(-3px);*/
/*}*/

.case-card__title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.case-card__metrics {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.case-card__metric {
    display: flex;
    justify-content: space-between;
}

.case__card-last .case-card__metric {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.case-card__label {
    color: #000;
    font-size: 14px;
    line-height: 22px;
}



.cases__cta {
    text-align: center;
}


.modal .cta {
    padding: 0;
    background-image: none;
    background-color: transparent;
}


/* CTA Section */
.cta {
    padding: 80px 0;
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;
}
.cta .cta__text {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 10px;


}
.cta .cta__image {
    width: 34%;
}
.cta .cta__image img {
    width: 100%;
    height: auto;
}
.cta .section-header__title {
    font-size: 40px;
    line-height: 50px;
    text-align: left;
}
.cta .section-header__title .hero__title-accent {
    font-size: 40px;
    line-height: 50px;
}
.cta .consultation__form {
    width: 80%;
}
.cta .consultation__form input,  .cta .consultation__form button{
    width: 48%;
    flex: none;
}
.cta .consultation__form input {
    background: #fff;
    border: 1px solid #f6f6f6;
}

.cta__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta__title {
    font-size: 2rem;
    text-align: left;
}

.cta__accent {
    color: var(--primary-color);
}

.cta__illustration {
    font-size: 5rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-color);
}
.faq.with-background {
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;
}
.faq.with-image {
}
.accordion__item {
    border-bottom: 1px solid var(--border-color);
}

.accordion__header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}
.accordion__header h4 {
    color: #000;
}
.accordion__icon {
    font-size: 30px;
    font-weight: 300;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6CF00;
    border-radius: 50%;
    transition: 1s ease;
    position: relative;
    color: #000;
}
.accordion__icon:before {
    color: #000;
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.accordion__item.active .accordion__icon:before {
    content: '-';
    margin-top: -2px;
}

.accordion__content {
    max-height: 0px;
    overflow: hidden;
    /*transition: max-height .3s ease-in-out;*/
}

.accordion__content p {
    padding: 0 0 1.5rem 0;
    line-height: 1.6;
    color: #000;
}
.accordion__content ul {
    padding: 10px 0px 10px 20px;
}
.accordion__content li {
    list-style-type: circle;
}

/*.accordion__item.active .accordion__icon {*/
/*    transform: rotate(45deg);*/
/*}*/

.accordion__item.active .accordion__content {
    max-height: 100%;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--bg-color);
    padding: 3rem 0 1rem;
}

.footer__content {
    margin-bottom: 2rem;
}
.footer__left {
    display: flex;
    justify-content: space-between;
}
.footer__nav {
    padding: 0 20px;
}
.footer__nav .nav__list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff
}
.footer__nav .nav__list a{
    color: #fff;
}
.footer__nav .nav__list a:hover {
    color: #F6CF00;
}
.footer__logo {
    display: flex;
    align-items: start;
    font-size: 24px;
    font-weight: 700;
}
.footer__logo img {
    width: 150px;
    height: auto;
}

.footer__logo-text {
    margin-right: 8px;
}

.footer__logo-icon {
    color: var(--primary-color);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px
}
.footer__contact .image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;

}
.footer__contact svg{
    width: 12px;
    height: 12px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.footer__phone {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.footer__phone a {
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    text-align: left;
}
.footer__phone a:hover {
    color: #F6CF00;
}
.social {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    width: 200px;
}
.social__link-wr {
    flex: 1 0 21%;
    display: flex;
    justify-content: center;
}
.social__link {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    color: #fff;
    position: relative;
}

.social__link:hover {
    background: var(--primary-color);
}


/* Базові розміри + наслідуємо колір тексту */
.social__link .icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    fill: #6b7280;   /* сірий */
    /* або: fill: currentColor; — не обов'язково, бо елементи вже currentColor */
}


.footer__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__buttons .btn--secondary {
    background: #333333;
    color: #fff;
}
.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer__copyright {
    color: var(--text-light);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;

}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.modal__content {
    position: relative;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;
}

.modal__close {
    text-align: right;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #000;
    width: 100%;
}

.modal__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.modal__form {
    margin-top: 20px;
}
.modal__content img.frame {
    width: 100%;
    height: auto;
    margin: 20px 0;
}
.modal__form .form__input,
.modal__form .form__submit {
    width: 100%;
    margin-bottom: 1rem;
    padding: 20px;
}

.form__textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: var(--transition);
}

.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.swiper-slide {
    overflow: hidden;
}
.mob-true {
    display: none;
}
.header__nav .header__buttons, .header__nav hr {
    display: none;
}


/*ROI*/

.hero-2 {
    padding: 120px 0 80px;
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;
    /*position: relative;*/
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    gap: 10px;
    color: #444;
    margin-bottom: 30px;
}
.breadcrumbs li {
    list-style-type: none;
    display: flex;
    gap: 15px;
    align-items: center;
}
.breadcrumbs li:first-child:after {
    content: url("../img/arrow.svg");
    font-size: 0px;
}


.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #777;
}

.breadcrumb__item:hover {
    text-decoration: underline;
}

.breadcrumb__icon {
    width: 18px;
    height: 18px;
}

.breadcrumb__separator {
    color: #999;
    font-size: 20px;
}

.breadcrumb__current {
    font-weight: 500;
    color: #000;
}

.roi-calc {
    padding: 80px 0;
}

.decomposition-calc {
    padding: 40px 0!important;
}

.roi-calc .calculator {
    background: white;
    border-radius: 10px;
}
.roi-calc .calculator-header {
    background: #FFD600;
    padding: 15px 20px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}
.roi-calc .calculator-header small {
    font-size: 14px;
    line-height: 14px;
    color: #000;
    font-weight: 400;
}
.roi-calc .inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.roi-calc .inputs .input-field {
    background: #f6f6f6;
    border-radius: 6px;
    width: 32%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px
}
.roi-calc .inputs .input-field span {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
    color: #000;
}
.roi-calc .inputs .input-field input {
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #606268;
    background: transparent;
    transition: .3s ease;
}
.roi-calc .inputs .input-field input:focus {
    color: #000;
}
.roi-calc .buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.roi-calc .buttons button {
    padding: 20px 40px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.roi-calc .buttons .reset {
    background: #fff;
    border: 2px solid var(--secondary-accent);
    color: #000;
}
.roi-calc .buttons .calculate {
    background: #FFD600;
    color: #000;
}
.roi-calc .results {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
}
.roi-calc .result-card {
    background-image: url(../img/bg-services.png);
    background-position: top right;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 20px;
    background-color: #f6f6f6;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 30%;
}
.roi-calc .result-card:nth-last-child(2) {
    width: 48%;
}
.roi-calc .result-card:last-child {
    width: 48%;
}
.roi-calc .result-card .result-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.roi-calc .result-label {
    display: inline-block;
    background: #FFD600;
    padding: 4px 10px;
    font-weight: bold;
    border-radius: 4px;
}
.roi-calc .result-value {
    font-size: 35px;
    font-weight: bold;
}
.roi-calc .result-desc {
    font-size: 16px;
    line-height: 26px;
    color: #000;
}


.faq-wr {
    display: flex;
    justify-content: space-between;
}
.faq__left {
    width: 60%;
}
.faq__right {
    width: 30%;
}
.faq__right img {
    width: 100%;
    height: auto;
}

.products.roi-excel .product-card__desc{
    font-size: 14px;
    line-height: 22px;
    color: #606268;
}
.products.roi-excel {
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;
}
.products.roi-excel .product-card {
    background-image: none;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}


.products.roi-excel .rectangle {
    background-color: #f6cf00;
    border-radius: 0 5px 5px 0;
    width: 5px;
    height: 48px;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 10;
}

.products.roi-excel .number {
    font-size: 80px;
    line-height: 80px;
    color: rgba(0,0,0,.05);
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}
.products.roi-important .products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.products.roi-important .product-card {
    background-image: none;
    padding: 20px;
    border-radius: 20px;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 20px;
}
.products.roi-important .product-card img {
    width: 50px;
    height: 50px;
}
.products.roi-important .product-card span {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    display: inline-block;
}
.what-roi {
    padding: 80px 0;
}
.what-roi .hero_title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.what-roi .what-roi-wr {
    display: flex;
    gap: 40px;
}
.what-roi .hero_title, .what-roi .formula {
    width: 48%;
}
.what-roi .formula {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 20px;
    font-family: sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.what-roi .formula__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.what-roi .formula__label {
    font-weight: bold;
    font-size: 18px;
    min-width: 60px;
}

.what-roi .formula__body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 18px;
}

.what-roi .fraction {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: bold;
}

.what-roi .fraction .top {
    border-bottom: 2px solid #000;
    padding: 0 4px 2px;
}

.what-roi .fraction .bottom {
    padding-top: 2px;
}

.what-roi .multiply {
    margin-left: 10px;
    font-weight: bold;
}

.roi-example {
    background-image: url(../img/bgwhy.png);
    background-color: #F6F6F6;
    padding: 80px 0;
}

.roi-example .roi-example-wr {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.roi-example .roi-example-wr .roi-example__desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 48%;
}
.roi-example .roi-example-wr .roi-example__slider {
    width: 48%;
    position: relative;
}
.roi-example .roi-example-wr .roi-example__slider .swiper-example {
    overflow: hidden;

}
.roi-example .roi-example-wr .roi-example__slider .example-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}
.roi-example .roi-example-wr .roi-example__slider .example-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.roi-example .roi-example-wr .roi-example__slider .example-card__top .example-card__name {
    font-size: 20px;
    line-height: 20px;
}
.roi-example .roi-example-wr .roi-example__slider .number {
    font-size: 60px;
    line-height: 60px;
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--secondary-color);
    text-shadow: 2px -2px 0 var(--secondary-accent);
}
.roi-example .roi-example-wr .roi-example__slider .example-card__bottom {
    text-align: center;
}
.roi-example .roi-example-wr .roi-example__slider .example-card__bottom img {
    width: 70%;
    height: auto;
    text-align: center;
}
.roi-example .roi-example-wr .roi-example__desc p.title {
    font-size: 20px;
    line-height: 20px;
    color: #000;
    font-weight: bold;
}
.roi-example .roi-example-wr .roi-example__desc .data-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.roi-example .roi-example-wr .roi-example__desc .data-table .data-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.roi-example .roi-example-wr .roi-example__desc .data-table .data-row .data-value {
    font-weight: bold;
}
.roi-example__slider .swiper-button-prev {
    left: 20px
}
.roi-example__slider .swiper-button-next {
    right: 20px;
}

.decomposition-calc .dec-back {
    position: relative;
}
.decomposition-calc .dec-back img {
    width: 100%;
}
/* Decomposition */
.decomposition {
    width: 90%;
    position: absolute;
    top: 60px;
    left: 70px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    /* background: #F6F6F6; */
    padding: 20px;
    border-radius: 30px;
    align-items: center;
}

.decomposition .section {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*border-radius: 20px;*/
    /*overflow: hidden;*/
    padding: 0;

    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);*/
    /*border-radius: 0 0 40px 40px;*/
    position: relative;

}
.decomposition .section:nth-child(1) {
    width: 100%;
}
.decomposition .section:nth-child(2) {
    width: 88%;
}
.decomposition .section:nth-child(3) {
    width: 76%;
}
.decomposition .section:nth-child(4) {
    width: 64%;
}
.decomposition .section:nth-child(5) {
    width: 52%;
}
.decomposition .rows {
    /*border: 2px solid #fff;*/
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.decomposition .section .rows .row:nth-child(1) {
    width: 94%;
}
.decomposition .section .rows .row:nth-child(2) {
    width: 91%;
}
.decomposition .section .rows .row:nth-child(3) {
    width: 88%;
}
.decomposition .section .rows .row:nth-child(4) {
    width: 85%;
}
.decomposition .section .rows .row:nth-child(5) {
    width: 82%;
}

.decomposition .row {
    display: flex;
    gap: 10px;
    padding: 10px;
}
.decomposition .highlight {
    /*background: #FFF2AB;*/
}
.decomposition .heads-row {
    display: flex;
    gap: 10px;
    padding: 10px;
}
.decomposition .heads-row .first, .decomposition .heads-row .second{
    width: 48%;
    gap: 10px;
    display: flex;
    justify-content: space-between;

}

.decomposition .row .first, .decomposition .row .second{
    width: 48%;
    gap: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.decomposition .row .field__inf {
    position: absolute;

    color: #606268;
    /*display: flex;*/
    flex-direction: column;
    gap: 5px;
    max-width: 280px;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    z-index: 4;
    filter: drop-shadow(0px 0px 2px #000);
}
.decomposition .row .first .field__inf {
    right: 120px;
    top: -10px;
}
.decomposition .row .second .field__inf {
    left: 120px;
    top: -10px;
}
.decomposition .row .field__inf {
    display: none; /* прихована за замовчуванням */
}

.decomposition .row .field__inf.active {
    display: flex; /* показуємо коли додається клас */
}
.decomposition .row .field__inf img {
    width: 16px;
    height: auto;
}
.decomposition .row .field__inf span {
    font-size: 12px;
    line-height: 20px;
    color: #606268;
}

.decomposition .row .first label {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
}
.decomposition .row .second label {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
}
.decomposition .row input {
    border-radius: 6px;
    border: 2px solid #E6E6E6;
    font-size: 16px;
    color: #606268;
    max-width: 100px;
    padding: 4px 10px;
    transition: .3s ease;
}
.decomposition .row input:focus {
    color: #000;
    border: 2px solid #000;
}

.decomposition .decomposition-heads {
    /*background: #F6CF00;*/
    padding: 10px;
}
.decomposition .decomposition-heads span {
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
}
.decomposition-heads-mob {
    display: none;
}
@media (max-width: 1230px) {
    .decomposition {
        width: 100%;
        position: unset;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;

        padding: 0;

    }

    .dec-back img {
        display: none;
    }

    .decomposition .section {
        /*display: flex;*/
        /*flex-direction: column;*/
        /*border-radius: 20px;*/
        /*overflow: hidden;*/
        padding: 0;

        border-radius: 0 0 20px 20px;
        overflow: hidden;
        position: relative;

    }
    .decomposition .section {
        width: 100%!important;
    }
    .decomposition .rows {
        border: 2px solid #fff;
        border-top: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
        background: #f6f6f6;
        border-radius: 0 0 10px 10px;
        box-shadow: 1px 1px 10px 0px rgb(0 0 0 / 20%);
    }
    .decomposition .decomposition-heads {
        padding: 0;
    }
    .decomposition .heads-row {
        background: var(--secondary-accent);
        border-radius: 20px 20px 0 0;
        padding: 20px 10px;
    }




    .decomposition .section .rows .row {
        width: 100%!important;
    }





    .decomposition .highlight {
        background: #FFF2AB;
    }

    .decomposition .row .first label {
        font-size: 16px;
        line-height: 16px;
    }
    .decomposition .row input {
        padding: 5px 20px;
        width: 130px;
        box-sizing: content-box;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer__nav {
        padding: 0;
    }
    .footer__logo img {
        width: 100px;
    }
    .header__logo {
        margin-top: 3px;
    }
    .header__logo img {
        width: 100px;
    }
    .nav__link {
        font-size: 14px;
    }


    .cta__content {
        flex-direction: column;
        text-align: center;
    }

    .cta__title {
        text-align: center;
    }

    .why-choose__content {
        background: none;
    }

    .stats {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .stats__item {
        width: 100%;
    }
    .stats__number {
        font-size: 28px;
        line-height: 32px;
        font-weight: 700;
        color: #000;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 2;
        width: 80%;
    }
    .swiper_rev .swiper-button-prev {
        left: 20px!important;
        top: calc(100% + 40px) !important;


    }

    .swiper_rev .swiper-button-next {
        right: 20px!important;
        top: calc(100% + 40px) !important;
    }
    .footer__left {
        flex-direction: column;
        gap: 30px
    }
    .footer__buttons {
        flex-direction: row;
    }
    .footer__buttons .btn--primary {
        display: none;
    }
    .footer__buttons.mob-true .btn--primary {
        display: block;
    }
    .footer__nav {
        text-align: left;
    }

    .footer__content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .social {
        order: 6;
        width: 100%;
        gap: 10px
    }
    .hero__title {
        font-size: 30px;
        font-weight: 800;
        line-height: 34px;
    }
    .hero__title-accent {
        font-size: 34px;
        line-height: 34px;
        text-shadow: 1px 1px 0 var(--secondary-accent);
    }
    .section-header__title .hero__title-accent, .cta .section-header__title, .cta .section-header__title .hero__title-accent{
        font-size: 24px;
        line-height: 30px;
    }
    .hero__subtitle {
        text-align: left;
        font-size: 18px;
        line-height: 24px;
        width: 71%;
    }
    .features {
        width: 71%;
    }
    .cta .cta__text {
        width: 65%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .cta__image {
        display: none;
    }
    .cta .cta__text, .cta .cta__image {
        width: 100%;
    }
    .cta .consultation__form {
        width: 100%;
    }
    .cta .consultation__form input, .cta .consultation__form button {
        width: 100%;
        padding: 20px;
    }
    .section-header__title {
        font-size: 24px;
        line-height: 30px;
    }
    .hero__image {
        position: absolute;
        right: -50px;
    }
    .faq-wr {
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 30px
    }
    .faq__left {
        width: 100%;
    }
    .faq__right {
        width: 100%;
        text-align: center;
    }
    .faq__right img {
        width: 50%;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .section-header__title img {
        margin-bottom: 0px;
    }
    .burger {
        display: flex;
    }
    .header__nav, .header__lang {
        display: none;
    }

    .header__buttons {
        display: none;
    }
    .mob-true {
        display: block;
    }
    img.mob-true {
        width: 60%;
    }
    .header__nav .header__buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    .header__nav .header__buttons.start {
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 1rem;
    }
    .header__buttons .header__lang {
        display: block;
    }
    .mob-hr {
        display: block!important;
        margin: 10px 0 !important;
    }

    .roi-calc .inputs .input-field, .roi-calc .result-card {
        width: 45%!important;
    }
    .what-roi .what-roi-wr {
        flex-direction: column;
    }
    .what-roi .hero_title, .what-roi .formula {
        width: 100%;
    }
    .roi-example .roi-example-wr {
        flex-direction: column;

    }
    .roi-example .roi-example-wr .roi-example__desc {
        width: 100%;
    }
    .roi-example .roi-example-wr .roi-example__slider {
        width: 100%;
    }
    .products.roi-important .products__grid {

        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .what-roi .formula__label, .what-roi .formula__body {
        font-size: 14px;
    }






}

@media (max-width: 768px) {
    .header__logo {
        margin-top: 1px;
    }
    .decomposition .decomposition-heads span {
        font-size: 15px;
        line-height: 15px;
    }
    .decomposition .row .first label, .decomposition .row .second label  {
        font-size: 12px;
        line-height: 12px;
    }


    img.mob-true {
        width: 60%;
    }
    .card {
        width: 48%;
    }
    .hero-2 {
        padding: 100px 0 40px;
    }
    .services, .why-choose, .products, .cases, .cta, .faq , .roi-calc, .what-roi {
        padding: 40px 0 40px;
    }
    .roi-example {
        padding: 40px 0 80px;
    }
    .hero__consultation {
        margin-bottom: 0;
    }
    .reviews {
        padding: 40px 0 80px;
    }
    .consultation__title {
        font-size: 24px;
        line-height: 20px;
    }


    .hero {
        padding: 90px 0 60px;

    }
    .hero__text {
        width: 100%;
        position: relative;
        z-index: 2;
    }
    .hero__image {
        width: 46%;
        position: absolute;
        bottom: -75px;
        right: 0px;
        z-index: 1;
    }
    .hero__subtitle {
        text-align: left;
        font-size: 18px;
        line-height: 24px;
        width: 51%;
    }
    .features {
        width: 51%;
    }


    .features__icon img{
        width: 50px;
        height: 50px;
    }

    .features__desc p{
        font-size: 12px;
        line-height: 16px;
    }



    .form {
        flex-direction: column;
    }

    .form__input,
    .form__submit {
        width: 100%;
    }
    .accordion__header h4 {
        width: 80%;
        font-size: 16px;
        line-height: 26px;
        color: #000;
    }
    .btn--secondary {
        padding: 11px 8px;
        font-size: 14px;
    }
    .card {
        padding: 1rem;
    }
    .card__num {
        margin-bottom: 20px;
    }
    .card__icon {
        margin-bottom: 5px;
    }
    .card__icon img {
        width: 50px;
        height: auto;
    }
    .platforms {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-around;
    }
    .platforms__item {
        width: 150px;
    }
    .cases__grid {
        grid-template-columns: 1fr;
    }

    .case-card__metrics {
        justify-content: space-around;
    }

    .hero-2 .hero__title {
        font-size: 24px;
        line-height: 30px;

    }
    .hero-2 .hero__title-accent {
        font-size: 24px;
        line-height: 30px;
    }
    .breadcrumbs {
        font-size: 12px;
    }

    .roi-calc .calculator-header {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 15px;
    }
    .roi-calc .inputs .input-field  {
        width: 100%!important;
    }
    .roi-calc .result-card {
        width: 47%!important;
    }
    .roi-calc .result-card:last-child {
        width: 100%!important;
    }
    .roi-calc .result-card .result-block {
        flex-direction: column;
        gap: 10px;
        justify-content: start;
        align-items: start
    }
    .roi-calc .result-value {
        font-size: 34px;
    }
    .roi-calc .result-desc {
        font-size: 14px;
        line-height: 16px;
    }
    .roi-calc .buttons button {
        padding: 15px 20px;
    }
    .roi-example__slider .swiper-button-prev {
        top: calc(100% + 35px);
        background: none;
        border: none;
        left: -20px;
    }
    .roi-example__slider .swiper-button-next {
        top: calc(100% + 35px);
        background: none;
        border: none;
        right: -20px;
    }
    .hero .hero__content .hero__title img {
        margin-bottom: 3px;
    }
    .hero-2 .hero__content img {
        margin-bottom: 0px;
    }

}
@media (max-width: 600px) {
    .hero__image {
        width: 55%;
        position: absolute;
        bottom: -40px;
        right: -60px;
        z-index: 1;
    }
    .faq__right img {
        width: 70%;
        height: auto;
    }

    .decomposition .rows {
        gap: 0px;
    }
    .decomposition .section .rows .row {
        padding: 20px 10px;
    }
    .decomposition .row .second {
        position: relative;
    }
    .decomposition .row .second label {
        transform: rotate(90deg);
        width: 70px;
        word-break: break-word;
         font-size: 10px;
         line-height: 12px;
        position: absolute;
        right: -30px;
        bottom: 30px;
        text-align: right;
    }
    .decomposition .row .first label {
        font-size: 12px;
        line-height: 16px;
    }
    .decomposition .row input {
        font-size: 14px;
        line-height: 24px;
        width: 100px;
    }
    .decomposition .heads-row .first {
        width: 100%;
        justify-content: center;
    }
    .decomposition .row .first {
        width: 44%;
        gap: 10px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
    }

    .decomposition .row .second{
        width: 48%;
        gap: 10px;
        display: flex;
        justify-content: space-between;
        align-items: end;
    }
    .decomposition .heads-row .first span:nth-child(2){
        display: none;

    }
    .decomposition .heads-row .second {
        display: none;
    }
    .decomposition-heads-mob {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 20px;
    }
    .decomposition-heads-mob span {
        font-size: 14px;
        line-height: 14px;
        text-transform: uppercase;
        font-weight: bold;
    }

}
@media (max-width: 480px) {
    .hero__image {
        width: 70%;
        position: absolute;
        bottom: -50px;
        right: -60px;
        z-index: 1;
    }

}

@media (max-width: 430px) {
    .features {
        width: 55%;
    }
    .hero__subtitle {
        font-size: 14px;
        line-height: 18px;
        width: 71%;
    }
    .decomposition .section .rows .row {
        padding: 20px 10px 20px 20px;
    }

    .decomposition .row input {
        font-size: 14px;
        line-height: 24px;
        width: 80px;
    }


    img.mob-true {
        width: 80%;
    }
    .hero__image {
        width: 70%;
        position: absolute;
        bottom: -60px;
        right: -60px;
        z-index: 1;
    }
    .container {
        padding: 0 20px;
    }

    .modal__content {
        padding: 10px 10px 40px;
    }
    .faq__right img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 400px) {
    .hero__image {
        width: 70%;
        position: absolute;
        bottom: -10px;
        right: -70px;
        z-index: 1;
    }
    .features__desc p{
        font-size: 12px;
    }
}
@media (max-width: 391px) {
    .hero__image {
        width: 70%;
        position: absolute;
        bottom: -30px;
        right: -70px;
        z-index: 1;
    }
}

@media (max-width: 380px) {
    .hero__image {
        width: 70%;
        position: absolute;
        bottom: -25px;
        right: -70px;
        z-index: 1;
    }
}
@media (max-width: 370px) {
    .hero__image {
        width: 70%;
        position: absolute;
        bottom: -10px;
        right: -70px;
        z-index: 1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.stats__item,
.products__card,
.hero__text,
.card,
.review-card,
.case-card {
    animation: fadeInUp 0.6s ease-out;
}





