/* ===== Переменные для быстрой кастомизации ===== */
:root {
    --color-primary: #2d2d2d;
    --color-accent: #c8a24e;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f7f5;
    --color-text: #2d2d2d;
    --color-text-light: #5a5a5a;
    --color-white: #ffffff;
    --font-main: 'Segoe UI', Arial, sans-serif;
    --max-width: 1100px;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --transition: 0.3s ease;
}

/* ===== Сброс ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== Кнопка ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.btn:hover {
    background: #b08e3a;
}

/* ===== Шапка ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
    transition: transform 0.35s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: block;
    height: 120px;
    margin: -50px 0;
}

.logo img {
    height: 100%;
    width: auto;
    mix-blend-mode: multiply;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--color-accent);
}

/* Бургер меню */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* ===== Главный экран ===== */
.hero {
    margin-top: 60px;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.hero h1 span {
    color: var(--color-accent);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: #e8e8e8;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===== Статистика ===== */
.stats {
    padding: 50px 0;
    background: #111111;
    border-top: 3px solid var(--color-accent);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat {
    padding: 32px 16px;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.stat__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    display: inline;
    line-height: 1;
}

.stat__symbol {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    vertical-align: super;
}

.stat p {
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== Проблемы конкурентов ===== */
.problems {
    padding: 70px 0;
    background: linear-gradient(to bottom, #111111, #151515);
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.problems h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.problems__subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.problem {
    padding: 28px 24px;
    background: #1a1a1a;
    border-radius: var(--radius);
    border-left: 3px solid var(--color-accent);
}

.problem__icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.problem p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

.problems__cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #cccccc;
}

.problems__cta strong {
    color: var(--color-accent);
}

/* Кнопка-шторка (скрыта на десктопе) */
.problems__toggle {
    display: none;
}

/* ===== Почему мы ===== */
.why-us {
    padding: 70px 0;
    background: linear-gradient(to bottom, #151515, #1a1a1a);
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.why-us h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-us__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius);
    background: #1a1a1a;
    transition: transform var(--transition);
}

.why-us__item:hover {
    transform: translateY(-3px);
}

.why-us__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: var(--color-primary);
    border-radius: 50%;
}

.why-us__item h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.why-us__item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

/* ===== Галерея ===== */
.gallery {
    padding: 70px 0;
    background: #111111;
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.gallery h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 200;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox__close:hover {
    opacity: 1;
}

.gallery__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #555555;
    font-size: 1.1rem;
}

/* ===== Секции ===== */
section {
    padding: 60px 0;
}

section:nth-child(even):not(.hero):not(.problems):not(.stats):not(.why-us):not(.gallery):not(.film):not(.packages):not(.steps):not(.contacts):not(.testimonials) {
    background: var(--color-bg-alt);
}

section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--color-primary);
}

/* ===== Плёнка Llumar IRX ===== */
.film {
    padding: 70px 0;
    background: linear-gradient(to bottom, #111111, #151515);
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.film h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.film__intro {
    text-align: center;
    color: #cccccc;
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.film__intro strong {
    color: var(--color-accent);
}

.film__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.film__feature {
    padding: 28px 24px;
    background: #1a1a1a;
    border-radius: var(--radius);
    border-left: 3px solid var(--color-accent);
    transition: transform var(--transition);
}

.film__feature:hover {
    transform: translateY(-3px);
}

.film__icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.film__feature h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.film__feature p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Кнопка-шторка плёнки (скрыта на десктопе) */
.film__toggle {
    display: none;
}

/* ===== Пакеты ===== */
.packages {
    padding: 70px 0;
    background: linear-gradient(to bottom, #111111, #151515);
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.packages h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.package {
    background: #1a1a1a;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform var(--transition);
}

.package:hover {
    transform: translateY(-4px);
}

.package--popular {
    border: 2px solid var(--color-accent);
}

.package__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #111111;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.package__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.package h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.package p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

.shades__title {
    text-align: center;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.shades__subtitle {
    text-align: center;
    color: #888888;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.shades__row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.shade {
    text-align: center;
}

.shade__swatch {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #333333;
    margin: 0 auto 8px;
    transition: border-color var(--transition), transform var(--transition);
}

.shade:hover .shade__swatch {
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.shade__label {
    display: block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
}

.shade__desc {
    display: block;
    color: #888888;
    font-size: 0.8rem;
}

.packages__cta {
    text-align: center;
}

/* ===== Как это работает ===== */
.steps {
    padding: 70px 0;
    background: linear-gradient(to bottom, #111111, #151515);
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.steps h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.steps__subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    text-align: center;
    padding: 32px 20px;
    background: #1a1a1a;
    border-radius: var(--radius);
    position: relative;
    transition: transform var(--transition);
}

.step:hover {
    transform: translateY(-4px);
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: #111111;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

/* ===== Контакты ===== */
.contacts {
    padding: 70px 0;
    background: linear-gradient(to bottom, #111111, #151515);
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.contacts h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contacts__left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts__info p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #cccccc;
}

.contacts__info a {
    color: var(--color-accent);
}

.contacts__map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 350px;
    box-shadow: var(--shadow);
}

.contacts__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* Кнопки связи */
.contacts__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: opacity var(--transition), transform var(--transition);
    color: #ffffff;
}

.contact-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.contact-btn--call {
    background: var(--color-accent);
}

.contact-btn--sms {
    background: #4a90d9;
}

.contact-btn--whatsapp {
    background: #25D366;
    color: #ffffff;
}

.contact-btn--messenger {
    background: #0084FF;
}

/* Чеклист */
.contacts__checklist {
    background: #1a1a1a;
    border-radius: var(--radius);
    padding: 24px 28px;
    border-left: 3px solid var(--color-accent);
}

.contacts__checklist h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.contacts__checklist ul {
    list-style: none;
}

.contacts__checklist li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contacts__checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* ===== Отзывы клиентов ===== */
.testimonials {
    padding: 60px 0;
    background: #111111;
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.testimonials h2 {
    color: #ffffff;
}

.testimonials__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.testimonials__rating {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.testimonials__stars-summary {
    color: #FBBC04;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.testimonials__count {
    color: #999999;
    font-size: 0.95rem;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.testimonial {
    background: #1a1a1a;
    border-radius: var(--radius);
    padding: 28px 24px;
    border-left: 3px solid var(--color-accent);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial__stars {
    color: #FBBC04;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial__text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.testimonial__author {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonials__google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    color: #666666;
    font-size: 0.85rem;
}

.testimonials__google-logo {
    height: 18px;
    width: auto;
}

/* ===== Отзыв CTA ===== */
.review-cta {
    padding: 40px 0;
    background: #111111;
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.review-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.review-cta__text h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.review-cta__text p {
    color: #999999;
    font-size: 0.95rem;
}

.review-cta__btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== Подвал ===== */
.footer {
    background: #0a0a0a;
    color: var(--color-white);
    padding: 50px 0 24px;
    font-size: 0.9rem;
    border-top: 2px solid;
    border-image: linear-gradient(to right, transparent, var(--color-accent), transparent) 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer__brand h3 {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer__brand p {
    color: #999999;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer__links h4,
.footer__contact h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: #999999;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-accent);
}

.footer__contact p {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer__contact a {
    color: var(--color-accent);
    transition: opacity var(--transition);
}

.footer__contact a:hover {
    opacity: 0.8;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #cccccc;
    transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
    background: var(--color-accent);
    color: #111111;
}

.footer__bottom {
    border-top: 1px solid #222222;
    padding-top: 20px;
    text-align: center;
    color: #666666;
    font-size: 0.85rem;
}

/* ===== Кнопка наверх ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    color: #111111;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

/* ===== Адаптив: планшеты ===== */
@media (max-width: 768px) {
    .film__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .film__grid.open {
        max-height: 2000px;
        opacity: 1;
    }

    .film__toggle {
        display: block;
        margin: 0 auto 20px;
        padding: 12px 28px;
        background: none;
        border: 1px solid var(--color-accent);
        color: var(--color-accent);
        border-radius: var(--radius);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .film__toggle:hover {
        background: var(--color-accent);
        color: #111111;
    }

    .film__arrow {
        display: inline-block;
        transition: transform 0.3s ease;
        margin-left: 6px;
    }

    .film__toggle.active .film__arrow {
        transform: rotate(180deg);
    }

    .problems__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .problems__grid.open {
        max-height: 2000px;
        opacity: 1;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links ul {
        align-items: center;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery__item img {
        height: 180px;
    }

    .problems__toggle {
        display: block;
        margin: 0 auto 20px;
        padding: 12px 28px;
        background: none;
        border: 1px solid var(--color-accent);
        color: var(--color-accent);
        border-radius: var(--radius);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .problems__toggle:hover {
        background: var(--color-accent);
        color: #111111;
    }

    .problems__arrow {
        display: inline-block;
        transition: transform 0.3s ease;
        margin-left: 6px;
    }

    .problems__grid.open ~ .problems__toggle .problems__arrow,
    .problems__toggle.active .problems__arrow {
        transform: rotate(180deg);
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat__number, .stat__symbol {
        font-size: 2rem;
    }

    .stat:nth-child(2)::after {
        display: none;
    }

    .stat:nth-child(1)::after,
    .stat:nth-child(3)::after {
        height: 40px;
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.4rem;
    }

    /* Бургер меню — мобильное */
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--color-white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

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

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .packages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .shades__row {
        gap: 16px;
    }

    .shade__swatch {
        width: 50px;
        height: 50px;
    }
}
