/* ===== about.css — ПОЛНОСТЬЮ ИСПРАВЛЕННАЯ ВЕРСИЯ ===== */

/* Сброс отступов и box-sizing */
* {
    box-sizing: border-box;
}

/* Хлебные крошки */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #1a1a1a;
}

.separator {
    color: #a0a0a0;
}

.current {
    color: #1a1a1a;
    font-weight: 500;
}

/* ===== Hero секция ===== */
.about-hero {
    background: white;
    padding: 2rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.about-hero-inner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin: 1rem 0 0.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #6a6a6a;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

/* ===== Основной контент ===== */
.about-content {
    padding: 2rem 0 3rem;
    background: #fafafa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Слайдер ===== */
.about-slider {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.about-slider__shell {
    position: relative;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-slider__viewport {
    outline: none;
    width: 100%;
}

.about-slider__track {
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform 450ms cubic-bezier(.2,.85,.2,1);
    will-change: transform;
}

.about-slider__slide {
    position: relative;
    min-width: 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
    background: #f8f9fa;
}

.about-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slider__caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 80%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(2px);
}

.about-slider__caption strong {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.about-slider__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.3rem 0.9rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    background: white;
    color: #1a1a1a;
    border: none;
}

.about-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.about-slider__btn span {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.about-slider__btn--prev { left: 12px; }
.about-slider__btn--next { right: 12px; }

.about-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.4);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.about-slider__dot.is-active {
    width: 24px;
    background: white;
    border-color: white;
}

/* ===== О компании ===== */
.about-description {
    margin: 2.5rem 0;
}

.about-description__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-description__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-description__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.about-description__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.about-description__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.about-description__feature-icon {
    width: 20px;
    height: 20px;
    color: #4caf50;
    flex-shrink: 0;
}

.about-description__btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
    text-align: center;
}

.about-description__btn:hover {
    background: white;
    color: #1a1a1a;
}

.about-description__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-description__stat-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-description__stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-description__stat-label {
    color: #6a6a6a;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Наш подход ===== */
.about-approach {
    margin: 2.5rem 0;
}

.about-approach__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-approach__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-approach__item {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.about-approach__item-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-approach__item-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.about-approach__item-text {
    color: #6a6a6a;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Заголовки ===== */
.about-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.2;
}

/* ===== Карточки преимуществ ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.about-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-card__icon svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
}

.about-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.about-card__text {
    color: #6a6a6a;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Отзывы клиентов ===== */
.about-testimonials {
    margin: 2.5rem 0;
}

.about-testimonials__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-testimonials__card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.about-testimonials__rating {
    color: #ffb800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.about-testimonials__text {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-style: italic;
}

.about-testimonials__author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.about-testimonials__author strong {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
}

.about-testimonials__author span {
    color: #6a6a6a;
    font-size: 0.9rem;
}

/* ===== CTA секция ===== */
.cta-section {
    margin: 2.5rem 0;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid #333;
}

.cta-inner {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.cta-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.btn-white {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 40px;
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
    transition: transform .22s ease, box-shadow .22s ease;
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.button {
    border-radius: 40px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* ===== Карта ===== */
.salon-address {
    padding: 0 0 3rem 0;
    background: #fafafa;
}

.salon-address__title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.salon-address__title a {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    font-size: 2rem;
}

.salon-address__map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.salon-address__iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* ===== Адаптивность для планшетов ===== */
@media (min-width: 768px) {
    .about-hero-inner h1 {
        font-size: 3rem;
    }

    .about-hero-subtitle {
        font-size: 1.5rem;
    }

    .about-description__grid {
        grid-template-columns: 1fr 0.8fr;
        gap: 2.5rem;
    }

    .about-description__btn {
        width: auto;
        display: inline-block;
        padding: 1rem 2rem;
    }

    .about-approach__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .about-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .cta-section {
        padding: 2.5rem;
    }

    .btn-white {
        width: auto;
        min-width: 250px;
    }

    .about-slider__slide {
        aspect-ratio: 16 / 7;
    }
}

/* ===== Адаптивность для десктопов ===== */
@media (min-width: 1024px) {
    .about-approach__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-slider__caption strong {
        font-size: 1.2rem;
    }

    .salon-address__iframe {
        height: 400px;
    }
}

/* ===== Адаптивность для маленьких телефонов ===== */
@media (max-width: 480px) {
    .about-hero-inner h1 {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .about-description__title {
        font-size: 1.8rem;
    }

    .about-approach__title {
        font-size: 1.8rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-testimonials__title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .salon-address__title a {
        font-size: 1.8rem;
    }

    .salon-address__iframe {
        height: 300px;
    }

    .about-slider__btn {
        width: 36px;
        height: 36px;
    }

    .about-slider__caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
    }
}