﻿:root {
            --primary: #A78BFA;          
            --secondary: #7C3AED;        
            --accent: #F59E0B;           
            --accent-light: #FCD34D;     
            --bg-dark: #0a0810;          
            --bg-dark-lighter: #12101a;  
            --bg-mid: #1a1628;           
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --border: rgba(167, 139, 250, 0.2);
            --border-gold: rgba(245, 158, 11, 0.25);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
            --shadow-hover: 0 35px 60px -15px rgba(167, 139, 250, 0.45);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 2000;
            background: rgba(10, 8, 16, 0.95);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }
.dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 240px;
            background: rgba(18, 16, 26, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }
.dropdown a:hover {
            color: var(--primary);
            background: rgba(167, 139, 250, 0.1);
        }
.soc-group a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(167, 139, 250, 0.1);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
.soc-group a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(167, 139, 250, 0.4);
        }
.btn-consult {
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.75rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(167, 139, 250, 0.3);
        }
.btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(167, 139, 250, 0.5);
        }
@media (max-width: 1024px) {
            header { padding: 10px 0; }
            .header-inner { flex-direction: column; gap: 10px; }
            .logo-row {
                gap: 15px;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .mobile-phone-top {
                display: block !important;
                font-size: 0.9rem;
                font-weight: 800;
                color: var(--text);
            }
            .header-bottom-mobile {
                width: 100%;
                display: flex !important;
                justify-content: center;
                padding: 10px 0;
                border-top: 1px solid var(--border);
                margin-top: 10px;
            }
            .header-right { display: none !important; }
        }
.hero-golub-section {
            background: linear-gradient(180deg, #0a0810 0%, #1a1028 40%, #120d1e 70%, #0a0810 100%);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.hero-golub-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            width: 180%;
            height: 180%;
            background:
                radial-gradient(ellipse at 30% 55%, rgba(167, 139, 250, 0.22) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 40%, rgba(124, 58, 237, 0.16) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 75%, rgba(245, 158, 11, 0.09) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 35%);
            transform: translateX(-50%);
            animation: pulseGolub 12s ease-in-out infinite;
            pointer-events: none;
        }
@keyframes pulseGolub {
            0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
        }
.golden-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.gold-particle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.7) 0%, rgba(252, 211, 77, 0.3) 50%, transparent 100%);
            animation: floatParticle 20s ease-in-out infinite;
            filter: blur(0.3px);
        }
.gold-particle:nth-child(1) { width: 5px; height: 5px; top: 15%; left: 12%; animation-delay: 0s; }
.gold-particle:nth-child(2) { width: 3px; height: 3px; top: 25%; left: 78%; animation-delay: 2.5s; }
.gold-particle:nth-child(3) { width: 6px; height: 6px; top: 55%; left: 88%; animation-delay: 5s; background: radial-gradient(circle, rgba(167,139,250,0.6) 0%, transparent 100%); }
.gold-particle:nth-child(4) { width: 4px; height: 4px; top: 70%; left: 15%; animation-delay: 1.8s; }
.gold-particle:nth-child(5) { width: 3px; height: 3px; top: 40%; left: 55%; animation-delay: 7s; }
.gold-particle:nth-child(6) { width: 5px; height: 5px; top: 80%; left: 65%; animation-delay: 3.5s; background: radial-gradient(circle, rgba(167,139,250,0.5) 0%, transparent 100%); }
.gold-particle:nth-child(7) { width: 4px; height: 4px; top: 10%; left: 45%; animation-delay: 9s; }
.gold-particle:nth-child(8) { width: 3px; height: 3px; top: 65%; left: 32%; animation-delay: 4.2s; }
.gold-particle:nth-child(9) { width: 6px; height: 6px; top: 35%; left: 92%; animation-delay: 11s; }
.gold-particle:nth-child(10) { width: 4px; height: 4px; top: 85%; left: 45%; animation-delay: 6.5s; }
.gold-particle:nth-child(11) { width: 3px; height: 3px; top: 48%; left: 8%; animation-delay: 8.3s; }
.gold-particle:nth-child(12) { width: 5px; height: 5px; top: 72%; left: 82%; animation-delay: 1.2s; }
@keyframes floatParticle {
            0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.3; }
            20% { transform: translateY(-60px) translateX(18px) scale(1.3); opacity: 0.7; }
            40% { transform: translateY(-30px) translateX(-12px) scale(0.8); opacity: 0.4; }
            60% { transform: translateY(-70px) translateX(25px) scale(1.2); opacity: 0.6; }
            80% { transform: translateY(-20px) translateX(-8px) scale(0.9); opacity: 0.35; }
        }
.floating-feathers-golub {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.feather-golub {
            position: absolute;
            width: 16px;
            height: 40px;
            background: linear-gradient(180deg, rgba(245,158,11,0.55) 0%, rgba(252,211,77,0.2) 60%, transparent 100%);
            border-radius: 50% 50% 35% 35% / 55% 55% 45% 45%;
            opacity: 0.4;
            animation: floatFeatherGolub 22s ease-in-out infinite;
            filter: blur(0.4px);
        }
.feather-golub::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 26px;
            background: rgba(245,158,11,0.35);
        }
.feather-golub:nth-child(1) { top: 8%; left: 6%; animation-delay: 0s; width: 12px; height: 32px; }
.feather-golub:nth-child(2) { top: 55%; left: 85%; animation-delay: 4s; background: linear-gradient(180deg, rgba(167,139,250,0.5) 0%, rgba(124,58,237,0.15) 100%); }
.feather-golub:nth-child(3) { top: 18%; left: 72%; animation-delay: 7.5s; width: 20px; height: 48px; }
.feather-golub:nth-child(4) { top: 75%; left: 10%; animation-delay: 11s; }
.feather-golub:nth-child(5) { top: 42%; left: 48%; animation-delay: 15s; background: linear-gradient(180deg, rgba(252,211,77,0.4) 0%, rgba(245,158,11,0.1) 100%); width: 14px; height: 36px; }
.feather-golub:nth-child(6) { top: 82%; left: 58%; animation-delay: 2.5s; width: 10px; height: 26px; }
@keyframes floatFeatherGolub {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
            18% { transform: translateY(-65px) rotate(22deg); opacity: 0.65; }
            36% { transform: translateY(-35px) rotate(-15deg); opacity: 0.25; }
            55% { transform: translateY(-55px) rotate(30deg); opacity: 0.55; }
            75% { transform: translateY(-18px) rotate(-10deg); opacity: 0.38; }
        }
.aura-rings {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            pointer-events: none;
            z-index: 0;
        }
.aura-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(167, 139, 250, 0.12);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: auaExpand 15s ease-out infinite;
        }
.aura-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.aura-ring:nth-child(2) { width: 350px; height: 350px; animation-delay: 3s; border-color: rgba(124, 58, 237, 0.08); }
.aura-ring:nth-child(3) { width: 500px; height: 500px; animation-delay: 6s; }
.aura-ring:nth-child(4) { width: 650px; height: 650px; animation-delay: 9s; border-color: rgba(245, 158, 11, 0.06); }
@keyframes auaExpand {
            0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.5; }
            100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
        }
.hero-golub-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }
.hero-golub-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(124, 58, 237, 0.2) 50%, rgba(245, 158, 11, 0.15) 100%);
            border: 2px solid var(--accent);
            color: var(--accent-light);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            box-shadow: 0 10px 40px rgba(245, 158, 11, 0.35), 0 0 80px rgba(167, 139, 250, 0.15);
            animation: badgePulseGolub 3.5s ease-in-out infinite;
            letter-spacing: 1px;
        }
@keyframes badgePulseGolub {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(245, 158, 11, 0.35), 0 0 80px rgba(167, 139, 250, 0.15); }
            50% { transform: scale(1.05); box-shadow: 0 15px 55px rgba(245, 158, 11, 0.5), 0 0 100px rgba(167, 139, 250, 0.25); }
        }
.hero-golub-title{
            font-family:'Manrope',sans-serif;
            font-size: clamp(3.5rem, 9vw, 3.5rem);
            font-weight:800;
            line-height: 1;
            margin-bottom: 30px;
            text-shadow: 0 8px 50px rgba(167, 139, 250, 0.4);
            letter-spacing: -2px;
        }
.golub-gradient-text {
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 30%, #fff 55%, var(--accent) 75%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: golub-grad-shift 8s ease infinite;
            background-size: 300% 300%;
        }
@keyframes golub-grad-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.hero-golub-subtitle {
            font-size: clamp(1.1rem, 2.6vw, 1.45rem);
            color: rgba(255,255,255,0.68);
            max-width: 850px;
            margin: 0 auto 50px;
            line-height: 1.75;
        }
.hero-golub-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 25px;
            max-width: 850px;
            margin: 60px auto 0;
        }
.golub-stat-box {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(167, 139, 250, 0.18);
            border-radius: 25px;
            padding: 30px 25px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
.golub-stat-box::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: 0.6s;
        }
.golub-stat-box:hover::before { opacity: 1; transform: scale(1.2); }
.golub-stat-box:hover {
            transform: translateY(-12px);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(167, 139, 250, 0.35);
            background: rgba(167, 139, 250, 0.08);
        }
.golub-stat-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; filter: drop-shadow(0 5px 12px rgba(167,139,250,0.4)); }
.golub-stat-value { font-size: 2.2rem; font-weight: 800; color: var(--accent-light); display: block; margin-bottom: 8px; text-shadow: 0 3px 12px rgba(245,158,11,0.35); }
.golub-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }
.golub-filters-bar {
            background: linear-gradient(135deg, rgba(10,8,16,0.98) 0%, rgba(18,16,26,0.98) 100%);
            backdrop-filter: blur(30px);
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 74px;
            z-index: 1500;
            padding: 20px 0;
            box-shadow: 0 5px 30px rgba(167,139,250,0.2);
        }
@media (max-width: 1024px) { .golub-filters-bar { top: 134px; padding: 15px 0; } }
.golub-filter-nav {
            display: flex; gap: 12px; overflow-x: auto;
            padding-bottom: 5px; scrollbar-width: none; justify-content: center;
        }
.golub-filter-nav::-webkit-scrollbar { display: none; }
.golub-filter-btn {
            white-space: nowrap; color: rgba(255,255,255,0.7); font-size: 0.9rem;
            font-weight: 700; padding: 12px 28px; border-radius: 50px;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(167,139,250,0.2);
            transition: all 0.3s ease; cursor: pointer; display: flex; align-items: center; gap: 8px;
        }
.golub-filter-btn:hover {
            background: linear-gradient(135deg, rgba(167,139,250,0.2) 0%, rgba(124,58,237,0.2) 100%);
            border-color: var(--primary); color: white; transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(167,139,250,0.35);
        }
.golub-filter-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff; border-color: transparent; font-weight: 800;
            box-shadow: 0 8px 30px rgba(167,139,250,0.5);
        }
.golub-smart-filters { padding: 20px 0; border-bottom: 1px solid rgba(167,139,250,0.12); background: rgba(10,8,16,0.5); }
.golub-sf-scroll { display: flex; gap: 12px; overflow-x: auto; justify-content: center; padding-bottom: 5px; }
.golub-sf-scroll::-webkit-scrollbar { display: none; }
.golub-sf-btn {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(167,139,250,0.2);
            color: rgba(255,255,255,0.7); padding: 10px 22px; border-radius: 50px;
            font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: 0.3s;
            display: flex; align-items: center; gap: 8px; white-space: nowrap;
        }
.golub-sf-btn:hover { background: rgba(167,139,250,0.18); border-color: var(--primary); color: var(--primary); }
.golub-sf-btn.active {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white; border-color: transparent; font-weight: 800;
        }
.golub-catalog-section { padding: 80px 0; position: relative; }
.golub-catalog-section::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(circle at 20% 30%, rgba(167,139,250,0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(245,158,11,0.03) 0%, transparent 50%);
            pointer-events: none;
        }
.golub-grid {
            display: grid; gap: 40px; position: relative; z-index: 2; justify-content: center;
            max-width: 1100px; margin: 0 auto;
            grid-template-columns: repeat(2, 1fr);
        }
@media (max-width: 767px) { .golub-grid { grid-template-columns: 1fr; max-width: 500px; } }
.golub-card {
            display: flex; flex-direction: column;
            background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid rgba(167,139,250,0.15); border-radius: 30px; overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4,0,0.2,1); position: relative; cursor: pointer;
            box-shadow: 0 15px 40px rgba(0,0,0,0.35);
        }
.golub-card:hover {
            transform: translateY(-18px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 30px 65px rgba(167,139,250,0.4), 0 0 40px rgba(245,158,11,0.1);
            background: linear-gradient(135deg, rgba(167,139,250,0.07) 0%, rgba(124,58,237,0.05) 100%);
        }
.golub-card::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(167,139,250,0.1) 50%, transparent 70%);
            opacity: 0; transition: 0.9s; pointer-events: none;
        }
.golub-card:hover::before { opacity: 1; transform: rotate(45deg); }
.golub-img-wrapper {
            height: 380px; position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(180deg, rgba(10,8,16,0.4) 0%, rgba(26,16,40,0.7) 100%);
        }
.golub-img { width: 90%; max-width: 90%; height: auto; object-fit: contain; transition: 0.9s cubic-bezier(0.4,0,0.2,1); filter: brightness(0.9) saturate(1.2); }
.golub-card:hover .golub-img { transform: scale(1.18) rotate(1.5deg); filter: brightness(1.1) saturate(1.35); }
.golub-img-glow {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 250px; height: 250px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.7s ease;
            pointer-events: none;
        }
.golub-card:hover .golub-img-glow { opacity: 1; }
.golub-badges { position: absolute; top: 20px; left: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 10; }
.golub-badge {
            background: rgba(0,0,0,0.75); backdrop-filter: blur(10px); color: white;
            padding: 8px 16px; border-radius: 12px; font-size: 0.78rem; font-weight: 700;
            display: flex; align-items: center; gap: 7px; border: 1px solid rgba(167,139,250,0.3);
            transform: translateX(-10px); opacity: 0; animation: badgeSlideInG 0.6s ease forwards;
        }
@keyframes badgeSlideInG { to { transform: translateX(0); opacity: 1; } }
.golub-badge:nth-child(2) { animation-delay: 0.15s; }
.golub-badge:nth-child(3) { animation-delay: 0.3s; }
.golub-badge.premium { border-color: var(--accent); color: var(--accent-light); }
.golub-badge.rare { border-color: #c084fc; color: #c084fc; }
.golub-badge.popular { border-color: var(--primary); color: var(--primary); }
.golub-badge.exclusive { border-color: var(--accent-light); color: var(--accent-light); background: rgba(245,158,11,0.15); }
.golub-qv-btn {
            position: absolute; top: 20px; right: 20px; width: 50px; height: 50px;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; cursor: pointer;
            z-index: 10; transition: 0.3s; font-size: 1.4rem; border: 2px solid rgba(167,139,250,0.6);
            opacity: 0; transform: translateY(-15px) scale(0.8);
        }
.golub-card:hover .golub-qv-btn { opacity: 1; transform: translateY(0) scale(1); }
.golub-qv-btn:hover {
            background: var(--primary); border-color: var(--secondary); color: #000;
            transform: scale(1.2) rotate(12deg); box-shadow: 0 8px 25px rgba(167,139,250,0.6);
        }
.golub-content { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; gap: 22px; }
.golub-name { font-family:'Manrope',sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; transition: 0.3s; }
.golub-card:hover .golub-name { color: var(--accent-light); }
.golub-latin { font-size: 0.88rem; color: rgba(255,255,255,0.42); font-style: italic; margin-bottom: 16px; }
.golub-stats {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px;
            background: rgba(0,0,0,0.25); border-radius: 18px; border: 1px solid rgba(167,139,250,0.08);
            position: relative; overflow: hidden; transition: 0.4s;
        }
.golub-stats::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(167,139,250,0.08), transparent); transition: 0.9s;
        }
.golub-card:hover .golub-stats::before { left: 100%; }
.golub-card:hover .golub-stats { background: rgba(167,139,250,0.06); border-color: rgba(167,139,250,0.25); box-shadow: inset 0 0 25px rgba(167,139,250,0.1); }
.golub-stat { display: flex; flex-direction: column; align-items: center; gap: 9px; position: relative; z-index: 1; }
.golub-stat-icon-sm { font-size: 1.6rem; transition: 0.5s cubic-bezier(0.68,-0.55,0.265,1.55); filter: grayscale(0.2); }
.golub-card:hover .golub-stat-icon-sm { transform: scale(1.35) rotate(12deg); filter: grayscale(0) drop-shadow(0 0 8px var(--primary)); }
.golub-card:hover .golub-stat:nth-child(1) .golub-stat-icon-sm { animation: iconBounceG 0.7s ease; }
.golub-card:hover .golub-stat:nth-child(2) .golub-stat-icon-sm { animation: iconBounceG 0.7s 0.12s ease; }
.golub-card:hover .golub-stat:nth-child(3) .golub-stat-icon-sm { animation: iconBounceG 0.7s 0.24s ease; }
@keyframes iconBounceG { 0%, 100% { transform: scale(1.35) rotate(12deg); } 50% { transform: scale(1.6) rotate(-12deg); } }
.golub-stat-dots { display: flex; gap: 5px; }
.golub-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: 0.3s; box-shadow: inset 0 0 4px rgba(0,0,0,0.5); }
.golub-dot.fill { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); box-shadow: 0 0 10px var(--primary); animation: dotGlowG 1.8s infinite alternate; }
@keyframes dotGlowG { 0% { box-shadow: 0 0 6px var(--primary); } 100% { box-shadow: 0 0 18px var(--primary), 0 0 28px var(--accent); } }
.golub-card:hover .golub-dot.fill { transform: scale(1.3); }
.golub-stat-label-sm { font-size: 0.7rem; color: rgba(255,255,255,0.42); text-transform: uppercase; font-weight: 700; letter-spacing: 0.6px; margin-top: 3px; }
.golub-size-badge {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            padding: 12px 18px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
            border-radius: 14px; font-size: 0.86rem; font-weight: 700; color: var(--accent-light); transition: 0.3s;
        }
.golub-card:hover .golub-size-badge { background: rgba(245,158,11,0.18); border-color: var(--accent); transform: scale(1.04); }
.golub-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(167,139,250,0.12); padding-top: 22px; }
.golub-price-label { font-size: 0.76rem; color: rgba(255,255,255,0.42); text-transform: uppercase; display: block; margin-bottom: 6px; }
.golub-price { font-size: 1.6rem; font-weight: 800; background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.golub-arrow {
            width: 45px; height: 45px; border-radius: 50%; background: rgba(167,139,250,0.12);
            border: 2px solid var(--primary); color: var(--primary); display: flex; align-items: center;
            justify-content: center; transition: 0.5s cubic-bezier(0.68,-0.55,0.265,1.55); cursor: pointer; font-size: 1.3rem;
        }
.golub-card:hover .golub-arrow { background: var(--primary); color: #fff; transform: rotate(-45deg) scale(1.25); box-shadow: 0 6px 25px rgba(167,139,250,0.6); }
.golub-load-more { display: flex; justify-content: center; margin-top: 70px; }
.btn-golub-more {
            background: linear-gradient(135deg, rgba(167,139,250,0.1) 0%, rgba(124,58,237,0.1) 100%);
            border: 2px solid var(--primary); color: #fff; padding: 20px 55px; border-radius: 50px;
            font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: 0.4s;
            display: inline-flex; align-items: center; gap: 14px; text-transform: uppercase; letter-spacing: 1.2px;
        }
.btn-golub-more:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff; border-color: var(--secondary); transform: translateY(-6px); box-shadow: 0 12px 35px rgba(167,139,250,0.5);
        }
.why-golub-section { padding: 110px 0; background: linear-gradient(135deg, #0a0810 0%, #1a1028 100%); position: relative; overflow: hidden; }
.why-golub-section::before { content: ''; position: absolute; top: -140px; right: -140px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, transparent 70%); border-radius: 50%; animation: pulseW 9s ease-in-out infinite; }
.why-golub-section::after { content: ''; position: absolute; bottom: -200px; left: -200px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%); border-radius: 50%; animation: pulseW 11s ease-in-out infinite reverse; }
@keyframes pulseW { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.15); opacity: 1; } }
.why-golub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.why-golub-content h2 { font-family: 'Playfair Display'; font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: white; margin-bottom: 35px; line-height: 1.1; }
.why-golub-content h2 .highlight { background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-golub-list { display: flex; flex-direction: column; gap: 28px; }
.why-golub-item { display: flex; gap: 22px; padding: 28px; background: rgba(255,255,255,0.03); border: 1px solid rgba(167,139,250,0.12); border-radius: 22px; transition: 0.4s; cursor: default; }
.why-golub-item:hover { background: rgba(167,139,250,0.07); border-color: var(--primary); transform: translateX(18px); box-shadow: -6px 0 25px rgba(167,139,250,0.2); }
.why-golub-icon { font-size: 2.8rem; min-width: 65px; height: 65px; display: flex; align-items: center; justify-content: center; background: rgba(167,139,250,0.08); border-radius: 18px; border: 2px solid rgba(167,139,250,0.25); transition: 0.4s; }
.why-golub-item:hover .why-golub-icon { transform: scale(1.2) rotate(12deg); background: var(--primary); border-color: var(--secondary); box-shadow: 0 6px 25px rgba(167,139,250,0.5); }
.why-golub-text h4 { font-size: 1.25rem; color: white; margin-bottom: 10px; font-weight: 700; }
.why-golub-text p { color: rgba(255,255,255,0.65); line-height: 1.7; font-size: 0.98rem; }
.why-golub-image { position: relative; }
.why-golub-image img { width: 100%; height: auto; border-radius: 35px; box-shadow: 0 35px 90px rgba(0,0,0,0.7); border: 3px solid rgba(167,139,250,0.3); transition: 0.6s; }
.why-golub-image:hover img { transform: scale(1.04) rotate(1deg); border-color: var(--primary); box-shadow: 0 45px 110px rgba(167,139,250,0.4), 0 0 60px rgba(245,158,11,0.1); }
.floating-badge-golub { position: absolute; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); padding: 18px 24px; border-radius: 18px; border: 2px solid var(--secondary); color: white; font-weight: 700; font-size: 0.92rem; box-shadow: 0 12px 35px rgba(0,0,0,0.6); animation: floatBadgeG 3.5s ease-in-out infinite; }
.floating-badge-golub:nth-child(2) { top: 8%; right: -30px; animation-delay: 0s; border-color: var(--accent); }
.floating-badge-golub:nth-child(3) { bottom: 14%; left: -40px; animation-delay: 1.2s; border-color: var(--primary); }
@keyframes floatBadgeG { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@media (max-width: 900px) {
            .why-golub-grid { grid-template-columns: 1fr; gap: 45px; }
            .why-golub-image { order: -1; }
            .floating-badge-golub { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 10px; }
        }
.golub-price-section { padding: 110px 0; background: linear-gradient(135deg, #0a0810 0%, #12101a 100%); position: relative; overflow: hidden; }
.golub-price-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: repeating-linear-gradient(90deg, rgba(167,139,250,0.03) 0px, transparent 2px, transparent 48px), repeating-linear-gradient(0deg, rgba(167,139,250,0.03) 0px, transparent 2px, transparent 48px); opacity: 0.4; pointer-events: none; }
.golub-price-header { text-align: center; margin-bottom: 70px; position: relative; z-index: 2; }
.golub-price-badge { display: inline-block; background: rgba(245,158,11,0.1); border: 2px solid var(--accent); color: var(--accent-light); padding: 10px 24px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 25px; box-shadow: 0 0 20px rgba(245,158,11,0.15); }
.golub-price-title { font-family: 'Playfair Display'; font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: white; margin-bottom: 20px; }
.golub-price-title span { background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.golub-price-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.55); max-width: 750px; margin: 0 auto; }
.golub-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; position: relative; z-index: 2; justify-content: center; max-width: 1000px; margin: 0 auto; }
@media (max-width: 767px) { .golub-price-grid { grid-template-columns: 1fr; max-width: 480px; } }
.golub-price-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); border: 1px solid rgba(167,139,250,0.18); border-radius: 28px; padding: 45px 35px; text-align: center; transition: 0.6s; position: relative; overflow: hidden; z-index: 1; }
.golub-price-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(167,139,250,0.08), transparent); transform: rotate(45deg); transition: 0.9s; }
.golub-price-card:hover::before { left: 100%; }
.golub-price-card:hover { transform: translateY(-18px); border-color: var(--primary); background: rgba(167,139,250,0.06); box-shadow: 0 30px 60px rgba(167,139,250,0.3); }
.golub-price-card.exclusive-card { border: 2px solid var(--accent); background: rgba(245,158,11,0.04); }
.golub-price-card.exclusive-card::after { content: '👑 ЭКСКЛЮЗИВ'; position: absolute; top: 24px; right: -38px; background: linear-gradient(135deg, var(--accent), #e67e22); color: #fff; padding: 6px 50px; font-size: 0.68rem; font-weight: 800; transform: rotate(45deg); box-shadow: 0 6px 20px rgba(245,158,11,0.5); letter-spacing: 0.5px; }
.golub-price-emoji { font-size: 4.2rem; display: block; margin-bottom: 22px; animation: bounceGolub 2.8s ease-in-out infinite; }
@keyframes bounceGolub { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.golub-price-card h3{ font-size: 1.45rem; color: white; margin-bottom: 10px; font-weight:800; }
.golub-price-card .latin { font-size: 0.86rem; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 24px; }
.golub-price-value { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 24px; }
.golub-price-features { list-style: none; margin: 24px 0; text-align: left; }
.golub-price-features li { padding: 11px 0; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 12px; font-size: 0.93rem; }
.golub-price-features li::before { content: '✓'; color: var(--accent-light); font-weight: bold; font-size: 1.2rem; }
.btn-golub-order { width: 100%; padding: 18px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border: none; border-radius: 14px; color: white; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s; font-size: 0.93rem; letter-spacing: 1.2px; position: relative; z-index: 10; pointer-events: auto; }
.btn-golub-order:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(167,139,250,0.5); }
.golub-quiz-section { padding: 110px 0; background: radial-gradient(circle at 50% 50%, #12101a 0%, #0a0810 100%); position: relative; overflow: hidden; }
.golub-quiz-section::before { content: '🕊️'; position: absolute; font-size: 380px; opacity: 0.025; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; animation: rotateSlow 80s linear infinite; }
@keyframes rotateSlow { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
.golub-quiz-container { margin: 0 auto; background: linear-gradient(135deg, rgba(167,139,250,0.08) 0%, rgba(124,58,237,0.05) 50%, rgba(245,158,11,0.04) 100%); backdrop-filter: blur(25px); border: 2px solid rgba(167,139,250,0.25); border-radius: 40px; padding: 70px 55px; box-shadow: 0 35px 90px rgba(0,0,0,0.7); position: relative; overflow: hidden; }
.golub-quiz-progress { position: absolute; top: 0; left: 0; height: 5px; background: linear-gradient(90deg, var(--accent), var(--primary) 50%, var(--accent)); width: 0%; transition: width 0.6s ease; box-shadow: 0 0 20px var(--primary); }
.golub-quiz-header { text-align: center; margin-bottom: 55px; }
.golub-quiz-step-indicator { font-size: 0.86rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 25px; }
.golub-quiz-question { font-family: 'Playfair Display'; font-size: clamp(2rem, 4.5vw, 2.8rem); color: white; margin-bottom: 16px; line-height: 1.2; }
.golub-quiz-subtitle { font-size: 1.08rem; color: rgba(255,255,255,0.55); }
.golub-quiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 45px; }
.golub-quiz-option { background: rgba(255,255,255,0.04); border: 2px solid rgba(167,139,250,0.18); border-radius: 24px; padding: 35px 28px; cursor: pointer; transition: all 0.5s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; position: relative; overflow: hidden; }
.golub-quiz-option::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, transparent 70%); transform: translate(-50%, -50%); transition: width 0.7s, height 0.7s; }
.golub-quiz-option:hover::before { width: 380px; height: 380px; }
.golub-quiz-option:hover { transform: translateY(-12px); border-color: var(--primary); background: rgba(167,139,250,0.08); box-shadow: 0 18px 45px rgba(167,139,250,0.3); }
.golub-quiz-option-icon { font-size: 3.8rem; position: relative; z-index: 1; transition: 0.5s; }
.golub-quiz-option:hover .golub-quiz-option-icon { transform: scale(1.25) rotate(12deg); }
.golub-quiz-option-text { position: relative; z-index: 1; }
.golub-quiz-option-title { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 8px; }
.golub-quiz-option-desc { font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.golub-quiz-loader { display: none; flex-direction: column; align-items: center; justify-content: center; min-height: 450px; }
.golub-loader-spinner { width: 110px; height: 110px; border: 5px solid rgba(255,255,255,0.08); border-top: 5px solid var(--primary); border-right: 5px solid var(--accent); border-radius: 50%; animation: spinG 1.6s linear infinite; margin-bottom: 35px; box-shadow: 0 0 30px rgba(167,139,250,0.2); }
@keyframes spinG { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.golub-loader-text { font-size: 1.4rem; color: white; font-weight: 700; margin-bottom: 16px; }
.golub-loader-subtext { font-size: 1rem; color: rgba(255,255,255,0.42); }
.golub-quiz-result { display: none; text-align: center; animation: fadeInG 0.9s ease; }
@keyframes fadeInG { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }
.golub-result-match { display: inline-block; background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%); color: white; padding: 10px 24px; border-radius: 50px; font-weight: 800; font-size: 0.88rem; text-transform: uppercase; margin-bottom: 28px; letter-spacing: 1.2px; box-shadow: 0 6px 25px rgba(167,139,250,0.4); }
.golub-result-title { font-family: 'Playfair Display'; font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: white; margin-bottom: 30px; }
.golub-result-img { width: 260px; height: 260px; object-fit: cover; object-position: center 20%; border-radius: 50%; border: 5px solid var(--primary); margin: 0 auto 30px; box-shadow: 0 0 60px rgba(167,139,250,0.5), 0 0 100px rgba(245,158,11,0.15); animation: resultImgG 1.2s ease; }
@keyframes resultImgG { from { transform: scale(0.5) rotate(-12deg); opacity: 0; } to { transform: scale(1) rotate(0deg); opacity: 1; } }
.golub-result-desc { font-size: 1.12rem; color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 700px; margin: 0 auto 40px; }
.btn-golub-retry { background: rgba(255,255,255,0.05); border: 1px solid rgba(167,139,250,0.25); color: white; padding: 14px 32px; border-radius: 50px; cursor: pointer; font-size: 0.93rem; font-weight: 600; display: inline-flex; align-items: center; gap: 12px; transition: 0.3s; margin-bottom: 30px; }
.btn-golub-retry:hover { background: rgba(167,139,250,0.12); border-color: var(--primary); color: var(--primary); transform: translateY(-4px); }
.golub-retry-icon { display: inline-block; transition: transform 0.6s ease; }
.btn-golub-retry:hover .golub-retry-icon { transform: rotate(180deg); }
.golub-quiz-form { background: rgba(255,255,255,0.04); padding: 40px; border-radius: 24px; max-width: 550px; margin: 0 auto; border: 1px solid rgba(167,139,250,0.18); }
.golub-form-title { color: var(--accent-light); font-weight: 800; margin-bottom: 24px; text-transform: uppercase; font-size: 0.98rem; letter-spacing: 1.2px; }
.golub-quiz-input { width: 100%; padding: 18px 24px; background: rgba(0,0,0,0.35); border: 1px solid rgba(167,139,250,0.22); border-radius: 14px; color: white; margin-bottom: 16px; font-size: 1.05rem; text-align: center; outline: none; transition: 0.3s; font-family: 'Manrope', sans-serif; }
.golub-quiz-input:focus { border-color: var(--primary); background: rgba(0,0,0,0.5); box-shadow: 0 0 20px rgba(167,139,250,0.3); }
.golub-quiz-input::placeholder { color: rgba(255,255,255,0.32); }
.btn-golub-submit { width: 100%; padding: 18px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border: none; border-radius: 14px; color: white; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s; font-size: 1rem; letter-spacing: 1.2px; font-family: 'Manrope', sans-serif; }
.btn-golub-submit:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(167,139,250,0.5); }
.golub-form-note { font-size: 0.76rem; color: rgba(255,255,255,0.32); margin-top: 16px; text-align: center; }
.golub-quiz-step { display: none; }
.golub-quiz-step.active { display: block; animation: slideInG 0.6s ease; }
@keyframes slideInG { from { opacity: 0; transform: translateX(-35px); } to { opacity: 1; transform: translateX(0); } }
.golub-care-section { padding: 110px 0; background: linear-gradient(135deg, rgba(10,8,16,0.88) 0%, rgba(26,16,40,0.92) 100%); position: relative; overflow: hidden; }
.golub-care-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.golub-care-image { position: relative; }
.golub-care-image img { width: 100%; height: auto; border-radius: 35px; box-shadow: 0 35px 90px rgba(0,0,0,0.7); border: 3px solid rgba(167,139,250,0.3); }
.expert-badge-golub { position: absolute; background: rgba(0,0,0,0.88); backdrop-filter: blur(12px); padding: 22px 28px; border-radius: 22px; border: 2px solid var(--secondary); color: white; font-weight: 700; box-shadow: 0 18px 45px rgba(0,0,0,0.8); }
.expert-badge-golub:nth-child(2) { top: 8%; right: -40px; border-color: var(--accent); }
.expert-badge-golub:nth-child(3) { bottom: 14%; left: -50px; border-color: var(--primary); }
.expert-badge-golub-icon { font-size: 2.2rem; display: block; margin-bottom: 8px; }
.expert-badge-golub-text { font-size: 0.86rem; color: rgba(255,255,255,0.8); }
.golub-care-content h2 { font-family: 'Playfair Display'; font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: white; margin-bottom: 26px; line-height: 1.1; }
.golub-care-content h2 span { background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.golub-care-intro { font-size: 1.12rem; color: rgba(255,255,255,0.65); margin-bottom: 42px; line-height: 1.8; }
.golub-care-list { display: flex; flex-direction: column; gap: 24px; }
.golub-care-item { display: flex; gap: 24px; padding: 28px; background: rgba(255,255,255,0.03); border-left: 4px solid var(--primary); border-radius: 18px; transition: 0.3s; }
.golub-care-item:hover { background: rgba(167,139,250,0.07); transform: translateX(12px); box-shadow: -6px 0 25px rgba(167,139,250,0.18); }
.golub-care-item-icon { font-size: 2.2rem; min-width: 55px; }
.golub-care-item h4 { color: white; font-size: 1.12rem; margin-bottom: 8px; font-weight: 700; }
.golub-care-item p { color: rgba(255,255,255,0.65); line-height: 1.7; font-size: 0.96rem; }
@media (max-width: 900px) {
            .golub-care-grid { grid-template-columns: 1fr; }
            .golub-care-image { order: -1; }
            .expert-badge-golub { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 10px; }
        }
.golub-seo-section { padding: 110px 0; background: radial-gradient(circle at 50% 10%, #12101a 0%, #060408 100%); position: relative; overflow: hidden; border-top: 1px solid rgba(167,139,250,0.15); border-bottom: 1px solid rgba(167,139,250,0.15); }
.golub-seo-grid-bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: linear-gradient(rgba(167,139,250,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(167,139,250,0.03) 1px, transparent 1px); background-size: 65px 65px; opacity: 0.4; pointer-events: none; }
.golub-seo-content { max-width: 1050px; margin: 0 auto; position: relative; z-index: 2; }
.golub-faq-container { background: rgba(255,255,255,0.04); backdrop-filter: blur(18px); border: 1px solid rgba(167,139,250,0.18); border-radius: 35px; padding: 55px 50px; box-shadow: 0 35px 80px rgba(0,0,0,0.6); margin-bottom: 70px; }
.golub-faq-title { font-family: 'Playfair Display'; font-size: 2.8rem; color: white; text-align: center; margin-bottom: 45px; }
.golub-faq-title span { background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.golub-faq-item { border-bottom: 1px solid rgba(167,139,250,0.12); padding: 28px 0; transition: 0.3s; }
.golub-faq-item:last-child { border-bottom: none; }
.golub-faq-question { font-weight: 700; color: white; font-size: 1.18rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; padding-right: 25px; }
.golub-faq-question:hover { color: var(--primary); }
.golub-faq-icon { font-size: 1.6rem; color: var(--primary); transition: 0.4s; min-width: 35px; text-align: center; }
.golub-faq-item.active .golub-faq-icon { transform: rotate(45deg); color: var(--accent); }
.golub-faq-answer { color: rgba(255,255,255,0.65); font-size: 1.03rem; line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.6s ease, padding 0.6s ease; }
.golub-faq-item.active .golub-faq-answer { max-height: 1200px; padding-top: 22px; }
.golub-faq-item.active .golub-faq-question { color: var(--primary); }
.golub-seo-text { background: rgba(255,255,255,0.025); border: 1px solid rgba(167,139,250,0.08); border-radius: 28px; padding: 55px 50px; }
.golub-trust-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(167,139,250,0.08); border: 1px solid var(--primary); padding: 12px 24px; border-radius: 50px; color: var(--primary); font-size: 0.86rem; font-weight: 700; margin-bottom: 32px; box-shadow: 0 0 22px rgba(167,139,250,0.15); }
.golub-seo-text h2 { font-family: 'Playfair Display'; font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: white; margin-bottom: 26px; line-height: 1.2; }
.golub-seo-text h2 span { background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.golub-seo-description { color: rgba(255,255,255,0.72); font-size: 1.06rem; line-height: 1.9; }
.golub-seo-description p { margin-bottom: 22px; }
.golub-seo-description strong { color: #c4b5fd; font-weight: 600; }
.golub-seo-description ul { list-style: none; margin: 24px 0; padding-left: 10px; }
.golub-seo-description li { margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.golub-seo-description li::before { content: '🕊️'; font-size: 1.2rem; flex-shrink: 0; }
.golub-seo-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; padding-top: 32px; border-top: 1px solid rgba(167,139,250,0.08); }
.golub-seo-tag { background: rgba(255,255,255,0.04); padding: 10px 18px; border-radius: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.38); border: 1px solid rgba(167,139,250,0.08); transition: 0.3s; }
.golub-seo-tag:hover { color: var(--primary); border-color: var(--primary); background: rgba(167,139,250,0.06); }
footer { padding: 100px 0 40px; background: rgba(10,8,16,0.85); border-top: 1px solid var(--border); margin-top: auto; position: relative; z-index: 10; }
.modal { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.92); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 0; opacity: 0; transition: opacity 0.3s ease; }
.modal-box, .golub-qv-box { position: relative !important; background: #100e18; border: 1px solid var(--primary); border-radius: 24px; width: 950px; max-width: 100%; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; animation: zoomInG 0.4s ease; box-shadow: 0 25px 60px rgba(0,0,0,0.9); }
@keyframes zoomInG { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.form-box-styled { max-width: 550px; padding: 45px; }
.modal-close { position: absolute !important; top: 22px !important; right: 22px !important; width: 48px !important; height: 48px !important; background: rgba(0,0,0,0.6) !important; border: 2px solid var(--primary) !important; border-radius: 50% !important; color: white !important; font-size: 26px !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; z-index: 100 !important; transition: var(--transition) !important; }
.modal-close:hover { background: var(--primary) !important; color: #fff !important; transform: rotate(90deg); }
.golub-qv-grid { display: grid; grid-template-columns: 1fr 1fr; height: 600px; overflow: hidden; }
.golub-qv-image { background: #0a0810; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-right: 1px solid rgba(167,139,250,0.2); }
.golub-qv-image img { width: 100%; height: 100%; object-fit: cover; }
.golub-qv-scroll { padding: 45px 45px 110px 45px; overflow-y: auto; display: flex; flex-direction: column; }
.golub-qv-footer { position: absolute; bottom: 0; right: 0; width: 50%; padding: 22px 45px; background: rgba(16,14,24,0.96); border-top: 1px solid rgba(167,139,250,0.2); display: flex; gap: 18px; backdrop-filter: blur(8px); }
.golub-qv-header h2 { font-family: 'Playfair Display'; font-size: 2.4rem; color: var(--accent-light); margin-bottom: 24px; line-height: 1; }
.golub-qv-price { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 22px; font-family: 'Manrope'; }
.btn-golub-qv-order { flex: 1; padding: 16px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 14px; color: white; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); font-family: 'Manrope', sans-serif; }
.btn-golub-qv-order:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(167,139,250,0.5); }
.golub-qv-phone { flex: 1; display: flex; align-items: center; justify-content: center; border: 2px solid var(--primary); border-radius: 14px; color: var(--primary); font-weight: 700; text-decoration: none; transition: var(--transition); }
.golub-qv-phone:hover { background: var(--primary); color: #fff; }
@media (max-width: 900px) {
            .modal { align-items: flex-end; padding: 0; background: rgba(0,0,0,0.85); }
            .modal-box, .golub-qv-box { width: 100% !important; margin: 0 !important; border-radius: 28px 28px 0 0 !important; border: none !important; border-top: 1px solid var(--primary) !important; height: 92vh !important; max-height: 92vh !important; animation: slideUpG 0.5s ease; }
            @keyframes slideUpG { from { transform: translateY(100%); } to { transform: translateY(0); } }
            .golub-qv-grid { display: flex; flex-direction: column; height: 100%; }
            .golub-qv-image { height: 38vh; min-height: 260px; border-bottom: 1px solid rgba(167,139,250,0.2); border-right: none; }
            .golub-qv-image img { padding: 18px; object-fit: contain !important; }
            .golub-qv-scroll { flex-grow: 1; padding: 25px 25px 0 25px; }
            .golub-qv-footer { position: relative; width: 100%; padding: 18px 25px 28px 25px; flex-direction: column; gap: 12px; }
        }
.catalog-modal { display: none; position: fixed; inset: 0; z-index: 11000; background: rgba(10,8,16,0.98); backdrop-filter: blur(18px); flex-direction: column; align-items: center; justify-content: flex-start; overflow-y: auto; opacity: 0; transition: opacity 0.3s ease; padding-top: 70px; }
.cat-modal-close { position: fixed; top: 25px; right: 25px; font-size: 2.8rem; color: white; cursor: pointer; line-height: 1; transition: 0.3s; z-index: 100; width: 55px; height: 55px; background: rgba(167,139,250,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--primary); }
.cat-modal-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }
.cat-modal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; width: 100%; max-width: 1050px; padding: 50px 25px 110px 25px; }
.cat-modal-item { display: flex; flex-direction: column; align-items: center; text-align: center; background: linear-gradient(135deg, rgba(167,139,250,0.06) 0%, rgba(18,16,26,0.5) 100%); padding: 28px 18px; border-radius: 24px; border: 1px solid rgba(167,139,250,0.2); transition: all 0.3s ease; cursor: pointer; text-decoration: none; }
.cat-modal-item:hover { background: linear-gradient(135deg, rgba(167,139,250,0.2) 0%, rgba(124,58,237,0.12) 100%); border-color: var(--primary); transform: translateY(-8px) scale(1.05); }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; z-index: 12000; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s ease; }
.mobile-nav-box { position: absolute; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100%; background: linear-gradient(180deg, #100e18 0%, #12101a 100%); border-left: 2px solid var(--primary); padding: 28px 24px; display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: -12px 0 60px rgba(0,0,0,0.9); overflow-y: auto; }
.mn-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; border-bottom: 1px solid rgba(167,139,250,0.2); padding-bottom: 18px; }
.mn-close { background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; }
.mn-link-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.mn-link-list a { font-size: 1.15rem; font-weight: 700; color: #fff; text-transform: uppercase; }
.mn-contacts-center { margin-bottom: 35px; }
.mn-phone-large { font-size: 1.5rem; font-weight: 800; color: #fff; display: block; margin-bottom: 18px; }
.mn-socials { display: flex; gap: 18px; }
.mn-badge-bottom { margin-top: auto; background: rgba(167,139,250,0.1); padding: 18px; border-radius: 14px; font-size: 0.76rem; text-align: center; color: var(--primary); border: 1px solid var(--primary); }
.btn-hero { display: inline-block; padding: 18px 35px; border-radius: 50px; font-weight: 800; text-transform: uppercase; cursor: pointer; text-decoration: none; border: none; box-shadow: 0 12px 25px rgba(0,0,0,0.35); transition: var(--transition); font-family: 'Manrope', sans-serif; }
.btn-hero.golub-purple { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; }
.btn-hero.golub-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; }
.btn-hero:hover { transform: translateY(-4px); box-shadow: 0 18px 35px rgba(0,0,0,0.45); }
.form-input { width: 100%; padding: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(167,139,250,0.2); border-radius: 50px; color: white; margin-bottom: 18px; outline: none; transition: var(--transition); font-family: 'Manrope', sans-serif; }
.form-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.08); box-shadow: 0 0 20px rgba(167,139,250,0.3); }
.scroll-to-top { position: fixed; bottom: 115px; right: 35px; width: 55px; height: 55px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 9000; box-shadow: 0 8px 25px rgba(167,139,250,0.4); transition: 0.3s; color: white; font-size: 1.6rem; }
.scroll-to-top:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(167,139,250,0.6); }
@media (max-width: 768px) { .scroll-to-top { bottom: 100px; right: 25px; width: 50px; height: 50px; } }
.mobile-tab { position: fixed; bottom: 20px; left: 15px; right: 15px; height: 75px; background: linear-gradient(135deg, rgba(10,8,16,0.98) 0%, rgba(18,16,26,0.98) 100%); backdrop-filter: blur(20px); border-radius: 50px; display: none; justify-content: space-around; align-items: center; z-index: 2500; box-shadow: 0 20px 60px rgba(0,0,0,0.8); border: 1px solid var(--border); }
.tab-item { text-align: center; color: rgba(255,255,255,0.42); font-size: 0.63rem; text-transform: uppercase; font-weight: 700; transition: var(--transition); }
@media (max-width: 1024px) { .container { padding: 0 20px; } }
@media (max-width: 768px) {
            .hero-golub-section { padding: 50px 0 60px; min-height: auto; }
            .hero-golub-badge { font-size: 0.72rem; padding: 10px 18px; }
            .hero-golub-title { font-size: clamp(2.4rem, 10vw, 3.5rem) !important; margin-bottom: 20px; }
            .hero-golub-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
            .hero-golub-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px; }
            .golub-stat-box { padding: 20px 14px; }
            .golub-stat-icon { font-size: 2rem; }
            .golub-stat-value { font-size: 1.75rem; }
            .golub-stat-label { font-size: 0.7rem; }

            .golub-filters-bar { padding: 12px 0; }
            .golub-filter-nav, .golub-sf-scroll { justify-content: flex-start; padding-left: 12px; padding-right: 12px; gap: 8px; }
            .golub-filter-btn { padding: 10px 16px; font-size: 0.78rem; }
            .golub-sf-btn { padding: 8px 14px; font-size: 0.76rem; }

            .golub-grid { grid-template-columns: 1fr; gap: 25px; max-width: 500px; }
            .golub-card { max-width: 500px; margin: 0 auto; }
            .golub-img-wrapper { height: 300px; }
            .golub-content { padding: 25px 20px; gap: 18px; }
            .golub-name { font-size: 1.28rem; }
            .golub-latin { font-size: 0.78rem; }
            .golub-stats { padding: 18px 14px; gap: 12px; }
            .golub-stat-icon-sm { font-size: 1.45rem; }
            .golub-stat-dots { gap: 3px; }
            .golub-dot { width: 6px; height: 6px; }
            .golub-stat-label-sm { font-size: 0.62rem; }
            .golub-size-badge { padding: 10px 14px; font-size: 0.78rem; }
            .golub-price { font-size: 1.35rem; }
            .golub-arrow { width: 40px; height: 40px; font-size: 1.1rem; }

            .why-golub-section { padding: 60px 0; }
            .why-golub-grid { grid-template-columns: 1fr; gap: 40px; }
            .why-golub-content h2 { font-size: clamp(2rem, 8vw, 2.8rem) !important; margin-bottom: 25px; text-align: center; }
            .why-golub-list { gap: 18px; }
            .why-golub-item { padding: 20px 14px; gap: 14px; }
            .why-golub-icon { font-size: 2rem; min-width: 50px; height: 50px; }
            .why-golub-text h4 { font-size: 1.06rem; }
            .why-golub-text p { font-size: 0.87rem; }
            .why-golub-image { order: -1; }

            .golub-price-section { padding: 60px 0; }
            .golub-price-header { margin-bottom: 48px; }
            .golub-price-badge { font-size: 0.72rem; padding: 8px 16px; }
            .golub-price-title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
            .golub-price-subtitle { font-size: 0.92rem; padding: 0 6px; }
            .golub-price-grid { grid-template-columns: 1fr; max-width: 480px; gap: 24px; }
            .golub-price-card { padding: 35px 24px; }
            .golub-price-card.exclusive-card::after { top: 20px; right: -30px; padding: 5px 40px; font-size: 0.6rem; }
            .golub-price-emoji { font-size: 3.2rem; margin-bottom: 18px; }
            .golub-price-card h3 { font-size: 1.32rem; }
            .golub-price-value { font-size: 2.1rem; }
            .golub-price-features { margin: 18px 0; }
            .golub-price-features li { font-size: 0.83rem; padding: 9px 0; }

            .golub-quiz-section { padding: 60px 0; }
            .golub-quiz-container { padding: 40px 20px; border-radius: 25px; }
            .golub-quiz-header { margin-bottom: 32px; }
            .golub-quiz-step-indicator { font-size: 0.72rem; margin-bottom: 14px; }
            .golub-quiz-question { font-size: clamp(1.45rem, 6vw, 2rem) !important; margin-bottom: 12px; }
            .golub-quiz-subtitle { font-size: 0.9rem; }
            .golub-quiz-options { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
            .golub-quiz-option { flex-direction: row; text-align: left; padding: 20px 14px; gap: 14px; }
            .golub-quiz-option-icon { font-size: 2.3rem; margin: 0; }
            .golub-quiz-option-title { font-size: 1.05rem; }
            .golub-quiz-option-desc { font-size: 0.77rem; }
            .golub-quiz-loader { min-height: 300px; }
            .golub-loader-spinner { width: 80px; height: 80px; margin-bottom: 22px; }
            .golub-loader-text { font-size: 1.08rem; }
            .golub-loader-subtext { font-size: 0.83rem; }
            .golub-result-title { font-size: clamp(1.55rem, 6vw, 2.2rem) !important; }
            .golub-result-img { width: 200px; height: 200px; }
            .golub-result-desc { font-size: 0.92rem; padding: 0 6px; }
            .golub-quiz-form { padding: 28px 18px; }
            .golub-form-title { font-size: 0.82rem; }
            .golub-quiz-input { padding: 14px 18px; font-size: 16px !important; }

            .golub-care-section { padding: 60px 0; }
            .golub-care-grid { grid-template-columns: 1fr; gap: 40px; }
            .golub-care-image { order: -1; }
            .golub-care-content h2 { font-size: clamp(2rem, 8vw, 2.8rem) !important; text-align: center; }
            .golub-care-intro { font-size: 0.92rem; text-align: center; }
            .golub-care-list { gap: 16px; }
            .golub-care-item { padding: 18px 14px; gap: 14px; }
            .golub-care-item-icon { font-size: 1.8rem; min-width: 42px; }
            .golub-care-item h4 { font-size: 0.98rem; }
            .golub-care-item p { font-size: 0.82rem; }
            .expert-badge-golub { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 8px; padding: 14px 18px; }
            .expert-badge-golub-icon { font-size: 1.7rem; }
            .expert-badge-golub-text { font-size: 0.77rem; }

            .golub-seo-section { padding: 60px 0; }
            .golub-faq-container { padding: 32px 18px; border-radius: 22px; margin-bottom: 45px; }
            .golub-faq-title { font-size: 1.85rem !important; margin-bottom: 28px; }
            .golub-faq-item { padding: 18px 0; }
            .golub-faq-question { font-size: 0.96rem; padding-right: 12px; }
            .golub-faq-icon { font-size: 1.3rem; min-width: 24px; }
            .golub-faq-answer { font-size: 0.87rem; }
            .golub-seo-text { padding: 32px 18px; border-radius: 20px; }
            .golub-trust-badge { font-size: 0.72rem; padding: 8px 14px; }
            .golub-seo-text h2 { font-size: clamp(1.55rem, 7vw, 2.2rem) !important; }
            .golub-seo-description { font-size: 0.87rem; }
            .golub-seo-description li { font-size: 0.82rem; margin-bottom: 10px; }
            .golub-seo-tags { gap: 8px; margin-top: 28px; }
            .golub-seo-tag { font-size: 0.72rem; padding: 8px 12px; }

            .cat-modal-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 28px 14px 80px 14px; }
            .cat-modal-item { padding: 18px 10px; }

            .btn-golub-more { padding: 16px 36px; font-size: 0.87rem; }
            .btn-hero { padding: 14px 24px; font-size: 0.82rem; }

            * { word-wrap: break-word; overflow-wrap: break-word; }
            body { overflow-x: hidden; max-width: 100vw; }
            .container { max-width: 100%; overflow-x: hidden; }
            img { max-width: 100%; height: auto; }
            .modal-box, .golub-qv-box { max-width: 100vw; }
            .form-input, .golub-quiz-input { max-width: 100%; font-size: 16px !important; }
            .golub-badge, .hero-golub-badge, .golub-price-badge { max-width: calc(100% - 30px); text-align: center; }
            button, .btn-hero, .btn-consult { width: 100%; max-width: 100%; white-space: normal; }
            .footer-grid { gap: 28px; }
            .footer-col { text-align: center; }
            .footer-col ul { padding: 0; }
            .f-contact { justify-content: center; }
            .floating-badge-golub { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 8px 4px; }
            @media (hover: none) {
                .golub-card:hover { transform: none; }
                .golub-qv-btn { opacity: 1; transform: translateY(0) scale(1); }
            }
        }
@media (max-width: 480px) {
            .container { padding: 0 14px; }
            .hero-golub-title { font-size: 2.1rem !important; }
            .hero-golub-stats { grid-template-columns: 1fr; }
            .golub-filter-btn, .golub-sf-btn { font-size: 0.71rem; padding: 7px 12px; }
            .golub-name { font-size: 1.15rem; }
            .golub-price { font-size: 1.25rem; }
            .why-golub-content h2, .golub-price-title, .golub-care-content h2, .golub-seo-text h2 { font-size: 1.75rem !important; }
            .golub-quiz-question { font-size: 1.35rem !important; }
            .golub-quiz-option { padding: 14px 11px; }
            .golub-quiz-option-icon { font-size: 1.85rem; }
            .golub-result-img { width: 165px; height: 165px; }
            .cat-modal-grid { grid-template-columns: 1fr; }
        }
@media (max-width: 360px) {
            .hero-golub-title { font-size: 1.75rem !important; }
            .golub-stat-box { padding: 14px 9px; }
            .golub-content { padding: 18px 14px; }
            .golub-quiz-container { padding: 28px 14px; }
            .golub-faq-container, .golub-seo-text { padding: 22px 14px; }
        }