﻿:root {
            --primary: #D4AF37;
            --secondary: #8B1A4A;
            --accent: #E8D5A3;
            --bg-dark: #080B14;
            --bg-dark-lighter: #0E1220;
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --border: rgba(212, 175, 55, 0.2);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
            --shadow-hover: 0 35px 60px -15px rgba(212, 175, 55, 0.4);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 2000;
            background: rgba(8, 11, 20, 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.6);
        }
.dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 240px;
            background: rgba(8, 11, 20, 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.6);
        }
.dropdown a:hover {
            color: var(--primary);
            background: rgba(212, 175, 55, 0.1);
        }
.soc-group a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(212, 175, 55, 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(212, 175, 55, 0.4);
        }
.btn-consult {
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%);
            color: #080B14;
            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(212, 175, 55, 0.35);
        }
.btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
        }
@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-section {
            background: linear-gradient(180deg, #080B14 0%, #111828 40%, #0a0d14 100%);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.hero-section::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            width: 160%;
            height: 160%;
            background:
                radial-gradient(ellipse at 30% 55%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 45%, rgba(139, 26, 74, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 75%, rgba(212, 175, 55, 0.07) 0%, transparent 40%);
            transform: translateX(-50%);
            animation: pulseGold 10s ease-in-out infinite;
            pointer-events: none;
        }
@keyframes pulseGold {
            0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
        }
.gold-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.particle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,175,55,0.8) 0%, rgba(212,175,55,0) 70%);
            animation: particleFloat 12s ease-in-out infinite;
            opacity: 0;
        }
.particle:nth-child(1) { width: 6px; height: 6px; top: 15%; left: 12%; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; top: 25%; left: 78%; animation-delay: 1.5s; background: radial-gradient(circle, rgba(139,26,74,0.7) 0%, transparent 70%); }
.particle:nth-child(3) { width: 8px; height: 8px; top: 60%; left: 88%; animation-delay: 3s; }
.particle:nth-child(4) { width: 3px; height: 3px; top: 70%; left: 20%; animation-delay: 4.5s; background: radial-gradient(circle, rgba(232,213,163,0.6) 0%, transparent 70%); }
.particle:nth-child(5) { width: 5px; height: 5px; top: 40%; left: 55%; animation-delay: 6s; }
.particle:nth-child(6) { width: 4px; height: 4px; top: 80%; left: 65%; animation-delay: 2s; background: radial-gradient(circle, rgba(139,26,74,0.5) 0%, transparent 70%); }
.particle:nth-child(7) { width: 6px; height: 6px; top: 50%; left: 8%; animation-delay: 7.5s; }
.particle:nth-child(8) { width: 3px; height: 3px; top: 35%; left: 42%; animation-delay: 9s; }
@keyframes particleFloat {
            0% { transform: translateY(0) scale(0); opacity: 0; }
            10% { opacity: 0.8; transform: translateY(-10px) scale(1); }
            50% { opacity: 0.4; transform: translateY(-60px) scale(0.8); }
            90% { opacity: 0.1; transform: translateY(-100px) scale(0.3); }
            100% { transform: translateY(-120px) scale(0); opacity: 0; }
        }
.floating-feathers {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.feather {
            position: absolute;
            width: 16px;
            height: 44px;
            background: linear-gradient(180deg, rgba(212,175,55,0.45) 0%, rgba(139,26,74,0.15) 100%);
            border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
            opacity: 0.25;
            animation: floatFeather 20s ease-in-out infinite;
            filter: blur(0.4px);
        }
.feather::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 30px;
            background: rgba(212,175,55,0.35);
        }
.feather:nth-child(1) { top: 10%; left: 6%; animation-delay: 0s; width: 12px; height: 36px; }
.feather:nth-child(2) { top: 55%; left: 85%; animation-delay: 4s; background: linear-gradient(180deg, rgba(139,26,74,0.4) 0%, rgba(139,26,74,0.1) 100%); }
.feather:nth-child(3) { top: 18%; left: 72%; animation-delay: 8s; width: 20px; height: 52px; }
.feather:nth-child(4) { top: 72%; left: 15%; animation-delay: 12s; }
.feather:nth-child(5) { top: 30%; left: 48%; animation-delay: 3s; background: linear-gradient(180deg, rgba(232,213,163,0.3) 0%, rgba(212,175,55,0.1) 100%); width: 14px; height: 40px; }
.feather:nth-child(6) { top: 82%; left: 60%; animation-delay: 6s; width: 10px; height: 30px; }
.feather:nth-child(7) { top: 45%; left: 92%; animation-delay: 10s; width: 8px; height: 24px; background: linear-gradient(180deg, rgba(212,175,55,0.3) 0%, transparent 100%); }
@keyframes floatFeather {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
            15% { transform: translateY(-45px) rotate(15deg); opacity: 0.5; }
            35% { transform: translateY(-25px) rotate(-10deg); opacity: 0.18; }
            55% { transform: translateY(-55px) rotate(22deg); opacity: 0.42; }
            75% { transform: translateY(-15px) rotate(-6deg); opacity: 0.3; }
        }
.wing-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }
.wing-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.15) 30%, rgba(212,175,55,0.3) 50%, rgba(212,175,55,0.15) 70%, transparent 100%);
            transform-origin: left center;
            animation: wingPulse 8s ease-in-out infinite;
        }
.wing-line:nth-child(1) { width: 600px; top: 38%; left: 5%; transform: rotate(-8deg); animation-delay: 0s; }
.wing-line:nth-child(2) { width: 500px; top: 42%; left: 8%; transform: rotate(-5deg); animation-delay: 0.8s; opacity: 0.6; }
.wing-line:nth-child(3) { width: 400px; top: 46%; left: 12%; transform: rotate(-2deg); animation-delay: 1.6s; opacity: 0.4; }
.wing-line:nth-child(4) { width: 550px; top: 55%; right: 3%; transform: rotate(6deg); animation-delay: 0.4s; }
.wing-line:nth-child(5) { width: 450px; top: 59%; right: 6%; transform: rotate(3deg); animation-delay: 1.2s; opacity: 0.6; }
@keyframes wingPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }
.hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }
.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(139,26,74,0.2) 100%);
            border: 2px solid var(--primary);
            color: var(--accent);
            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(212, 175, 55, 0.3);
            animation: badgePulse 3s ease-in-out infinite;
            letter-spacing: 1.5px;
        }
@keyframes badgePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(212,175,55,0.3); }
            50% { transform: scale(1.04); box-shadow: 0 15px 50px rgba(139,26,74,0.5); }
        }
.hero-title{
            font-family:'Manrope',sans-serif;
            font-size: clamp(3.5rem, 9vw, 7rem);
            font-weight:800;
            line-height: 1;
            margin-bottom: 30px;
            text-shadow: 0 8px 40px rgba(212,175,55,0.4);
            letter-spacing: -2px;
        }
.gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 30%, #fff 50%, var(--secondary) 75%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: grad-shift 8s ease infinite;
            background-size: 300% 300%;
        }
@keyframes grad-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.hero-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.8;
        }
.hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 25px;
            max-width: 850px;
            margin: 60px auto 0;
        }
.stat-box {
            background: rgba(255, 255, 255, 0.035);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(212,175,55,0.22);
            border-radius: 25px;
            padding: 30px 25px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
.stat-box::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
            opacity: 0;
            transition: 0.6s;
        }
.stat-box:hover::before { opacity: 1; }
.stat-box:hover {
            transform: translateY(-12px);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(212,175,55,0.3);
            background: rgba(212,175,55,0.08);
        }
.stat-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; filter: drop-shadow(0 5px 12px rgba(212,175,55,0.35)); }
.stat-value { font-size: 2.2rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 8px; text-shadow: 0 3px 12px rgba(212,175,55,0.35); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }
.filters-bar {
            background: linear-gradient(135deg, rgba(8,11,20,0.98) 0%, rgba(14,18,32,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(212,175,55,0.2);
        }
@media (max-width: 1024px) { .filters-bar { top: 134px; padding: 15px 0; } }
.filter-nav {
            display: flex; gap: 12px; overflow-x: auto;
            padding-bottom: 5px; scrollbar-width: none; justify-content: center;
        }
.filter-nav::-webkit-scrollbar { display: none; }
.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(212,175,55,0.2);
            transition: all 0.3s ease; cursor: pointer; display: flex; align-items: center; gap: 8px;
        }
.filter-btn:hover {
            background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(139,26,74,0.2) 100%);
            border-color: var(--primary); color: white; transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212,175,55,0.35);
        }
.filter-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%);
            color: #080B14; border-color: transparent; font-weight: 800;
            box-shadow: 0 8px 30px rgba(212,175,55,0.45);
        }
.smart-filters { padding: 18px 0; border-bottom: 1px solid rgba(212,175,55,0.12); background: rgba(8,11,20,0.5); }
.sf-scroll { display: flex; gap: 12px; overflow-x: auto; justify-content: center; padding-bottom: 5px; }
.sf-scroll::-webkit-scrollbar { display: none; }
.sf-btn {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,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;
        }
.sf-btn:hover { background: rgba(212,175,55,0.18); border-color: var(--primary); color: var(--primary); }
.sf-btn.active {
            background: linear-gradient(135deg, var(--secondary) 0%, #a82258 100%);
            color: white; border-color: transparent; font-weight: 800;
        }
.catalog-section { padding: 80px 0; position: relative; }
.catalog-section::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(circle at 15% 25%, rgba(212,175,55,0.035) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(139,26,74,0.035) 0%, transparent 50%);
            pointer-events: none;
        }
.card-grid {
            display: grid; gap: 38px; position: relative; z-index: 2; justify-content: center;
            max-width: 1200px; margin: 0 auto;
            grid-template-columns: repeat(3, 1fr);
        }
@media (max-width: 1100px) { .card-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; max-width: 480px; } }
.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(212,175,55,0.15); border-radius: 28px; 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);
        }
.card:hover {
            transform: translateY(-16px) scale(1.02); border-color: var(--primary);
            box-shadow: 0 30px 60px rgba(212,175,55,0.35);
            background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, rgba(139,26,74,0.04) 100%);
        }
.card::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(212,175,55,0.1) 50%, transparent 70%);
            opacity: 0; transition: 0.9s; pointer-events: none;
        }
.card:hover::before { opacity: 1; transform: rotate(45deg); }
.card-img-wrapper {
            height: 340px; position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(180deg, rgba(8,11,20,0.4) 0%, rgba(14,18,32,0.7) 100%);
        }
.card-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.92) saturate(1.12); }
.card:hover .card-img { transform: scale(1.18) rotate(1.5deg); filter: brightness(1.1) saturate(1.25); }
.card-badges { position: absolute; top: 18px; left: 18px; display: flex; flex-direction: column; gap: 9px; z-index: 10; }
.card-badge {
            background: rgba(0,0,0,0.78); backdrop-filter: blur(10px); color: white;
            padding: 7px 14px; border-radius: 10px; font-size: 0.76rem; font-weight: 700;
            display: flex; align-items: center; gap: 6px; border: 1px solid rgba(212,175,55,0.3);
            transform: translateX(-8px); opacity: 0; animation: badgeSlideIn 0.6s ease forwards;
        }
@keyframes badgeSlideIn { to { transform: translateX(0); opacity: 1; } }
.card-badge:nth-child(2) { animation-delay: 0.15s; }
.card-badge:nth-child(3) { animation-delay: 0.3s; }
.card-badge.premium { border-color: var(--primary); color: var(--primary); }
.card-badge.rare { border-color: #c084fc; color: #c084fc; }
.card-badge.popular { border-color: var(--secondary); color: #f472b6; }
.card-qv-btn {
            position: absolute; top: 18px; right: 18px; width: 48px; height: 48px;
            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.3rem; border: 2px solid rgba(212,175,55,0.6);
            opacity: 0; transform: translateY(-12px) scale(0.8);
        }
.card:hover .card-qv-btn { opacity: 1; transform: translateY(0) scale(1); }
.card-qv-btn:hover {
            background: var(--primary); border-color: #b8942e; color: #080B14;
            transform: scale(1.2) rotate(10deg); box-shadow: 0 8px 25px rgba(212,175,55,0.5);
        }
.card-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; gap: 20px; }
.card-name { font-family:'Manrope',sans-serif; font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 5px; line-height: 1.3; transition: 0.3s; }
.card:hover .card-name { color: var(--primary); }
.card-latin { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 14px; }
.card-stats {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 22px;
            background: rgba(0,0,0,0.25); border-radius: 16px; border: 1px solid rgba(212,175,55,0.08);
            position: relative; overflow: hidden; transition: 0.4s;
        }
.card-stats::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent); transition: 0.9s;
        }
.card:hover .card-stats::before { left: 100%; }
.card:hover .card-stats { background: rgba(212,175,55,0.06); border-color: rgba(212,175,55,0.25); box-shadow: inset 0 0 20px rgba(212,175,55,0.1); }
.card-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; }
.card-stat-icon { font-size: 1.5rem; transition: 0.5s cubic-bezier(0.68,-0.55,0.265,1.55); filter: grayscale(0.2); }
.card:hover .card-stat-icon { transform: scale(1.3) rotate(10deg); filter: grayscale(0) drop-shadow(0 0 6px var(--primary)); }
.card:hover .card-stat:nth-child(1) .card-stat-icon { animation: iconBounce 0.7s ease; }
.card:hover .card-stat:nth-child(2) .card-stat-icon { animation: iconBounce 0.7s 0.12s ease; }
.card:hover .card-stat:nth-child(3) .card-stat-icon { animation: iconBounce 0.7s 0.24s ease; }
@keyframes iconBounce { 0%, 100% { transform: scale(1.3) rotate(10deg); } 50% { transform: scale(1.55) rotate(-10deg); } }
.card-dots { display: flex; gap: 5px; }
.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); }
.dot.fill { background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%); box-shadow: 0 0 8px var(--primary); animation: dotGlow 1.6s infinite alternate; }
@keyframes dotGlow { 0% { box-shadow: 0 0 5px var(--primary); } 100% { box-shadow: 0 0 14px var(--primary), 0 0 24px rgba(139,26,74,0.5); } }
.card:hover .dot.fill { transform: scale(1.3); }
.card-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; margin-top: 2px; }
.card-size-badge {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            padding: 11px 16px; background: rgba(139,26,74,0.12); border: 1px solid rgba(139,26,74,0.35);
            border-radius: 13px; font-size: 0.84rem; font-weight: 700; color: #f9a8d4; transition: 0.3s;
        }
.card:hover .card-size-badge { background: rgba(139,26,74,0.22); border-color: var(--secondary); transform: scale(1.03); }
.card-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(212,175,55,0.12); padding-top: 20px; }
.card-price-label { font-size: 0.74rem; color: rgba(255,255,255,0.4); text-transform: uppercase; display: block; margin-bottom: 5px; }
.card-price { font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.card-arrow {
            width: 42px; height: 42px; border-radius: 50%; background: rgba(212,175,55,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.2rem;
        }
.card:hover .card-arrow { background: var(--primary); color: #080B14; transform: rotate(-45deg) scale(1.2); box-shadow: 0 6px 22px rgba(212,175,55,0.5); }
.load-more { display: flex; justify-content: center; margin-top: 65px; }
.btn-more {
            background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(139,26,74,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-more:hover {
            background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%);
            color: #080B14; border-color: transparent; transform: translateY(-5px); box-shadow: 0 12px 35px rgba(212,175,55,0.45);
        }
.why-section { padding: 110px 0; background: linear-gradient(135deg, #080B14 0%, #0E1220 100%); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%); border-radius: 50%; animation: pulse 9s ease-in-out infinite; }
.why-section::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(139,26,74,0.06) 0%, transparent 70%); border-radius: 50%; animation: pulse 11s ease-in-out infinite reverse; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.15); opacity: 1; } }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.why-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-content h2 .highlight { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-item { display: flex; gap: 22px; padding: 26px; background: rgba(255,255,255,0.025); border: 1px solid rgba(212,175,55,0.15); border-radius: 20px; transition: 0.4s; cursor: default; }
.why-item:hover { background: rgba(212,175,55,0.06); border-color: var(--primary); transform: translateX(16px); box-shadow: -5px 0 22px rgba(212,175,55,0.2); }
.why-icon { font-size: 2.6rem; min-width: 62px; height: 62px; display: flex; align-items: center; justify-content: center; background: rgba(212,175,55,0.08); border-radius: 16px; border: 2px solid rgba(212,175,55,0.25); transition: 0.4s; }
.why-item:hover .why-icon { transform: scale(1.18) rotate(10deg); background: var(--primary); border-color: #b8942e; box-shadow: 0 6px 22px rgba(212,175,55,0.45); }
.why-text h4 { font-size: 1.2rem; color: white; margin-bottom: 9px; font-weight: 700; }
.why-text p { color: rgba(255,255,255,0.65); line-height: 1.7; font-size: 0.95rem; }
.why-image { position: relative; }
.why-image img { width: 100%; height: auto; border-radius: 32px; box-shadow: 0 35px 90px rgba(0,0,0,0.7); border: 3px solid rgba(212,175,55,0.25); transition: 0.6s; }
.why-image:hover img { transform: scale(1.04) rotate(1deg); border-color: var(--primary); box-shadow: 0 45px 110px rgba(212,175,55,0.4); }
.floating-badge { position: absolute; background: rgba(0,0,0,0.87); backdrop-filter: blur(12px); padding: 18px 22px; border-radius: 16px; border: 2px solid var(--secondary); color: white; font-weight: 700; font-size: 0.9rem; box-shadow: 0 12px 35px rgba(0,0,0,0.6); animation: floatBadge 3.5s ease-in-out infinite; }
.floating-badge:nth-child(2) { top: 8%; right: -22px; animation-delay: 0s; border-color: var(--primary); }
.floating-badge:nth-child(3) { bottom: 14%; left: -32px; animation-delay: 1.4s; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@media (max-width: 900px) {
            .why-grid { grid-template-columns: 1fr; gap: 45px; }
            .why-image { order: -1; }
            .floating-badge { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 8px; }
        }
.price-section { padding: 110px 0; background: linear-gradient(135deg, #080B14 0%, #0E1220 100%); position: relative; overflow: hidden; }
.price-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: repeating-linear-gradient(90deg, rgba(212,175,55,0.03) 0px, transparent 2px, transparent 48px), repeating-linear-gradient(0deg, rgba(212,175,55,0.03) 0px, transparent 2px, transparent 48px); opacity: 0.45; pointer-events: none; }
.price-header { text-align: center; margin-bottom: 70px; position: relative; z-index: 2; }
.price-badge { display: inline-block; background: rgba(212,175,55,0.1); border: 2px solid var(--primary); color: var(--primary); padding: 10px 24px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 25px; letter-spacing: 1px; }
.price-title { font-family: 'Playfair Display'; font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: white; margin-bottom: 20px; }
.price-title span { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-subtitle { font-size: 1.12rem; color: rgba(255,255,255,0.55); max-width: 750px; margin: 0 auto; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; justify-content: center; max-width: 1150px; margin: 0 auto; }
@media (max-width: 1050px) { .price-grid { grid-template-columns: repeat(2, 1fr); max-width: 750px; } }
@media (max-width: 620px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; } }
.price-card { background: rgba(255,255,255,0.035); backdrop-filter: blur(12px); border: 1px solid rgba(212,175,55,0.18); border-radius: 26px; padding: 40px 30px; text-align: center; transition: 0.6s; position: relative; overflow: hidden; z-index: 1; }
.price-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(212,175,55,0.08), transparent); transform: rotate(45deg); transition: 0.9s; }
.price-card:hover::before { left: 100%; }
.price-card:hover { transform: translateY(-14px); border-color: var(--primary); background: rgba(212,175,55,0.06); box-shadow: 0 28px 55px rgba(212,175,55,0.3); }
.price-card.popular { border: 2px solid var(--primary); background: rgba(212,175,55,0.05); }
.price-card.popular::after { content: '⭐ ПОПУЛЯРНАЯ'; position: absolute; top: 22px; right: -40px; background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%); color: #080B14; padding: 6px 46px; font-size: 0.68rem; font-weight: 800; transform: rotate(45deg); box-shadow: 0 4px 16px rgba(212,175,55,0.45); }
.price-emoji { font-size: 3.8rem; display: block; margin-bottom: 20px; animation: bouncePr 2.5s ease-in-out infinite; }
@keyframes bouncePr { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.price-card h3{ font-size: 1.4rem; color: white; margin-bottom: 8px; font-weight:800; }
.price-card .latin { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 20px; }
.price-value { font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; }
.price-features { list-style: none; margin: 20px 0; text-align: left; }
.price-features li { padding: 9px 0; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.price-features li::before { content: '✓'; color: var(--primary); font-weight: bold; font-size: 1.1rem; }
.btn-order { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%); border: none; border-radius: 13px; color: #080B14; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s; font-size: 0.9rem; letter-spacing: 1.1px; position: relative; z-index: 10; }
.btn-order:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,55,0.45); }
.quiz-section { padding: 110px 0; background: radial-gradient(circle at 50% 50%, #0E1220 0%, #080B14 100%); position: relative; overflow: hidden; }
.quiz-section::before { content: '🦩'; position: absolute; font-size: 380px; opacity: 0.018; 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); } }
.quiz-container { max-width: 900px; margin: 0 auto; background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(139,26,74,0.05) 100%); backdrop-filter: blur(25px); border: 2px solid rgba(212,175,55,0.28); border-radius: 38px; padding: 65px 50px; box-shadow: 0 35px 90px rgba(0,0,0,0.7); position: relative; overflow: hidden; }
.quiz-progress { position: absolute; top: 0; left: 0; height: 5px; background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%); width: 0%; transition: width 0.6s ease; box-shadow: 0 0 18px var(--primary); }
.quiz-header { text-align: center; margin-bottom: 50px; }
.quiz-step-indicator { font-size: 0.84rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 22px; }
.quiz-question { font-family: 'Playfair Display'; font-size: clamp(1.9rem, 4.2vw, 2.7rem); color: white; margin-bottom: 14px; line-height: 1.2; }
.quiz-subtitle { font-size: 1.08rem; color: rgba(255,255,255,0.55); }
.quiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 40px; }
.quiz-option { background: rgba(255,255,255,0.035); border: 2px solid rgba(212,175,55,0.2); border-radius: 22px; padding: 32px 24px; 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: 16px; position: relative; overflow: hidden; }
.quiz-option::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 70%); transform: translate(-50%, -50%); transition: width 0.7s, height 0.7s; }
.quiz-option:hover::before { width: 320px; height: 320px; }
.quiz-option:hover { transform: translateY(-10px); border-color: var(--primary); background: rgba(212,175,55,0.08); box-shadow: 0 16px 40px rgba(212,175,55,0.3); }
.quiz-option-icon { font-size: 3.5rem; position: relative; z-index: 1; transition: 0.5s; }
.quiz-option:hover .quiz-option-icon { transform: scale(1.22) rotate(10deg); }
.quiz-option-text { position: relative; z-index: 1; }
.quiz-option-title { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 7px; }
.quiz-option-desc { font-size: 0.84rem; color: rgba(255,255,255,0.5); }
.quiz-loader { display: none; flex-direction: column; align-items: center; justify-content: center; min-height: 420px; }
.loader-spinner { width: 100px; height: 100px; border: 5px solid rgba(255,255,255,0.08); border-top: 5px solid var(--primary); border-right: 5px solid var(--secondary); border-radius: 50%; animation: spin 1.8s linear infinite; margin-bottom: 32px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loader-text { font-size: 1.35rem; color: white; font-weight: 700; margin-bottom: 14px; }
.loader-subtext { font-size: 0.95rem; color: rgba(255,255,255,0.4); }
.quiz-result { display: none; text-align: center; animation: fadeIn 0.9s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.result-match { display: inline-block; background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%); color: #080B14; padding: 10px 24px; border-radius: 50px; font-weight: 800; font-size: 0.86rem; text-transform: uppercase; margin-bottom: 26px; letter-spacing: 1.2px; }
.result-title { font-family: 'Playfair Display'; font-size: clamp(2.1rem, 4.2vw, 3rem); color: white; margin-bottom: 28px; }
.result-img { width: 240px; height: 240px; object-fit: cover; object-position: center 20%; border-radius: 50%; border: 5px solid var(--primary); margin: 0 auto 28px; box-shadow: 0 0 55px rgba(212,175,55,0.45); animation: resultImg 1.2s ease; }
@keyframes resultImg { from { transform: scale(0.5) rotate(-10deg); opacity: 0; } to { transform: scale(1) rotate(0deg); opacity: 1; } }
.result-desc { font-size: 1.08rem; color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 680px; margin: 0 auto 38px; }
.btn-retry { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.22); color: white; padding: 13px 30px; border-radius: 50px; cursor: pointer; font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; margin-bottom: 28px; }
.btn-retry:hover { background: rgba(212,175,55,0.12); border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.retry-icon { display: inline-block; transition: transform 0.6s ease; }
.btn-retry:hover .retry-icon { transform: rotate(180deg); }
.quiz-form { background: rgba(255,255,255,0.04); padding: 38px; border-radius: 22px; max-width: 520px; margin: 0 auto; border: 1px solid rgba(212,175,55,0.18); }
.form-title { color: var(--primary); font-weight: 800; margin-bottom: 22px; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 1.2px; }
.quiz-input { width: 100%; padding: 17px 22px; background: rgba(0,0,0,0.35); border: 1px solid rgba(212,175,55,0.22); border-radius: 13px; color: white; margin-bottom: 14px; font-size: 1.02rem; text-align: center; outline: none; transition: 0.3s; }
.quiz-input:focus { border-color: var(--primary); background: rgba(0,0,0,0.5); box-shadow: 0 0 18px rgba(212,175,55,0.25); }
.quiz-input::placeholder { color: rgba(255,255,255,0.32); }
.btn-submit { width: 100%; padding: 17px; background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%); border: none; border-radius: 13px; color: #080B14; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s; font-size: 0.95rem; letter-spacing: 1.2px; }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,55,0.45); }
.form-note { font-size: 0.74rem; color: rgba(255,255,255,0.3); margin-top: 14px; text-align: center; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: slideIn 0.6s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.care-section { padding: 110px 0; background: linear-gradient(135deg, rgba(8,11,20,0.88) 0%, rgba(14,18,32,0.94) 100%); position: relative; overflow: hidden; }
.care-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.care-image { position: relative; }
.care-image img { width: 100%; height: auto; border-radius: 32px; box-shadow: 0 35px 90px rgba(0,0,0,0.7); border: 3px solid rgba(212,175,55,0.25); }
.expert-badge { position: absolute; background: rgba(0,0,0,0.88); backdrop-filter: blur(12px); padding: 20px 26px; border-radius: 20px; border: 2px solid var(--secondary); color: white; font-weight: 700; box-shadow: 0 18px 45px rgba(0,0,0,0.8); }
.expert-badge:nth-child(2) { top: 8%; right: -32px; border-color: var(--primary); }
.expert-badge:nth-child(3) { bottom: 14%; left: -42px; }
.expert-badge-icon { font-size: 2rem; display: block; margin-bottom: 7px; }
.expert-badge-text { font-size: 0.83rem; color: rgba(255,255,255,0.78); }
.care-content h2 { font-family: 'Playfair Display'; font-size: clamp(2.8rem, 5.5vw, 4.5rem); color: white; margin-bottom: 24px; line-height: 1.1; }
.care-content h2 span { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.care-intro { font-size: 1.08rem; color: rgba(255,255,255,0.65); margin-bottom: 38px; line-height: 1.8; }
.care-list { display: flex; flex-direction: column; gap: 22px; }
.care-item { display: flex; gap: 22px; padding: 26px; background: rgba(255,255,255,0.025); border-left: 4px solid var(--primary); border-radius: 16px; transition: 0.3s; }
.care-item:hover { background: rgba(212,175,55,0.06); transform: translateX(10px); box-shadow: -5px 0 22px rgba(212,175,55,0.18); }
.care-item-icon { font-size: 2rem; min-width: 50px; }
.care-item h4 { color: white; font-size: 1.08rem; margin-bottom: 7px; font-weight: 700; }
.care-item p { color: rgba(255,255,255,0.65); line-height: 1.7; font-size: 0.93rem; }
@media (max-width: 900px) {
            .care-grid { grid-template-columns: 1fr; }
            .care-image { order: -1; }
            .expert-badge { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 8px; }
        }
.seo-section { padding: 110px 0; background: radial-gradient(circle at 50% 12%, #0E1220 0%, #060810 100%); position: relative; overflow: hidden; border-top: 1px solid rgba(212,175,55,0.18); border-bottom: 1px solid rgba(212,175,55,0.18); }
.seo-grid-bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.4; pointer-events: none; }
.seo-content { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.faq-container { background: rgba(255,255,255,0.035); backdrop-filter: blur(18px); border: 1px solid rgba(212,175,55,0.2); border-radius: 32px; padding: 52px 46px; box-shadow: 0 35px 80px rgba(0,0,0,0.6); margin-bottom: 65px; }
.faq-title { font-family: 'Playfair Display'; font-size: 2.7rem; color: white; text-align: center; margin-bottom: 42px; }
.faq-title span { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.faq-item { border-bottom: 1px solid rgba(212,175,55,0.12); padding: 26px 0; transition: 0.3s; }
.faq-question { font-weight: 700; color: white; font-size: 1.12rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; padding-right: 22px; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.5rem; color: var(--primary); transition: 0.4s; min-width: 32px; text-align: center; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--secondary); }
.faq-answer { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.6s ease, padding 0.6s ease; }
.faq-item.active .faq-answer { max-height: 1200px; padding-top: 20px; }
.faq-item.active .faq-question { color: var(--primary); }
.seo-text { background: rgba(255,255,255,0.022); border: 1px solid rgba(212,175,55,0.08); border-radius: 26px; padding: 50px 46px; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,175,55,0.08); border: 1px solid var(--primary); padding: 11px 22px; border-radius: 50px; color: var(--primary); font-size: 0.84rem; font-weight: 700; margin-bottom: 30px; box-shadow: 0 0 18px rgba(212,175,55,0.18); }
.seo-text h2 { font-family: 'Playfair Display'; font-size: clamp(2.1rem, 4.2vw, 3rem); color: white; margin-bottom: 24px; line-height: 1.2; }
.seo-text h2 span { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.seo-description { color: rgba(255,255,255,0.72); font-size: 1.03rem; line-height: 1.9; }
.seo-description p { margin-bottom: 20px; }
.seo-description strong { color: var(--accent); font-weight: 600; }
.seo-description ul { list-style: none; margin: 22px 0; padding-left: 8px; }
.seo-description li { margin-bottom: 13px; display: flex; align-items: flex-start; gap: 10px; }
.seo-description li::before { content: '🦩'; font-size: 1.1rem; flex-shrink: 0; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(212,175,55,0.07); }
.seo-tag { background: rgba(255,255,255,0.035); padding: 9px 16px; border-radius: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.38); border: 1px solid rgba(212,175,55,0.07); transition: 0.3s; }
.seo-tag:hover { color: var(--primary); border-color: var(--primary); background: rgba(212,175,55,0.06); }
footer { padding: 100px 0 40px; background: rgba(8,11,20,0.85); border-top: 1px solid var(--border); margin-top: auto; position: relative; z-index: 10; }
.footer-col h4 { color: var(--primary); margin-bottom: 28px; text-transform: uppercase; font-size: 0.88rem; letter-spacing: 2px; font-weight: 800; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { color: var(--text-soft); font-weight: 600; font-size: 0.97rem; transition: var(--transition); }
.f-contact { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.f-contact i { color: var(--primary); font-size: 1.1rem; font-style: normal; }
.footer-bottom-row { border-top: 1px solid var(--border); padding-top: 38px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-soft); }
@media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr; gap: 38px; }
            .footer-bottom-row { flex-direction: column; gap: 18px; text-align: center; }
        }
.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, .qv-box { position: relative !important; background: #0c1018; border: 1px solid var(--primary); border-radius: 22px; width: 920px; max-width: 100%; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; animation: zoomIn 0.4s ease; box-shadow: 0 25px 60px rgba(0,0,0,0.9); }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.form-box-styled { max-width: 520px; padding: 42px; }
.modal-close { position: absolute !important; top: 20px !important; right: 20px !important; width: 46px !important; height: 46px !important; background: rgba(0,0,0,0.6) !important; border: 2px solid var(--primary) !important; border-radius: 50% !important; color: white !important; font-size: 24px !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: #080B14 !important; transform: rotate(90deg); }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; height: 580px; overflow: hidden; }
.qv-image { background: #080B14; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-right: 1px solid rgba(212,175,55,0.18); }
.qv-image img { width: 100%; height: 100%; object-fit: cover; }
.qv-scroll { padding: 42px 42px 100px 42px; overflow-y: auto; display: flex; flex-direction: column; }
.qv-footer { position: absolute; bottom: 0; right: 0; width: 50%; padding: 20px 42px; background: rgba(12,16,24,0.96); border-top: 1px solid rgba(212,175,55,0.18); display: flex; gap: 16px; backdrop-filter: blur(8px); }
.qv-header h2 { font-family: 'Playfair Display'; font-size: 2.2rem; color: var(--primary); margin-bottom: 22px; line-height: 1; }
.qv-price { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; font-family: 'Manrope'; }
.btn-qv-order { flex: 1; padding: 15px; background: linear-gradient(135deg, var(--primary), #b8942e); border: none; border-radius: 13px; color: #080B14; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.btn-qv-order:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(212,175,55,0.45); }
.qv-phone { flex: 1; display: flex; align-items: center; justify-content: center; border: 2px solid var(--primary); border-radius: 13px; color: var(--primary); font-weight: 700; text-decoration: none; transition: var(--transition); }
.qv-phone:hover { background: var(--primary); color: #080B14; }
@media (max-width: 900px) {
            .modal { align-items: flex-end; padding: 0; background: rgba(0,0,0,0.85); }
            .modal-box, .qv-box { width: 100% !important; margin: 0 !important; border-radius: 26px 26px 0 0 !important; border: none !important; border-top: 1px solid var(--primary) !important; height: 92vh !important; max-height: 92vh !important; animation: slideUp 0.5s ease; }
            @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
            .qv-grid { display: flex; flex-direction: column; height: 100%; }
            .qv-image { height: 36vh; min-height: 240px; border-bottom: 1px solid rgba(212,175,55,0.18); border-right: none; }
            .qv-image img { padding: 16px; object-fit: contain !important; }
            .qv-scroll { flex-grow: 1; padding: 22px 22px 0 22px; }
            .qv-footer { position: relative; width: 100%; padding: 16px 22px 26px 22px; flex-direction: column; gap: 10px; }
        }
.catalog-modal { display: none; position: fixed; inset: 0; z-index: 11000; background: rgba(8,11,20,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: 24px; right: 24px; font-size: 2.6rem; color: white; cursor: pointer; line-height: 1; transition: 0.3s; z-index: 100; width: 52px; height: 52px; background: rgba(212,175,55,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: #080B14; transform: rotate(90deg); }
.cat-modal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 22px; width: 100%; max-width: 1000px; padding: 48px 24px 100px 24px; }
.cat-modal-item { display: flex; flex-direction: column; align-items: center; text-align: center; background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(14,18,32,0.5) 100%); padding: 26px 16px; border-radius: 22px; border: 1px solid rgba(212,175,55,0.2); transition: all 0.3s ease; cursor: pointer; text-decoration: none; }
.cat-modal-item:hover { background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(139,26,74,0.12) 100%); border-color: var(--primary); transform: translateY(-7px) scale(1.04); }
.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: 330px; height: 100%; background: linear-gradient(180deg, #0c1018 0%, #0E1220 100%); border-left: 2px solid var(--primary); padding: 26px 22px; 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: 32px; border-bottom: 1px solid rgba(212,175,55,0.2); padding-bottom: 16px; }
.mn-close { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
.mn-link-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.mn-link-list a { font-size: 1.12rem; font-weight: 700; color: #fff; text-transform: uppercase; }
.mn-contacts-center { margin-bottom: 32px; }
.mn-phone-large { font-size: 1.45rem; font-weight: 800; color: #fff; display: block; margin-bottom: 16px; }
.mn-socials { display: flex; gap: 16px; }
.mn-badge-bottom { margin-top: auto; background: rgba(212,175,55,0.1); padding: 16px; border-radius: 13px; font-size: 0.74rem; 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.4); transition: var(--transition); }
.btn-hero.gold { background: linear-gradient(135deg, var(--primary), #b8942e); color: #080B14; }
.btn-hero.gold-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.5); }
.form-input { width: 100%; padding: 15px; background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.18); border-radius: 50px; color: white; margin-bottom: 16px; outline: none; transition: var(--transition); }
.form-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.08); box-shadow: 0 0 18px rgba(212,175,55,0.25); }
.scroll-to-top { position: fixed; bottom: 115px; right: 35px; width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary) 0%, #b8942e 100%); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 9000; box-shadow: 0 8px 22px rgba(212,175,55,0.4); transition: 0.3s; color: #080B14; font-size: 1.5rem; font-weight: 800; }
.scroll-to-top:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(212,175,55,0.55); }
@media (max-width: 768px) { .scroll-to-top { bottom: 100px; right: 22px; width: 48px; height: 48px; } }
.mobile-tab { position: fixed; bottom: 18px; left: 14px; right: 14px; height: 72px; background: linear-gradient(135deg, rgba(8,11,20,0.98) 0%, rgba(14,18,32,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.4); font-size: 0.62rem; text-transform: uppercase; font-weight: 700; transition: var(--transition); }
.tab-item i { display: block; font-size: 1.45rem; margin-bottom: 3px; font-style: normal; }
@media (max-width: 1024px) { .container { padding: 0 20px; } }
@media (max-width: 768px) {
            .hero-section { padding: 48px 0 55px; min-height: auto; }
            .hero-badge { font-size: 0.71rem; padding: 9px 18px; }
            .hero-title { font-size: clamp(2.4rem, 10vw, 3.4rem) !important; margin-bottom: 18px; }
            .hero-subtitle { font-size: 0.97rem; margin-bottom: 28px; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-box { padding: 18px 12px; }
            .stat-icon { font-size: 1.9rem; }
            .stat-value { font-size: 1.75rem; }
            .stat-label { font-size: 0.71rem; }

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

            .card-grid { grid-template-columns: 1fr; gap: 22px; max-width: 480px; }
            .card { max-width: 480px; margin: 0 auto; }
            .card-img-wrapper { height: 280px; }
            .card-content { padding: 22px 18px; gap: 16px; }
            .card-name { font-size: 1.2rem; }
            .card-latin { font-size: 0.76rem; }
            .card-stats { padding: 16px 12px; gap: 10px; }
            .card-stat-icon { font-size: 1.4rem; }
            .card-dots { gap: 3px; }
            .dot { width: 6px; height: 6px; }
            .card-stat-label { font-size: 0.6rem; }
            .card-size-badge { padding: 9px 12px; font-size: 0.76rem; }
            .card-price { font-size: 1.35rem; }
            .card-arrow { width: 38px; height: 38px; font-size: 1.05rem; }

            .why-section { padding: 55px 0; }
            .why-grid { grid-template-columns: 1fr; gap: 38px; }
            .why-content h2 { font-size: clamp(2rem, 8vw, 2.7rem) !important; margin-bottom: 22px; text-align: center; }
            .why-list { gap: 16px; }
            .why-item { padding: 18px 12px; gap: 12px; }
            .why-icon { font-size: 1.9rem; min-width: 48px; height: 48px; }
            .why-text h4 { font-size: 1.05rem; }
            .why-text p { font-size: 0.86rem; }
            .why-image { order: -1; }

            .price-section { padding: 55px 0; }
            .price-header { margin-bottom: 42px; }
            .price-badge { font-size: 0.71rem; padding: 7px 16px; }
            .price-title { font-size: clamp(2rem, 8vw, 2.7rem) !important; }
            .price-subtitle { font-size: 0.9rem; padding: 0 6px; }
            .price-grid { grid-template-columns: 1fr; max-width: 440px; gap: 20px; }
            .price-card { padding: 32px 22px; }
            .price-card.popular::after { top: 18px; right: -30px; padding: 5px 36px; font-size: 0.6rem; }
            .price-emoji { font-size: 3rem; margin-bottom: 16px; }
            .price-card h3 { font-size: 1.3rem; }
            .price-value { font-size: 2.1rem; }
            .price-features { margin: 16px 0; }
            .price-features li { font-size: 0.82rem; padding: 8px 0; }

            .quiz-section { padding: 55px 0; }
            .quiz-container { padding: 36px 18px; border-radius: 24px; }
            .quiz-header { margin-bottom: 28px; }
            .quiz-step-indicator { font-size: 0.71rem; margin-bottom: 12px; }
            .quiz-question { font-size: clamp(1.45rem, 5.5vw, 1.9rem) !important; margin-bottom: 12px; }
            .quiz-subtitle { font-size: 0.9rem; }
            .quiz-options { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
            .quiz-option { flex-direction: row; text-align: left; padding: 18px 12px; gap: 12px; }
            .quiz-option-icon { font-size: 2.3rem; margin: 0; }
            .quiz-option-title { font-size: 1.05rem; }
            .quiz-option-desc { font-size: 0.76rem; }
            .quiz-loader { min-height: 300px; }
            .loader-spinner { width: 75px; height: 75px; margin-bottom: 20px; }
            .loader-text { font-size: 1.05rem; }
            .loader-subtext { font-size: 0.82rem; }
            .result-title { font-size: clamp(1.55rem, 5.5vw, 2.1rem) !important; }
            .result-img { width: 190px; height: 190px; }
            .result-desc { font-size: 0.9rem; padding: 0 6px; }
            .quiz-form { padding: 26px 16px; }
            .form-title { font-size: 0.82rem; }
            .quiz-input { padding: 13px 16px; font-size: 16px !important; }

            .care-section { padding: 55px 0; }
            .care-grid { grid-template-columns: 1fr; gap: 38px; }
            .care-image { order: -1; }
            .care-content h2 { font-size: clamp(2rem, 8vw, 2.7rem) !important; text-align: center; }
            .care-intro { font-size: 0.9rem; text-align: center; }
            .care-list { gap: 14px; }
            .care-item { padding: 16px 12px; gap: 12px; }
            .care-item-icon { font-size: 1.75rem; min-width: 40px; }
            .care-item h4 { font-size: 0.97rem; }
            .care-item p { font-size: 0.82rem; }
            .expert-badge { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 7px; padding: 13px 16px; }
            .expert-badge-icon { font-size: 1.6rem; }
            .expert-badge-text { font-size: 0.76rem; }

            .seo-section { padding: 55px 0; }
            .faq-container { padding: 28px 16px; border-radius: 20px; margin-bottom: 40px; }
            .faq-title { font-size: 1.85rem !important; margin-bottom: 24px; }
            .faq-item { padding: 16px 0; }
            .faq-question { font-size: 0.95rem; padding-right: 12px; }
            .faq-icon { font-size: 1.25rem; min-width: 22px; }
            .faq-answer { font-size: 0.86rem; }
            .seo-text { padding: 28px 16px; border-radius: 18px; }
            .trust-badge { font-size: 0.71rem; padding: 7px 14px; }
            .seo-text h2 { font-size: clamp(1.55rem, 7vw, 2.1rem) !important; }
            .seo-description { font-size: 0.86rem; }
            .seo-description li { font-size: 0.82rem; margin-bottom: 9px; }
            .seo-tags { gap: 7px; margin-top: 24px; }
            .seo-tag { font-size: 0.71rem; padding: 7px 11px; }

            .cat-modal-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 24px 12px 76px 12px; }
            .cat-modal-item { padding: 16px 9px; }

            .btn-more { padding: 15px 34px; font-size: 0.86rem; }
            .btn-hero { padding: 13px 22px; 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, .qv-box { max-width: 100vw; }
            .form-input, .quiz-input { max-width: 100%; font-size: 16px !important; }
            .card-badge, .hero-badge, .price-badge { max-width: calc(100% - 28px); text-align: center; }
            button, .btn-hero, .btn-consult { width: 100%; max-width: 100%; white-space: normal; }
            .footer-grid { gap: 24px; }
            .footer-col { text-align: center; }
            .footer-col ul { padding: 0; }
            .f-contact { justify-content: center; }
            .floating-badge { position: relative; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; display: inline-block; margin: 7px 3px; }
            @media (hover: none) {
                .card:hover { transform: none; }
                .card-qv-btn { opacity: 1; transform: translateY(0) scale(1); }
            }
        }
@media (max-width: 480px) {
            .container { padding: 0 13px; }
            .hero-title { font-size: 2.1rem !important; }
            .hero-stats { grid-template-columns: 1fr; }
            .filter-btn, .sf-btn { font-size: 0.71rem; padding: 7px 12px; }
            .card-name { font-size: 1.12rem; }
            .card-price { font-size: 1.25rem; }
            .why-content h2, .price-title, .care-content h2, .seo-text h2 { font-size: 1.75rem !important; }
            .quiz-question { font-size: 1.35rem !important; }
            .quiz-option { padding: 13px 10px; }
            .quiz-option-icon { font-size: 1.85rem; }
            .result-img { width: 160px; height: 160px; }
            .cat-modal-grid { grid-template-columns: 1fr; }
        }
@media (max-width: 360px) {
            .hero-title { font-size: 1.75rem !important; }
            .stat-box { padding: 13px 8px; }
            .card-content { padding: 16px 12px; }
            .quiz-container { padding: 26px 13px; }
            .faq-container, .seo-text { padding: 20px 13px; }
        }
.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(201, 162, 39, 0.45);
            transition: 0.3s;
            color: #080608;
            font-size: 1.6rem;
            font-weight: 800;
        }
.scroll-to-top:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(201, 162, 39, 0.65); }