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

body {
    font-family: 'Inter', sans-serif;
    background: #050b10;
    color: #fff;
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========== ПРЕЛОАДЕР ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #050b10 0%, #0a1520 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
    position: relative;
}
.preloader-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 30px;
    animation: pulseText 1.5s ease infinite;
}
.preloader-spinner {
    width: 60px;
    height: 60px;
    margin: 20px auto;
    position: relative;
}
.preloader-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f6b800;
    border-right-color: #f6b800;
    animation: spin 0.8s linear infinite;
}
.preloader-spinner::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: #f6b800;
    border-left-color: #f6b800;
    animation: spin 0.6s linear infinite reverse;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.preloader-text {
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #f6b800;
    font-weight: 500;
}
.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}
.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f6b800, #ffdd77);
    animation: loadProgress 1.5s ease forwards;
}
@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ========== АНИМАЦИИ ========== */
@keyframes pulseText {
    0%, 100% { opacity: 0.7; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 5px rgba(246,184,0,0.4); }
    50% { box-shadow: 0 0 25px rgba(246,184,0,0.7); }
    100% { box-shadow: 0 0 5px rgba(246,184,0,0.4); }
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
}
.fade-up.visible { animation: fadeInUp 0.6s ease forwards; }
.fade-left.visible { animation: fadeInLeft 0.6s ease forwards; }
.fade-right.visible { animation: fadeInRight 0.6s ease forwards; }

/* ========== STICKY HEADER ========== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 11, 16, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(246, 184, 0, 0.3);
}

.content-padding {
    padding-top: 90px;
}
@media (max-width: 768px) { .content-padding { padding-top: 80px; } }
@media (max-width: 550px) { .content-padding { padding-top: 80px; } }

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.sticky-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

/* Логотип */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 8px rgba(246, 184, 0, 0.4));
}

/* ========== ДЕСКТОПНОЕ МЕНЮ ========== */
.desktop-nav {
    display: flex;
    gap: clamp(12px, 2vw, 28px);
    flex-wrap: wrap;
    justify-content: center;
}

.desktop-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f6b800, transparent);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a i {
    color: #f6b800;
    font-size: 13px;
}

.desktop-nav a:hover {
    color: #f6b800;
}

/* ========== БУРГЕР МЕНЮ ========== */
.burger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #f6b800;
    z-index: 1002;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0e1a24;
    backdrop-filter: blur(15px);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(246,184,0,0.2);
}
.mobile-nav a i { color: #f6b800; width: 24px; }
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: none;
}
.overlay.active { display: block; }

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
@media (max-width: 992px) {
    .desktop-nav {
        display: none !important;
    }
    .burger-menu {
        display: block !important;
    }
    .sticky-header .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .logo img {
        height: 45px;
    }
}

@media (max-width: 550px) {
    .logo img {
        height: 38px;
    }
}

/* ========== BG GLOW ========== */
.bg-glow {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246,184,0,0.04) 0%, transparent 70%);
    animation: rotateSlow 30s linear infinite;
}

/* ========== HERO С ВИДЕО ========== */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 560px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    background: #050b10;
}
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 0.5s ease;
}
.hero-poster.hidden {
    opacity: 0;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,11,16,0.65) 0%, rgba(5,11,16,0.45) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 90%;
    padding: 40px 20px;
}
.hero h1 {
    font-size: clamp(32px, 8vw, 62px);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #f6b800);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero h1 span { color: #f6b800; }
.hero p {
    margin: 16px 0 14px;
    color: #ccddee;
    font-size: clamp(14px, 4vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero p i { color: #f6b800; }
.hero-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-feature {
    background: rgba(246,184,0,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(246,184,0,0.3);
}
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}
.btn {
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-yellow {
    background: #f6b800;
    color: #0a0f14;
    box-shadow: 0 8px 18px rgba(246,184,0,0.3);
}
.btn-yellow:hover {
    background: #ffcc33;
    transform: scale(1.05);
}
.btn-dark {
    background: rgba(20, 35, 45, 0.9);
    border: 1.5px solid #2ecc71;
    color: #2ecc71;
    backdrop-filter: blur(4px);
}
.btn-dark:hover {
    background: #2ecc71;
    color: #000;
}

/* ========== СЕКЦИИ ========== */
.pricing-section { width: 100%; padding: 60px 5% 40px; }
.advantages-section { width: 100%; padding: 40px 5%; background: radial-gradient(ellipse at 50% 0%, #11151F, #07090E); }
.services-section { width: 100%; padding: 60px 5%; }
.video-section { width: calc(100% - 10%); margin: 60px auto; background: linear-gradient(95deg, #0e1f2b, #07121b); border-radius: 40px; padding: 40px; text-align: center; border: 1px solid rgba(246,184,0,0.3); }
.reviews-section { width: 100%; margin: 60px 0 40px; padding: 60px 5%; background: linear-gradient(135deg, #0a121c, #060a10); }
.warning-section { width: 100%; padding: 20px 5%; }
.about-section { width: 100%; padding: 60px 5%; }
.bottom-section { width: 100%; padding: 40px 5%; }
.cta-section { width: 100%; padding: 20px 5% 60px; }
.footer-section { width: 100%; padding: 40px 5% 30px; border-top: 1px solid rgba(246,184,0,0.2); }

/* ========== ПРАЙС-КАРТОЧКИ (ОБНОВЛЕННЫЕ) ========== */
.price-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

.price-card { 
    background: linear-gradient(135deg, rgba(18, 30, 39, 0.95), rgba(10, 20, 28, 0.95));
    backdrop-filter: blur(4px); 
    border-radius: 32px; 
    border: 1px solid rgba(246, 184, 0, 0.2); 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    text-align: center;
    position: relative;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f6b800, #ffdd77, #f6b800);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover { 
    transform: translateY(-10px); 
    border-color: #f6b800; 
    box-shadow: 0 25px 40px -15px rgba(246, 184, 0, 0.3);
}

.card-img { 
    width: 100%; 
    height: 200px; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 11, 16, 0.7), rgba(5, 11, 16, 0.4));
    z-index: 1;
}

.card-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f6b800, #e0a800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(246, 184, 0, 0.4);
    transition: all 0.3s ease;
}

.price-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(246, 184, 0, 0.6);
}

.card-icon i { 
    font-size: 40px; 
    color: #1a1a2e; 
}

.price-content { 
    padding: 28px 22px 32px; 
    text-align: center;
}

.price-title { 
    font-size: 22px; 
    font-weight: 800; 
    background: linear-gradient(135deg, #fff, #f6b800); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    margin-bottom: 12px;
}

.price-desc { 
    font-size: 14px; 
    color: #cddfed; 
    line-height: 1.5; 
    margin-bottom: 20px;
}

.price-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #f6b800, transparent);
    margin: 20px auto;
}

.price-amount-wrapper { 
    display: flex; 
    align-items: baseline; 
    justify-content: center; 
    gap: 8px; 
    margin: 20px 0 25px;
    flex-wrap: wrap; 
}

.price-from { 
    font-size: 16px; 
    color: #8aa0b5; 
    font-weight: 500; 
}

.price-amount { 
    font-size: 36px; 
    font-weight: 800; 
    color: #f6b800; 
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(246, 184, 0, 0.3);
}

.price-btn { 
    background: linear-gradient(135deg, #f6b800, #e0a800);
    border: none; 
    color: #1a1a2e; 
    padding: 14px 24px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 15px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    text-decoration: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(246, 184, 0, 0.3);
}

.price-btn:hover { 
    background: linear-gradient(135deg, #ffcc33, #f6b800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 184, 0, 0.5);
    color: #0a0f14;
}

.price-btn i {
    font-size: 14px;
}

/* Подзаголовок и примечание */
.price-subtitle { 
    text-align: center; 
    font-size: 16px; 
    color: #bdd3e8; 
    margin-top: -10px; 
    margin-bottom: 40px; 
    font-weight: 400; 
}

.price-note-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.price-note { 
    text-align: center; 
    font-size: 14px; 
    color: #bdd3e8; 
    padding: 16px 28px; 
    background: rgba(246, 184, 0, 0.08); 
    border-radius: 60px; 
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(246, 184, 0, 0.25);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.price-note:hover {
    border-color: #f6b800;
    background: rgba(246, 184, 0, 0.12);
}

.price-note i {
    color: #f6b800;
    font-size: 18px;
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.adv { background: #0e1a24; padding: 20px 20px; border-radius: 24px; font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 14px; border-left: 4px solid #f6b800; transition: all 0.3s ease; }
.adv:hover { transform: translateX(8px); background: #14232e; }
.adv i { font-size: 32px; color: #f6b800; }

/* ========== ЗАГОЛОВКИ ========== */
.section-title { text-align: center; margin-bottom: 30px; font-size: clamp(32px, 6vw, 44px); font-weight: 800; position: relative; }
.section-title:after { content: ''; display: block; width: 80px; height: 3px; background: linear-gradient(90deg, #f6b800, transparent); margin: 15px auto 0; animation: glowPulse 2s infinite; }

/* ========== УСЛУГИ ========== */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.service { background: #0e1a24; padding: 24px 12px; border-radius: 24px; text-align: center; font-weight: 600; transition: all 0.3s; cursor: pointer; }
.service i { font-size: 36px; color: #f6b800; margin-bottom: 14px; display: block; }
.service:hover { background: #182b38; transform: translateY(-8px); }

/* ========== ВИДЕО БЛОК ========== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 30px; }
.video-card { background: rgba(0,0,0,0.5); border-radius: 24px; overflow: hidden; transition: all 0.3s ease; }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.video-container { position: relative; aspect-ratio: 16/9; background: #000; cursor: pointer; }
.video-container video { width: 100%; height: 100%; object-fit: cover; }
.video-poster { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s; cursor: pointer; }
.video-poster.hidden { opacity: 0; pointer-events: none; }
.play-button { width: 70px; height: 70px; background: rgba(246,184,0,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #000; transition: all 0.3s; }
.play-button:hover { transform: scale(1.1); background: #f6b800; }
.video-title { padding: 15px; font-weight: 600; font-size: 15px; text-align: center; }

/* ========== ОТЗЫВЫ (SWIPER) ========== */
.reviews-slider { overflow: hidden; padding: 20px 10px; }
.review-card { background: rgba(20, 30, 40, 0.7); backdrop-filter: blur(10px); border-radius: 28px; padding: 32px; border: 1px solid rgba(246,184,0,0.2); transition: all 0.3s ease; height: auto; }
.review-card:hover { transform: translateY(-5px); border-color: rgba(246,184,0,0.5); box-shadow: 0 20px 35px -15px rgba(0,0,0,0.5); }
.review-header { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.review-avatar { width: 65px; height: 65px; border-radius: 50%; background: linear-gradient(135deg, #f6b800, #ffdd77); display: flex; align-items: center; justify-content: center; font-size: 30px; color: #0a0f14; font-weight: bold; overflow: hidden; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.review-stars { color: #f6b800; font-size: 14px; letter-spacing: 2px; }
.review-date { font-size: 11px; color: #8aa0b5; margin-top: 5px; }
.review-text { font-size: 15px; line-height: 1.6; color: #d0dfed; font-style: italic; }
.review-text i { color: #f6b800; opacity: 0.5; margin-right: 6px; }
.review-service { margin-top: 15px; font-size: 12px; color: #f6b800; display: inline-block; padding: 4px 12px; background: rgba(246, 184, 0, 0.1); border-radius: 20px; }
.swiper-button-next, .swiper-button-prev { color: #f6b800; background: rgba(0,0,0,0.3); width: 40px; height: 40px; border-radius: 50%; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: rgba(246,184,0,0.3); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px; }
.swiper-pagination-bullet { background: #f6b800; }

/* ========== КНОПКА "СМОТРЕТЬ ВСЕ ОТЗЫВЫ" ========== */
.reviews-all-link {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid #f6b800;
    border-radius: 60px;
    color: #f6b800;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    background: #f6b800;
    color: #0a0f14;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(246, 184, 0, 0.3);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* ========== КНОПКА "БОЛЬШЕ ВИДЕО НА YOUTUBE" ========== */
.video-more {
    text-align: center;
    margin-top: 40px;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff0000;
    color: white;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-youtube i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-youtube:hover i {
    transform: scale(1.1);
}

/* ========== WARNING БЛОК ========== */
.warning { background: linear-gradient(95deg, #0e1f2b, #07121b); border-radius: 60px; padding: 20px 28px; display: flex; align-items: center; justify-content: center; gap: 18px; font-weight: 700; font-size: clamp(14px, 4vw, 20px); border: 1px solid #f6b800; color: #f6d362; flex-wrap: wrap; text-align: center; animation: glowPulse 3s infinite; }
.warning i { font-size: 28px; color: #f6b800; }

/* ========== О КОМПАНИИ ========== */
.about { display: flex; gap: 40px; flex-wrap: wrap; }
.about-text { flex: 1; }
.about-text ul { margin-top: 25px; list-style: none; }
.about-text li { margin: 15px 0; display: flex; align-items: center; gap: 14px; font-size: 16px; color: #fff; }
.about-text li i { color: #2ecc71; font-size: 20px; }
.about-image { flex: 1; min-height: 320px; background: url('../images/man.jpg') center/cover no-repeat; border-radius: 32px; border: 1px solid rgba(246,184,0,0.2); transition: all 0.5s ease; }
.about-image:hover { transform: scale(1.02); border-color: #f6b800; }

/* ========== СТАТИСТИКА ========== */
.stats { background: #0d1922; padding: 28px 25px; border-radius: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 25px; margin-top: 32px; }
.stat-number { font-size: clamp(32px, 6vw, 42px); font-weight: 800; color: #f6b800; }
.stat-label { font-size: 13px; color: #bdd3e8; margin-top: 5px; }

/* ========== ИНФО БЛОКИ ========== */
.bottom { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.box { background: #0e1a24; padding: 32px 20px; border-radius: 32px; text-align: center; transition: all 0.3s ease; border: 1px solid rgba(246,184,0,0.2); }
.box:hover { transform: translateY(-10px); border-color: #f6b800; }
.box i { font-size: 44px; margin-bottom: 18px; color: #f6b800; }
.box h4 { font-size: 22px; margin-bottom: 12px; color: #fff; }
.box p { color: #bdd3e8; }

/* ========== CTA ========== */
.cta { background: linear-gradient(115deg, #f6b800, #f5a623); color: #0a0c12; padding: 32px 30px; border-radius: 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 25px; animation: float 3s ease-in-out infinite; }
.cta div b { font-size: clamp(18px, 4vw, 28px); }
.cta strong { font-size: clamp(22px, 5vw, 36px); background: #00000020; padding: 10px 28px; border-radius: 60px; font-weight: 800; cursor: pointer; display: inline-block; }

/* ========== ФУТЕР (СКРЫТ, ИСПОЛЬЗУЕТСЯ НОВЫЙ) ========== */
.footer-note { text-align: center; font-size: 13px; color: #7f95ab; }

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 768px) {
    .about { flex-direction: column; }
    .cta { flex-direction: column; text-align: center; }
    .video-grid { grid-template-columns: 1fr; }
    .hero { min-height: 480px; }
    .hero-feature { padding: 5px 14px; font-size: 11px; }
    .btn { padding: 12px 24px; font-size: 13px; }
    .video-section { width: calc(100% - 8%); padding: 30px 20px; }
    .pricing-section, .advantages-section, .services-section, .reviews-section, .about-section, .bottom-section, .cta-section { padding-left: 4%; padding-right: 4%; }
    
    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-youtube {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-youtube i {
        font-size: 18px;
    }
    
    /* Адаптация прайс-карточек на планшетах */
    .price-grid { 
        gap: 25px; 
        margin-top: 30px;
    }
    
    .price-subtitle { 
        font-size: 14px; 
        margin-bottom: 30px;
    }
    
    .price-amount { 
        font-size: 30px; 
    }
    
    .price-note { 
        font-size: 12px; 
        padding: 12px 20px;
    }
    
    .card-icon {
        width: 65px;
        height: 65px;
    }
    
    .card-icon i {
        font-size: 32px;
    }
    
    .card-img {
        height: 170px;
    }
    
    .price-title {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .advantages { grid-template-columns: 1fr; }
    .services { grid-template-columns: 1fr 1fr; gap: 12px; }
    .service { padding: 18px 8px; font-size: 13px; }
    .service i { font-size: 28px; }
    .hero { min-height: 450px; }
    
    .btn-outline {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }
    
    .btn-youtube {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }
    
    .btn-youtube i {
        font-size: 16px;
    }
    
    /* Адаптация прайс-карточек на телефонах */
    .price-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .price-note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ========== НОВЫЙ РАСШИРЕННЫЙ ФУТЕР ========== */
.footer {
    background: #0a121c;
    color: #8aa0b5;
    padding: 50px 0 20px;
    margin-top: 0;
    border-top: 1px solid rgba(246, 184, 0, 0.15);
}

.footer .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #8aa0b5;
}

.footer-title {
    color: #f6b800;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f6b800, transparent);
}

.footer-links,
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contacts a {
    color: #8aa0b5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: #f6b800;
    padding-left: 5px;
}

.footer-contacts i {
    width: 24px;
    color: #f6b800;
    margin-right: 8px;
    font-size: 13px;
}

.footer-contacts span {
    font-size: 13px;
    color: #8aa0b5;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(246, 184, 0, 0.1);
    border-radius: 50%;
    color: #f6b800;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.footer-social-link:hover {
    background: #f6b800;
    color: #0a121c;
    transform: translateY(-3px);
}

.footer-cta p {
    margin-bottom: 15px;
    color: #8aa0b5;
    font-size: 13px;
}

.footer-phone-btn,
.footer-wa-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    border-radius: 40px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-phone-btn {
    background: #f6b800;
    color: #0a121c;
}

.footer-phone-btn:hover {
    background: #ffcc33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 184, 0, 0.3);
}

.footer-wa-btn {
    background: #25D366;
    color: #fff;
}

.footer-wa-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ ФУТЕРА ========== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 35px 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 15px;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li,
    .footer-contacts li {
        text-align: center;
    }
    
    .footer-contacts li {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-cta {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-cta {
        max-width: 100%;
    }
    
    .footer-phone-btn,
    .footer-wa-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .footer-links li,
    .footer-contacts li {
        font-size: 14px;
    }
    
    .footer-contacts span {
        font-size: 13px;
    }
}

/* ========== FAQ (ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ) ========== */
.faq-section {
    width: 100%;
    padding: 60px 5%;
    background: linear-gradient(135deg, #0a121c, #0d1622);
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: #bdd3e8;
    margin-top: -10px;
    margin-bottom: 50px;
    font-weight: 400;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(18, 30, 39, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 1px solid rgba(246, 184, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(246, 184, 0, 0.5);
    background: rgba(20, 34, 44, 0.8);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(246, 184, 0, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(246, 184, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon i {
    font-size: 16px;
    color: #f6b800;
}

.faq-question-text {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(246, 184, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 14px;
    color: #f6b800;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(5, 11, 16, 0.5);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top-color: rgba(246, 184, 0, 0.2);
}

.faq-answer-content {
    padding: 20px 25px;
    display: flex;
    gap: 15px;
}

.faq-answer-content i {
    font-size: 20px;
    color: #f6b800;
    opacity: 0.7;
    flex-shrink: 0;
}

.faq-answer-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdd3e8;
    margin: 0;
}

/* Адаптация FAQ для мобильных */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 5%;
    }
    
    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon i {
        font-size: 14px;
    }
    
    .faq-answer-content {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-answer-content p {
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    .faq-question {
        padding: 14px 15px;
        gap: 10px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-answer-content {
        padding: 14px 15px;
        flex-direction: column;
        gap: 8px;
    }
    
    .faq-answer-content i {
        font-size: 18px;
    }
    
    .faq-answer-content p {
        font-size: 13px;
    }
}

/* Нижняя строка футера */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(246, 184, 0, 0.15);
    font-size: 12px;
    color: #6b8a9e;
}

.footer-copyright p {
    margin: 0;
}

.footer-links-bottom a {
    color: #6b8a9e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #f6b800;
    text-decoration: underline;
}

.footer-developer a {
    color: #f6b800;
    text-decoration: none;
}

.footer-developer a:hover {
    text-decoration: underline;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Кнопки в карточке цен */
.price-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.price-btn {
    flex: 1;
    background: linear-gradient(135deg, #f6b800, #e0a800);
    border: none;
    color: #1a1a2e;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.price-btn:hover {
    background: linear-gradient(135deg, #ffcc33, #f6b800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 184, 0, 0.3);
}

.price-btn-detail {
    flex: 1;
    background: transparent;
    border: 1.5px solid #f6b800;
    color: #f6b800;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.price-btn-detail:hover {
    background: rgba(246, 184, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 184, 0, 0.15);
}

/* Адаптация для мобильных */
@media (max-width: 550px) {
    .price-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-btn,
    .price-btn-detail {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ========== МИГАЮЩАЯ КНОПКА ========== */
@keyframes blinkAttention {
    0% {
        background: #f6b800;
        box-shadow: 0 8px 18px rgba(246, 184, 0, 0.3);
        transform: scale(1);
    }
    25% {
        background: #ffcc33;
        box-shadow: 0 0 20px rgba(246, 184, 0, 0.9), 0 8px 18px rgba(246, 184, 0, 0.5);
        transform: scale(1.02);
    }
    50% {
        background: #f6b800;
        box-shadow: 0 8px 18px rgba(246, 184, 0, 0.3);
        transform: scale(1);
    }
    75% {
        background: #ffcc33;
        box-shadow: 0 0 20px rgba(246, 184, 0, 0.9), 0 8px 18px rgba(246, 184, 0, 0.5);
        transform: scale(1.02);
    }
    100% {
        background: #f6b800;
        box-shadow: 0 8px 18px rgba(246, 184, 0, 0.3);
        transform: scale(1);
    }
}

/* Анимация пульсации (более мягкая) */
@keyframes pulseAttention {
    0% {
        box-shadow: 0 0 0 0 rgba(246, 184, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(246, 184, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(246, 184, 0, 0);
    }
}

/* Класс для мигания (активируется через JS) */
.btn-blink {
    animation: blinkAttention 1s ease-in-out !important;
}

/* Класс для пульсации */
.btn-pulse {
    animation: pulseAttention 1.5s ease-out infinite;
    position: relative;
}

/* Иконка-указатель ПО ЦЕНТРУ КНОПКИ (чуть ниже) */
.btn-attention-marker {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.btn-attention-marker::before {
    content: '👆';
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    animation: bounce 0.8s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

@keyframes bounce {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .btn-attention-marker::before {
        font-size: 24px;
        top: 55%;
    }
}

@media (max-width: 550px) {
    .btn-attention-marker::before {
        font-size: 22px;
        top: 55%;
    }
}

/* ========== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ КНОПКИ В ФУТЕРЕ ========== */
/* Только пульсация без пальца */
.footer-phone-btn.btn-pulse {
    animation: pulseAttention 2s ease-out infinite;
}

/* Убираем палец для кнопки в футере */
.footer-phone-btn.btn-attention-marker::before {
    display: none;
}

/* ===== АДАПТИВНЫЕ ВИДЕО ДЛЯ ТЕЛЕФОНОВ ===== */
.video-section {
    overflow-x: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Соотношение 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.video-title {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: #fff;
}

/* Специально для мобильных устройств */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }
    
    .video-container iframe,
    .video-container video {
        width: 100% !important;
        height: 100% !important;
    }
    
    .video-title {
        font-size: 14px;
        padding: 12px;
    }
    
    .video-section h3 {
        font-size: 24px;
        text-align: center;
        padding: 0 15px;
    }
    
    .video-section p {
        font-size: 14px;
        text-align: center;
        padding: 0 15px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .video-container {
        padding-bottom: 75%; /* 4:3 для телефонов */
    }
    
    .video-title {
        font-size: 12px;
        padding: 10px;
    }
}

/* Убираем конфликт с картой */
.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

@media (max-width: 768px) {
    .map-iframe {
        min-height: 300px;
    }
}

/* ========== НОВЫЕ СТИЛИ ДЛЯ ВИДЕО БЛОКА (ОБНОВЛЕННЫЕ) ========== */

/* Секция видео на главной */
.video-section .content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.video-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.video-section .section-title i {
    color: #ff0000;
    margin-right: 10px;
}

.video-subtitle {
    text-align: center;
    font-size: 16px;
    color: #bdd3e8;
    margin-top: -10px;
    margin-bottom: 40px;
}

/* Сетка видео */
.video-section .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 0;
}

/* Карточка видео */
.video-section .video-card {
    background: rgba(18, 30, 39, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(246, 184, 0, 0.2);
    transition: all 0.3s ease;
}

.video-section .video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 184, 0, 0.5);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.5);
}

/* Контейнер видео */
.video-section .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
}

.video-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Информация о видео */
.video-section .video-info {
    padding: 15px;
}

.video-section .video-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: left;
    background: transparent;
    padding: 0;
}

.video-section .video-category {
    display: inline-block;
    font-size: 11px;
    color: #f6b800;
    background: rgba(246, 184, 0, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Кнопки в блоке видео */
.video-section .video-more {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Кнопка "Смотреть все видео" */
.video-section .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid #f6b800;
    border-radius: 40px;
    color: #f6b800;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-section .btn-outline:hover {
    background: #f6b800;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.video-section .btn-outline i {
    transition: transform 0.3s ease;
}

.video-section .btn-outline:hover i {
    transform: translateX(5px);
}

/* Кнопка YouTube */
.video-section .btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff0000;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.video-section .btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* ========== СТРАНИЦА ВСЕХ ВИДЕО (videos.php) ========== */

/* Hero секция страницы видео */
.videos-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a121c, #0d1622);
    min-height: 100vh;
}

.videos-page .content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.videos-hero {
    text-align: center;
    margin-bottom: 50px;
}

.videos-hero h1 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #f6b800);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.videos-hero h1 i {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #ff0000;
}

.videos-hero p {
    font-size: 18px;
    color: #94a3b8;
}

/* Фильтр категорий */
.videos-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.videos-filter .filter-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 184, 0, 0.2);
    border-radius: 40px;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.videos-filter .filter-btn:hover,
.videos-filter .filter-btn.active {
    background: #f6b800;
    color: #1a1a2e;
    border-color: #f6b800;
}

/* Сетка видео на странице */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Карточка видео на странице */
.videos-grid .video-card {
    background: rgba(18, 30, 39, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(246, 184, 0, 0.2);
    transition: all 0.3s ease;
}

.videos-grid .video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 184, 0, 0.5);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.5);
}

.videos-grid .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.videos-grid .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.videos-grid .video-info {
    padding: 20px;
}

.videos-grid .video-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: left;
    background: transparent;
    padding: 0;
}

.videos-grid .video-description {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.5;
}

.videos-grid .video-category {
    display: inline-block;
    font-size: 12px;
    color: #f6b800;
    background: rgba(246, 184, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Кнопка "Больше видео на YouTube" на странице */
.videos-more {
    text-align: center;
    margin-top: 30px;
}

.videos-more .btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff0000;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.videos-more .btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Сообщение "нет видео" */
.no-videos {
    text-align: center;
    padding: 60px;
    background: rgba(18, 30, 39, 0.5);
    border-radius: 28px;
}

.no-videos i {
    font-size: 64px;
    color: #f6b800;
    margin-bottom: 20px;
}

.no-videos p {
    color: #94a3b8;
    margin-bottom: 20px;
}

/* ========== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ========== */
@media (max-width: 768px) {
    .videos-page {
        padding: 100px 0 40px;
    }
    
    .videos-hero h1 {
        font-size: 28px;
    }
    
    .videos-hero p {
        font-size: 16px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .videos-grid .video-info {
        padding: 15px;
    }
    
    .videos-filter .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .video-section .video-grid {
        gap: 20px;
    }
    
    .video-section .video-more {
        gap: 15px;
    }
    
    .video-section .btn-outline,
    .video-section .btn-youtube {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 550px) {
    .videos-grid .video-title {
        font-size: 14px;
    }
    
    .videos-grid .video-description {
        font-size: 12px;
    }
    
    .video-section .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-section .btn-outline,
    .video-section .btn-youtube {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Анимация появления */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
}

.fade-up.visible {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Кастомный плеер */
.video-custom-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    cursor: pointer;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-preview:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: rgba(246, 184, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn i {
    font-size: 28px;
    color: #1a1a2e;
    margin-left: 5px;
}

.video-preview:hover .video-play-btn {
    transform: scale(1.1);
    background: #f6b800;
    box-shadow: 0 0 25px rgba(246, 184, 0, 0.6);
}

.video-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== СПОЙЛЕР ДЛЯ ОПИСАНИЯ ВИДЕО ========== */
.video-spoiler {
    margin-top: 12px;
}

.spoiler-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 184, 0, 0.1);
    border: 1px solid rgba(246, 184, 0, 0.3);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #f6b800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spoiler-btn:hover {
    background: rgba(246, 184, 0, 0.2);
    border-color: #f6b800;
}

.spoiler-btn.active {
    background: rgba(246, 184, 0, 0.15);
}

.spoiler-icon {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.spoiler-content {
    margin-top: 10px;
    padding: 12px;
    background: rgba(5, 11, 16, 0.5);
    border-radius: 12px;
    border-left: 3px solid #f6b800;
    animation: fadeInSpoiler 0.3s ease;
}

@keyframes fadeInSpoiler {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spoiler-content .video-description {
    margin: 0;
    font-size: 13px;
    color: #bdd3e8;
    line-height: 1.5;
}

/* ========== МОДАЛЬНЫЕ ОКНА (ГЛОБАЛЬНЫЕ СТИЛИ) ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: #0f172a;
    border-radius: 28px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(246, 184, 0, 0.2);
}

.modal-header h3 {
    color: #f6b800;
    font-size: 24px;
    margin: 0;
}

.modal-header h3 i {
    margin-right: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #f6b800;
}

.modal-body {
    padding: 25px;
}

body.modal-open {
    overflow: hidden;
}

/* Кнопка "Оставить отзыв" (плавающая) */
.btn-write-review {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #f6b800, #ffdd77);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.btn-write-review i {
    font-size: 20px;
}

.btn-write-review:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(246, 184, 0, 0.4);
}

@media (max-width: 768px) {
    .btn-write-review {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
}

/* ========== СТИЛИ ДЛЯ ФОРМЫ ОТЗЫВА ========== */
.review-modal .form-group {
    margin-bottom: 20px;
}

.review-modal .form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.review-modal .form-group .required {
    color: #f6b800;
}

.review-modal .form-group input:not([type="radio"]),
.review-modal .form-group select,
.review-modal .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.review-modal .form-group input:focus,
.review-modal .form-group select:focus,
.review-modal .form-group textarea:focus {
    outline: none;
    border-color: #f6b800;
    box-shadow: 0 0 0 3px rgba(246, 184, 0, 0.1);
}

.review-modal .form-hint {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 5px;
}

/* Рейтинг звездами */
.review-modal .rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.review-modal .rating-input input {
    display: none;
}

.review-modal .rating-input .star-label {
    cursor: pointer;
    font-size: 28px;
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.review-modal .rating-input .star-label .fa-star,
.review-modal .rating-input .star-label .fa-star-o {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.2s;
}

.review-modal .rating-input .star-label .fa-star {
    opacity: 0;
    color: #f6b800;
}

.review-modal .rating-input .star-label .fa-star-o {
    opacity: 1;
    color: #475569;
}

.review-modal .rating-input input:checked ~ .star-label .fa-star {
    opacity: 1;
}

.review-modal .rating-input input:checked ~ .star-label .fa-star-o {
    opacity: 0;
}

.review-modal .rating-input .star-label:hover .fa-star,
.review-modal .rating-input .star-label:hover ~ .star-label .fa-star {
    opacity: 1;
}

.review-modal .rating-input .star-label:hover .fa-star-o,
.review-modal .rating-input .star-label:hover ~ .star-label .fa-star-o {
    opacity: 0;
}

/* Загрузка фото в форме отзыва */
.review-modal .photo-upload-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.review-modal .photo-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px dashed #334155;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-modal .photo-placeholder {
    text-align: center;
    font-size: 12px;
    color: #64748b;
}

.review-modal .photo-placeholder i {
    font-size: 28px;
    display: block;
    margin-bottom: 5px;
}

.review-modal .photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-modal .upload-photo-btn {
    padding: 10px 20px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 30px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
}

.review-modal .upload-photo-btn:hover {
    background: #f6b800;
    color: #000;
    border-color: #f6b800;
}

/* Кнопка отправки отзыва */
.review-modal .btn-submit-review {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f6b800, #ffdd77);
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.review-modal .btn-submit-review:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(246, 184, 0, 0.3);
}

.review-modal .btn-submit-review:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Сообщения формы */
.review-modal .form-message {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.review-modal .form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.review-modal .form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}