/*
100 — ❌ Немає
200 — ✔ ExtraLight
300 — ✔ Light
400 — ✔ Regular
500 — ✔ Medium
600 — ✔ SemiBold
700 — ✔ Bold
800 — ✔ ExtraBold
 */




/* ===== СЛАЙДЕР (як було) ===== */

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 4.25vw;
}

.slider__wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex-shrink: 0;
    width: 100%;
}
.slider__dots {
    display: none;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Напівпрозорий темний оверлей поверх фото (як на макеті) */
.slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
}

/* ===== ВЕРТИКАЛЬНЕ МЕНЮ ЗЛІВА ===== */

.slider__nav {
    position: absolute;
    top: 15vw;
    left: 50px;            /* відступ зліва – підженеш під свій макет */
    /*transform: translateY(-50%); */
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.slider__nav-item {
    position: relative;
    padding-left: 3.75vw;    /* місце під кружечок/рисочку */
    font-size: 1.8vw;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
    font-weight: 800;
    font-family: 'Ysabeau', sans-serif;

}

/* ===== АКТИВНИЙ ПУНКТ ЗІ СТРІЛКОЮ ===== */

.slider__nav-item--active {
    color: #ffffff;


}

.slider__nav-item--active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.2vw;
    height: 2.2vw;
    transform: translateY(-50%);
    border-radius: 50%;
    background: transparent url("/static/main/img/component.svg") center/contain no-repeat;
    padding: 0;
}

/* hover-ефект для неактивних */
.slider__nav-item:hover {
    color: rgba(255, 255, 255, 0.9);
}



.slider__content {
    position: absolute;
    right: 0;    /* 0px від правого краю */
    bottom: 0;   /* 0px від нижнього краю */
    width: 50vw;
    color: white;
    z-index: 6;
    background: rgba(29, 29, 29, 0.5); /* ← #1D1D1D з 50% прозорості */
    text-align: left;
    padding: 2.6vw;
}

/* ГОЛОВНИЙ ЗАГОЛОВОК */
.slider__title {
    font-size: 3.1vw;
    letter-spacing: 0.05em;
    margin: 0;
    font-family: 'Ysabeau', sans-serif;
    font-weight: 100;
}

/* ПІДЗАГОЛОВОК */
.slider__subtitle {
    font-family: 'Ysabeau', sans-serif;
    font-size: 2.9vw;
    font-weight: 400;
    margin: 0 0 1.7vw 0;
    white-space: nowrap;
}

.slider__row {
    display: flex;
    align-items: center;
    gap: 35px;   /* відстань між текстом і кнопкою — підженеш */
}

/* МАЛИЙ ОПИС ПІД КНОПКАМИ */
.slider__desc {
    font-size: 1.05vw;
    opacity: 0.85;
    font-family: 'Ysabeau', sans-serif;
    font-weight: 400;
}

/* КНОПКА */



/* ===== СЕКЦІЯ ОСТАННІ ПРОЕКТИ ===== */

.projects {
    width: 100%;
    margin: 0;

}

/* ШАПКА */
.projects__header {
    background: #000000;
    color: white;
    padding: 1.6vw 2.6vw;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Сітка */
.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}

/* Карточка */
.project-card {
    position: relative;
    padding: 2.6vw 2.6vw 2.6vw 2.6vw;
    display: flex;         /* ← діти стають в один ряд */
    align-items: flex-start;
    justify-content: space-between; /* або left/right як потрібно */
    border-bottom: 1px solid rgba(139, 139, 139, 0.2);
    border-left: 1px solid rgba(139, 139, 139, 0.2);
}

/* Великі числа */
.project-card__num {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 120px;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.15);
    font-family: 'Ysabeau', sans-serif;
}

.project-card__left{
    padding-right: 0.83vw;
    width: 50%;
}

/* Заголовок */
.project-card__title {
    font-size: 2.08vw;
    font-weight: 100;
    margin: 0 0 5px 0;
    color: #000000;
    font-family: 'Ysabeau', sans-serif;
}

/* Локація */
.project-card__location {
    font-size: 0.99vw;
    margin-bottom: 1.56vw;
    color: #8B8B8B;
}



/* Список */
.project-card__info {
    display: flex;
    flex-direction: column; /* якщо потрібні рядки один під одним */
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.78vw;

}

.project-card__info li {
    display: flex;
    align-items: center;

}

.project-info-icon{
    max-width: 1.25vw;
    max-height: 1.25vw;
}

.project-info-label {

    color: #000000;
    font-size: 1.05vw;
    font-family: 'Ysabeau', sans-serif;
    font-weight: 400;
    margin-left: 0.8vw;

}

.project-info-value {
    font-size: 0.83vw;
    font-weight: 600;
    color: #000000;
    font-family: 'Inter', sans-serif;
    margin-left: auto;
}

.project-card__right {
    box-sizing: border-box;
    width: 50%;
    height: 100%;
}

.project-card__img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;      /* по вертикалі */
    justify-content: center;  /* по горизонталі */
}

.project-card__img img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}


.more-projects {
    text-align: center;
    padding: 2.6vw 0 0 0;            /* відступи зверху і знизу */
    width: 100%;

}

.more-projects__text {
    font-family: 'Ysabeau', sans-serif;
    font-size: 1.05vw;            /* підійде під макет — підженемо після */
    font-weight: 400;
    color: #000;
    margin-bottom: 1.05vw;        /* відстань між текстом і кнопкою */
    letter-spacing: 0.03em;
}

.more-projects__btn {
    display: inline-block;
    padding: 0.83vw 1.56vw;

    background: #3AAA35;        /* зелений з макету */
    color: #fff;
    text-decoration: none;

    font-family: 'Ysabeau', sans-serif;
    font-weight: 600;
    font-size: 0.84vw;

    border-radius: 40px;        /* повністю округлена кнопка */

    transition: background .2s ease;
}

.more-projects__btn:hover {
    background: #2e8c2b;        /* темніший зелений */
}


.why-us {
    margin: 0 10.6vw 5.2vw;
    padding:0;
}

.why-us__title {
    margin: 0;
    color: #000000;
    padding-bottom: 0.52vw;
}

.border-bottom {
    border-bottom: 1px solid rgba(139, 139, 139, 0.2);
}


.why-us__subtitle {
    font-family: 'Ysabeau', sans-serif;
    color: #000000;
    font-weight: 500;
    font-size: 1.56vw;
    margin-top: 0.52vw;
    margin-bottom: 3.12vw;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    width: 100%;
    gap: 1.56vw;
    box-sizing: border-box;
    align-items: stretch;
}

.why-us__item {
    position: relative;
    justify-content: space-between; /* або left/right як потрібно */
    display: flex;
    align-items: flex-start;
    gap: 1.3vw;
    max-width: 100%;
    background-color: #F9F9F9;

    padding-right: 2vw;
}

.why-us__icon {
    width: 10.4vw;
    height: auto;
    flex-shrink: 0;
}

.why-us__item-title {
    font-family: 'Ysabeau', sans-serif;
    font-size: 1.35vw;
    font-weight: 500;
    margin-bottom: 0.5vw;
}

.why-us__item-text {
    font-family: 'Ysabeau', sans-serif;
    font-size: 1.04vw;
    font-weight: 400;
    color: #8B8B8B;
}


.cta-strip__inner {
    margin-top: 2.6vw;
    padding: 2.08vw 5.2vw;             /* висота смуги */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #3AAA35;
}

/* Текст зліва */
.cta-strip__text {
    margin: 0;
    font-family: 'Ysabeau', sans-serif;
    font-size: 1.56vw;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
}

.cta-strip__typing {
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    padding-right: 5px;
    white-space: nowrap;
    animation: cursorBlink 0.7s infinite;
}

@keyframes cursorBlink {
    0% { border-color: rgba(255, 255, 255, 0.7); }
    50% { border-color: transparent; }
    100% { border-color: rgba(255, 255, 255, 0.7); }
}

/* Кнопка справа — прозорий фон, білий бордер */
.cta-strip__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6vw;
    padding: 0.6vw 1.8vw;
    border-radius: 999px;
    border: 1px solid #FFFFFF;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Ysabeau', sans-serif;
    font-weight: 500;
    font-size: 0.84vw;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

/* ховер — легке заповнення */
.cta-strip__btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* іконка всередині кнопки */
.cta-strip__btn-icon {
    display: inline-block;
    width: 1.1vw;
    height: 1.1vw;
    background: transparent url("/static/main/img/arrow-right.svg") center/contain no-repeat;
}





/* ===== НАШІ ПОСЛУГИ ===== */

.services {
    margin-top: 5.2vw;
}

/* темна смуга з заголовком */
.services__header {
    background: #2B1515;          /* підженеш під макет */
    color: #FFFFFF;
    padding: 1.6vw 10.6vw;
    height: 8.17vw;
    display: flex;               /* 🔥 робимо flex */
    align-items: center;
}


.services__panels {
    display: flex;
    height: 45.5vw;
    overflow: hidden;
}

/* БАЗОВИЙ СТАН: усі вузькі */
.services__item {
    position: relative;
    flex: 1;                      /* усі однакові */
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #FFFFFF;
    background-size: cover;
    background-position: center;
    transition:
        flex 1.25s ease,
        transform 1.25s ease;
}

/* затемнення */
.services__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 1.3s ease;
}

/* ПІДПИС ПО ВЕРТИКАЛІ (видно завжди в “закритому” стані) */
.services__label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    font-family: 'Ysabeau', sans-serif;
    font-size: 1.56vw;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* КОНТЕНТ, який показуємо тільки коли панель “відкрита” */
.services__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.6vw;
    padding: 0 3.1vw;
    color: #FFFFFF;
    font-family: 'Ysabeau', sans-serif;

    display: flex;
    justify-content: flex-start;

    opacity: 0;
    transform: translateY(20px);
    /* ❗ без затримки — просто плавна анімація */
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.services__content-inner {
    width: 52vw;            /* 🔹 стабільна ширина блоку з текстом */
    max-width: 52vw;       /* щоб на дуже великих екранах не розлазилось */
}

/*  🔥 HOVER-СТАН: панель розширюється, фон змінюється, текст зʼявляється */
.services__item:hover {
    flex: 3;                      /* ця панель стає широкою */
}

.services__item:hover .services__content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;  /* спочатку картка розкрилась, потім текст виплив */
}


.services__item:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* вертикальний напис зникає */
.services__item:hover .services__label {
    opacity: 0;
}

/* контент зʼявляється */
.services__item:hover .services__content {
    opacity: 1;
    transform: translateY(0);
}

/* заголовок усередині */
.services__title {
    font-size: 2.2vw;
    font-weight: 300;
    margin: 0 0 0.8vw 0;
}

/* опис */
.services__text {
    font-size: 1.1vw;
    font-weight: 300;
    margin: 0 0 1.7vw 0;
}

/* кнопки */
.services__buttons {
    display: flex;
    gap: 1vw;
}

.services__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Ysabeau', sans-serif;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    gap: 0.52vw;
    padding: 0.63vw 1.25vw;
    background: #3aaa35;
    color: #fff;
    border-radius: 2.08vw;
    font-size: 0.83vw;
    font-weight: 600;
    height: 2.86vw;
    text-decoration: none;

}


/* прозора біла */
.services__btn--ghost {
    border: 1px solid #FFFFFF;
    background: transparent;
    color: #FFFFFF;
}

.services__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* ПРИКЛАД привʼязки картинок для кожної панелі */
.services__item--1 {
    background-image: url("/static/main/img/service-1.webp");
}

.services__item--2 {
    background-image: url("/static/main/img/service-2.webp");
}

.services__item--3 {
    background-image: url("/static/main/img/service-3.webp");
}

.services__item--4 {
    background-image: url("/static/main/img/service-4.webp");
}



/* ===== БЛОК "БЕЗКОШТОВНИЙ ЗАМІР" ===== */

.mobile-order-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6vw; /* по бажанню */
}

.measure {
    margin: 9.2vw 10.6vw 0;
    position: relative;
    /* ВАЖЛИВО: не ставимо overflow: hidden */
}

/* Фон + загальний контейнер */
.measure__inner {
    position: relative;
    background: url("/static/main/img/measure-bg.svg") center/cover no-repeat;
    min-height: 18vw;              /* підженеш під макет */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 3vw 4vw;
    overflow: visible;             /* ✅ дозволяємо контенту вилізати */
}

.measure__man {
    position: absolute;
    left: 3vw;                     /* підженеш по макету */
    bottom: 0;                  /* опускаємо трохи вниз, */
    height: 130%;                  /* робимо вищим за блок */
    object-fit: contain;
    z-index: 2;
    pointer-events: none;          /* щоб не заважав клікам по формі */
}



/* права частина з формою */
.measure__content {
    z-index: 3;
    width: 40vw;                   /* приблизно як у макеті */
    color: #fff;
    font-family: 'Ysabeau', sans-serif;
}
.measure__title {
    margin: 0 0 0.8vw 0;
    line-height: 1.2;
    letter-spacing: 0;
}

.measure__title-light {
    font-weight: 700;        /* тонший */
    display: inline-block;
    margin-right: 0.6vw;
}

.measure__title-bold {
    display: inline-block;
}

.measure__subtitle {
    font-size: 1.88vw;
    font-weight: 400;
    margin: 0 0 2vw 0;
}

.measure__label {
    font-size: 1.15vw;
    font-weight: 400;
    margin: 0 0 0.9vw 0;
}

/* форма */
.measure__form {
    display: flex;
    flex-direction: column;
    gap: 1.3vw;       /* відстань між рядами */
    width: 100%;
}

/* Рядок з двома полями */
.measure__row {
    display: flex;
    gap: 1vw;          /* відстань між Ім’я та Телефон */
}

/* Контейнер для поля */
.measure__field {
    flex: 1;           /* поля однакової ширини */
}

/* Інпут */
.measure__input {
    width: 100%;
    padding: 0.8vw 1.1vw;
    border: 1px solid rgba(255,255,255,1);
    background: transparent;
    border-radius: 2vw;
    font-family: 'Inter', sans-serif;
    font-size: 0.94vw;
    color: #fff;
    outline: none;
}

.measure__input::placeholder {
    color: rgba(255, 255, 255, 1);
}

.measure__input:focus {

    outline: 2px solid #ffffff;


}

/* кнопка */



/* ===== РОБИМО ЗВІТ ===== */

.report {
    margin: 0 25.1vw 7vw;      /* так само як інші секції по сітці */
}

.report__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.56vw;
    padding: 0 1vw;
}

.report__text {
    flex: 0 0 40%;             /* ліва колонка */
    font-family: 'Ysabeau', sans-serif;
    color: #000000;
    min-width: 56%;
}

.report__title {
    margin: 0 0 0.6vw 0;
    text-transform: uppercase;
}

.text-accent {
    color: #3AAA35;
}

.report__subtitle {
    margin: 0 0 2vw 0;
    font-size: 1.87vw;
    font-weight: 500;
}

.report__subtitle-accent {
    color: #3AAA35;
}

.report__paragraph {
    margin: 0 0 0.9vw 0;
    font-size: 1.15vw;
    font-weight: 400;
    color: #000000;
}
.report__paragraph-bottom{
    margin: 0 0 0.9vw 0;
    font-size: 1.15vw;
    font-weight: 400;
    color: #8B8B8B;
}

/* права колонка з телефоном */
.report__image {
    flex: 40%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.report__image img {
    max-width: 100%;
    height: auto;
    display: block;
}



/* ===== СЕКЦІЯ "ДІЗНАЙСЯ ВАРТІСТЬ" ===== */

.cost {
    position: relative;
    background: url("/static/main/img/cost-bg.svg") center/cover no-repeat;
    color: #FFFFFF;
}

/* затемнення поверх фото */
.cost::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(46, 45, 43, 0.2);   /* #2E2D2B з 80% прозорості */
    pointer-events: none;
}
.cost__inner {
    position: relative;          /* щоб перекрити псевдоелемент */
    padding: 5.2vw 10.6vw 5.2vw;   /* бокові відступи як у інших секцій */
}

/* сама напівпрозора "карточка" з питаннями */
.cost__box {
    background: rgba(46, 45, 43, 0.6);   /* #2E2D2B 60% */
    padding: 2vw 3.1vw;
    border-radius: 0;
    font-family: 'Ysabeau', sans-serif;
}

/* заголовки */
.cost__title {
    font-weight: 100;
    padding: 0 0 0.52vw 2.1vw;
    border-bottom: 1px solid rgba(245, 245, 245, 0.25);
    margin: 0 0 0.8vw 0;
}

.cost__subtitle {
    font-size: 1.56vw;
    font-weight: 400;
    margin: 0 0 3.1vw 2.1vw;
}

.cost__question {
    font-size: 1.15vw;
    font-weight: 500;
    margin: 0 0 0.6vw 0;
}

.cost__note {
    font-size: 0.88vw;
    opacity: 0.8;
    margin: 0 0 1.4vw 0;
}

/* форма */
.cost__form {
    display: flex;
    flex-direction: column;
    gap: 1.05vw;
}

.cost__step {
    display: flex;
    flex-direction: column;
    gap: 1.05vw;
}

/* один пункт */
.cost__option {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    cursor: pointer;
    font-size: 0.94vw;
    margin-bottom: 1.05vw;
}

.cost__nav {
    gap: 2.3vw;
    margin-top: 1.05vw;
}

.cost__contact-row{
    width: 40vw;
}

/* ховаємо стандартний радіо */
.cost__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* коло */
.cost__option-mark {
    width: 0.94vw;
    height: 0.94vw;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
}

/* зелена крапка, коли вибрано */
.cost__option input:checked + .cost__option-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #3AAA35;
}

/* текст поруч із радіо */
.cost__option-text {
    font-family: 'Ysabeau', sans-serif;
    color: #FFFFFF;
    font-size: 1.25vw;
    font-weight: 600;
}

.cost__option input:checked ~ .cost__option-text {
    color: #3AAA35;   /* або будь-який інший колір */
}


.cost__form .slider__btn{
    width: fit-content
}


.cost__btn:hover {
    background: #2e8c2b;
}



/* ===== ВІД ІДЕЇ ДО ГОТОВОГО РЕМОНТУ (BEFORE/AFTER) ===== */

.ba-section {
    margin: 5.2vw 2.6vw 0;

}

.ba-section__title {
    font-family: 'Ysabeau', sans-serif;
    font-size: 2vw;
    font-weight: 100;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1vw 0;
}

.ba-section__subtitle {
    font-family: 'Ysabeau', sans-serif;
    font-size: 1.15vw;
    font-weight: 400;
    color: #000;
    margin: 0 0 2.6vw 0;
}

/* ДВА СЛАЙДЕРИ ПОРУЧ */

.ba-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6vw;
}

/* КОНТЕЙНЕР ОДНОГО СЛАЙДЕРА */

.ba-slider {
    --ba-pos: 50%; /* позиція лінії, по замовчуванню 50% */

    position: relative;
    width: 100%;
    /* БЕЗ aspect-ratio, висота піде від нижнього зображення */
    cursor: ew-resize;
    overflow: hidden;
}

/* СТЕК КАРТИНОК */

.ba-slider__images {
    position: relative;
    width: 100%;
}

/* БАЗОВИЙ ШАР (ПІСЛЯ) – В НОРМАЛЬНОМУ ПОТОЦІ */
.ba-slider__img--after {
    position: relative;   /* НЕ absolute */
    z-index: 1;
}

/* ВЕРХНІЙ ШАР (ДО) – ПОВЕРХ, ABSOLUTE + CLIP-PATH */
.ba-slider__img--before {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: polygon(
        0 0,
        var(--ba-pos) 0,
        var(--ba-pos) 100%,
        0 100%
    );
}

/* ЗАГАЛЬНІ СТИЛІ ДЛЯ IMG */

.ba-slider__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Вертикальна лінія та кружок */

.ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--ba-pos);
    transform: translateX(-50%);
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* кліки ловить контейнер */
}

.ba-slider__handle-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: #ffffff;
    opacity: 0.9;
}

.ba-slider__handle-circle {
    position: relative;
    width: 2.55vw;     /* розмір зеленого круга */
    height: 2.55vw;
    background-color: #3AAA35;
    border-radius: 50%;
    border: 3px solid #ffffff;


    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-slider__icon {
    width: 1.45vw;   /* ← ТУТ керуєш шириною іконки */
    height: auto;   /* ← Пропорції */
}


/* Підписи "До ремонту" / "Після" */

.ba-slider__labels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;

    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.ba-slider__label {
    font-family: 'Ysabeau', sans-serif;
    font-size: 0.84vw;
    font-weight: 600;
    padding: 0.83vw 1.56vw;
    width: 10.4vw;
    text-align: center;
}

.ba-slider__label--before {
    border-top-right-radius: 35px;
    background: #000000;
    color: #ffffff;
}

.ba-slider__label--after {
    border-top-left-radius: 35px;
    background: #ffffff;
    color: #000000;
}



/* ===== ПРО НАС ===== */

.about {
    margin: 6vw 10.6vw 8vw;
    display: flex;
    align-items: center;
    gap: 4vw;
}

.about__image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__image-desktop {
    max-width: 100%;
    height: auto;
    display: block;
}

.about__image-mobile{
    display: none;
}

.about__content {
    flex: 1;
    font-family: 'Ysabeau', sans-serif;
    color: #000000;
}


.about__subtitle-accent {
    color: #3AAA35; /* фірмовий зелений */
    font-weight: 500;
}


/* Кнопка "ДЕТАЛЬНІШЕ ПРО НАС" */
.about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8vw 2.4vw;

    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: transparent;

    font-family: 'Ysabeau', sans-serif;
    font-size: 0.84vw;
    font-weight: 500;
    text-decoration: none;
    color: #000000;

    margin-top: 1.8vw;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about__btn:hover {
    background: #3AAA35;
    border-color: #3AAA35;
    color: #FFFFFF;
}





