* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --accent-yellow: #fffacd;
    --light-yellow: #fffef0;
    --soft-yellow: #fffef5;
    --text-light: #e8e8e8;
    --text-dim: #b0b0b0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 250, 205, 0.2);
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    background-color: rgba(255, 250, 205, 0.05);
    box-shadow: 0 0 20px rgba(255, 250, 205, 0.1);
}

/* Главный экран */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: var(--darker-bg);
    overflow: hidden;
}

/* Видео на фоне */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    clip-path: polygon(0 0, 0 0, 0 0);
    animation: videoExpand 2.5s ease-out 0.5s forwards;
}

@keyframes videoExpand {
    0% {
        clip-path: polygon(0 0, 0 0, 0 0);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Затемнение поверх видео */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.85) 0%, 
        rgba(26, 26, 26, 0.75) 50%,
        rgba(15, 15, 15, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

/* Логотип с анимацией */
.hero-logo {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
    z-index: 3;
}

.logo-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: scale(0.8);
    animation: logoAppear 1.5s ease-out 0.3s forwards, logoPulse 3s ease-in-out 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 250, 205, 0.3));
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: drop-shadow(0 0 0px rgba(255, 250, 205, 0));
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 250, 205, 0.5));
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 250, 205, 0.3));
    }
}

/* Постоянная пульсация логотипа */
@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 250, 205, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(255, 250, 205, 0.6));
    }
}

/* Эффект рисования контура логотипа */
.hero-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-yellow);
    border-radius: 30px;
    opacity: 0;
    animation: borderFadeIn 2s ease-out 0.5s forwards, borderPulse 3s ease-in-out 2.5s infinite;
    z-index: -1;
    box-shadow: 0 0 20px rgba(255, 250, 205, 0.3);
}

/* Плавное появление рамки без clip-path */
@keyframes borderFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
        box-shadow: 0 0 0px rgba(255, 250, 205, 0);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 250, 205, 0.3);
    }
}

/* Постоянная пульсация рамки */
@keyframes borderPulse {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 20px rgba(255, 250, 205, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 35px rgba(255, 250, 205, 0.6);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--accent-yellow);
    position: relative;
    z-index: 3;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-dim);
    position: relative;
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* SVG линия анимация */
.line-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.animated-line {
    fill: none;
    stroke: rgba(255, 250, 205, 0.4);
    stroke-width: 0.15;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-in-out forwards;
    filter: blur(0.5px);
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Секции */
.section {
    padding: 100px 0;
    position: relative;
}

.section-border {
    border: 1px solid rgba(255, 250, 205, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.section-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.3), rgba(255, 250, 205, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    animation: borderGlow 2s ease-in-out forwards;
}

@keyframes borderGlow {
    to {
        opacity: 1;
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    color: var(--accent-yellow);
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--light-yellow);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Анимации */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-in 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-focus {
    opacity: 1;
    transform: scale(1);
}

.fade-focus.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-left {
    opacity: 1;
    transform: translateX(0);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 1;
    transform: translateX(0);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-up {
    opacity: 1;
    transform: translateY(0);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0s;
}

.delay-2 {
    transition-delay: 0s;
}

.delay-3 {
    transition-delay: 0s;
}

.delay-4 {
    transition-delay: 0s;
}

/* Кто я */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.text-block {
    position: relative;
}

.text-block h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Контейнер для мини-логотипа с рамкой */
.mini-logo-wrapper {
    position: relative;
    display: inline-block;
}

/* Мини логотип в заголовке */
.mini-logo {
    width: 60px;
    height: 60px;
    display: block;
    animation: miniLogoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 250, 205, 0.6));
    border-radius: 10px;
    object-fit: contain;
    padding: 5px;
    position: relative;
    z-index: 2;
}

@keyframes miniLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(255, 250, 205, 0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 250, 205, 0.9));
        transform: scale(1.05);
    }
}

/* Рамка для мини-логотипа */
.mini-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1.5px solid var(--accent-yellow);
    border-radius: 15px;
    opacity: 0.5;
    animation: miniLogoBorderPulse 3s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 250, 205, 0.3);
}

@keyframes miniLogoBorderPulse {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 15px rgba(255, 250, 205, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 25px rgba(255, 250, 205, 0.6);
    }
}

.text-block p {
    margin-bottom: 15px;
    color: var(--text-dim);
}

/* Placeholder */
.placeholder {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.05) 0%, rgba(255, 250, 205, 0.02) 100%);
    border: 1px dashed rgba(255, 250, 205, 0.3);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-dim);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-weight: 300;
    transition: all 0.4s ease;
}

.placeholder:hover {
    border-color: rgba(255, 250, 205, 0.5);
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.08) 0%, rgba(255, 250, 205, 0.04) 100%);
    box-shadow: 0 0 30px rgba(255, 250, 205, 0.1);
}

/* Слайдшоу фотографий */
.photo-slideshow {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.05) 0%, rgba(255, 250, 205, 0.02) 100%);
    border: 1px solid rgba(255, 250, 205, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slideshow-image.active {
    opacity: 1;
    z-index: 2;
}

/* Точки навигации */
.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
    background: rgba(15, 15, 15, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 250, 205, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 250, 205, 0.5);
}

.dot:hover {
    background: rgba(255, 250, 205, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(255, 250, 205, 0.5);
    transform: scale(1.3);
}

.map-placeholder {
    min-height: 400px;
}

/* Прайс */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.price-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 40px 30px;
    border: 1px solid rgba(255, 250, 205, 0.2);
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 250, 205, 0.5);
    box-shadow: 0 15px 40px rgba(255, 250, 205, 0.15);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
}

/* Видео на фоне карточки */
#tattoo-removal-card,
#brows-removal-card,
#eyelids-removal-card,
#lips-removal-card,
#carbon-peeling-card {
    background: transparent;
}

.card-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    border-radius: 25px;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.85) 0%, 
        rgba(26, 26, 26, 0.75) 50%,
        rgba(15, 15, 15, 0.85) 100%);
    z-index: 1;
    border-radius: 25px;
}

.card-content {
    position: relative;
    z-index: 2;
}

.service-info {
    margin: 20px 0;
}

.price {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin: 15px 0;
    font-weight: bold;
}

.duration {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin: 10px 0;
}

.service-description {
    margin: 20px 0;
    color: var(--text-dim);
}

/* Кнопки в карточке */
.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.btn-examples,
.btn-telegram,
.btn-instagram {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-examples {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.15) 0%, rgba(255, 250, 205, 0.08) 100%);
    color: var(--accent-yellow);
    border: 1px solid rgba(255, 250, 205, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 250, 205, 0.2);
}

.btn-examples:hover {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.25) 0%, rgba(255, 250, 205, 0.15) 100%);
    border-color: var(--accent-yellow);
    box-shadow: 0 6px 20px rgba(255, 250, 205, 0.2),
                inset 0 1px 0 rgba(255, 250, 205, 0.3);
    transform: translateY(-2px);
}

.btn-telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.3) 0%, rgba(0, 102, 153, 0.25) 100%);
    color: rgba(135, 206, 250, 1);
    border: 1px solid rgba(0, 136, 204, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(135, 206, 250, 0.2);
}

.btn-telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.4) 0%, rgba(0, 102, 153, 0.35) 100%);
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3),
                inset 0 1px 0 rgba(135, 206, 250, 0.3);
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(135deg, 
        rgba(225, 48, 108, 0.25) 0%, 
        rgba(193, 53, 132, 0.2) 50%, 
        rgba(131, 58, 180, 0.25) 100%);
    color: rgba(255, 182, 193, 1);
    border: 1px solid rgba(225, 48, 108, 0.4);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 182, 193, 0.2);
}

.btn-instagram:hover {
    background: linear-gradient(135deg, 
        rgba(225, 48, 108, 0.35) 0%, 
        rgba(193, 53, 132, 0.3) 50%, 
        rgba(131, 58, 180, 0.35) 100%);
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3),
                inset 0 1px 0 rgba(255, 182, 193, 0.3);
    transform: translateY(-2px);
}

/* Раскрывающаяся секция с примерами */
.examples-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, margin-top 0.5s ease-out;
    margin-top: 0;
}

.examples-section.active {
    max-height: 800px;
    margin-top: 25px;
}

/* Карусель фотографий */
.examples-carousel {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

/* Точки карусели */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 250, 205, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 250, 205, 0.5);
}

.carousel-dot:hover {
    background: rgba(255, 250, 205, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(255, 250, 205, 0.5);
    transform: scale(1.3);
}



/* Иконки в стиле жидкого стекла */
.icon-glass {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.1) 0%, rgba(255, 250, 205, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 250, 205, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(255, 250, 205, 0.1),
                inset 0 1px 0 rgba(255, 250, 205, 0.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.icon-glass svg {
    width: 32px;
    height: 32px;
    color: var(--accent-yellow);
    filter: drop-shadow(0 0 8px rgba(255, 250, 205, 0.3));
    position: relative;
    z-index: 3;
}

.icon-glass:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.15) 0%, rgba(255, 250, 205, 0.08) 100%);
    border-color: rgba(255, 250, 205, 0.5);
    box-shadow: 0 12px 40px rgba(255, 250, 205, 0.2),
                inset 0 1px 0 rgba(255, 250, 205, 0.3);
}

.recommendation-block .icon-glass,
.faq-item .icon-glass {
    margin: 0 auto 20px;
}

/* Контактная информация с иконками */
.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-info-item .icon-glass {
    flex-shrink: 0;
    margin-bottom: 0;
}

.contact-info-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.contact-info-item p {
    margin: 0;
    position: relative;
    z-index: 2;
}

.contact-info-item > div {
    position: relative;
    z-index: 2;
}

/* Карбоновый пилинг */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.recommendation-block {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(15, 15, 15, 0.6) 100%);
    padding: 35px;
    border-left: 2px solid rgba(255, 250, 205, 0.5);
    border-radius: 15px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    z-index: 1;
}

.recommendation-block:hover {
    border-left-color: var(--accent-yellow);
    box-shadow: -5px 0 20px rgba(255, 250, 205, 0.1);
}

.recommendation-block p {
    text-align: left;
    position: relative;
    z-index: 2;
}

/* FAQ */
#faq {
    position: relative;
    overflow: hidden;
}

/* Фоновое видео для всей секции FAQ */
.faq-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.85) 0%, 
        rgba(26, 26, 26, 0.75) 50%,
        rgba(15, 15, 15, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Внутреннее видео в section-border */
#faq .section-border {
    position: relative;
    overflow: hidden;
}

.faq-inner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
    border-radius: 30px;
}

.faq-inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.8) 0%, 
        rgba(26, 26, 26, 0.7) 50%,
        rgba(15, 15, 15, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 30px;
}

#faq .container {
    position: relative;
    z-index: 2;
}

#faq h2,
#faq .faq-grid {
    position: relative;
    z-index: 3;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 250, 205, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    z-index: 3;
}

.faq-item:hover {
    border-color: rgba(255, 250, 205, 0.5);
    box-shadow: 0 10px 30px rgba(255, 250, 205, 0.1);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.faq-item p {
    color: var(--text-dim);
    line-height: 1.7;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Кнопки в FAQ карточке */
.faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.faq-item .btn-examples,
.faq-item .btn-telegram {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-item .btn-examples {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.15) 0%, rgba(255, 250, 205, 0.08) 100%);
    color: var(--accent-yellow);
    border: 1px solid rgba(255, 250, 205, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 250, 205, 0.2);
}

.faq-item .btn-examples:hover {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.25) 0%, rgba(255, 250, 205, 0.15) 100%);
    border-color: var(--accent-yellow);
    box-shadow: 0 6px 20px rgba(255, 250, 205, 0.2),
                inset 0 1px 0 rgba(255, 250, 205, 0.3);
    transform: translateY(-2px);
}

.faq-item .btn-telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.3) 0%, rgba(0, 102, 153, 0.25) 100%);
    color: rgba(135, 206, 250, 1);
    border: 1px solid rgba(0, 136, 204, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(135, 206, 250, 0.2);
}

.faq-item .btn-telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.4) 0%, rgba(0, 102, 153, 0.35) 100%);
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3),
                inset 0 1px 0 rgba(135, 206, 250, 0.3);
    transform: translateY(-2px);
}

/* Раскрывающаяся секция с видео в FAQ */
.video-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, margin-top 0.5s ease-out;
    margin-top: 0;
}

.video-section.active {
    max-height: 800px;
    margin-top: 25px;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Испытываю свое оборудование и мастерство на себе */
.glow-text {
    animation: textGlow 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 250, 205, 0.3),
                     0 0 20px rgba(255, 250, 205, 0.2),
                     0 0 30px rgba(255, 250, 205, 0.1);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 250, 205, 0.6),
                     0 0 30px rgba(255, 250, 205, 0.4),
                     0 0 40px rgba(255, 250, 205, 0.2);
    }
}

.self-testing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.self-testing-video-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 250, 205, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.self-testing-video-card:hover {
    border-color: rgba(255, 250, 205, 0.5);
    box-shadow: 0 10px 30px rgba(255, 250, 205, 0.15);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.self-testing-description {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.self-testing-description p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.self-testing-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.self-testing-buttons .btn-instagram,
.self-testing-buttons .btn-telegram {
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.self-testing-buttons .btn-instagram {
    background: linear-gradient(135deg, 
        rgba(225, 48, 108, 0.25) 0%, 
        rgba(193, 53, 132, 0.2) 50%, 
        rgba(131, 58, 180, 0.25) 100%);
    color: rgba(255, 182, 193, 1);
    border: 1px solid rgba(225, 48, 108, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 182, 193, 0.2);
}

.self-testing-buttons .btn-instagram:hover {
    background: linear-gradient(135deg, 
        rgba(225, 48, 108, 0.35) 0%, 
        rgba(193, 53, 132, 0.3) 50%, 
        rgba(131, 58, 180, 0.35) 100%);
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3),
                inset 0 1px 0 rgba(255, 182, 193, 0.3);
    transform: translateY(-2px);
}

.self-testing-buttons .btn-telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.3) 0%, rgba(0, 102, 153, 0.25) 100%);
    color: rgba(135, 206, 250, 1);
    border: 1px solid rgba(0, 136, 204, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(135, 206, 250, 0.2);
}

.self-testing-buttons .btn-telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.4) 0%, rgba(0, 102, 153, 0.35) 100%);
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3),
                inset 0 1px 0 rgba(135, 206, 250, 0.3);
    transform: translateY(-2px);
}

.recommendation-block ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.recommendation-block li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dim);
    margin-bottom: 5px;
    z-index: 2;
}

.recommendation-block li:before {
    content: "→";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent-yellow);
    font-size: 16px;
    line-height: 1;
    z-index: 3;
}

/* Оборудование */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.equipment-card {
    text-align: center;
}

.equipment-card h3 {
    margin-top: 20px;
}

.equipment-card p {
    color: var(--text-dim);
}

/* Интерьер */
.interior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Локация */
.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.address-block {
    position: relative;
    z-index: 1;
}

.address-block h3 {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.address-block p {
    color: var(--text-dim);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Контакты */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 250, 205, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.08) 0%, rgba(255, 250, 205, 0.04) 100%);
    transform: scale(1.05);
    border-color: rgba(255, 250, 205, 0.5);
    box-shadow: 0 10px 30px rgba(255, 250, 205, 0.15);
}

.contact-card p {
    color: var(--text-dim);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 250, 205, 0.2);
    color: var(--text-dim);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        border-bottom: 1px solid rgba(255, 250, 205, 0.15);
    }
    
    .nav-links {
        gap: 8px;
        padding: 15px 0;
    }
    
    .nav-links a {
        font-size: 11px;
        padding: 6px 12px;
        border-radius: 15px;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }
    
    .hero-video {
        opacity: 0.3;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, 
            rgba(15, 15, 15, 0.9) 0%, 
            rgba(26, 26, 26, 0.8) 50%,
            rgba(15, 15, 15, 0.9) 100%);
    }
    
    .faq-bg-video {
        opacity: 0.25;
    }
    
    .faq-inner-video {
        opacity: 0.2;
    }
    
    .hero-logo {
        max-width: 280px;
        margin-bottom: 30px;
    }
    
    .hero-logo::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-width: 1.5px;
        border-radius: 20px;
    }
    
    .mini-logo {
        width: 50px;
        height: 50px;
    }
    
    .mini-logo-wrapper::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-width: 1px;
        border-radius: 12px;
    }
    
    .text-block h2 {
        gap: 15px;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-border {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .content-grid,
    .price-grid,
    .faq-grid,
    .recommendations-grid,
    .self-testing-grid,
    .equipment-grid,
    .interior-grid,
    .location-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .placeholder {
        min-height: 200px;
        padding: 40px 15px;
        border-radius: 15px;
        font-size: 14px;
    }
    
    .photo-slideshow {
        min-height: 300px;
        border-radius: 15px;
    }
    
    .slideshow-dots {
        bottom: 15px;
        gap: 10px;
        padding: 8px 16px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
    
    .price-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .card-bg-video {
        opacity: 0.25;
        border-radius: 20px;
    }
    
    .card-overlay {
        background: linear-gradient(135deg, 
            rgba(15, 15, 15, 0.9) 0%, 
            rgba(26, 26, 26, 0.8) 50%,
            rgba(15, 15, 15, 0.9) 100%);
        border-radius: 20px;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .duration {
        font-size: 0.85rem;
    }
    
    .card-buttons {
        gap: 10px;
    }
    
    .btn-examples,
    .btn-telegram,
    .btn-instagram {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .examples-section.active {
        max-height: 700px;
    }
    
    .carousel-container {
        border-radius: 12px;
    }
    
    .icon-glass {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .icon-glass svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-info-item {
        gap: 15px;
        margin-bottom: 25px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-info-item .icon-glass {
        flex-shrink: 0;
    }
    
    .contact-info-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-info-item p {
        font-size: 14px;
    }
    
    .faq-item {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    .recommendation-block {
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
    }
    
    .recommendation-block p,
    .recommendation-block ul {
        text-align: left;
    }
    
    .recommendation-block li {
        font-size: 14px;
        padding: 8px 0;
        padding-left: 28px;
        margin-bottom: 4px;
    }
    
    .recommendation-block li:before {
        font-size: 14px;
        top: 8px;
    }
    
    .contact-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .text-block p {
        font-size: 15px;
    }
    
    .self-testing-description p {
        font-size: 15px;
    }
    
    .self-testing-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .self-testing-buttons .btn-instagram,
    .self-testing-buttons .btn-telegram {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .mini-logo {
        width: 45px;
        height: 45px;
    }
    
    .mini-logo-wrapper::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 1px;
        border-radius: 10px;
    }
    
    .text-block h2 {
        gap: 12px;
        justify-content: center;
    }
    
    footer {
        padding: 30px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 6px;
        padding: 12px 5px;
    }
    
    .nav-links a {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .hero {
        min-height: 70vh;
        padding-top: 120px;
    }
    
    .hero-video {
        opacity: 0.25;
        animation: videoExpandMobile 2s ease-out 0.5s forwards;
    }
    
    @keyframes videoExpandMobile {
        0% {
            clip-path: polygon(0 0, 0 0, 0 0);
        }
        100% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, 
            rgba(15, 15, 15, 0.92) 0%, 
            rgba(26, 26, 26, 0.85) 50%,
            rgba(15, 15, 15, 0.92) 100%);
    }
    
    .faq-bg-video {
        opacity: 0.2;
    }
    
    .faq-inner-video {
        opacity: 0.15;
    }
    
    .hero-logo {
        max-width: 220px;
        margin-bottom: 25px;
    }
    
    .hero-logo::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border-width: 1px;
        border-radius: 15px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-border {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .content-grid,
    .price-grid,
    .faq-grid,
    .recommendations-grid,
    .self-testing-grid,
    .equipment-grid,
    .interior-grid,
    .location-content,
    .contact-grid {
        gap: 20px;
    }
    
    .placeholder {
        min-height: 150px;
        padding: 30px 10px;
        font-size: 13px;
    }
    
    .photo-slideshow {
        min-height: 250px;
        border-radius: 12px;
    }
    
    .slideshow-dots {
        bottom: 12px;
        gap: 8px;
        padding: 6px 12px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .map-placeholder {
        min-height: 250px;
    }
    
    .price-card {
        padding: 25px 15px;
    }
    
    .card-bg-video {
        opacity: 0.2;
        border-radius: 15px;
    }
    
    .card-overlay {
        background: linear-gradient(135deg, 
            rgba(15, 15, 15, 0.92) 0%, 
            rgba(26, 26, 26, 0.85) 50%,
            rgba(15, 15, 15, 0.92) 100%);
        border-radius: 15px;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .duration {
        font-size: 0.8rem;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .card-buttons {
        gap: 8px;
    }
    
    .btn-examples,
    .btn-telegram,
    .btn-instagram {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .examples-section.active {
        max-height: 600px;
    }
    
    .carousel-container {
        border-radius: 10px;
    }
    
    .carousel-dots {
        gap: 6px;
        margin-top: 12px;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    .icon-glass {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .icon-glass svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-info-item {
        gap: 12px;
        margin-bottom: 20px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-info-item .icon-glass {
        flex-shrink: 0;
    }
    
    .contact-info-item h3 {
        font-size: 1rem;
    }
    
    .contact-info-item p {
        font-size: 13px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 13px;
    }
    
    .recommendation-block {
        padding: 20px 15px;
    }
    
    .recommendation-block p,
    .recommendation-block ul {
        text-align: left;
    }
    
    .recommendation-block li {
        font-size: 13px;
        padding-left: 25px;
        margin-bottom: 3px;
    }
    
    .recommendation-block li:before {
        font-size: 13px;
        top: 8px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .text-block p {
        font-size: 14px;
    }
    
    .self-testing-description p {
        font-size: 14px;
    }
    
    .self-testing-buttons .btn-instagram,
    .self-testing-buttons .btn-telegram {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .mini-logo {
        width: 40px;
        height: 40px;
    }
    
    .mini-logo-wrapper::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 0.5px;
        border-radius: 8px;
    }
    
    .text-block h2 {
        gap: 10px;
        font-size: 1.5rem;
        justify-content: center;
    }
    
    footer {
        padding: 25px 0;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .nav-links a {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero-video {
        opacity: 0.2;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, 
            rgba(15, 15, 15, 0.95) 0%, 
            rgba(26, 26, 26, 0.9) 50%,
            rgba(15, 15, 15, 0.95) 100%);
    }
    
    .faq-bg-video {
        opacity: 0.15;
    }
    
    .faq-inner-video {
        opacity: 0.1;
    }
    
    .hero-logo {
        max-width: 180px;
        margin-bottom: 20px;
    }
    
    .hero-logo::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-width: 1px;
        border-radius: 12px;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .section-border {
        padding: 20px 12px;
    }
}
