/* ============================================
   БЛОК: hero-video-block
   ============================================ */
   .prsttx{
    text-align: center;
    font-size: 1.6rem;
   }
   .pris-st-text {
  font-family: "Georgia", "Times New Roman", serif; /* Итальянский, элегантный стиль */
  font-style: bold;  /* Курсив для красоты */
  font-weight: 700;    /* Жирный */
   }
   .spomog-text {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
   }

.hero-video-block {
    position: relative;
    width: 90%;
    height: 70vh;
    margin: 0 auto;
    min-height: 500px;
    overflow: hidden;
    background-color: #1a1a1a;
}
.txtcen.txtcentr {
    background: none;
}
/* Видео-обёртка */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: heroVideoFadeIn 1.2s ease-out 0.2s forwards;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.85) 0%, rgba(146, 102, 58, 0.50) 56%, rgba(26, 26, 26, 0.30) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   ТЕКСТОВАЯ КАРУСЕЛЬ (слева снизу)
   ============================================ */

.hero-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 10;
    pointer-events: none;
    max-width: 70%;
}

/* Контейнер для слайдов */
.hero-slides {
    position: relative;
    min-height: 250px;
}

/* Каждый слайд */
.hero-slide {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Текст внутри слайда */
.hero-slide-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-slide-text span {
    display: block;
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.947);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Появление слов с задержкой */
.hero-slide.active .hero-slide-text span {
    opacity: 1;
    transform: translateX(0);
}

/* Задержки для каждого слова */
.hero-slide.active .hero-slide-text span:nth-child(1) {
    transition-delay: 0.1s;
}
.hero-slide.active .hero-slide-text span:nth-child(2) {
    transition-delay: 0.3s;
}
.hero-slide.active .hero-slide-text span:nth-child(3) {
    transition-delay: 0.5s;
}
.hero-slide.active .hero-slide-text span:nth-child(4) {
    transition-delay: 0.7s;
}

/* Бренд TOTO */
.hero-slide-text .brand {
    color: #f5cba0;
    text-shadow: 0 0 40px rgba(245, 203, 160, 0.4);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* ============================================
   АДАПТИВ ДЛЯ МОБИЛЬНЫХ
   ============================================ */

@media (max-width: 768px) {
    .hero-content {
        bottom: 8%;
        left: 4%;
        max-width: 90%;
    }
    
    .hero-slide-text span {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .hero-slide-text .brand {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    
    .hero-slides {
        min-height: 200px;
    }
      .prsttx{
    font-size: 1rem;
   }
}

/* ============================================
   ВСПОМОГАТЕЛЬНЫЕ ЭФФЕКТЫ
   ============================================ */

/* Появление видео */
@keyframes heroVideoFadeIn {
    0%   { opacity: 0; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}
/* ========================================================================= */

/* ============================================
   МЕТАЛЛИЧЕСКИЕ КНОПКИ - НЕРЖАВЕЙКА
   ============================================ */

.metal-buttons-wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto 0;
    z-index: 5;
    pointer-events: none;
}

.metal-buttons-container {
    display: flex;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    /* backdrop-filter: blur(45px) saturate(1.2);
    -webkit-backdrop-filter: blur(45px) saturate(1.2); */
    pointer-events: auto;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    transform: translateZ(0);
    
    /* Градиентный фон с размытыми краями */
    /* background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.30) 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.05) 85%,
        rgba(0, 0, 0, 0) 100%
    ); */
    
    /* Тень для глубины */
    /* box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2); */
}

/* Fallback */
@supports not (backdrop-filter: blur(1px)) {
    .metal-buttons-container {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* ============================================
   ОСНОВНОЙ СТИЛЬ КНОПКИ
   ============================================ */

.metal-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    min-width:320px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #c8c8c8;
    z-index: 10;
    
    /* ===== МЕТАЛЛИЧЕСКИЙ ЭФФЕКТ "ШЕРШАВАЯ НЕРЖАВЕЙКА" ===== */
    background: 
        /* Шумовая текстура (зернистость) */
        /* url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E"), */
        /* Градиенты для металлического блеска */
        linear-gradient(145deg, 
            #8a8a8a 0%,
            #b8b8b8 15%,
            #d4d4d4 30%,
            #a8a8a8 50%,
            #c0c0c0 65%,
            #909090 80%,
            #7a7a7a 100%
        );
    background-blend-mode: overlay, normal;
    background-size: 300px 300px, 100% 100%;
    
    /* Тени для объёма */
    box-shadow: 
        0 4px 0 #5a5a5a,
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    
    /* Переходы */
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
/* ============================================
   ПРЯМОУГОЛЬНОЕ УГЛУБЛЕНИЕ
   ============================================ */

.metal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2%;
    height: 74%;
    border-radius: 6px;
    background: radial-gradient(
        ellipse at center,
        rgba(171, 179, 182, 0.171) 0%,
        rgba(134, 168, 185, 0.224) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(48, 48, 48, 0.324) 80%,
        transparent 100%
    );
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.25),
        inset 0 -2px 4px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.132);
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Состояние при наведении */
.metal-btn:hover::before {
    opacity: 0.7;
    width: 2%;
    height: 76%;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.345),
        inset 0 -2px 4px rgba(56, 55, 55, 0.301),
        0 0 0 1px rgba(101, 101, 101, 0.071);
}

/* Состояние при нажатии */
.metal-btn:active::before {
    opacity: 0.95;
    width: 2%;
    height: 70%;
    box-shadow: 
        inset 0 4px 10px rgba(0, 0, 0, 0.35),
        inset 0 -1px 2px rgba(255, 255, 255, 0.05);
}

/* ============================================
   ДОПОЛНИТЕЛЬНАЯ ТЕКСТУРА
   ============================================ */

.metal-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Горизонтальные царапины */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 2px,
            transparent 4px
        ),
        /* Вертикальные царапины */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(0, 0, 0, 0.02) 1px,
            transparent 2px,
            transparent 3px
        );
    pointer-events: none;
    border-radius: 10px;
    opacity: 0.5;
    z-index: 1;
}

/* ============================================
   ИКОНКИ И ТЕКСТ (поверх углубления)
   ============================================ */

.metal-btn .btn-icon {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
    display: inline-block;
}

.metal-btn .btn-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
    text-align: left; /* Текст по левому краю */
    flex: 1; /* Занимает всё свободное пространство */
    min-width: 0; /* Разрешает перенос при необходимости */
    color: #e9e9eb;
    
}
.metal-btn a {
  text-decoration: none;
    
}
/* ============================================
   БЛИК НА КНОПКЕ (поверх всего)
   ============================================ */

.metal-btn .btn-shine {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    border-radius: 10px;
    transition: left 0.6s ease;
    z-index: 3;
}

.metal-btn:hover .btn-shine {
    left: 100%;
}

/* ============================================
   СОСТОЯНИЯ КНОПКИ
   ============================================ */

/* Hover */
.metal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #4a4a4a,
        0 8px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    color: #a0a0a6;
}

.metal-btn:hover::before {
    opacity: 0.6;
    width: 2%;
    height: 75%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.03) 40%,
        rgba(255, 255, 255, 0.08) 60%,
        rgba(255, 255, 255, 0.03) 80%,
        transparent 100%
    );
}

/* Active (нажатие) */
.metal-btn:active {
    transform: translateY(4px);
    box-shadow: 
        0 1px 0 #5a5a5a,
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.05s ease;
}

.metal-btn:active::before {
    opacity: 0.9;
    width: 2%;
    height: 65%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(255, 255, 255, 0.02) 60%,
        transparent 100%
    );
    box-shadow: 
        inset 0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 -1px 2px rgba(255, 255, 255, 0.05);
}

/* Focus */
.metal-btn:focus {
    outline: none;
    box-shadow: 
        0 4px 0 #5a5a5a,
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(200, 200, 200, 0.3);
}

/* ============================================
   ИНДИВИДУАЛЬНЫЙ ОТТЕНОК ДЛЯ КАЖДОЙ КНОПКИ
   ============================================ */

/* Кнопка 1 - чуть теплее */
.metal-btn--1 {
    background: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E"),
        linear-gradient(145deg, 
            #8a8a8a 0%,
            #b8b8b8 15%,
            #d4d4d4 30%,
            #a8a8a8 50%,
            #c0c0c0 65%,
            #909090 80%,
            #7a7a7a 100%
        );
    background-blend-mode: overlay, normal;
    background-size: 300px 300px, 100% 100%;
}

/* Кнопка 2 - чуть холоднее */
.metal-btn--2 {
    background: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E"),
        linear-gradient(145deg, 
            #7a8a8a 0%,
            #a8b8b8 15%,
            #c4d4d4 30%,
            #98a8a8 50%,
            #b0c0c0 65%,
            #809090 80%,
            #6a7a7a 100%
        );
    background-blend-mode: overlay, normal;
    background-size: 300px 300px, 100% 100%;
}

/* Кнопка 3 - с золотистым отливом */
.metal-btn--3 {
    background: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E"),
        linear-gradient(145deg, 
            #8a7a6a 0%,
            #b8a898 15%,
            #d4c4b4 30%,
            #a89888 50%,
            #c0b0a0 65%,
            #908070 80%,
            #7a6a5a 100%
        );
    background-blend-mode: overlay, normal;
    background-size: 300px 300px, 100% 100%;
}

/* Кнопка 4 - с синеватым отливом */
.metal-btn--4 {
    background: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E"),
        linear-gradient(145deg, 
            #6a7a8a 0%,
            #98a8b8 15%,
            #b4c4d4 30%,
            #8898a8 50%,
            #a0b0c0 65%,
            #708090 80%,
            #5a6a7a 100%
        );
    background-blend-mode: overlay, normal;
    background-size: 300px 300px, 100% 100%;
}

/* ============================================
   АДАПТИВ ДЛЯ МОБИЛЬНЫХ
   ============================================ */
   @media (max-width: 1500px) {
    .metal-buttons-wrapper {
        width: 98%;
        margin: -20px auto 0;
    }
    
    .metal-buttons-container {
        gap: 2px;
        padding: 6px;
        border-radius: 12px;
    }
    
    .metal-btn {
        padding: 10px 16px;
        min-width: 180px;
        font-size: 11px;
        gap: 6px;
        flex: 1;
        justify-content: center;
        border-radius: 2px;
    }
    
    .metal-btn::before {
        width: 4%;
        height: 60%;
    }
    
    .metal-btn .btn-icon {
        font-size: 14px;
    }
    
    .metal-btn .btn-text {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}
/* ============================================
   АДАПТИВ ДЛЯ МОБИЛЬНЫХ
   ============================================ */

@media (max-width: 768px) {
    .metal-buttons-wrapper {
        width: 98%;
        margin: -40px auto 0;
    }
    
    .metal-buttons-container {
        gap: 4px;
        padding: 6px;
        border-radius: 12px;
    }
    
    .metal-btn {
        padding: 10px 16px;
        font-size: 11px;
        gap: 6px;
        flex: 1;
        justify-content: center;
        min-width: 160px;
        border-radius: 8px;
    }
    
    .metal-btn::before {
    width: 4%;
    height: 74%;
    }
    
    .metal-btn .btn-icon {
        font-size: 14px;
    }
    
    .metal-btn .btn-text {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}
@media (max-width: 700px) {
        .metal-btn {
        min-width: 100px;       
    }
}

@media (max-width: 480px) {
    .metal-buttons-wrapper {
        margin: -30px auto 0;
    }
    
    .metal-buttons-container {
        gap: 2px;
        padding: 4px;
    }
    
    .metal-btn {
        padding: 8px 10px 8px 12px;
        min-width: 68px;
        font-size: 9px;
        gap: 4px;
        border-radius: 2px;
        justify-content: flex-start;
        
    }
    
    .metal-btn::before {
        width: 4%; /* Узкая вертикальная полоска */
        height: 50%;
        left: 50%; /* Центрируем */
        transform: translate(-50%, -50%);
        border-radius: 2px; /* Делаем более прямоугольной */
    }
    
    .metal-btn .btn-icon {
        font-size: 6px;
        width: 22px;
        height: 22px;
        margin-left: -2px;
        transform: translateX(-2px);
    }
    
    .metal-btn .btn-text {
        display: none;
    }
}
/* ============================================
   БЛОК FAQ — МЕТАЛЛИЧЕСКИЙ СТИЛЬ (v2)
   ============================================ */

.faq-section-v2 {
    width: 90%;
    max-width: 1300px;
    margin: 60px auto;
    /* padding: 50px 40px; */
    position: relative;
    
    /* Металлический фон как у кнопок */
    background: 
        linear-gradient(165deg, 
            #72899b 0%,
            #6a7074 25%,
            #5f584c 50%,
            #2a2a2a 75%,
            #18232b 100%
        );
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    
    /* Текстура "шершавого металла" */
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -2px 0 rgba(0, 0, 0, 0.5),
        0 0 60px rgba(245, 203, 160, 0.03);
}

/* Декоративная рамка с золотистым отливом */
.faq-section-v2::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 203, 160, 0.3), transparent);
    border-radius: 50%;
}

.faq-section-v2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30%;
    right: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 203, 160, 0.15), transparent);
}

.faq-container-v2 {
    position: relative;
    z-index: 1;
}

/* ============================================
   ЗАГОЛОВОК
   ============================================ */

.faq-header-v2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title-v2 {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.faq-title-accent-v2 {
    color: #f5cba0;
    text-shadow: 0 0 60px rgba(245, 203, 160, 0.15);
}

.faq-title-light-v2 {
    color: #d0d0d0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.faq-subtitle-v2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(200, 200, 200, 0.6);
    max-width: 600px;
    margin: 0 auto 20px;
    font-style: italic;
}

.faq-divider-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.faq-divider-line-v2 {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 203, 160, 0.3), transparent);
}

.faq-divider-icon-v2 {
    color: rgba(245, 203, 160, 0.3);
    font-size: 10px;
}

/* ============================================
   СЕТКА ВОПРОСОВ
   ============================================ */

.faq-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ============================================
   ОДИН ВОПРОС (металлическая карточка)
   ============================================ */

.faq-item-v2 {
    /* background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06); */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.35s ease;
    
    /* Металлический отлив */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.faq-item-v2:hover {
    border-color: rgba(245, 203, 160, 0.15);
    background: rgba(76, 75, 77, 0.45);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-item-v2.active {
    border-color: rgba(245, 203, 160, 0.2);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(245, 203, 160, 0.02);
}

/* ============================================
   ВОПРОС (кликабельная область)
   ============================================ */

.faq-question-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-v2:hover {
    background: rgba(245, 203, 160, 0.03);
}

.faq-q-mark-v2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(245, 203, 160, 0.4);
    flex-shrink: 0;
    width: 32px;
    text-align: left;
    letter-spacing: 0.05em;
}

.faq-question-text-v2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: #d8d8d8;
    flex: 1;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.faq-question-text-v2 strong {
    color: #f5cba0;
}

/* ============================================
   ИКОНКА-ПЕРЕКЛЮЧАТЕЛЬ
   ============================================ */

.faq-toggle-icon-v2 {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-toggle-icon-v2 svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
    stroke: rgba(255, 255, 255, 0.3);
}

.faq-item-v2.active .faq-toggle-icon-v2 svg {
    transform: rotate(180deg);
    stroke: #f5cba0;
}

.faq-item-v2.active .faq-toggle-icon-v2 {
    border-color: rgba(245, 203, 160, 0.15);
    background: rgba(245, 203, 160, 0.05);
}

/* ============================================
   ОТВЕТ
   ============================================ */

.faq-answer-v2 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 22px;
    background: rgb(0 8 28);
    border-top: 1px solid transparent;
}

.faq-item-v2.active .faq-answer-v2 {
    max-height: 600px;
    opacity: 1;
    padding: 20px 22px 26px;
    border-top-color: rgba(245, 203, 160, 0.06);
}

.faq-answer-v2 p,
.faq-answer-v2 li {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    line-height: 1.8;
    color: rgba(200, 200, 200, 0.8);
}

.faq-answer-v2 p {
    margin-bottom: 10px;
}

.faq-answer-v2 p:last-child {
    margin-bottom: 0;
}

.faq-answer-v2 strong {
    color: #f5cba0;
    font-weight: 600;
}

.faq-answer-v2 ul,
.faq-answer-v2 ol {
    padding-left: 24px;
    margin: 8px 0 14px;
}

.faq-answer-v2 li {
    margin-bottom: 4px;
    list-style-type: none;
    position: relative;
    padding-left: 20px;
}

.faq-answer-v2 ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(245, 203, 160, 0.3);
}

.faq-answer-v2 ol li {
    list-style-type: decimal;
    padding-left: 4px;
}

.faq-answer-v2 ol li::before {
    display: none;
}

/* ============================================
   КНОПКА-ПРИЗЫВ
   ============================================ */

.faq-cta-v2 {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-cta-text-v2 {
    font-family: 'Georgia', serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(200, 200, 200, 0.5);
    font-style: italic;
    margin-bottom: 20px;
}

/* ===== МЕТАЛЛИЧЕСКАЯ КНОПКА ===== */

.faq-metal-btn-v2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 48px;
    min-width: 260px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* МЕТАЛЛИЧЕСКИЙ ЭФФЕКТ */
    background: 
        linear-gradient(160deg, 
            #6a6a6a 0%,
            #9a9a9a 20%,
            #b8b8b8 40%,
            #8a8a8a 60%,
            #a8a8a8 80%,
            #6a6a6a 100%
        );
    background-size: 200% 200%;
    
    box-shadow: 
        0 4px 0 #4a4a4a,
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.03);
    
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Углубление */
.faq-metal-btn-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3%;
    height: 70%;
    border-radius: 4px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(0, 0, 0, 0.1) 70%,
        transparent 100%
    );
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 -1px 4px rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

/* Текстура */
.faq-metal-btn-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 2px,
            transparent 5px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(0, 0, 0, 0.02) 1px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
}

/* Блик */
.faq-btn-shine-v2 {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 30%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.08) 70%,
        transparent 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    transition: left 0.7s ease;
    z-index: 3;
}

.faq-metal-btn-v2:hover .faq-btn-shine-v2 {
    left: 100%;
}

.faq-metal-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #3a3a3a,
        0 12px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
    color: #e8e8e8;
}

.faq-metal-btn-v2:active {
    transform: translateY(4px);
    box-shadow: 
        0 1px 0 #4a4a4a,
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.05s ease;
}

.faq-btn-icon-v2 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.faq-btn-icon-v2 svg {
    width: 20px;
    height: 20px;
    stroke: #e0e0e0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.faq-btn-text-v2 {
    position: relative;
    z-index: 2;
    color: #e8e8e8;
}

/* ============================================
   АДАПТИВ
   ============================================ */

@media (max-width: 1024px) {
    .faq-section-v2 {
        width: 95%;
        padding: 30px 20px;
    }

    .faq-grid-v2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-question-v2 {
        padding: 16px 18px;
    }

    .faq-answer-v2 {
        padding: 0 18px;
    }

    .faq-item-v2.active .faq-answer-v2 {
        padding: 16px 18px 22px;
    }

    .faq-metal-btn-v2 {
        padding: 14px 32px;
        min-width: 200px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .faq-section-v2 {
        width: 98%;
        padding: 20px 12px;
        margin: 30px auto;
        border-radius: 8px;
    }

    .faq-header-v2 {
        margin-bottom: 30px;
    }

    .faq-title-v2 {
        font-size: 1.6rem;
    }

    .faq-subtitle-v2 {
        font-size: 0.9rem;
    }

    .faq-divider-line-v2 {
        width: 30px;
    }

    .faq-question-v2 {
        padding: 14px 12px;
        gap: 10px;
    }

    .faq-q-mark-v2 {
        font-size: 0.8rem;
        width: 24px;
    }

    .faq-question-text-v2 {
        font-size: 0.85rem;
    }

    .faq-toggle-icon-v2 {
        width: 26px;
        height: 26px;
    }

    .faq-toggle-icon-v2 svg {
        width: 14px;
        height: 14px;
    }

    .faq-answer-v2 {
        padding: 0 12px;
    }

    .faq-item-v2.active .faq-answer-v2 {
        padding: 14px 12px 18px;
    }

    .faq-answer-v2 p,
    .faq-answer-v2 li {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .faq-cta-v2 {
        margin-top: 30px;
        padding-top: 20px;
    }

    .faq-cta-text-v2 {
        font-size: 0.9rem;
    }

    .faq-metal-btn-v2 {
        padding: 12px 24px;
        min-width: 170px;
        font-size: 10px;
        gap: 8px;
    }

    .faq-btn-icon-v2 {
        width: 18px;
        height: 18px;
    }

    .faq-btn-icon-v2 svg {
        width: 16px;
        height: 16px;
    }
}
/* Test-only technical safeguard: prevent the legacy layout from shifting sideways. */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
