/* ========== БАЗА ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.container { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 20px;
    width: 100%;
}

section { padding: 80px 0; width: 100%; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; color: #0a0a0a; line-height: 1.2; }
h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 36px; margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 12px; }

.subtitle { font-size: 20px; color: #666; margin-bottom: 36px; line-height: 1.6; }
.highlight { background: #ededed; padding: 6px 14px; border-radius: 8px; }

/* Скрытое поле для ботов */
.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ========== КНОПКИ ========== */
.btn {
    display: inline-block; padding: 16px 32px; border-radius: 30px;
    text-decoration: none; font-weight: 600; font-size: 16px;
    transition: all 0.3s; cursor: pointer; border: none; font-family: inherit;
}
.btn--primary { background: #111; color: #fff; }
.btn--primary:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.btn--ghost { background: transparent; color: #111; border: 2px solid #ddd; }
.btn--ghost:hover { border-color: #111; }
.btn--outline { background: transparent; color: #111; border: 2px solid #111; }
.btn--outline:hover { background: #111; color: #fff; }
.btn--block { width: 100%; }

/* ========== НАВИГАЦИЯ ========== */
.nav { 
    position: sticky; 
    top: 0; 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid #f0f0f0; 
    z-index: 1000; 
    padding: 16px 0;
    width: 100%;
}
.nav__inner { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { font-size: 28px; font-weight: 800; color: #111; text-decoration: none; position: relative; z-index: 1002; }
.logo span { color: #aaa; }
.logo--footer { color: #fff; }

.nav__menu { display: flex; gap: 28px; align-items: center; }
.nav__menu a { color: #666; text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav__menu a:hover { color: #111; }
.nav__cta { background: #111; color: #fff !important; padding: 12px 24px; border-radius: 25px; }
.nav__cta:hover { background: #333 !important; }

.nav__burger { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 8px; 
    z-index: 1002;
    position: relative;
}

.nav__burger span { 
    width: 24px; 
    height: 2px; 
    background: #111; 
    transition: all 0.2s ease;
    display: block;
}

/* Анимация бургера */
.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Оверлей для мобильного меню */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========== HERO ========== */
.hero { 
    background: #fafafa; 
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.hero__inner { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero__badge { display: inline-block; background: #f0f0f0; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; color: #666; margin-bottom: 20px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat__num { font-size: 28px; font-weight: 800; color: #111; display: block; margin-bottom: 4px; }
.stat__label { font-size: 14px; color: #999; }

/* ========== СЛАЙДЕР В HERO ========== */
.hero__slider { 
    position: relative; 
    width: 100%;
}

.slider { 
    position: relative; 
    overflow: hidden; 
    border-radius: 20px;
    width: 100%;
}

.slider__track { 
    display: flex; 
    transition: transform 0.4s ease;
    width: 100%;
}

.slider__slide { 
    min-width: 100%; 
    width: 100%;
}

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

/* Минималистичные стрелки */
.slider__btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border: none; 
    border-radius: 50%; 
    width: 36px; 
    height: 36px; 
    cursor: pointer; 
    font-size: 14px; 
    color: #333;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s; 
    z-index: 10;
    opacity: 0.5;
}

.slider__btn:hover { 
    background: rgba(255, 255, 255, 0.9);
    opacity: 1;
    color: #111;
}

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

.slider__dots { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-top: 20px;
}

.slider__dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: #ddd; 
    border: none; 
    cursor: pointer; 
    padding: 0; 
    transition: all 0.3s; 
}

.slider__dot.active { 
    background: #111; 
    width: 24px; 
    border-radius: 4px; 
}

/* ========== СЕКЦИИ ========== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: #999; font-size: 18px; margin-top: 8px; }

/* ========== ПРЕИМУЩЕСТВА ========== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card { padding: 36px 28px; background: #fafafa; border-radius: 16px; transition: transform 0.3s, box-shadow 0.3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.feature-card__icon { font-size: 36px; margin-bottom: 16px; }
.feature-card p { color: #666; font-size: 15px; line-height: 1.6; }

/* ========== ДОПОЛНИТЕЛЬНЫЕ ПЛЮСЫ ========== */
.extra-benefits {
    background: #fafafa;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 100%;
}

.benefit-item__check {
    font-size: 24px;
    color: #4CAF50;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.benefit-item strong {
    color: #111;
}

/* ========== ГАЛЕРЕЯ ========== */
.gallery {
    background: #ffffff;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========== ШАГИ ========== */
.how { background: #fafafa; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.step { text-align: center; padding: 16px; }
.step__circle { width: 72px; height: 72px; border-radius: 50%; background: #fff; border: 2px solid #e0e0e0; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin: 0 auto 20px; transition: all 0.3s; }
.step:hover .step__circle { background: #111; color: #fff; border-color: #111; }
.step p { color: #666; font-size: 15px; line-height: 1.6; }

/* ========== ЦЕНЫ ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.price-card { padding: 36px 32px; background: #fafafa; border-radius: 16px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.price-card--popular { background: #fff; border: 2px solid #111; }
.price-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #111; color: #fff; padding: 6px 16px; border-radius: 15px; font-size: 12px; font-weight: 600; }
.price-card__desc { color: #999; font-size: 14px; margin-bottom: 20px; }
.price-card__price { font-size: 36px; font-weight: 800; color: #111; margin-bottom: 24px; }
.price-card__price span { font-size: 16px; font-weight: 400; color: #999; }
.price-card__features { list-style: none; margin-bottom: 28px; }
.price-card__features li { padding: 8px 0; color: #666; font-size: 15px; }

/* ========== ОТЗЫВЫ ========== */
.reviews { background: #fafafa; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: #fff; padding: 28px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.review-card__stars { color: #ffd700; font-size: 20px; margin-bottom: 16px; }
.review-card__text { color: #333; font-style: italic; margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #666; }
.review-card__author strong { display: block; font-size: 15px; }
.review-card__author span { font-size: 13px; color: #999; }

/* ========== FAQ ========== */
.faq {
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-align: left;
    transition: color 0.3s;
    font-family: inherit;
}

.faq-question:hover {
    color: #666;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 20px 0;
}

.faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* ========== КОНТАКТЫ И ФОРМА ========== */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__details { margin-top: 24px; }
.contact__item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #666; font-size: 16px; }
.contact__item a { color: #111; text-decoration: none; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input[type="text"],
.contact-form input[type="email"] { 
    padding: 16px 20px; 
    border-radius: 12px; 
    border: 1px solid #e0e0e0; 
    font-size: 16px; 
    font-family: inherit; 
    outline: none; 
    transition: border-color 0.2s; 
    width: 100%; 
    background: #fff; 
}
.contact-form input:focus { border-color: #111; }

/* Согласие на обработку персональных данных */
.consent-checkbox {
    margin: 8px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #111;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #111;
    border-color: #111;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-text {
    padding-top: 1px;
}

.privacy-link {
    color: #111;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: #666;
}

/* Сообщение об успешной отправке */
.success-message {
    display: none;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.success-message__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-message h3 {
    margin-bottom: 12px;
}

.success-message p {
    color: #666;
    font-size: 16px;
}

/* ========== ЛАЙТБОКС ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxIn 0.3s ease-out;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1002;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1002;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.lightbox__caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    animation: slideUp 0.5s ease-out;
    max-width: 600px;
    width: calc(100% - 40px);
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    flex-wrap: wrap;
}

.cookie-banner__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-banner__text {
    flex: 1;
    min-width: 200px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: #111;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #666;
}

.cookie-banner__btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-banner__btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ========== МОДАЛЬНОЕ ОКНО ПОЛИТИКИ ========== */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1003;
    display: none;
    align-items: center;
    justify-content: center;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.privacy-modal__content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1004;
    animation: modalIn 0.3s ease-out;
    margin: 20px;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.privacy-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.privacy-modal__close:hover {
    background: #e0e0e0;
    color: #111;
}

.privacy-modal__content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    padding-right: 40px;
}

.privacy-modal__body h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.privacy-modal__body p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.privacy-modal__body ul {
    margin: 12px 0;
    padding-left: 24px;
}

.privacy-modal__body li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* ========== ПОДВАЛ ========== */
.footer { 
    background: #111; 
    color: #fff; 
    padding: 40px 0; 
    width: 100%; 
}

.footer__inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__social { 
    display: flex; 
    gap: 16px; 
}

.footer__social a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 22px; 
    transition: opacity 0.2s; 
}

.footer__social a:hover { 
    opacity: 0.7; 
}

.footer p { 
    color: #999; 
    font-size: 14px; 
}

/* ========== АНИМАЦИИ ========== */
@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.hero__content { animation: fadeInUp 0.8s ease-out; }

/* ========== АДАПТАЦИЯ ========== */
@media (max-width: 768px) {
    section { padding: 50px 0; }
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    
    /* Мобильное меню */
    .nav__menu { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 999;
        transition: right 0.25s ease-out;
        padding: 80px 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        visibility: hidden;
    }
    
    .nav__menu.active { 
        right: 0;
        visibility: visible;
    }
    
    .nav__menu a {
        font-size: 22px;
        font-weight: 600;
        color: #111;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    
    .nav__menu.active a {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Задержка для каждого пункта меню */
    .nav__menu.active a:nth-child(1) { transition-delay: 0.05s; }
    .nav__menu.active a:nth-child(2) { transition-delay: 0.08s; }
    .nav__menu.active a:nth-child(3) { transition-delay: 0.11s; }
    .nav__menu.active a:nth-child(4) { transition-delay: 0.14s; }
    .nav__menu.active a:nth-child(5) { transition-delay: 0.17s; }
    .nav__menu.active a:nth-child(6) { transition-delay: 0.2s; }
    .nav__menu.active a:nth-child(7) { transition-delay: 0.23s; }
    
    .nav__cta {
        background: #111;
        color: #fff !important;
        padding: 16px 32px;
        border-radius: 30px;
        font-size: 20px !important;
    }
    
    .nav__burger { 
        display: flex;
    }
    
    .hero__inner { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        padding: 0 0 40px 0;
    }
    
    .hero__content { padding: 40px 20px 0; }
    .hero__slider { width: 100%; margin: 0; padding: 0; }
    .slider { border-radius: 0; }
    .hero__stats { gap: 24px; }
    
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    
    .benefits-list { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 300px; }
    
    .slider__btn { width: 32px; height: 32px; font-size: 12px; opacity: 0.4; }
    .slider__btn--prev { left: 6px; }
    .slider__btn--next { right: 6px; }
    
    .lightbox__close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox__nav--prev {
        left: 10px;
    }
    
    .lightbox__nav--next {
        right: 10px;
    }
    
    .lightbox__content img {
        max-width: 95%;
    }
    
    .cookie-banner {
        bottom: 10px;
        width: calc(100% - 20px);
    }
    
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .privacy-modal__content {
        padding: 24px;
        margin: 10px;
        max-height: 90vh;
    }
    
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .btn { text-align: center; }
    .pricing-grid, .features-grid, .steps { grid-template-columns: 1fr; }
    .hero__inner { padding-bottom: 30px; }
    .hero__content { padding: 30px 20px 0; }
    
    .cookie-banner__btn {
        width: 100%;
    }
    
    .nav__menu a {
        font-size: 20px;
    }
}