/* ==========================================================================
   LANDING V3 - ISOLATED LUXURY CSS (2-ROW HEADER, PROMO HIGHLIGHT & DIRECT BOOKING)
   ========================================================================== */

:root {
    --v3-bg-base: #09090b;
    --v3-bg-surface: #121216;
    --v3-bg-card: rgba(14, 12, 18, 0.22);
    --v3-bg-card-hover: rgba(24, 20, 32, 0.42);
    --v3-topbar-height: 41px;

    /* Brand Colors: Velvet Wine / Crimson / Gold */
    --v3-primary: #8b182b;
    --v3-primary-light: #ab253d;
    --v3-primary-dark: #4e0a15;
    --v3-primary-glow: rgba(139, 24, 43, 0.4);

    --v3-gold: #d4af37;
    --v3-gold-light: #f5d77f;
    --v3-gold-dark: #9c7b1c;
    --v3-gold-gradient: linear-gradient(135deg, #fae08c 0%, #d4af37 50%, #b38715 100%);
    --v3-wine-gradient: linear-gradient(135deg, #a8233a 0%, #8b182b 50%, #4a0a14 100%);

    /* Text */
    --v3-text-main: #f4f4f6;
    --v3-text-muted: #a1a1aa;
    --v3-text-dim: #71717a;

    /* Radius & Spacing */
    --v3-radius-sm: 12px;
    --v3-radius-md: 20px;
    --v3-radius-lg: 28px;
    --v3-radius-full: 9999px;

    /* Shadows & Glass */
    --v3-glass-border: 1px solid rgba(212, 175, 55, 0.18);
    --v3-glass-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.65);
    --v3-border-color: rgba(212, 175, 55, 0.2);
}

/* Reset & Isolation */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body.v3-body-root {
    background-color: var(--v3-bg-base) !important;
    color: var(--v3-text-main) !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased !important;
}

/* ==========================================================================
   DYNAMIC AMBIENT GLOWING ORBS (CRIMSON & MIDNIGHT SAPPHIRE FLOATING LIGHTS - VIBRANT)
   ========================================================================== */
.v3-ambient-glow-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.v3-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    -webkit-filter: blur(95px);
    will-change: transform, opacity;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* 1. Large Velvet Crimson Orb (More Translucent) */
.v3-glow-crimson-1 {
    width: clamp(500px, 55vw, 950px);
    height: clamp(500px, 55vw, 950px);
    top: 5%;
    right: -10%;
    background: radial-gradient(circle, rgba(225, 25, 65, 0.48) 0%, rgba(160, 20, 48, 0.28) 45%, transparent 70%);
    animation: v3-orb-float-1 20s ease-in-out infinite alternate;
}

/* 2. Deep Midnight Sapphire Blue Orb (More Translucent) */
.v3-glow-blue-1 {
    width: clamp(450px, 50vw, 850px);
    height: clamp(450px, 50vw, 850px);
    top: 30%;
    left: -10%;
    background: radial-gradient(circle, rgba(30, 110, 245, 0.46) 0%, rgba(18, 60, 160, 0.25) 45%, transparent 70%);
    animation: v3-orb-float-2 24s ease-in-out infinite alternate;
}

/* 3. Second Ruby Crimson Orb (More Translucent) */
.v3-glow-crimson-2 {
    width: clamp(450px, 48vw, 800px);
    height: clamp(450px, 48vw, 800px);
    bottom: -10%;
    left: 20%;
    background: radial-gradient(circle, rgba(215, 22, 60, 0.44) 0%, rgba(140, 15, 42, 0.22) 45%, transparent 70%);
    animation: v3-orb-float-3 26s ease-in-out infinite alternate;
}

/* 4. Second Sapphire Blue Orb (More Translucent) */
.v3-glow-blue-2 {
    width: clamp(420px, 45vw, 750px);
    height: clamp(420px, 45vw, 750px);
    top: -5%;
    left: 15%;
    background: radial-gradient(circle, rgba(25, 95, 225, 0.42) 0%, rgba(14, 50, 130, 0.2) 45%, transparent 70%);
    animation: v3-orb-float-4 22s ease-in-out infinite alternate;
}

/* 5. Soft Gold Ambient Flare (More Translucent) */
.v3-glow-gold-1 {
    width: clamp(350px, 35vw, 600px);
    height: clamp(350px, 35vw, 600px);
    bottom: 20%;
    right: -5%;
    background: radial-gradient(circle, rgba(240, 195, 55, 0.32) 0%, rgba(180, 140, 25, 0.14) 40%, transparent 70%);
    animation: v3-orb-float-5 28s ease-in-out infinite alternate;
}

/* Keyframe Animations: Smooth 3D Floating, Scaling and Translucent Breathing */
@keyframes v3-orb-float-1 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.45;
    }
    50% {
        transform: translate3d(-18vw, 25vh, 0) scale(1.18);
        opacity: 0.68;
    }
    100% {
        transform: translate3d(-8vw, 45vh, 0) scale(0.92);
        opacity: 0.4;
    }
}

@keyframes v3-orb-float-2 {
    0% {
        transform: translate3d(0, 0, 0) scale(0.95);
        opacity: 0.4;
    }
    50% {
        transform: translate3d(25vw, -20vh, 0) scale(1.22);
        opacity: 0.65;
    }
    100% {
        transform: translate3d(40vw, 15vh, 0) scale(1.05);
        opacity: 0.42;
    }
}

@keyframes v3-orb-float-3 {
    0% {
        transform: translate3d(0, 0, 0) scale(1.05);
        opacity: 0.48;
    }
    50% {
        transform: translate3d(18vw, -30vh, 0) scale(0.88);
        opacity: 0.35;
    }
    100% {
        transform: translate3d(-12vw, -15vh, 0) scale(1.18);
        opacity: 0.62;
    }
}

@keyframes v3-orb-float-4 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.38;
    }
    50% {
        transform: translate3d(30vw, 35vh, 0) scale(1.16);
        opacity: 0.6;
    }
    100% {
        transform: translate3d(15vw, 55vh, 0) scale(0.9);
        opacity: 0.35;
    }
}

@keyframes v3-orb-float-5 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.28;
    }
    50% {
        transform: translate3d(-20vw, -25vh, 0) scale(1.25);
        opacity: 0.5;
    }
    100% {
        transform: translate3d(-5vw, -45vh, 0) scale(0.85);
        opacity: 0.24;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

.v3-svg-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.v3-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.v3-relative-z2 {
    position: relative;
    z-index: 2;
}

.v3-gold-gradient {
    background: var(--v3-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.v3-gold-highlight {
    color: var(--v3-gold);
    font-weight: 600;
}

.v3-mt-20 {
    margin-top: 20px;
}

/* Buttons */
.v3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--v3-radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.v3-btn-primary {
    background: var(--v3-wine-gradient);
    color: #ffffff;
    box-shadow: 0 8px 24px var(--v3-primary-glow);
}

.v3-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(171, 37, 61, 0.55);
}

.v3-btn-gold {
    background: var(--v3-gold-gradient);
    color: #0c0c0e;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.v3-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.v3-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--v3-text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.v3-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--v3-gold);
    color: var(--v3-gold);
}

.v3-btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.v3-btn-block {
    width: 100%;
}

/* Tag / Badge */
.v3-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--v3-radius-full);
    background: rgba(212, 175, 55, 0.1);
    color: var(--v3-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-align: left;
}

/* Sections Global (Optimized for High PageSpeed & Render Performance) */
.v3-section {
    padding: 110px 0;
    position: relative;
    background: transparent !important;
}

.v3-section:not(.v3-hero-section) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}

.v3-section-header {
    text-align: left !important;
    max-width: 100%;
    margin: 0 0 50px 0;
}

.v3-section-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: clamp(20px, 4.2vw, 38px);
    font-weight: 500;
    letter-spacing: clamp(0.5px, 0.5vw, 1.5px);
    text-transform: uppercase;
    text-align: left !important;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
}

.v3-section-desc {
    color: var(--v3-text-muted);
    font-size: 15px;
    text-align: left !important;
}

/* Bento Glass Style (Frosted Glass - More Transparent) */
.v3-bento-glass {
    background: rgba(14, 12, 18, 0.22);
    border: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--v3-radius-md);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--v3-glass-shadow);
}

.v3-bento-glass:hover {
    background: rgba(24, 20, 32, 0.42);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   HEADER / 2 СТРОКИ С ТЕЛЕФОНОМ ВВЕРХУ И ВЫДЕЛЕННЫМИ АКЦИЯМИ
   ========================================================================== */
.v3-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    pointer-events: none;
    margin: 0;
    padding: 0;
    border: none;
}

.v3-header>* {
    pointer-events: auto;
}

/* 1 СТРОКА: TOP BAR */
.v3-header-top-bar {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(9, 9, 12, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    margin-top: 0;
    transition: margin-top 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Скрытие при скролле вниз: верхняя строка плавно уезжает наверх, сохраняя видимость и увлекая за собой нижнюю */
.v3-header.scrolled-down .v3-header-top-bar {
    margin-top: -45px;
    pointer-events: none;
}

.v3-top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--v3-text-muted);
}

.v3-top-bar-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(244, 244, 246, 0.85);
    font-size: 12px;
}

.v3-top-bar-location svg {
    color: var(--v3-gold);
}

.v3-top-bar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v3-top-social-link {
    color: rgba(244, 244, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.25s ease;
}

.v3-top-social-link:hover {
    color: var(--v3-gold);
    border-color: var(--v3-gold);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

.v3-top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v3-top-phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--v3-gold-light);
    letter-spacing: 0.5px;
}

.v3-top-phone-link:hover {
    color: #fff;
}

.v3-top-worktime-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--v3-text-main);
}

.v3-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: v3-pulse 2s infinite;
}

@keyframes v3-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* 2 СТРОКА: MAIN NAV BAR (НИЖНИЙ БЛОК МЕНЮ - БОЛЕЕ ПРОЗРАЧНЫЙ И РАЗМЫТЫЙ) */
.v3-header-main-bar {
    padding: 10px 0;
    margin: 0;
    background: rgba(10, 9, 14, 0.28);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
}

.v3-header.scrolled-down .v3-header-main-bar {
    background: rgba(10, 9, 14, 0.45);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
}

.v3-main-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.v3-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    gap: 4px;
    flex-shrink: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.v3-logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.v3-logo-img {
    height: 46px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.v3-logo-title {
    font-family: 'Cinzel', 'Outfit', serif, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    background: var(--v3-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    width: 100%;
}

.v3-nav {
    display: flex;
    gap: clamp(10px, 1.3vw, 22px);
    align-items: center;
    flex-shrink: 1;
}

.v3-nav-mobile-header,
.v3-nav-mobile-footer {
    display: none;
}

.v3-nav-link {
    font-size: clamp(11px, 0.95vw, 13px);
    font-weight: 600;
    color: var(--v3-text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.v3-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--v3-gold);
    transition: width 0.25s ease;
}

.v3-nav-link:hover {
    color: #fff;
}

.v3-nav-link:hover::after {
    width: 100%;
}

/* ВЫДЕЛЕННЫЙ ПУНКТ АКЦИИ */
.v3-nav-link-promo {
    color: #fff !important;
    background: rgba(139, 24, 43, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 5px clamp(10px, 1vw, 14px) !important;
    border-radius: var(--v3-radius-full);
    box-shadow: 0 0 16px rgba(139, 24, 43, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.v3-nav-link-promo::after {
    display: none;
}

.v3-nav-link-promo:hover {
    background: var(--v3-wine-gradient);
    border-color: var(--v3-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

.v3-header-right-actions {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vw, 18px);
    flex-shrink: 0;
}

.v3-btn-header-cta {
    padding: 9px clamp(12px, 1.4vw, 22px);
    font-size: clamp(11px, 0.85vw, 12px);
    letter-spacing: 1px;
    flex-shrink: 0;
    white-space: nowrap;
}

.v3-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    z-index: 1001;
}

.v3-burger span {
    width: 26px;
    height: 2px;
    background: var(--v3-gold);
    border-radius: 2px;
    transition: 0.3s;
}

/* HERO SECTION */
.v3-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(160px, 20vh, 210px) 0 90px;
    overflow: hidden;
    background: transparent !important;
}

.v3-hero-badge {
    margin-top: 10px;
    margin-bottom: 24px;
}

.v3-hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.v3-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .v3-hero-video {
        background-image: url('../videos/hero-videofon-poster-mob.webp');
    }
}

.v3-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 65% 35%, rgba(9, 9, 11, 0.12) 0%, rgba(9, 9, 11, 0.38) 55%, rgba(9, 9, 11, 0.78) 100%),
        linear-gradient(180deg, rgba(9, 9, 11, 0.25) 0%, rgba(9, 9, 11, 0.35) 50%, rgba(9, 9, 11, 0.75) 85%, var(--v3-bg-base) 100%);
}

.v3-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: left;
}

.v3-hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--v3-gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 18px;
    background: rgba(139, 24, 43, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--v3-radius-full);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.v3-hero-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.v3-hero-subtitle {
    font-size: 17px;
    color: #e2e2ea;
    margin-bottom: 40px;
    max-width: 720px;
    line-height: 1.7;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
    text-align: left;
}

.v3-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.v3-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 32px;
    background: rgba(14, 12, 18, 0.22);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--v3-radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.v3-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--v3-gold);
    margin-bottom: 4px;
}

.v3-stat-desc {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--v3-text-muted);
}

/* ==========================================================================
   SECTION 2: ПРЕИМУЩЕСТВА С ДИНАМИЧЕСКИМ ЗАЦИКЛЕННЫМ ПЕРЕКЛЮЧЕНИЕМ
   ========================================================================== */
.v3-benefits-section {
    position: relative;
    padding: 120px 0;
    background: transparent !important;
    overflow: hidden;
    border: none;
}

.v3-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
}

.v3-glow-1 {
    top: 10%;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 24, 43, 0.35) 0%, transparent 70%);
}

.v3-glow-2 {
    bottom: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
}

.v3-ref-dim {
    opacity: 0.35;
    font-weight: 400;
}

.v3-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.v3-benefit-item {
    display: grid;
    grid-template-areas: "counter img title"
        "counter img text";
    grid-template-columns: 36px 380px 1fr;
    grid-template-rows: repeat(auto-fit, minmax(36px, auto));
    padding: 28px 30px 28px 45px;
    border-radius: 100px;
    column-gap: 5%;
    background: rgba(14, 12, 18, 0.22);
    border: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

/* Динамическое зацикленное состояние или hover с выводом на передний план */
.v3-benefit-item.v3-active-benefit,
.v3-benefit-item:hover {
    background: rgba(139, 24, 43, 0.35);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    z-index: 20 !important;
}

.v3-benefit-counter {
    grid-area: counter;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--v3-gold);
    opacity: .75;
}

.v3-benefit-img {
    position: relative;
    grid-area: img;
    opacity: 0;
    z-index: 25;
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}

.v3-benefit-item.v3-active-benefit .v3-benefit-img,
.v3-benefit-item:hover .v3-benefit-img {
    opacity: 1;
}

.v3-benefit-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-4deg);
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    width: 320px;
    height: 180px;
    object-fit: cover;
    z-index: 30;
}

.v3-benefit-title {
    grid-area: title;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    margin-bottom: 8px;
}

.v3-benefit-text {
    grid-area: text;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    color: var(--v3-text-muted);
}

/* ==========================================================================
   SECTION 3 & 6: КАРТОЧКИ С ТРАНСФОРМАЦИЕЙ КНОПОК
   ========================================================================== */
.v3-masters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.v3-master-card {
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.v3-master-gallery-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 853 / 1280;
    border-radius: var(--v3-radius-sm);
    overflow: hidden;
    background: #14141a;
}

.v3-master-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.v3-master-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.v3-master-slide.active {
    opacity: 1;
    visibility: visible;
}

.v3-master-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows */
.v3-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.v3-gallery-arrow:hover {
    background: var(--v3-primary);
    border-color: var(--v3-gold);
    color: var(--v3-gold);
}

.v3-gallery-prev {
    left: 12px;
}

.v3-gallery-next {
    right: 12px;
}

/* Dots */
.v3-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: var(--v3-radius-full);
    backdrop-filter: blur(6px);
}

.v3-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.25s;
}

.v3-dot.active {
    background: var(--v3-gold);
    width: 14px;
    border-radius: 4px;
}

.v3-master-photo-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: var(--v3-radius-full);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.v3-master-details {
    padding: 20px 8px 8px;
}

.v3-master-header {
    text-align: left;
    margin-bottom: 16px;
}

.v3-master-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--v3-gold);
    font-weight: 600;
}

.v3-master-name {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    margin-top: 4px;
}

.v3-master-params {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.v3-param-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--v3-radius-sm);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.v3-param-k {
    color: var(--v3-text-dim);
    letter-spacing: 0.5px;
}

.v3-param-v {
    color: var(--v3-gold-light);
    font-weight: 600;
}

/* КНОПКА ТРАНСФОРМАЦИИ (МАСТЕРА, ПРОГРАММЫ, АКЦИИ) */
.v3-action-transform-box {
    position: relative;
    width: 100%;
    min-height: 46px;
}

.v3-channels-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    animation: v3-fade-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.v3-action-transform-box.active .v3-trigger-btn {
    display: none;
}

.v3-action-transform-box.active .v3-channels-grid {
    display: grid;
}

@keyframes v3-fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v3-channel-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 9px 4px;
    border-radius: var(--v3-radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v3-channel-btn svg {
    flex-shrink: 0;
}

.v3-channel-btn:hover {
    transform: translateY(-2px);
}

/* WhatsApp */
.v3-channel-wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
}

.v3-channel-wa:hover {
    background: #25d366;
    color: #000;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Telegram */
.v3-channel-tg {
    background: rgba(34, 158, 217, 0.15);
    border-color: rgba(34, 158, 217, 0.4);
    color: #229ed9;
}

.v3-channel-tg:hover {
    background: #229ed9;
    color: #fff;
    box-shadow: 0 6px 18px rgba(34, 158, 217, 0.4);
}

/* Звонок */
.v3-channel-call {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--v3-gold);
}

.v3-channel-call:hover {
    background: var(--v3-gold-gradient);
    color: #000;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* SECTION 4: НЕЙРО-ВИДЕО (4 В РЯД) */
.v3-video-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v3-video-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.v3-video-frame-box {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #000;
    border-radius: var(--v3-radius-sm) var(--v3-radius-sm) 0 0;
    overflow: hidden;
}

.v3-video-facade {
    cursor: pointer;
    position: relative;
}

.v3-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(18, 18, 22, 0.85);
    border: 2px solid var(--v3-gold);
    color: var(--v3-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    margin: 0;
}

.v3-video-facade:hover .v3-video-play-btn:not(.loading-active) {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--v3-gold);
    color: #000;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
}

.v3-spinner-ring {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(212, 175, 55, 0.25);
    border-top-color: var(--v3-gold);
    border-radius: 50%;
    animation: v3-spin-fast 0.75s linear infinite;
    display: inline-block;
}

@keyframes v3-spin-fast {
    to { transform: rotate(360deg); }
}

.v3-video-play-btn.loading-active {
    background: rgba(10, 10, 14, 0.95);
    border-color: var(--v3-gold);
    pointer-events: none;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translate(-50%, -50%) !important;
}

.v3-video-frame-box.playing .v3-video-play-btn {
    display: none !important;
}

.v3-video-frame-box.playing {
    background-image: none !important;
}

.v3-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.v3-video-embed iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.v3-video-card-footer {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.v3-video-tag {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--v3-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SECTION 5: АКЦИИ */
.v3-promotions-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.v3-promo-card {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.v3-promo-banner {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.v3-promo-card:hover .v3-promo-banner {
    transform: scale(1.02);
}

.v3-promo-action-wrap {
    position: static;
    padding: 20px 24px;
    background: rgba(14, 14, 18, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.v3-promo-action-wrap .v3-action-transform-box {
    width: 100%;
    max-width: 100%;
}

/* SECTION 6: ПРОГРАММЫ */
.v3-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.v3-card {
    background: #14141a;
    border-radius: var(--v3-radius-md);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.v3-card:hover {
    transform: translateY(-6px);
    background: #181820;
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 40px -10px rgba(139, 24, 43, 0.45);
}

.v3-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #121216;
}

.v3-card-img,
.v3-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.v3-card:hover .v3-card-img,
.v3-card:hover .v3-card-video {
    transform: scale(1.05);
}

.v3-card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 26, 0.95) 100%);
}

.v3-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(14, 12, 16, 0.88);
    color: #fff;
    padding: 5px 12px;
    border-radius: var(--v3-radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.v3-card-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--v3-wine-gradient);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--v3-radius-full);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 5;
}

.v3-card-content {
    padding: 24px;
    text-align: left;
}

.v3-card-title {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    margin-bottom: 8px;
}

.v3-card-desc {
    font-size: 13px;
    color: var(--v3-text-muted);
    margin-bottom: 20px;
    line-height: 1.55;
    text-align: left;
    min-height: 60px;
}

/* SECTION 7: ИНТЕРЬЕР И LIGHTBOX */
.v3-interior-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v3-interior-item {
    border-radius: var(--v3-radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: var(--v3-glass-border);
    position: relative;
    cursor: pointer;
}

.v3-interior-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.v3-interior-zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 24, 43, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v3-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.v3-interior-item:hover .v3-interior-img {
    transform: scale(1.08);
}

.v3-interior-item:hover .v3-interior-zoom-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.v3-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.v3-lightbox.active {
    display: flex;
}

.v3-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 8, 0.94);
    backdrop-filter: blur(16px);
}

.v3-lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v3-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--v3-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    object-fit: contain;
}

.v3-lightbox-counter {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--v3-gold);
    font-weight: 600;
}

.v3-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.v3-lightbox-close:hover {
    background: var(--v3-primary);
    color: var(--v3-gold);
}

.v3-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(18, 18, 24, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
    backdrop-filter: blur(8px);
}

.v3-lightbox-arrow:hover {
    background: var(--v3-primary);
    border-color: var(--v3-gold);
    color: var(--v3-gold);
}

.v3-lightbox-prev {
    left: 24px;
}

.v3-lightbox-next {
    right: 24px;
}

/* SECTION 8: КОНТАКТЫ & КАРТА */
.v3-contacts-fullwidth-section {
    padding: 80px 0 0;
}

.v3-map-fullwidth-container {
    position: relative;
    width: 100%;
    min-height: 580px;
    margin-top: 40px;
    overflow: hidden;
}

.v3-map-wrapper,
#v3-dark-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    position: relative;
    z-index: 1;
    background: #08080c !important;
}

#v3-dark-map .leaflet-tile-pane {
    filter: grayscale(100%) invert(90%) contrast(120%) brightness(0.85);
    -webkit-filter: grayscale(100%) invert(90%) contrast(120%) brightness(0.85);
}

/* Custom Gold Glowing Map Pin */
.v3-gold-map-pin {
    background: none !important;
    border: none !important;
}

.v3-pin-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.v3-pin-pulse {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.9);
    animation: v3-pin-ripple 2s infinite ease-out;
}

@keyframes v3-pin-ripple {
    0% {
        transform: translateX(-50%) scale(0.3);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scale(2.4);
        opacity: 0;
    }
}

.v3-pin-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #dfc15d 0%, #aa8214 100%);
    color: #0b0b0e !important;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 7px 12px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.85), 0 0 16px rgba(212, 175, 55, 0.6);
    border: 1px solid rgba(255, 235, 160, 0.9);
    transition: transform 0.25s ease;
    white-space: nowrap;
}

.v3-pin-badge:hover {
    transform: scale(1.08);
}

.v3-pin-badge svg {
    color: #533b06;
    flex-shrink: 0;
}

/* Custom Dark Leaflet Popup */
.leaflet-popup-content-wrapper {
    background: rgba(14, 14, 18, 0.96) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    backdrop-filter: blur(12px);
    border-radius: 14px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9) !important;
    color: #fff !important;
    padding: 6px 10px !important;
}

.leaflet-popup-tip {
    background: rgba(14, 14, 18, 0.96) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

.v3-map-popup-content {
    font-family: 'Montserrat', sans-serif;
    padding: 6px 4px;
    text-align: center;
}

.v3-popup-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--v3-gold-light);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.v3-popup-address {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 4px;
}

.v3-popup-status {
    font-size: 11px;
    font-weight: 600;
    color: var(--v3-gold);
    margin-bottom: 10px;
}

.v3-popup-btn {
    display: inline-block;
    background: var(--v3-gold-gradient);
    color: #0b0b0e !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.2s ease;
}

.v3-popup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

.v3-map-floating-card {
    position: absolute;
    top: 50px;
    left: 80px;
    width: 380px;
    padding: 36px;
    z-index: 10;
    border-radius: var(--v3-radius-md);
    text-align: left;
    background: rgba(12, 10, 16, 0.38) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65) !important;
}

.v3-floating-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    margin-bottom: 8px;
}

.v3-floating-divider {
    height: 2px;
    width: 40px;
    background: var(--v3-gold);
    margin-bottom: 20px;
}

.v3-floating-item {
    margin-bottom: 16px;
    text-align: left;
}

.v3-floating-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--v3-gold);
    margin-bottom: 4px;
}

.v3-floating-val {
    font-size: 15px;
    color: var(--v3-text-main);
}

.v3-floating-phone {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.v3-floating-phone:hover {
    color: var(--v3-gold);
}

.v3-floating-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.v3-social-btn {
    padding: 6px 14px;
    border-radius: var(--v3-radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: var(--v3-text-muted);
}

.v3-social-btn:hover {
    color: var(--v3-gold);
    border-color: var(--v3-gold);
}

/* ==========================================================================
   SECTION 9: ОБНОВЛЕННАЯ ОНЛАЙН ЗАПИСЬ (ПРЯМЫЕ КАНАЛЫ + ФОРМА ОБРАТНОГО ЗВОНКА)
   ========================================================================== */
.v3-booking-card {
    padding: 60px;
}

.v3-booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.v3-booking-direct-wrap {
    text-align: left;
}

.v3-booking-sub {
    color: var(--v3-text-muted);
    font-size: 15px;
    margin-bottom: 28px;
    text-align: left;
}

.v3-booking-direct-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v3-direct-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--v3-radius-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.v3-direct-call-text {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.v3-phone-nowrap {
    white-space: nowrap;
    display: inline-block;
}

.v3-direct-wa {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
}

.v3-direct-wa:hover {
    background: #25d366;
    color: #000;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.v3-direct-tg {
    background: rgba(34, 158, 217, 0.15);
    border: 1px solid rgba(34, 158, 217, 0.4);
    color: #229ed9;
}

.v3-direct-tg:hover {
    background: #229ed9;
    color: #fff;
    box-shadow: 0 10px 24px rgba(34, 158, 217, 0.35);
    transform: translateY(-2px);
}

.v3-direct-call {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--v3-gold);
}

.v3-direct-call:hover {
    background: var(--v3-gold-gradient);
    color: #000;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* Форма обратного звонка справа */
.v3-booking-form-box {
    background: rgba(12, 10, 16, 0.32);
    border: 1px solid rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--v3-radius-md);
    padding: 36px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
    text-align: left;
}

.v3-form-box-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.v3-form-box-desc {
    font-size: 13px;
    color: var(--v3-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.v3-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.v3-form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--v3-text-muted);
    margin-bottom: 8px;
    text-align: left;
}

.v3-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(9, 9, 11, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--v3-radius-sm);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.25s ease;
}

.v3-input:focus {
    border-color: var(--v3-gold);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

.v3-phone-input {
    font-size: 16px;
    letter-spacing: 1px;
}

.v3-form-policy {
    margin-bottom: 12px;
}

.v3-form-marketing {
    margin-bottom: 20px;
}

.v3-checkbox-label {
    font-size: 11px;
    line-height: 1.45;
    color: var(--v3-text-dim);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    user-select: none;
}

.v3-checkbox-input {
    margin-top: 2px;
    accent-color: var(--v3-gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.v3-checkbox-text {
    flex: 1;
}

.v3-checkbox-label a {
    color: var(--v3-gold);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.v3-checkbox-label a:hover {
    opacity: 0.8;
}

.v3-footer-link-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    margin: 0 4px;
}

.v3-form-fz-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
    text-align: center;
}

.v3-form-fz-note svg {
    color: var(--v3-gold);
    flex-shrink: 0;
}

.v3-form-status {
    margin-top: 14px;
    font-size: 13px;
    text-align: center;
}

/* FOOTER: ПОЛНОСТЬЮ НЕПРОЗРАЧНЫЙ ЧЕРНЫЙ ФОН ПОВЕРХ ВСЕХ ОРБИТ И СВЕЧЕНИЙ */
.v3-footer {
    position: relative !important;
    z-index: 10 !important;
    background: #060608 !important;
    background-color: #060608 !important;
    isolation: isolate !important;
    padding: 70px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* 1 БЛОК: ГОРИЗОНТАЛЬНОЕ МЕНЮ С ССЫЛКАМИ И КАТАЛОГОМ */
.v3-footer-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 18px 30px;
}

.v3-footer-nav-primary {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.v3-footer-nav-primary a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--v3-text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.v3-footer-nav-primary a:hover {
    color: var(--v3-gold);
}

.v3-footer-nav-secondary {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

/* ВЫПАДАЮЩИЕ МЕНЮ 2-ГО УРОВНЯ В ФУТЕРЕ */
.v3-dropdown-wrapper {
    position: relative;
}

.v3-dropdown-toggle {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--v3-radius-full);
    padding: 8px 18px;
    color: var(--v3-gold);
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-dropdown-toggle:hover,
.v3-dropdown-wrapper.v3-open .v3-dropdown-toggle {
    background: var(--v3-gold);
    color: #000;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    border-color: var(--v3-gold);
}

.v3-dropdown-icon {
    font-size: 11px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.v3-dropdown-wrapper.v3-open .v3-dropdown-icon {
    transform: rotate(180deg);
}

.v3-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 480px;
    max-width: 90vw;
    background: rgba(12, 12, 16, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--v3-radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.v3-dropdown-wrapper.v3-open .v3-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.v3-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--v3-gold);
    text-transform: uppercase;
}

.v3-dropdown-view-all {
    color: #fff;
    font-size: 11px;
    text-decoration: underline;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.v3-dropdown-view-all:hover {
    opacity: 1;
    color: var(--v3-gold);
}

.v3-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 12px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 6px;
}

.v3-dropdown-grid::-webkit-scrollbar {
    width: 4px;
}

.v3-dropdown-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.v3-dropdown-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: left;
}

.v3-dropdown-link:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--v3-gold);
    transform: translateX(3px);
}

/* 2 БЛОК: СЕТКА СЛЕВА (БРЕНД + ДИСКЛЕЙМЕР) И СПРАВА (ВАКАНСИЯ) */
.v3-footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 36px;
}

.v3-footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.v3-footer-logo-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

.v3-footer-logo {
    height: 48px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.v3-footer-tagline {
    font-size: 13px;
    color: var(--v3-text-muted);
    text-align: left;
    line-height: 1.45;
    margin-bottom: 16px;
}

.v3-footer-disclaimer-plain {
    font-size: 12px;
    color: var(--v3-text-dim);
    line-height: 1.7;
    text-align: left;
    text-wrap: pretty;
    max-width: 95%;
}

/* БЛОК ВАКАНСИИ В ФУТЕРЕ */
.v3-footer-vacancy-card {
    background: linear-gradient(135deg, rgba(28, 20, 24, 0.8) 0%, rgba(16, 16, 22, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--v3-radius-md);
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.v3-footer-vacancy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--v3-gold-gradient);
}

.v3-vacancy-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.v3-vacancy-info {
    flex: 1;
}

.v3-vacancy-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--v3-gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--v3-radius-full);
    padding: 3px 10px;
    margin-bottom: 8px;
}

.v3-vacancy-title {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.v3-vacancy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
}

.v3-vacancy-list li {
    font-size: 12px;
    color: var(--v3-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.35;
}

.v3-vac-bullet {
    color: var(--v3-gold);
    font-size: 10px;
}

.v3-vacancy-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.v3-vacancy-action-label {
    font-size: 11px;
    color: var(--v3-text-dim);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v3-vacancy-phone {
    font-family: 'Cinzel', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.v3-vacancy-phone:hover {
    color: var(--v3-gold);
}

.v3-vacancy-btns {
    display: flex;
    gap: 8px;
}

.v3-vacancy-btns .v3-btn-sm {
    padding: 7px 14px;
    font-size: 11px;
}

.v3-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--v3-text-dim);
}

.v3-privacy-link:hover {
    color: var(--v3-gold);
}

/* ==========================================================================
   RESPONSIVE & MOBILE DESIGN SYSTEM
   ========================================================================== */
@media (max-width: 1100px) {
    .v3-benefit-item {
        grid-template-columns: 32px 300px 1fr;
        border-radius: 35px;
        column-gap: 4%;
    }

    .v3-benefit-img img {
        width: 260px;
        height: 150px;
    }

    .v3-masters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v3-video-bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .v3-promotions-slider {
        grid-template-columns: 1fr;
    }

    .v3-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .v3-interior-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .v3-map-floating-card {
        left: 40px;
        width: 340px;
    }

    .v3-booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .v3-top-bar-location {
        font-size: 11px;
    }

    .v3-top-worktime-tag {
        display: none;
    }

    .v3-benefit-item {
        padding: 24px;
    }

    .v3-video-bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .v3-footer-mid-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v3-vacancy-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .v3-vacancy-list {
        grid-template-columns: 1fr;
    }

    .v3-vacancy-action {
        align-items: flex-start;
        width: 100%;
    }

    .v3-vacancy-btns {
        width: 100%;
    }

    .v3-vacancy-btns .v3-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 1140px) {

    /* На экранах до 1140px переходим на шторку мобильного меню, чтобы шапка не переполнялась */
    .v3-burger {
        display: flex;
    }

    .v3-nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(4px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .v3-nav-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .v3-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        background: #0d0d12;
        border-left: 1px solid rgba(212, 175, 55, 0.25);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 30px;
        gap: 10px;
        z-index: 1002;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9);
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .v3-nav.active {
        right: 0;
    }

    .v3-nav-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 6px;
        flex-shrink: 0;
    }

    .v3-nav-mobile-logo {
        height: 32px;
    }

    .v3-nav-close {
        background: none;
        border: none;
        color: var(--v3-gold);
        font-size: 32px;
        cursor: pointer;
        line-height: 1;
        padding: 4px;
    }

    .v3-nav-link {
        font-size: 14px;
        font-weight: 600;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        flex-shrink: 0;
    }

    .v3-nav-mobile-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        flex-shrink: 0;
    }

    .v3-nav-cta-btn {
        padding: 12px;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        justify-content: center;
    }

    .v3-nav-phone-btn {
        padding: 10px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--v3-gold);
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: var(--v3-radius-full);
        background: rgba(255, 255, 255, 0.03);
    }
}

@media (max-width: 768px) {

    /* Header on Mobile */
    .v3-header-top-bar {
        padding: 6px 0;
    }

    .v3-header.scrolled-down .v3-header-top-bar {
        margin-top: -55px;
    }

    .v3-top-bar-inner {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
    }

    .v3-top-bar-location {
        font-size: 10px;
    }

    .v3-top-bar-socials {
        display: none;
    }

    .v3-top-bar-right {
        gap: 10px;
    }

    .v3-top-phone-link {
        font-size: 13px;
    }

    .v3-header-main-bar {
        padding: 10px 0;
    }

    .v3-btn-header-cta {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* Section Header Titles on Mobile */
    .v3-section-title {
        font-size: 24px !important;
        letter-spacing: 0.5px !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Hero */
    .v3-hero-section {
        padding: 155px 0 60px;
        min-height: auto;
    }

    .v3-hero-badge {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 6px 14px;
        margin-top: 6px;
        margin-bottom: 20px;
    }

    .v3-hero-title {
        font-size: 28px;
        line-height: 1.25;
        letter-spacing: 0.5px;
    }

    .v3-hero-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .v3-hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }

    .v3-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px 20px;
        gap: 14px;
    }

    .v3-stat-num {
        font-size: 22px;
    }

    .v3-stat-desc {
        font-size: 10px;
    }

    /* Benefits on Mobile */
    .v3-benefits-list {
        padding: 0;
        gap: 20px;
    }

    .v3-benefit-item {
        display: flex;
        flex-direction: column;
        padding: 24px 20px;
        border-radius: var(--v3-radius-md);
        border: 1px solid var(--v3-border-color);
        background: rgba(20, 20, 26, 0.6);
        align-items: flex-start;
    }

    .v3-benefit-counter {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .v3-benefit-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .v3-benefit-img {
        opacity: 1 !important;
        width: 100%;
        margin-bottom: 18px;
    }

    .v3-benefit-img img {
        position: static;
        transform: none;
        border-radius: 18px;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 400px;
        object-fit: cover;
        object-position: center 25%;
        border: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .v3-benefit-text {
        font-size: 14px;
        opacity: 0.85;
    }

    /* Masters, Promotions, Programs & Video on Mobile */
    .v3-masters-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .v3-promotions-slider {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .v3-grid-3 {
        grid-template-columns: 1fr;
    }

    .v3-video-bento-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .v3-interior-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Map & Contacts on Mobile (Max 45% Viewport Height) */
    .v3-map-fullwidth-container {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .v3-map-wrapper,
    #v3-dark-map {
        min-height: 200px !important;
        max-height: 45vh !important;
        max-height: 45dvh !important;
        height: 45vh !important;
        height: 45dvh !important;
    }

    .v3-map-wrapper ymaps,
    .v3-map-wrapper iframe,
    .v3-map-wrapper .leaflet-container {
        min-height: 200px !important;
        max-height: 45vh !important;
        max-height: 45dvh !important;
        height: 45vh !important;
        height: 45dvh !important;
    }

    .v3-map-floating-card {
        position: static;
        width: 100%;
        margin-top: 20px;
        padding: 24px;
    }

    /* Booking & Footer on Mobile */
    .v3-booking-card {
        padding: 30px 16px;
    }

    .v3-booking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .v3-direct-btn {
        padding: 14px 18px;
        font-size: 13px;
        gap: 12px;
    }

    .v3-direct-call-text {
        font-size: 13px;
        line-height: 1.3;
    }

    .v3-booking-form-box {
        padding: 24px 18px;
    }

    .v3-footer-nav-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .v3-footer-nav-primary {
        justify-content: center;
        gap: 14px;
    }

    .v3-footer-nav-secondary {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .v3-dropdown-wrapper {
        width: 100%;
    }

    .v3-dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }

    .v3-dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin-top: 10px;
        box-sizing: border-box;
        display: none;
    }

    .v3-dropdown-wrapper.v3-open .v3-dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .v3-dropdown-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px 10px;
    }

    .v3-footer-main-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .v3-footer-brand-column {
        align-items: center;
        text-align: center;
    }

    .v3-footer-tagline {
        text-align: center;
    }

    .v3-footer-disclaimer-plain {
        text-align: center;
    }

    .v3-footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    /* Lightbox on Mobile */
    .v3-lightbox-arrow {
        width: 42px;
        height: 42px;
    }

    .v3-lightbox-prev {
        left: 10px;
    }

    .v3-lightbox-next {
        right: 10px;
    }

    .v3-lightbox-close {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 26px;
    }
}

/* ==========================================================================
   SMOOTH 60FPS SCROLL REVEAL & HERO CASCADE ANIMATIONS
   ========================================================================== */

/* 1. Hero Entrance Animations (Нативный запуск без ожидания JS) */
@keyframes v3-hero-fade-up {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.v3-hero-badge {
    animation: v3-hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.v3-hero-title {
    animation: v3-hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.v3-hero-subtitle {
    animation: v3-hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
}

.v3-hero-buttons {
    animation: v3-hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

.v3-hero-stats {
    animation: v3-hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.54s both;
}

/* 2. Scroll Reveal General Elements */
.v3-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.v3-reveal.v3-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays for Grids */
.v3-delay-1 { transition-delay: 0.05s; }
.v3-delay-2 { transition-delay: 0.10s; }
.v3-delay-3 { transition-delay: 0.15s; }
.v3-delay-4 { transition-delay: 0.20s; }
.v3-delay-5 { transition-delay: 0.25s; }
.v3-delay-6 { transition-delay: 0.30s; }

/* 3. Luxury Dark Styling for intl-tel-input */
.iti {
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

.iti input.v3-phone-input {
    width: 100% !important;
    padding-left: 96px !important;
}

.iti--separate-dial-code .iti__selected-country {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: var(--v3-radius-md) 0 0 var(--v3-radius-md) !important;
    padding: 0 10px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: background 0.2s ease;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #fae08c !important;
    font-weight: 600 !important;
    margin-left: 6px !important;
    font-size: 14px !important;
}

.iti__selected-country:hover,
.iti__selected-country:focus {
    background: rgba(212, 175, 55, 0.15) !important;
}

.iti__country-list {
    background: #180d12 !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85) !important;
    border-radius: var(--v3-radius-md) !important;
    color: #f1f5f9 !important;
    max-height: 220px !important;
    z-index: 9999 !important;
    font-family: var(--v3-font-primary) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.iti__country {
    padding: 10px 14px !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: background 0.15s ease, color 0.15s ease;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: rgba(212, 175, 55, 0.2) !important;
    color: #fae08c !important;
}

.iti__country-name {
    color: #f1f5f9 !important;
    font-weight: 500 !important;
}

.iti__dial-code {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 12px !important;
}

.iti__arrow {
    border-top-color: var(--v3-gold) !important;
}

.iti__arrow--up {
    border-bottom-color: var(--v3-gold) !important;
}

/* ==========================================================================
   AGE GATE LUXURY STYLING (V3 DOMINION AESTHETICS & NO BLUE FOCUS OUTLINE)
   ========================================================================== */
.age-gate-wrapper {
    background: rgba(5, 7, 10, 0.88) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    z-index: 999999 !important;
}

.age-gate-background,
.age-gate-background-color {
    background: transparent !important;
}

.age-gate {
    background: linear-gradient(145deg, rgba(20, 22, 30, 0.96) 0%, rgba(11, 13, 18, 0.98) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(120, 20, 40, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    padding: 40px 35px !important;
    max-width: 480px !important;
    width: 90% !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center !important;
}

.age-gate-heading {
    display: none !important;
}

.age-gate-headline {
    font-family: 'Cinzel', serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
    background: linear-gradient(135deg, #FFF6E5 0%, #E5C378 40%, #D4AF37 70%, #9A7B2C 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.age-gate-subheadline {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
}

.age-gate-challenge {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #E5C378 !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 24px 0 !important;
}

.age-gate-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

/* Кнопки и устранение синей системной рамки браузера */
.age-gate-submit-yes,
.age-gate-submit-no,
.age-gate button,
.age-gate-submit {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.age-gate-submit-yes:focus,
.age-gate-submit-yes:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.6), 0 4px 20px rgba(212, 175, 55, 0.4) !important;
}

.age-gate-submit-no:focus,
.age-gate-submit-no:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25) !important;
}

.age-gate-submit-yes {
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%) !important;
    color: #0A0C10 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 14px 38px !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.age-gate-submit-yes:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55) !important;
    filter: brightness(1.08) !important;
}

.age-gate-submit-no {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 14px 34px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.age-gate-submit-no:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.age-gate-additional-information {
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.age-gate-additional-information p {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

@media (max-width: 480px) {
    .age-gate {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }
    .age-gate-headline {
        font-size: 20px !important;
    }
    .age-gate-buttons {
        gap: 12px !important;
    }
    .age-gate-submit-yes,
    .age-gate-submit-no {
        padding: 12px 26px !important;
        font-size: 14px !important;
    }
}