/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ЦВЕТА ===== */
:root {
    --primary: #00B9BF;
    --primary-dark: #00989e;
    --primary-light: #e6f7f8;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --border-light: #eaeaea;
    --bg-light: #f8f9fa;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
    letter-spacing: 0.3px;
    font-weight: 500;
}
.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.section-title span {
    color: var(--primary);
}

/* ===== TOP STRIP — БЕГУЩАЯ СТРОКА ===== */
.top-strip {
    background: var(--primary);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 44px;
}

.top-strip-wrapper {
    display: flex;
    width: 200%;
    animation: marquee 25s linear infinite;
}

.top-strip-wrapper .top-strip-track {
    display: flex;
    flex-shrink: 0;
    width: 50%;
    align-items: center;
}

.top-strip-track span {
    display: inline-block;
    padding: 0 30px;
    white-space: nowrap;
}

.top-strip-track .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    padding: 0 15px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.top-strip:hover .top-strip-wrapper {
    animation-play-state: paused;
}

/* ===== HEADER ===== */
.header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a.active {
    color: var(--primary);
}
.nav-menu a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.header-phone {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    white-space: nowrap;
}

.header-phone i {
    color: var(--primary);
    margin-right: 6px;
}


.header-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}
.header-location i {
    color: var(--primary);
    font-size: 16px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.25s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border-light);
    width: 100%;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 6px 0;
    transition: color 0.2s;
}
.mobile-menu a:hover {
    color: var(--primary);
}
.mobile-menu a.active {
    color: var(--primary);
}
.mobile-menu.open {
    display: flex;
}

/* ===== HERO ===== */
.hero {
    padding: 0 0 18px 0;
    background: var(--bg-light);
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
    background: #1a1a1a;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}

.hero-slide-item {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
}

.hero-slide-item a {
    display: block;
    width: 100%;
}

.hero-slide-item .hero-img-desktop {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    aspect-ratio: 16 / 4;
}

.hero-slide-item .hero-img-mobile {
    display: none;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-slide-item .hero-img-desktop {
        display: none !important;
    }
    .hero-slide-item .hero-img-mobile {
        display: block !important;
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-slide-item .hero-img-mobile {
        max-height: 200px;
        aspect-ratio: 12 / 6;
    }
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    color: #333;
    font-size: 20px;
    padding: 0;
}

.hero-slider-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-slider-btn-prev {
    left: 16px;
}

.hero-slider-btn-next {
    right: 16px;
}

.hero-slider-btn i {
    font-size: 20px;
    color: #333;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 0px;
}

.hero-slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.hero-slider-dots span.active {
    background: var(--primary);
    width: 28px;
    border-radius: 6px;
}

/* ===== CATEGORIES SLIDER ===== */
.categories-section {
    padding: 15px 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.categories-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    padding: 0 20px;
}

.categories-title span {
    color: var(--primary);
}

.categories-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.categories-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.category-card {
    flex: 0 0 calc(16.666% - 14px);
    min-width: calc(16.666% - 14px);
    background: #fff;
    border-radius: 8px;
    padding: 18px 12px 14px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
}

.category-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.category-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: transparent;
    border-radius: 8px 8px 0 0;
    transition: background 0.3s;
    z-index: 2;
}

.category-card:hover::after {
    background: var(--primary);
}

.category-card .cat-img {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-card .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card .cat-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.3;
}

.categories-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
    padding: 0 20px;
}

.categories-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    opacity: 0.85;
    padding: 0;
    pointer-events: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    color: var(--text-dark);
    font-size: 18px;
}

.categories-nav button:hover {
    opacity: 1;
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 185, 191, 0.25);
    color: var(--primary);
}

.categories-nav .prev-btn {
    left: 0;
}

.categories-nav .next-btn {
    right: 0;
}

.categories-nav button i {
    font-size: 18px;
}

/* ===== ПРОМО / АКЦИИ ===== */
.promo-section {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.promo-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.promo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.promo-item a {
    display: block;
    width: 100%;
}

.promo-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promo-btn-wrap {
    text-align: center;
    margin-top: 32px;
}

.promo-btn-wrap .btn {
    padding: 16px 48px;
    font-size: 16px;
}

/* ===== ХИТЫ ПРОДАЖ ===== */
.hits {
    padding: 40px 0 60px;
    background: #fff;
}

.hits-slider-wrap {
    position: relative;
    overflow: hidden;
}

.hits-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.hit-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light, #eaeaea);
    overflow: hidden;
    transition: 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hit-card:hover {
    border-color: var(--primary, #00B9BF);
    box-shadow: 0 8px 28px rgba(0, 185, 191, 0.08);
}

/* Ссылка на страницу товара — вся карточка кроме кнопки */
.hit-card .hit-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.hit-card .hit-img {
    height: 200px;
    background: var(--bg-light, #f8f9fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    font-weight: 500;
    overflow: hidden;
}

.hit-card .hit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hit-card .hit-body {
    padding: 18px 18px 12px;
}

.hit-card .hit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 4px;
}

.hit-card .hit-desc {
    font-size: 14px;
    color: var(--text-muted, #666);
    margin-bottom: 6px;
}

.hit-card .hit-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary, #00B9BF);
    margin-bottom: 0;
}

/* Обёртка для кнопки заказа */
.hit-card .hit-order-wrap {
    padding: 0 18px 18px 18px;
}

/* Кнопка заказа — ссылка на попап */
.hit-card .btn-order {
    display: block;
    width: 100%;
    padding: 10px 32px;
    background: var(--primary, #00B9BF);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.15s ease;
    letter-spacing: 0.3px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.hit-card .btn-order:hover {
    background: var(--primary-dark, #00989e);
    transform: translateY(-1px);
}

.hits-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
    padding: 0 10px;
}

.hits-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light, #eaeaea);
    background: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hits-nav button:hover {
    border-color: var(--primary, #00B9BF);
    color: var(--primary, #00B9BF);
    box-shadow: 0 4px 20px rgba(0, 185, 191, 0.2);
}

.hits-nav .hits-prev {
    left: 4px;
}

.hits-nav .hits-next {
    right: 4px;
}

.hits-catalog-link {
    text-align: center;
    margin-top: 32px;
}

.hits-catalog-link .btn {
    padding: 14px 40px;
    font-size: 15px;
}

/* ===== СЕРВИСЫ ===== */
.services {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    text-align: center;
    padding: 10px 6px;
}

.service-item i {
    font-size: 32px;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.service-item .service-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ===== ОТЗЫВЫ ===== */
.reviews {
    padding: 40px 0;
    background: #fff;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 28px;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 19px);
    min-width: 280px;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 28px 28px 24px;
    border: 1px solid var(--border-light);
}

.review-card .stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.review-card .stars i {
    margin-right: 2px;
}

.review-card .review-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-card .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card .avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
}

.review-card .avatar-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-card .review-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}
.review-card .review-city {
    font-size: 13px;
    color: #888;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
    padding: 0 10px;
}

.reviews-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.reviews-nav button:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 185, 191, 0.2);
}

.reviews-nav .reviews-prev {
    left: 4px;
}

.reviews-nav .reviews-next {
    right: 4px;
}

/* ===== О САЛОНЕ ===== */
.about-salon {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.about-salon .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-salon .about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    color: var(--text-dark);
}
.about-salon .about-text h2 i {
    color: var(--primary);
    margin-right: 10px;
}

.about-salon .about-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-salon .about-text .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    color: #444;
}
.about-salon .about-text .check-item i {
    color: var(--primary);
    font-size: 18px;
}

.about-salon .about-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.about-salon .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== СТАТЬИ ===== */
.articles {
    padding: 40px 0;
    background: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: 0.25s;
}
.article-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(0, 185, 191, 0.06);
}

.article-card .article-img {
    height: 180px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

.article-card .article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .article-img .placeholder-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
}

.article-card .article-img .placeholder-text i {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.3;
}

.article-card .article-body {
    padding: 20px 22px 24px;
}

.article-card .article-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.article-card .article-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-card .article-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.article-card .article-link:hover {
    text-decoration: underline;
}

/* ===== КОНТАКТЫ ===== */
.contact {
    padding: 40px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* Убираем gap */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: none; /* Убираем border */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ===== ЛЕВАЯ КОЛОНКА (контакты) ===== */
.contact-info {
    padding: 40px 36px;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('https://static.tildacdn.com/tild3261-3464-4233-a263-366635633537/1787211511717-01a01e.png');
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.contact-info * {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.contact-info h3 i {
    margin-right: 10px;
}

.contact-info .contact-item {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-info .contact-item i {
    font-size: 18px;
    margin-top: 2px;
    opacity: 0.8;
    width: 24px;
}
.contact-info .contact-item .value {
    font-size: 15px;
    font-weight: 500;
}
.contact-info .contact-item .label {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
}

.contact-info .map-placeholder {
    height: 140px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    margin: 16px 0 12px;
    overflow: hidden;
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.contact-info .map-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
}

.contact-info .btn {
    background: #fff;
    color: var(--primary);
    padding: 12px 28px;
    align-self: flex-start;
}
.contact-info .btn:hover {
    background: #f0f0f0;
}

/* ===== ПРАВАЯ КОЛОНКА (форма) ===== */
.contact-form {
    padding: 40px 36px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Контент поверх фона (без затемнения) */
.contact-form .form-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.contact-form .form-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-form .form-content h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.contact-form .form-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-form .form-content .btn-wrap {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.contact-form .form-content .btn {
    background: #00B9BF;
    color: #fff;
    padding: 16px 48px;
    font-size: 18px;
    border-radius: 4px;
    transition: background 0.25s, transform 0.15s;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    width: auto;
}

.contact-form .form-content .btn:hover {
    background: #00989e;
    transform: translateY(-2px);
}

.contact-form .form-content .btn i {
    margin-right: 8px;
}

/* Удаляем старые стили полей формы */
.contact-form .form-group,
.contact-form .form-control,
.contact-form .form-error,
.contact-form textarea.form-control {
    display: none;
}

/* ===== ФУТЕР ===== */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 40px 0 28px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-copy {
    font-size: 14px;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 14px;
    color: #aaa;
    transition: 0.2s;
}
.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 18px;
    transition: 0.2s;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* ================================================================
   ===== СТИЛИ ТОЛЬКО ДЛЯ СТРАНИЦЫ АКЦИЙ =====
   ================================================================ */

/* ===== БАННЕР (широкоформатный) ===== */
.promo-banner {
    padding: 32px 0 40px;
    background: var(--bg-light, #f8f9fa);
}

.promo-banner .banner-wrapper {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.promo-banner .banner-wrapper:hover {
    transform: scale(1.005);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.promo-banner .banner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 5;
    object-fit: cover;
}

/* ===== АКЦИИ (ЗМЕЙКА) ===== */
.promo-list {
    padding: 40px 0 60px;
    background: #ffffff;
}

.promo-item-row {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light, #eaeaea);
}

.promo-item-row:last-child {
    border-bottom: none;
}

.promo-item-row.reverse {
    direction: rtl;
}

.promo-item-row.reverse .promo-text {
    direction: ltr;
}

.promo-item-row .promo-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 60%;
    margin: 0 auto;
}

.promo-item-row .promo-image:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.promo-item-row .promo-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.promo-item-row .promo-text {
    direction: ltr;
}

.promo-item-row .promo-text .promo-badge {
    display: inline-block;
    background: var(--primary, #00B9BF);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-item-row .promo-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 8px;
}

.promo-item-row .promo-text h3 span {
    color: var(--primary, #00B9BF);
}

.promo-item-row .promo-text .promo-desc {
    font-size: 16px;
    color: var(--text-muted, #666);
    line-height: 1.7;
    margin-bottom: 16px;
}

.promo-item-row .promo-text .promo-percent {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary, #00B9BF);
    margin-bottom: 8px;
    line-height: 1.1;
}

.promo-item-row .promo-text .promo-percent small {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-muted, #666);
}

.promo-item-row .promo-text .promo-terms {
    font-size: 14px;
    color: #999;
    margin-top: 12px;
}

.promo-item-row .promo-text .btn {
    margin-top: 16px;
}

/* ===== КНОПКА ЗАКАЗА ===== */
.promo-order {
    padding: 40px 0 60px;
    text-align: center;
    background: var(--bg-light, #f8f9fa);
}

.promo-order .btn {
    padding: 18px 60px;
    font-size: 18px;
}

.promo-order p {
    margin-top: 16px;
    font-size: 16px;
    color: var(--text-muted, #666);
}

/* ===== ДИЗАЙНЕРСКОЕ ЗАВЕРШЕНИЕ ===== */
.promo-footer {
    padding: 60px 0;
    background: var(--primary, #00B9BF);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: floatBg 20s ease-in-out infinite alternate;
}

@keyframes floatBg {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(10%, 10%) rotate(10deg); }
}

.promo-footer * {
    position: relative;
    z-index: 1;
}

.promo-footer .footer-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.promo-footer h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-footer p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 24px;
}

.promo-footer .btn-outline {
    border-color: #fff;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

.promo-footer .btn-outline:hover {
    background: #fff;
    color: var(--primary, #00B9BF);
}

.promo-footer .decor-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
    border-radius: 2px;
}

.promo-header {
    padding: 40px 0 20px;
}

.promo-header .section-title {
    margin-bottom: 12px;
}

.promo-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted, #666);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ================================================================
   ===== ОБЩИЙ RESPONSIVE =====
   ================================================================ */

@media (max-width: 1024px) {
    .category-card {
        flex: 0 0 calc(33.333% - 11px);
        min-width: calc(33.333% - 11px);
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hit-card {
        flex: 0 0 calc(33.333% - 16px);
    }
    .review-card {
        flex: 0 0 calc(50% - 14px);
    }
    .nav-menu {
        gap: 20px;
    }
    .nav-menu a {
        font-size: 14px;
    }
    .promo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-slider-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    .hero-slider-btn i {
        font-size: 17px;
    }
    .hits-nav button,
    .reviews-nav button {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .promo-item-row {
        gap: 40px;
        grid-template-columns: 1fr 1.2fr;
    }
    .promo-item-row .promo-text h3 {
        font-size: 24px;
    }
    .promo-item-row .promo-text .promo-percent {
        font-size: 36px;
    }
    .promo-item-row .promo-image {
        max-width: 50%;
    }
}

@media (max-width: 820px) {
    .about-salon .container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-salon .about-image {
        height: 250px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        order: 2;
        min-height: 340px;
    }
    .contact-form {
        min-height: 340px;
        padding: 30px 24px;
        justify-content: flex-start;
    }
    .hit-card {
        flex: 0 0 calc(50% - 12px);
    }
    .review-card {
        flex: 0 0 calc(100% - 0px);
    }
    .nav-menu {
        display: none;
    }
    .burger {
        display: flex;
    }
    .header-location {
        display: none;
    }
    .top-strip {
        font-size: 11px;
        padding: 4px 0;
        letter-spacing: 0.5px;
        height: 38px;
    }
    .top-strip-wrapper {
        animation-duration: 20s;
    }
    .top-strip-track span {
        padding: 0 20px;
    }
    .top-strip-track .separator {
        padding: 0 10px;
        font-size: 14px;
    }
    .hero-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .hero-slider-btn i {
        font-size: 15px;
    }
    .hero-slider-btn-prev {
        left: 8px;
    }
    .hero-slider-btn-next {
        right: 8px;
    }
    .hero-slider-dots {
        margin-top: 18px;
    }
    .categories-section {
        padding: 15px 0 30px;
    }
    .promo-section {
        padding: 30px 0;
    }
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hits {
        padding: 30px 0 40px;
    }
    .services {
        padding: 30px 0;
    }
    .reviews {
        padding: 30px 0;
    }
    .about-salon {
        padding: 30px 0;
    }
    .articles {
        padding: 30px 0;
    }
    .contact {
        padding: 30px 0;
    }
    .categories-nav button {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .categories-nav button i {
        font-size: 15px;
    }
    .hits-nav button,
    .reviews-nav button {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .hits-nav .hits-prev,
    .reviews-nav .reviews-prev {
        left: 2px;
    }
    .hits-nav .hits-next,
    .reviews-nav .reviews-next {
        right: 2px;
    }
    .promo-item-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0;
        direction: ltr !important;
    }
    .promo-item-row.reverse {
        direction: ltr !important;
    }
    .promo-item-row.reverse .promo-text {
        direction: ltr;
    }
    .promo-item-row .promo-image {
        max-width: 50%;
        margin: 0 auto;
    }
    .promo-item-row .promo-text {
        text-align: center;
    }
    .promo-item-row .promo-text .promo-percent {
        font-size: 32px;
    }
    .promo-item-row .promo-text h3 {
        font-size: 22px;
    }
    .promo-banner .banner-wrapper img {
        aspect-ratio: 16 / 6;
    }
}

@media (max-width: 768px) {
    .category-card {
        flex: 0 0 calc(33.333% - 11px);
        min-width: calc(33.333% - 11px);
    }
    .hero-slider-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .hero-slider-btn i {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .category-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .hit-card {
        flex: 0 0 calc(100% - 0px);
    }
    .review-card {
        flex: 0 0 calc(100% - 0px);
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-links {
        justify-content: center;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .contact-info,
    .contact-form {
        padding: 24px 20px;
    }
    .contact-info {
        min-height: 280px;
    }
    .contact-form {
        min-height: 280px;
    }
    .top-strip {
        font-size: 10px;
        padding: 4px 0;
        letter-spacing: 0.3px;
        height: 34px;
    }
    .top-strip-wrapper {
        animation-duration: 16s;
    }
    .top-strip-track span {
        padding: 0 15px;
    }
    .top-strip-track .separator {
        padding: 0 8px;
        font-size: 12px;
    }
    .categories-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .categories-section {
        padding: 15px 0 20px;
    }
    .promo-section {
        padding: 20px 0;
    }
    .hits {
        padding: 20px 0 30px;
    }
    .services {
        padding: 20px 0;
    }
    .reviews {
        padding: 20px 0;
    }
    .about-salon {
        padding: 20px 0;
    }
    .articles {
        padding: 20px 0;
    }
    .contact {
        padding: 20px 0;
    }
    .header-inner {
        flex-wrap: wrap;
        gap: 8px;
    }
    .header-right {
        gap: 14px;
    }
    .header-phone {
        font-size: 14px;
    }
    .hero-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .hero-slider-btn i {
        font-size: 11px;
    }
    .hero-slider-btn-prev {
        left: 6px;
    }
    .hero-slider-btn-next {
        right: 6px;
    }
    .hero-slider-dots {
        margin-top: 14px;
    }
    .categories-nav button {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .categories-nav button i {
        font-size: 13px;
    }
    .promo-btn-wrap .btn {
        padding: 12px 32px;
        font-size: 14px;
    }
    .hits-nav button,
    .reviews-nav button {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .hits-nav .hits-prev,
    .reviews-nav .reviews-prev {
        left: 0px;
    }
    .hits-nav .hits-next,
    .reviews-nav .reviews-next {
        right: 0px;
    }
    .hits-catalog-link .btn {
        padding: 12px 32px;
        font-size: 14px;
    }
    .about-salon .about-image {
        height: 200px;
    }
    .promo-item-row {
        padding: 20px 0;
    }
    .promo-item-row .promo-image {
        max-width: 50%;
    }
    .promo-item-row .promo-text h3 {
        font-size: 20px;
    }
    .promo-item-row .promo-text .promo-percent {
        font-size: 28px;
    }
    .promo-item-row .promo-text .promo-desc {
        font-size: 14px;
    }
    .promo-item-row .promo-text .promo-terms {
        font-size: 12px;
    }
    .promo-item-row .promo-text .btn {
        font-size: 14px;
        padding: 12px 28px;
    }
    .promo-banner .banner-wrapper img {
        aspect-ratio: 16 / 7;
    }
    .promo-order .btn {
        padding: 14px 40px;
        font-size: 16px;
    }
    .promo-footer h3 {
        font-size: 22px;
    }
    .promo-footer p {
        font-size: 15px;
    }
    .promo-footer .footer-icon {
        font-size: 48px;
    }
    .promo-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    .contact-form .form-content h3 {
        font-size: 22px;
    }
    .contact-form .form-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .contact-form .form-content .btn {
        padding: 14px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .category-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    .categories-title {
        font-size: 18px;
    }
    .promo-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-slide-item .hero-img-mobile {
        max-height: 200px;
    }
    .promo-btn-wrap .btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    .top-strip-wrapper {
        animation-duration: 14s;
    }
    .top-strip-track span {
        padding: 0 12px;
        font-size: 10px;
    }
    .top-strip-track .separator {
        padding: 0 6px;
        font-size: 10px;
    }
    .hits-catalog-link .btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    .about-salon .about-image {
        height: 180px;
    }
    .promo-item-row .promo-image {
        max-width: 75%;
    }
    .promo-banner .banner-wrapper img {
        aspect-ratio: 16 / 8;
    }
    .promo-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .contact-form .form-content h3 {
        font-size: 20px;
    }
    .contact-form .form-content p {
        font-size: 13px;
    }
    .contact-form .form-content .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .contact-form {
        min-height: 240px;
        padding: 20px 16px;
    }
}

@media (max-width: 420px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .header-phone {
        font-size: 10px;
    }
}

/* ===== СТИЛИ ДЛЯ СТАТЕЙ (BLOG) ===== */
.post-body {
    max-width: 100%;
    width: 100%;
}

.post-body p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #2c2c2c;
}

.post-body strong {
    font-weight: 600;
    color: #141414;
}

.post-body a {
    color: #7a7a7a;
    text-decoration: underline;
    transition: color 0.15s;
}

.post-body a:hover {
    color: #4a4a4a;
}

.post-body h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.post-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.post-body h4 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.toc {
    background: #f5f5f5;
    padding: 20px 28px;
    border-radius: 12px;
    margin: 28px 0 32px 0;
    border: 1px solid #e0e0e0;
}

.toc h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}

.toc ul li {
    margin-bottom: 6px;
    font-size: 15px;
}

.toc ul li a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.15s;
}

.toc ul li a:hover {
    color: #7a7a7a;
    text-decoration: underline;
}

@media (max-width: 540px) {
    .toc ul {
        columns: 1;
    }
}

.inset-quote {
    background: #f5f5f5;
    border-left: 4px solid #7a7a7a;
    padding: 18px 24px;
    margin: 28px 0 32px 0;
    border-radius: 0 12px 12px 0;
    font-size: 16px;
    color: #3a3a3a;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.inset-quote i {
    color: #7a7a7a;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.inset-quote .quote-text {
    font-style: italic;
}

.inset-quote .quote-text strong {
    font-style: normal;
}

.inset-quote .quote-text a {
    color: #7a7a7a;
    text-decoration: underline;
}

.inset-quote .quote-text a:hover {
    color: #4a4a4a;
}

.tip-block {
    margin-top: 40px;
}

.tip-block h2 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tip-block h2 .tip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7a7a7a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tip-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.tip-block ul {
    margin: 8px 0 16px 0;
    padding: 0;
    list-style: none;
}

.tip-block ul li {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.tip-block ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #7a7a7a;
    font-size: 15px;
    width: 20px;
    text-align: center;
}

.check-list li i {
    color: #7a7a7a;
}

.post-body ul {
    margin: 8px 0 16px 0;
    padding: 0;
    list-style: none;
}

.post-body ul li {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.post-body ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #7a7a7a;
    font-size: 15px;
    width: 20px;
    text-align: center;
}

.final-cta {
    margin-top: 44px;
    padding: 24px 28px;
    background: #f5f5f5;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    font-size: 17px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.final-cta i {
    color: #7a7a7a;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.final-cta .final-text strong {
    color: #1a1a1a;
}

.final-cta .final-text a {
    color: #7a7a7a;
    text-decoration: underline;
}

.final-cta .final-text a:hover {
    color: #4a4a4a;
}

@media (max-width: 680px) {
    body {
        padding: 20px 12px;
    }

    .post-body p {
        font-size: 15px;
    }

    .post-body h2 {
        font-size: 22px;
        margin-top: 32px;
    }

    .post-body h3 {
        font-size: 18px;
    }

    .post-body h4 {
        font-size: 15px;
    }

    .inset-quote {
        padding: 14px 16px;
        font-size: 15px;
    }

    .final-cta {
        padding: 18px 16px;
        font-size: 15px;
        flex-wrap: wrap;
    }

    .toc {
        padding: 16px 18px;
    }

    .toc ul li {
        font-size: 14px;
    }

    .post-body ul li {
        font-size: 15px;
    }

    .tip-block h2 {
        font-size: 18px;
    }

    .tip-block ul li {
        font-size: 15px;
    }
}

        /* ===== 1. HERO ===== */
        .about-hero {
            padding: 60px 0 80px;
            background: linear-gradient(135deg, var(--bg-light, #f8f9fa) 0%, var(--primary-light, #e6f7f8) 100%);
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 185, 191, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-hero .hero-text h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark, #1a1a1a);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .about-hero .hero-text h1 span {
            color: var(--primary, #00B9BF);
        }

        .about-hero .hero-text .hero-sub {
            font-size: 20px;
            color: var(--text-muted, #666);
            margin-bottom: 16px;
        }

        .about-hero .hero-text p {
            font-size: 16px;
            color: #444;
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 520px;
        }

        .about-hero .hero-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            height: 340px;
            background: #fff;
            border: 1px solid var(--border-light, #eaeaea);
        }

        .about-hero .hero-image img {
            width: 100%;
            height: 100%;
        }

        .about-hero .hero-image .placeholder-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .about-hero .hero-image .placeholder-text i {
            font-size: 48px;
            color: var(--primary, #00B9BF);
            opacity: 0.3;
        }

        /* ===== 2. ИСТОРИЯ ===== */
        .about-history {
            padding: 60px 0;
            background: #fff;
        }
        
        .about-history .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-history .history-text h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark, #1a1a1a);
        }
        
        .about-history .history-text h2 span {
            color: var(--primary, #00B9BF);
        }
        
        .about-history .history-text p {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 14px;
        }
        
        .about-history .history-image {
            height: 340px;
            border-radius: 16px;
            overflow: hidden;
            background: var(--bg-light, #f8f9fa);
            border: 1px solid var(--border-light, #eaeaea);
        }
        
        .about-history .history-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== 3. ЦЕННОСТИ ===== */
        .about-values {
            padding: 60px 0;
            background: var(--bg-light, #f8f9fa);
            border-top: 1px solid var(--border-light, #eaeaea);
            border-bottom: 1px solid var(--border-light, #eaeaea);
        }

        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 16px;
        }

        .about-values-grid .value-item {
            background: #fff;
            border-radius: 12px;
            padding: 30px 24px;
            text-align: center;
            border: 1px solid var(--border-light, #eaeaea);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .about-values-grid .value-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            border-color: var(--primary, #00B9BF);
        }

        .about-values-grid .value-item i {
            font-size: 40px;
            color: var(--primary, #00B9BF);
            margin-bottom: 12px;
            display: block;
        }

        .about-values-grid .value-item h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark, #1a1a1a);
            margin-bottom: 4px;
        }

        .about-values-grid .value-item p {
            font-size: 14px;
            color: var(--text-muted, #666);
            line-height: 1.5;
        }

        /* ===== 4. КОМАНДА ===== */
        .about-team {
            padding: 60px 0;
            background: #fff;
        }

        .about-team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 16px;
        }

        .about-team-grid .team-card {
            background: var(--bg-light, #f8f9fa);
            border-radius: 12px;
            padding: 24px 20px 28px;
            text-align: center;
            border: 1px solid var(--border-light, #eaeaea);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .about-team-grid .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            border-color: var(--primary, #00B9BF);
        }

        .about-team-grid .team-card .avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--primary-light, #e6f7f8);
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary, #00B9BF);
            overflow: hidden;
        }

        .about-team-grid .team-card .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-team-grid .team-card h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark, #1a1a1a);
            margin-bottom: 2px;
        }

        .about-team-grid .team-card .position {
            font-size: 14px;
            color: var(--primary, #00B9BF);
            font-weight: 500;
            margin-bottom: 6px;
        }

        .about-team-grid .team-card p {
            font-size: 14px;
            color: var(--text-muted, #666);
            line-height: 1.5;
        }

        /* ===== 5. ЦИФРЫ ===== */
        .about-numbers {
            padding: 60px 0;
            background: var(--primary, #00B9BF);
            color: #fff;
        }

        .about-numbers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .about-numbers-grid .number-item .number {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
        }

        .about-numbers-grid .number-item .number span {
            font-size: 32px;
            opacity: 0.6;
        }

        .about-numbers-grid .number-item .label {
            font-size: 16px;
            opacity: 0.85;
            margin-top: 4px;
        }

        /* ===== 6. ЮРИДИЧЕСКАЯ ИНФОРМАЦИЯ ===== */
        .about-legal {
            padding: 60px 0;
            background: #fff;
            border-bottom: 1px solid var(--border-light, #eaeaea);
        }

        .about-legal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 16px;
        }

        .about-legal .legal-block {
            background: var(--bg-light, #f8f9fa);
            border-radius: 12px;
            padding: 30px 28px;
            border: 1px solid var(--border-light, #eaeaea);
        }

        .about-legal .legal-block h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark, #1a1a1a);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-legal .legal-block h3 i {
            color: var(--primary, #00B9BF);
            font-size: 22px;
        }

        .about-legal .legal-block .legal-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            font-size: 14px;
            line-height: 1.5;
        }

        .about-legal .legal-block .legal-item:last-child {
            border-bottom: none;
        }

        .about-legal .legal-block .legal-item .label {
            color: var(--text-muted, #666);
            font-weight: 400;
            flex-shrink: 0;
            margin-right: 16px;
        }

        .about-legal .legal-block .legal-item .value {
            color: var(--text-dark, #1a1a1a);
            font-weight: 500;
            text-align: right;
            word-break: break-all;
        }

        .about-legal .legal-block .legal-item .value a {
            color: var(--primary, #00B9BF);
            text-decoration: underline;
        }

        .about-legal .legal-block .legal-item .value a:hover {
            color: var(--primary-dark, #00989e);
        }

        /* ===== 7. СЕРТИФИКАТЫ ===== */
        .about-certificates {
            padding: 60px 0;
            background: var(--bg-light, #f8f9fa);
        }

        .about-certificates-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 16px;
        }

        .about-certificates-grid .cert-item {
            background: #fff;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--border-light, #eaeaea);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .about-certificates-grid .cert-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            border-color: var(--primary, #00B9BF);
        }

        .about-certificates-grid .cert-item i {
            font-size: 40px;
            color: #e74c3c;
            margin-bottom: 10px;
            display: block;
        }

        .about-certificates-grid .cert-item h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark, #1a1a1a);
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .about-certificates-grid .cert-item p {
            font-size: 12px;
            color: var(--text-muted, #666);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .about-certificates-grid .cert-item .cert-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--primary, #00B9BF);
            transition: color 0.2s;
        }

        .about-certificates-grid .cert-item .cert-link:hover {
            color: var(--primary-dark, #00989e);
            text-decoration: underline;
        }

        .about-certificates-grid .cert-item .cert-link i {
            font-size: 14px;
            color: var(--primary, #00B9BF);
            margin-bottom: 0;
        }

        .about-certificates .certificates-more {
            text-align: center;
            margin-top: 32px;
        }

        /* ===== 8. КАК МЫ РАБОТАЕМ ===== */
        .about-process {
            padding: 60px 0;
            background: #fff;
            border-top: 1px solid var(--border-light, #eaeaea);
            border-bottom: 1px solid var(--border-light, #eaeaea);
        }

        .about-process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 16px;
        }

        .about-process-grid .process-item {
            text-align: center;
            position: relative;
            padding: 20px 12px;
            background: var(--bg-light, #f8f9fa);
            border-radius: 12px;
            border: 1px solid var(--border-light, #eaeaea);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .about-process-grid .process-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            border-color: var(--primary, #00B9BF);
        }

        .about-process-grid .process-item .step-num {
            display: inline-block;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary, #00B9BF);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            line-height: 36px;
            text-align: center;
            margin-bottom: 10px;
        }

        .about-process-grid .process-item i {
            font-size: 28px;
            color: var(--primary, #00B9BF);
            display: block;
            margin-bottom: 8px;
        }

        .about-process-grid .process-item h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark, #1a1a1a);
            margin-bottom: 2px;
        }

        .about-process-grid .process-item p {
            font-size: 13px;
            color: var(--text-muted, #666);
            line-height: 1.4;
        }

        /* ===== 9. КАРТА И КОНТАКТЫ ===== */
        .about-contact {
            padding: 60px 0;
            background: #fff;
        }

        .about-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-light, #eaeaea);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        .about-contact-info {
            padding: 40px 36px;
            color: #fff;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-image: url('https://static.tildacdn.com/tild3261-3464-4233-a263-366635633537/1787211511717-01a01e.png');
        }

        .about-contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }

        .about-contact-info * {
            position: relative;
            z-index: 2;
        }

        .about-contact-info h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .about-contact-info h3 i {
            margin-right: 10px;
        }

        .about-contact-info .contact-item {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .about-contact-info .contact-item i {
            font-size: 18px;
            margin-top: 2px;
            opacity: 0.8;
            width: 24px;
        }
        .about-contact-info .contact-item .value {
            font-size: 15px;
            font-weight: 500;
        }
        .about-contact-info .contact-item .label {
            display: block;
            font-size: 12px;
            opacity: 0.7;
            font-weight: 400;
        }

        .about-contact-info .map-placeholder {
            height: 140px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            margin: 16px 0 12px;
            overflow: hidden;
            position: relative;
            border: 1px dashed rgba(255, 255, 255, 0.15);
        }

        .about-contact-info .map-placeholder iframe {
            width: 100% !important;
            height: 100% !important;
            border: none !important;
            display: block !important;
        }

        .about-contact-info .btn {
            background: #fff;
            color: var(--primary, #00B9BF);
            padding: 12px 28px;
            align-self: flex-start;
        }
        .about-contact-info .btn:hover {
            background: #f0f0f0;
        }

        .about-contact-form {
            padding: 40px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .about-contact-form h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark, #1a1a1a);
            margin-bottom: 12px;
        }
        .about-contact-form h3 i {
            color: var(--primary, #00B9BF);
            margin-right: 10px;
        }

        .about-contact-form p {
            font-size: 16px;
            color: var(--text-muted, #666);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .about-contact-form .btn {
            display: inline-block;
            padding: 16px 48px;
            font-size: 18px;
            background: var(--primary, #00B9BF);
            color: #fff;
            border-radius: 4px;
            transition: background 0.25s, transform 0.15s;
            border: none;
            cursor: pointer;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.3px;
            width: auto;
            margin: 0 auto;
        }

        .about-contact-form .btn:hover {
            background: var(--primary-dark, #00989e);
            transform: translateY(-2px);
        }

        .about-contact-form .btn i {
            margin-right: 8px;
        }

        .about-contact-form .agreement {
            font-size: 13px;
            color: #999;
            margin-top: 16px;
        }

        /* ===== 10. ДИЗАЙНЕРСКОЕ ЗАВЕРШЕНИЕ ===== */
        .about-footer {
            padding: 60px 0;
            background: var(--primary, #00B9BF);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-footer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
            animation: floatBg 20s ease-in-out infinite alternate;
        }

        @keyframes floatBg {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(10%, 10%) rotate(10deg); }
        }

        .about-footer * {
            position: relative;
            z-index: 1;
        }

        .about-footer .footer-icon {
            font-size: 64px;
            margin-bottom: 16px;
            opacity: 0.8;
        }

        .about-footer h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .about-footer p {
            font-size: 18px;
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto 24px;
        }

        .about-footer .btn-outline {
            border-color: #fff;
            color: #fff;
            background: transparent;
            border: 2px solid #fff;
            display: inline-block;
            padding: 14px 36px;
            font-size: 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            font-weight: 500;
            letter-spacing: 0.3px;
            text-decoration: none;
        }

        .about-footer .btn-outline:hover {
            background: #fff;
            color: var(--primary, #00B9BF);
            transform: translateY(-1px);
        }

        .about-footer .btn-outline i {
            margin-right: 8px;
        }

        .about-footer .decor-line {
            width: 80px;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            margin: 20px auto;
            border-radius: 2px;
        }

        /* ================================================================
           ===== АДАПТИВ ДЛЯ СТРАНИЦЫ "О НАС" =====
           ================================================================ */

        @media (max-width: 1024px) {
            .about-hero .container {
                gap: 40px;
            }
            .about-hero .hero-text h1 {
                font-size: 36px;
            }
            .about-history .container {
                gap: 40px;
            }
            .about-values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-numbers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-legal-grid {
                grid-template-columns: 1fr;
            }
            .about-certificates-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .about-process-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .about-contact-grid {
                grid-template-columns: 1fr;
            }
            .about-contact-info {
                order: 2;
                min-height: 340px;
            }
        }

        @media (max-width: 820px) {
            .about-hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-hero .hero-text p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .about-hero .hero-text .btn {
                margin: 0 auto;
            }
            .about-hero .hero-image {
                height: 220px;
            }
            .about-history .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-history .history-image {
                height: 220px;
                order: -1;
            }
            .about-values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-numbers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .about-numbers-grid .number-item .number {
                font-size: 36px;
            }
            .about-legal-grid {
                grid-template-columns: 1fr;
            }
            .about-certificates-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .section-title {
                font-size: 26px;
            }
        }

        @media (max-width: 640px) {
            .about-hero {
                padding: 40px 0 50px;
            }
            .about-hero .hero-text h1 {
                font-size: 28px;
            }
            .about-hero .hero-text .hero-sub {
                font-size: 17px;
            }
            .about-hero .hero-image {
                height: 180px;
            }
            .about-history .history-image {
                height: 180px;
            }

            .about-values-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .about-values-grid .value-item {
                padding: 20px 14px;
            }
            .about-values-grid .value-item i {
                font-size: 28px;
            }
            .about-values-grid .value-item h4 {
                font-size: 15px;
            }

            .about-team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .about-team-grid .team-card {
                padding: 18px 14px 20px;
            }
            .about-team-grid .team-card .avatar {
                width: 72px;
                height: 72px;
                font-size: 20px;
            }
            .about-team-grid .team-card h4 {
                font-size: 15px;
            }

            .about-numbers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .about-numbers-grid .number-item .number {
                font-size: 28px;
            }
            .about-numbers-grid .number-item .number span {
                font-size: 20px;
            }
            .about-numbers-grid .number-item .label {
                font-size: 13px;
            }

            .about-legal .legal-block {
                padding: 20px 16px;
            }
            .about-legal .legal-block .legal-item {
                flex-direction: column;
                padding: 10px 0;
            }
            .about-legal .legal-block .legal-item .label {
                margin-right: 0;
                margin-bottom: 2px;
            }
            .about-legal .legal-block .legal-item .value {
                text-align: left;
            }

            .about-certificates-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .about-certificates-grid .cert-item {
                padding: 16px 12px;
            }
            .about-certificates-grid .cert-item i {
                font-size: 28px;
            }
            .about-certificates-grid .cert-item h4 {
                font-size: 13px;
            }

            .about-process-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .about-process-grid .process-item {
                padding: 16px 10px;
            }
            .about-process-grid .process-item i {
                font-size: 22px;
            }
            .about-process-grid .process-item h4 {
                font-size: 13px;
            }
            .about-process-grid .process-item p {
                font-size: 12px;
            }
            .about-process-grid .process-item .step-num {
                width: 28px;
                height: 28px;
                font-size: 12px;
                line-height: 28px;
            }

            .about-contact-info,
            .about-contact-form {
                padding: 24px 20px;
            }
            .about-contact-info {
                min-height: 280px;
            }

            .section-title {
                font-size: 22px;
                margin-bottom: 24px;
            }

            .about-footer {
                padding: 40px 0;
            }
            .about-footer h3 {
                font-size: 22px;
            }
            .about-footer p {
                font-size: 15px;
            }
            .about-footer .footer-icon {
                font-size: 48px;
            }
            .about-contact-form .btn {
                padding: 14px 32px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .about-values-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .about-team-grid {
                grid-template-columns: 1fr;
                max-width: 280px;
                margin: 0 auto;
            }
            .about-process-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
            .about-certificates-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
            .about-hero .hero-text h1 {
                font-size: 24px;
            }
            .about-numbers-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .about-numbers-grid .number-item .number {
                font-size: 24px;
            }
        }
        
        /* ================================================================
           ===== СТИЛИ ДЛЯ ДЕТАЛЬНЫХ ОПИСАНИЙ (detail-desc) =====
           ================================================================ */
        
        .detail-desc {
            font-size: 16px;
            line-height: 1.7;
            color: #1a1a1a;
        }
        
        /* ===== ТЕКСТ ===== */
        .detail-desc p {
            margin-bottom: 16px;
        }
        
        .detail-desc b,
        .detail-desc strong {
            font-weight: 700;
            color: #1a1a1a;
        }
        
        /* ===== СПИСКИ — ВОЗВРАЩАЕМ СТАНДАРТНЫЕ МАРКЕРЫ ===== */
        .detail-desc ul,
        .detail-desc ol {
            list-style: disc !important;
            padding-left: 24px !important;
            margin: 12px 0 16px 0 !important;
        }
        
        .detail-desc ul li,
        .detail-desc ol li {
            list-style: disc !important;
            margin-bottom: 6px;
            padding-left: 4px;
        }
        
        .detail-desc ol {
            list-style: decimal !important;
        }
        
        .detail-desc ol li {
            list-style: decimal !important;
        }
        
        /* Вложенные списки */
        .detail-desc ul ul,
        .detail-desc ol ul {
            list-style: circle !important;
            margin-top: 4px !important;
            margin-bottom: 4px !important;
        }
        
        .detail-desc ul ul li,
        .detail-desc ol ul li {
            list-style: circle !important;
        }
        
        .detail-desc ul ol,
        .detail-desc ol ol {
            list-style: lower-alpha !important;
            margin-top: 4px !important;
            margin-bottom: 4px !important;
        }
        
        .detail-desc ul ol li,
        .detail-desc ol ol li {
            list-style: lower-alpha !important;
        }
        
        /* ===== ТАБЛИЦЫ — ВОЗВРАЩАЕМ ГРАНИЦЫ ===== */
        .detail-desc table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0 20px 0;
            font-size: 15px;
            border: 1px solid #d0d0d0;
        }
        
        .detail-desc table td,
        .detail-desc table th {
            border: 1px solid #d0d0d0;
            padding: 10px 14px;
            text-align: left;
            vertical-align: middle;
        }
        
        .detail-desc table th {
            background: #f5f5f5;
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .detail-desc table tr:nth-child(even) {
            background: #fafafa;
        }
        
        .detail-desc table tr:hover {
            background: #f0f4f0;
        }
        
        .detail-desc table td p {
            margin-bottom: 0;
        }
        
        .detail-desc table td p align="center" {
            text-align: center;
        }
        
        /* ===== ЗАГОЛОВКИ ВНУТРИ БЛОКА ===== */
        .detail-desc h2,
        .detail-desc h3,
        .detail-desc h4 {
            margin-top: 24px;
            margin-bottom: 12px;
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .detail-desc h2 {
            font-size: 24px;
        }
        .detail-desc h3 {
            font-size: 20px;
        }
        .detail-desc h4 {
            font-size: 18px;
        }
        
        /* ===== ЖИРНЫЙ ТЕКСТ В СПИСКАХ ===== */
        .detail-desc ul li b,
        .detail-desc ul li strong,
        .detail-desc ol li b,
        .detail-desc ol li strong {
            font-weight: 600;
        }
        
        /* ===== ЦИТАТЫ ===== */
        .detail-desc blockquote {
            border-left: 4px solid var(--primary, #00B9BF);
            padding: 12px 20px;
            margin: 16px 0;
            background: #f8f9fa;
            border-radius: 0 8px 8px 0;
            color: #444;
        }
        
        /* ===== АДАПТИВ ДЛЯ ТАБЛИЦ ===== */
        @media (max-width: 640px) {
            .detail-desc table {
                font-size: 13px;
            }
            .detail-desc table td,
            .detail-desc table th {
                padding: 6px 10px;
            }
            .detail-desc ul,
            .detail-desc ol {
                padding-left: 18px !important;
            }
        }
        
        @media (max-width: 480px) {
            .detail-desc table {
                font-size: 12px;
            }
            .detail-desc table td,
            .detail-desc table th {
                padding: 4px 8px;
            }
            .detail-desc ul,
            .detail-desc ol {
                padding-left: 14px !important;
            }
        }