/* === БАЗОВЫЕ НАСТРОЙКИ === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5EFE6;
    color: #2C2C2C;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* === КОНТЕЙНЕР === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === ШАПКА === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(245, 239, 230, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 75, 42, 0.1);
    transition: all 0.3s ease;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 32px;
}

/* Логотип */
.header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 80px;
    overflow: hidden;
    position: relative;
    width: 200px;
}

.header__logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 250px;
    width: auto;
    object-fit: contain;
}

/* Навигация */
.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    font-size: 15px;
    font-weight: 500;
    color: #2C2C2C;
    position: relative;
    transition: color 0.3s ease;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7B4B2A;
    transition: width 0.3s ease;
}

.header__link:hover {
    color: #7B4B2A;
}

.header__link:hover::after {
    width: 100%;
}

/* Кнопка записи */
.header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: #7B4B2A;
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header__btn:hover {
    background-color: #5C3820;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 75, 42, 0.3);
}

/* Бургер (скрыт на десктопе) */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2C2C2C;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* === АДАПТИВ === */

/* Планшет */
@media (max-width: 1024px) {
    .header__nav {
        gap: 24px;
    }
    
    .header__link {
        font-size: 14px;
    }
    
    .header__container {
        gap: 20px;
    }
}

/* Мобильный */
@media (max-width: 768px) {
    .header__container {
        height: 70px;
    }
    
    .header__logo img {
        height: 200px;
    }
    
    .header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #F5EFE6;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(123, 75, 42, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .header__nav.active {
        transform: translateY(0);
    }
    
    .header__link {
        padding: 16px 24px;
        width: 100%;
        text-align: center;
        font-size: 16px;
    }
    
    .header__link::after {
        display: none;
    }
    
    .header__btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .header__burger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header__btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .container {
        padding: 0 16px;
    }
}
/* === КНОПКИ (универсальные) === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background-color: #7B4B2A;
    color: #FFFFFF !important;
}

.btn--primary:hover {
    background-color: #5C3820;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 75, 42, 0.3);
}

.btn--secondary {
    background-color: transparent;
    color: #7B4B2A !important;
    border: 2px solid #7B4B2A;
}

.btn--secondary:hover {
    background-color: #7B4B2A;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* === HERO === */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F5EFE6 0%, #EDE3D2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 75, 42, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Левая часть: контент */
.hero__content {
    display: flex;
    flex-direction: column;
}

.hero__badge {
    position: relative; /* Обязательно */
    z-index: 99;       /* Поднимаем над всеми слоями */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(123, 75, 42, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #7B4B2A;
    width: fit-content;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    pointer-events: auto !important; /* Гарантируем реакцию на мышь */
}

/* Делаем так, чтобы иконки и текст внутри не мешали клику */
.hero__badge * {
    pointer-events: none;
}

.hero__badge:hover {
    background-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 75, 42, 0.15);
    border-color: rgba(123, 75, 42, 0.3);
}

.hero__badge i {
    color: #D4A655;
    font-size: 14px;
}

.hero__badge-arrow {
    font-size: 10px !important;
    color: #7B4B2A !important;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.hero__badge:hover .hero__badge-arrow {
    transform: translate(2px, -2px);
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #2C2C2C;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__title-accent {
    color: #7B4B2A;
    font-style: italic;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #7B4B2A;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero__description {
    font-size: 17px;
    color: #5C5C5C;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Цифры */
.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(123, 75, 42, 0.15);
}

.hero__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #7B4B2A;
    line-height: 1;
    margin-bottom: 8px;
}

.hero__stat-label {
    font-size: 13px;
    color: #5C5C5C;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Правая часть: фото */
.hero__image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(123, 75, 42, 0.25),
        0 0 0 1px rgba(123, 75, 42, 0.05);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.hero__image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-decor {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    pointer-events: none;
}

/* === АДАПТИВ HERO === */

/* Планшет большой */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 52px;
    }
    
    .hero__container {
        gap: 50px;
    }
    
    .hero__stats {
        gap: 30px;
    }
    
    .hero__stat-number {
        font-size: 30px;
    }
}

/* Планшет */
@media (max-width: 900px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
        min-height: auto;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero__image {
        max-width: 500px;
        margin: 0 auto;
        transform: rotate(0deg);
    }
    
    .hero__title {
        font-size: 56px;
    }
}

/* Мобильный */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .hero__description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .hero__buttons {
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .hero__stats {
        flex-wrap: wrap;
        gap: 24px;
        padding-top: 32px;
    }
    
    .hero__stat-number {
        font-size: 26px;
    }
    
    .hero__stat-label {
        font-size: 11px;
    }
    
    .hero__badge {
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero__stats {
        justify-content: space-between;
        gap: 12px;
    }
    
    .hero__stat {
        flex: 1;
    }
}
/* === ОБЩИЕ СТИЛИ СЕКЦИЙ === */
section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7B4B2A;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    color: #2C2C2C;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.accent-italic {
    color: #7B4B2A;
    font-style: italic;
}

.section-subtitle {
    font-size: 17px;
    color: #5C5C5C;
    line-height: 1.6;
}

/* === УСЛУГИ === */
.services {
    background-color: #F5EFE6;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.4s ease;
    border: 1px solid rgba(123, 75, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(123, 75, 42, 0.15);
    border-color: rgba(123, 75, 42, 0.2);
}

.service-card--featured {
    background: linear-gradient(135deg, #7B4B2A 0%, #5C3820 100%);
    color: #FFFFFF;
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__price-from span,
.service-card--featured .price-row b {
    color: #FFFFFF;
}

.service-card--featured .service-card__desc,
.service-card--featured .service-card__price-from,
.service-card--featured .price-row span {
    color: rgba(255, 255, 255, 0.85);
}

.service-card--featured .service-card__icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: #F5EFE6;
}

.service-card--featured .service-card__toggle {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card--featured .service-card__toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-card--featured .service-card__prices {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.service-card--featured .price-row {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #D4A655;
    color: #2C2C2C;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(123, 75, 42, 0.08);
    color: #7B4B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card__desc {
    font-size: 14px;
    color: #6A6A6A;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__price-from {
    font-size: 14px;
    color: #6A6A6A;
    margin-bottom: 20px;
}

.service-card__price-from span {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #7B4B2A;
    margin-left: 6px;
}

.service-card__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(123, 75, 42, 0.25);
    border-radius: 50px;
    color: #7B4B2A;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card__toggle:hover {
    background-color: rgba(123, 75, 42, 0.05);
}

.service-card__toggle i {
    transition: transform 0.3s ease;
    font-size: 11px;
}

.service-card.active .service-card__toggle i {
    transform: rotate(180deg);
}

.service-card.active .toggle-text::before {
    content: 'Скрыть';
}

.service-card.active .toggle-text {
    font-size: 0;
}

.service-card.active .toggle-text::before {
    font-size: 13px;
}

.service-card__prices {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin-top 0.5s ease, padding-top 0.5s ease;
    border-top: 1px solid transparent;
}

.service-card.active .service-card__prices {
    max-height: 600px;
    margin-top: 20px;
    padding-top: 20px;
    border-top-color: rgba(123, 75, 42, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(123, 75, 42, 0.08);
    font-size: 14px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    color: #5C5C5C;
}

.price-row b {
    font-weight: 600;
    color: #2C2C2C;
    white-space: nowrap;
    margin-left: 12px;
}

/* === ДОП. УСЛУГИ === */
.services__extra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.extra-block {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(123, 75, 42, 0.08);
}

.extra-block__title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #7B4B2A;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(123, 75, 42, 0.15);
}

.extra-list {
    list-style: none;
}

.extra-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 75, 42, 0.06);
    font-size: 14px;
}

.extra-list li:last-child {
    border-bottom: none;
}

.extra-list li span {
    color: #5C5C5C;
}

.extra-list li b {
    font-weight: 600;
    color: #2C2C2C;
    white-space: nowrap;
    margin-left: 12px;
}

/* === АДАПТИВ УСЛУГ === */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services__extra {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .services__extra {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 32px;
    }
    .section-head {
        margin-bottom: 40px;
    }
    .service-card {
        padding: 28px 24px;
    }
}
/* === КАЛЬКУЛЯТОР === */
.calculator {
    background: linear-gradient(180deg, #F5EFE6 0%, #EDE3D2 100%);
}

.calc {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    background-color: #FFFFFF;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(123, 75, 42, 0.08);
    border: 1px solid rgba(123, 75, 42, 0.06);
}

.calc__form {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.calc__step-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 18px;
}

.calc__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #7B4B2A;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.calc__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calc__option {
    padding: 12px 20px;
    background-color: #F5EFE6;
    border: 1.5px solid transparent;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #2C2C2C;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    line-height: 1.2;
}

.calc__option small {
    color: #9A9A9A;
    font-weight: 400;
    margin-left: 4px;
    font-size: 12px;
}

.calc__option:hover {
    background-color: #EDE3D2;
    transform: translateY(-1px);
}

.calc__option.active {
    background-color: #7B4B2A;
    color: #FFFFFF;
    border-color: #7B4B2A;
}

.calc__option.active small {
    color: rgba(255, 255, 255, 0.7);
}

/* Результат */
.calc__result {
    position: relative;
}

.calc__result-inner {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, #7B4B2A 0%, #5C3820 100%);
    border-radius: 24px;
    padding: 40px 32px;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.calc__result {
    position: relative;
    min-height: 100%;
}

.calc__result-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 166, 85, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.calc__result-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.calc__result-price {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.calc__result-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.calc__result-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.calc__feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.calc__feature i {
    color: #D4A655;
    font-size: 13px;
}

.calc__btn {
    width: 100%;
    background-color: #FFFFFF;
    color: #7B4B2A !important;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.calc__btn:hover {
    background-color: #F5EFE6;
    color: #5C3820 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.calc__note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Анимация смены цены */
.calc__result-price.updating {
    opacity: 0;
    transform: scale(0.95);
}

/* === АДАПТИВ КАЛЬКУЛЯТОРА === */
@media (max-width: 1024px) {
    .calc {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px;
    }
    .calc__result-inner {
        position: static;
    }
}

@media (max-width: 768px) {
    .calc {
        padding: 28px 20px;
        border-radius: 24px;
    }
    .calc__result-price {
        font-size: 44px;
    }
    .calc__option {
        padding: 10px 16px;
        font-size: 13px;
    }
    .calc__option small {
        display: none;
    }
    .calc__form {
        gap: 28px;
    }
    .calc__result-inner {
        padding: 32px 24px;
    }
}
/* === ДО / ПОСЛЕ === */
.beforeafter {
    background-color: #F5EFE6;
}

.ba-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.ba-slider__track {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(123, 75, 42, 0.2);
}

.ba-slide {
    display: none;
}

.ba-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Контейнер сравнения */
.ba-compare {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    background-color: #2C2C2C;
}

.ba-compare__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Слой "До" обрезается по ширине */
.ba-compare__before-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    will-change: width;
}

.ba-compare__before-wrap .ba-compare__img--before {
    width: calc(100% / 0.5);
    max-width: none;
}

/* Динамическая ширина задаётся через JS */

/* Ручка */
.ba-compare__handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: transparent;
    transform: translateX(-50%);
    pointer-events: none;
    will-change: left;
}

.ba-compare__handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: #FFFFFF;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.ba-compare__handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #7B4B2A;
    font-size: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.ba-compare:hover .ba-compare__handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Подписи До/После */
.ba-compare__label {
    position: absolute;
    top: 20px;
    padding: 8px 18px;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    z-index: 2;
    pointer-events: none;
}

.ba-compare__label--before {
    left: 20px;
}

.ba-compare__label--after {
    right: 20px;
    background-color: rgba(123, 75, 42, 0.85);
}

/* Стрелки */
.ba-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(123, 75, 42, 0.15);
    color: #7B4B2A;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ba-slider__arrow:hover {
    background-color: #7B4B2A;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.08);
}

.ba-slider__arrow--prev {
    left: -26px;
}

.ba-slider__arrow--next {
    right: -26px;
}

/* Точки */
.ba-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.ba-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(123, 75, 42, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ba-slider__dot:hover {
    background-color: rgba(123, 75, 42, 0.5);
}

.ba-slider__dot.active {
    width: 32px;
    border-radius: 5px;
    background-color: #7B4B2A;
}

/* === АДАПТИВ === */
@media (max-width: 768px) {
    .ba-slider__arrow {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
    .ba-slider__arrow--prev {
        left: 8px;
    }
    .ba-slider__arrow--next {
        right: 8px;
    }
    .ba-compare__handle-circle {
        width: 44px;
        height: 44px;
        font-size: 10px;
    }
    .ba-compare__label {
        font-size: 10px;
        padding: 6px 14px;
        top: 14px;
    }
    .ba-compare__label--before {
        left: 14px;
    }
    .ba-compare__label--after {
        right: 14px;
    }
}
/* === ОБО МНЕ === */
.about {
    background: linear-gradient(180deg, #EDE3D2 0%, #F5EFE6 100%);
}

.about__wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

/* Левая часть */
.about__visual {
    background: linear-gradient(135deg, #7B4B2A 0%, #5C3820 100%);
    border-radius: 32px;
    padding: 48px 40px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(123, 75, 42, 0.25);
}

.about__visual::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 166, 85, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about__visual::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 166, 85, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Подпись мастера */
.about__signature {
    position: relative;
    z-index: 1;
}

.about__signature-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.about__signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
    color: #FFFFFF;
    font-style: italic;
}

.about__signature-city {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #D4A655;
    font-weight: 500;
}

/* Цифры */
.about__stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about__stat {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.about__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #D4A655;
    line-height: 1;
    min-width: 110px;
}

.about__stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Цитата */
.about__quote {
    position: relative;
    z-index: 1;
}

.about__quote i {
    font-size: 28px;
    color: #D4A655;
    opacity: 0.6;
    margin-bottom: 12px;
}

.about__quote p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* Правая часть */
.about__content {
    display: flex;
    flex-direction: column;
}

.about__content .section-label {
    text-align: left;
    margin-bottom: 12px;
}

.about__content .section-title {
    text-align: left;
    font-size: 44px;
    margin-bottom: 28px;
}

.about__text {
    margin-bottom: 36px;
}

.about__text p {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__text b {
    color: #7B4B2A;
    font-weight: 600;
}

/* Фишки */
.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(123, 75, 42, 0.08);
    transition: all 0.3s ease;
}

.about__feature:hover {
    transform: translateX(4px);
    border-color: rgba(123, 75, 42, 0.2);
    box-shadow: 0 10px 25px rgba(123, 75, 42, 0.08);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(123, 75, 42, 0.1);
    color: #7B4B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about__feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 4px;
}

.about__feature p {
    font-size: 13px;
    color: #6A6A6A;
    line-height: 1.5;
}

/* Соцсети */
.about__socials {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(123, 75, 42, 0.15);
}

.about__socials-label {
    font-size: 14px;
    font-weight: 500;
    color: #5C5C5C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__socials-list {
    display: flex;
    gap: 12px;
}

.about__social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(123, 75, 42, 0.15);
    color: #7B4B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.about__social:hover {
    background-color: #7B4B2A;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 75, 42, 0.3);
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
    .about__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__visual {
        padding: 40px 32px;
    }
    .about__signature-name {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .about__visual {
        padding: 36px 28px;
        gap: 32px;
    }
    .about__signature-name {
        font-size: 48px;
    }
    .about__content .section-title {
        font-size: 32px;
    }
    .about__text p {
        font-size: 15px;
    }
    .about__quote p {
        font-size: 16px;
    }
    .about__stat-num {
        font-size: 30px;
        min-width: 90px;
    }
    .about__feature {
        padding: 18px 20px;
        gap: 14px;
    }
    .about__feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .about__socials {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .about__stat {
        flex-direction: column;
        gap: 4px;
    }
    .about__stat-num {
        min-width: auto;
    }
}
/* === ОБУЧЕНИЕ === */
.education {
    background-color: #F5EFE6;
    position: relative;
    overflow: hidden;
}

.education::before {
    content: '';
    position: absolute;
    top: 100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 75, 42, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.edu {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* === ЛЕВАЯ КОЛОНКА === */
.edu__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Галерея фото */
.edu__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.edu__photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(123, 75, 42, 0.15);
    transition: transform 0.4s ease;
    aspect-ratio: 3/4;
}

.edu__photo:hover {
    transform: translateY(-4px);
}

.edu__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.edu__photo:hover img {
    transform: scale(1.05);
}

/* Карточка цены */
.edu__price-card {
    background: linear-gradient(135deg, #7B4B2A 0%, #5C3820 100%);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(123, 75, 42, 0.2);
}

.edu__price-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 166, 85, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.edu__price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.edu__price-value {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.edu__price-value span {
    font-size: 36px;
    color: #D4A655;
    margin-left: 4px;
}

.edu__price-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.edu__price-info i {
    color: #D4A655;
}

/* === ПРАВАЯ КОЛОНКА === */
.edu__right {
    display: flex;
    flex-direction: column;
}

.edu__lead {
    margin-bottom: 32px;
}

.edu__lead p {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.5;
    color: #2C2C2C;
    font-style: italic;
}

/* Параметры */
.edu__params {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(123, 75, 42, 0.08);
}

.edu__param {
    display: flex;
    align-items: center;
    gap: 12px;
}

.edu__param-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: rgba(123, 75, 42, 0.08);
    color: #7B4B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.edu__param-label {
    font-size: 11px;
    color: #9A9A9A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.edu__param-value {
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 1.3;
}

/* Подзаголовок */
.edu__subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
}

/* Список */
.edu__list {
    list-style: none;
    margin-bottom: 40px;
}

.edu__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(123, 75, 42, 0.1);
}

.edu__list li:last-child {
    border-bottom: none;
}

.edu__list li > i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #7B4B2A;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 2px;
}

.edu__list li b {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 4px;
}

.edu__list li span {
    font-size: 14px;
    color: #6A6A6A;
    line-height: 1.5;
}

/* CTA */
.edu__cta {
    padding-top: 24px;
    border-top: 1px solid rgba(123, 75, 42, 0.15);
}

.edu__cta-text {
    font-size: 14px;
    color: #5C5C5C;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.edu__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.edu__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.edu__btn i {
    font-size: 18px;
}

.edu__btn--tg {
    background-color: #229ED9;
    color: #FFFFFF !important;
}

.edu__btn--tg:hover {
    background-color: #1A89BC;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 158, 217, 0.35);
}

.edu__btn--vk {
    background-color: #0077FF;
    color: #FFFFFF !important;
}

.edu__btn--vk:hover {
    background-color: #0066DD;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 119, 255, 0.35);
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
    .edu {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .edu__params {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .edu__gallery {
        grid-template-columns: 1fr;
    }
    .edu__photo {
        aspect-ratio: 4/5;
    }
}
/* === ДОПЛАТЫ В КАЛЬКУЛЯТОРЕ === */
.calc__optional {
    font-size: 13px;
    font-weight: 400;
    color: #9A9A9A;
    margin-left: 6px;
}

.calc__addons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc__addon {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background-color: #F5EFE6;
    border: 1.5px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.calc__addon:hover {
    background-color: #EDE3D2;
}

.calc__addon input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc__addon-box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(123, 75, 42, 0.3);
    background-color: #FFFFFF;
    position: relative;
    transition: all 0.25s ease;
}

.calc__addon-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%) rotate(45deg) scale(0);
    width: 5px;
    height: 10px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transition: transform 0.2s ease;
}

.calc__addon input:checked ~ .calc__addon-box {
    background-color: #7B4B2A;
    border-color: #7B4B2A;
}

.calc__addon input:checked ~ .calc__addon-box::after {
    transform: translate(-50%, -55%) rotate(45deg) scale(1);
}

.calc__addon:has(input:checked) {
    background-color: rgba(123, 75, 42, 0.08);
    border-color: rgba(123, 75, 42, 0.25);
}

.calc__addon-name {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 500;
    color: #2C2C2C;
}

.calc__addon-price {
    font-size: 13px;
    font-weight: 600;
    color: #7B4B2A;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .calc__addon {
        padding: 12px 16px;
        gap: 12px;
    }
    .calc__addon-name {
        font-size: 13px;
    }
    .calc__addon-price {
        font-size: 12px;
    }
}
/* === ОТЗЫВЫ === */
.reviews {
    background: linear-gradient(180deg, #F5EFE6 0%, #EDE3D2 100%);
    overflow: hidden;
}

/* Сводка рейтинга */
.reviews__summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 36px 44px;
    margin-bottom: 50px;
    border: 1px solid rgba(123, 75, 42, 0.08);
    box-shadow: 0 15px 40px rgba(123, 75, 42, 0.06);
}

.reviews__rating {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid rgba(123, 75, 42, 0.15);
}

.reviews__rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    color: #7B4B2A;
    line-height: 1;
    margin-bottom: 8px;
}

.reviews__rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #D4A655;
    font-size: 16px;
    margin-bottom: 8px;
}

.reviews__rating-label {
    font-size: 12px;
    color: #6A6A6A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.reviews__sources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.reviews__source {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background-color: #F5EFE6;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.reviews__source:hover {
    background-color: #FFFFFF;
    border-color: rgba(123, 75, 42, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 75, 42, 0.1);
}

.reviews__source > i {
    font-size: 24px;
    color: #7B4B2A;
    flex-shrink: 0;
}

.reviews__source-name {
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 2px;
}

.reviews__source-rating {
    font-size: 12px;
    color: #6A6A6A;
}

/* Слайдер */
.reviews__slider {
    position: relative;
    margin: 0 -16px;
}

.reviews__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 16px 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews__track::-webkit-scrollbar {
    display: none;
}

/* Карточка отзыва */
.review-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(123, 75, 42, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(123, 75, 42, 0.12);
    border-color: rgba(123, 75, 42, 0.18);
}

.review-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B4B2A 0%, #5C3820 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 4px;
}

.review-card__stars {
    display: flex;
    gap: 2px;
    color: #D4A655;
    font-size: 12px;
}

.review-card__text {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(123, 75, 42, 0.1);
    font-size: 12px;
    color: #9A9A9A;
}

.review-card__source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7B4B2A;
    font-weight: 500;
}

/* Стрелки */
.reviews__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(123, 75, 42, 0.15);
    color: #7B4B2A;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.reviews__arrow:hover {
    background-color: #7B4B2A;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.08);
}

.reviews__arrow--prev {
    left: -10px;
}

.reviews__arrow--next {
    right: -10px;
}

/* CTA */
.reviews__cta {
    text-align: center;
    margin-top: 20px;
}

.reviews__cta p {
    font-size: 16px;
    color: #5C5C5C;
    margin-bottom: 20px;
}

.reviews__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
    .reviews__summary {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px;
    }
    .reviews__rating {
        padding-right: 0;
        padding-bottom: 28px;
        border-right: none;
        border-bottom: 1px solid rgba(123, 75, 42, 0.15);
    }
}

@media (max-width: 768px) {
    .reviews__summary {
        padding: 28px 20px;
    }
    .reviews__sources {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .reviews__rating-num {
        font-size: 52px;
    }
    .reviews__arrow {
        display: none;
    }
    .review-card {
        flex: 0 0 300px;
        padding: 26px;
    }
    .reviews__track {
        gap: 16px;
        padding: 10px 16px 24px;
    }
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 calc(100vw - 60px);
    }
}
.hero__badge,
.hero__badge * {
    cursor: pointer !important;
}

.hero__badge * {
    pointer-events: none;
}
/* === КОНТАКТЫ === */
.contacts {
    background: linear-gradient(180deg, #EDE3D2 0%, #F5EFE6 100%);
}

.contacts__wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

/* Левая колонка */
.contacts__info {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid rgba(123, 75, 42, 0.08);
    box-shadow: 0 15px 40px rgba(123, 75, 42, 0.06);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}

.contact-item--link:hover {
    transform: translateX(4px);
}

.contact-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: rgba(123, 75, 42, 0.08);
    color: #7B4B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item__label {
    font-size: 12px;
    color: #9A9A9A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-item__value {
    font-size: 16px;
    font-weight: 500;
    color: #2C2C2C;
    line-height: 1.4;
}

.contacts__btn {
    margin-top: 8px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Соцсети */
.contacts__socials {
    padding-top: 24px;
    border-top: 1px solid rgba(123, 75, 42, 0.15);
}

.contacts__socials-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5C5C5C;
    margin-bottom: 16px;
    font-weight: 500;
}

.contacts__socials-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background-color: #F5EFE6;
    color: #2C2C2C;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-social i {
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-social--ig:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: #FFFFFF;
}

.contact-social--vk:hover {
    background-color: #0077FF;
    color: #FFFFFF;
}

.contact-social--tg:hover {
    background-color: #229ED9;
    color: #FFFFFF;
}

.contact-social--2gis:hover {
    background-color: #7B4B2A;
    color: #FFFFFF;
}

/* Карта */
.contacts__map {
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(123, 75, 42, 0.1);
    border: 1px solid rgba(123, 75, 42, 0.08);
    background-color: #EDE3D2;
}

.contacts__map iframe {
    display: block;
    border: none;
    width: 100%;
    height: 100%;
}

/* === АДАПТИВ КОНТАКТЫ === */
@media (max-width: 1024px) {
    .contacts__wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contacts__map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contacts__info {
        padding: 28px 24px;
    }
    .contacts__socials-list {
        grid-template-columns: 1fr;
    }
    .contacts__map {
        min-height: 320px;
    }
}

/* === ФУТЕР === */
.footer {
    background-color: #2C2C2C;
    color: #B5B5B5;
    padding: 70px 0 30px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: block;
    width: 180px;
    height: 60px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    margin-top: -10px;
}

.footer__logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 220px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer__tagline {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

.footer__title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list li {
    font-size: 14px;
    color: #B5B5B5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__list li i {
    color: #7B4B2A;
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.footer__list a {
    color: #B5B5B5;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__list a:hover {
    color: #D4A655;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer__socials a:hover {
    background-color: #7B4B2A;
    transform: translateY(-3px);
}

.footer__bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #666666;
}

.footer__note {
    font-style: italic;
}

/* === АДАПТИВ ФУТЕР === */
@media (max-width: 900px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 50px 0 24px;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
.contact-item__value small {
    display: inline-block;
    font-size: 13px;
    color: #6A6A6A;
    font-weight: 400;
    margin-top: 4px;
}