﻿:root {
            --primary: #42C4C1;
            --accent: #B89B72;
            --bg-dark: #0a0e0d;
            --bg-dark-lighter: #1a1f1d;
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --orange: #F39221;
            --border: rgba(66, 196, 193, 0.2);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 35px 60px -15px rgba(66, 196, 193, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
            
            --exotic-purple: #9B59B6;
            --exotic-gold: #FFD700;
            --exotic-emerald: #50C878;
            --exotic-coral: #FF6B9D;
            --exotic-sapphire: #0F52BA;
            --exotic-rainbow: linear-gradient(135deg, #FF6B9D 0%, #9B59B6 25%, #42C4C1 50%, #FFD700 75%, #50C878 100%);
        }
.btn-consult-prais { 
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--orange) 0%, #42c4c1 100%);
            color: white;
            padding: 20px 22px;
            margin-top: 40px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.75rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(123, 191, 106, 0.3);
        }
.btn-consult-prais:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(123, 191, 106, 0.5);
        }
.hero-exotic { 
            background: linear-gradient(180deg, #0a0e0d 0%, #141a18 100%); 
            padding: 80px 0 100px; 
            position: relative; 
            overflow: hidden; 
            text-align: center; 
            min-height: 50vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
.hero-exotic::before { 
            content: ''; 
            position: absolute; 
            top: -200px; 
            left: -200px; 
            width: 1000px; 
            height: 1000px; 
            background: radial-gradient(circle, rgba(155, 89, 182, 0.15) 0%, transparent 70%); 
            filter: blur(120px); 
            pointer-events: none; 
            animation: magicPulse 15s ease-in-out infinite; 
        }
.hero-exotic::after { 
            content: '✨'; 
            position: absolute; 
            top: 20%;
            right: 10%; 
            font-size: 8rem;
            opacity: 0.08;
            animation: floatStar 8s ease-in-out infinite; 
            filter: blur(3px);
        }
@keyframes magicPulse {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.6; transform: scale(1.2) rotate(180deg); }
        }
@keyframes floatStar {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
        }
.hero-badge-exotic { 
            display: inline-flex; 
            align-items: center; 
            justify-content: center; 
            background: var(--exotic-rainbow); 
            color: white; 
            padding: 12px 25px; 
            border-radius: 50px; 
            font-weight: 800; 
            font-size: 0.8rem; 
            margin-bottom: 30px; 
            text-transform: uppercase; 
            box-shadow: 0 8px 30px rgba(155, 89, 182, 0.5); 
            animation: rainbowGlow 3s ease-in-out infinite; 
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
@keyframes rainbowGlow {
            0%, 100% { box-shadow: 0 8px 30px rgba(155, 89, 182, 0.5); }
            50% { box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6); }
        }
.hero-title-exotic { 
            font-family:'Manrope',sans-serif; 
            font-size: clamp(2.8rem, 7vw, 5.5rem); 
            font-weight: 700; 
            line-height: 1.1; 
            margin-bottom: 25px; 
        }
.gradient-exotic { 
            background: var(--exotic-rainbow); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            animation: rainbowShift 5s linear infinite;
            background-size: 200% 200%;
        }
@keyframes rainbowShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.hero-subtitle-exotic { 
            font-size: clamp(1.1rem, 2.2vw, 1.3rem); 
            color: rgba(255,255,255,0.7); 
            max-width: 1000px; 
            margin: 0 auto; 
        }
.catalog-control-bar { 
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(26, 31, 29, 0.98) 100%); 
            backdrop-filter: blur(30px); 
            border-bottom: 2px solid var(--exotic-purple); 
            position: sticky; 
            top: 74px; 
            z-index: 1500; 
            padding: 20px 0; 
        }
@media (max-width: 1024px) { 
            .catalog-control-bar { 
                top: 134px; 
                padding: 15px 0;
            } 
        }
.control-nav { 
            display: flex; 
            gap: 10px; 
            overflow-x: auto; 
            padding-bottom: 5px; 
            scrollbar-width: none; 
            justify-content: center; 
        }
.control-nav::-webkit-scrollbar {
            display: none;
        }
.c-nav-link { 
            white-space: nowrap; 
            color: rgba(255,255,255,0.7); 
            font-size: 0.85rem; 
            font-weight: 700; 
            padding: 10px 20px; 
            border-radius: 50px; 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(255,255,255,0.1); 
            transition: all 0.3s ease; 
            cursor: pointer; 
        }
.c-nav-link:hover, .c-nav-link.active { 
            background: linear-gradient(135deg, var(--exotic-purple) 0%, var(--exotic-coral) 100%); 
            color: #fff; 
            border-color: transparent; 
            transform: translateY(-2px); 
            box-shadow: 0 5px 20px rgba(155, 89, 182, 0.5); 
        }
.smart-filters { 
            padding: 15px 0 25px; 
            border-bottom: 1px solid rgba(155, 89, 182, 0.1); 
            background: rgba(10, 14, 13, 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(255,255,255,0.1); 
            color: rgba(255,255,255,0.7); 
            padding: 8px 16px; 
            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, .sf-btn.active { 
            background: rgba(155, 89, 182, 0.2); 
            border-color: var(--exotic-purple); 
            color: var(--exotic-gold); 
        }
.category-section { 
            padding: 60px 0; 
        }
.exotic-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
            gap: 40px; 
            position: relative; 
            z-index: 2; 
        }
.exotic-card { 
            display: flex; 
            flex-direction: column; 
            background: rgba(255, 255, 255, 0.03); 
            border: 1px solid rgba(155, 89, 182, 0.3); 
            border-radius: 28px; 
            overflow: hidden; 
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
            position: relative; 
            cursor: pointer; 
        }
.exotic-card:hover { 
            transform: translateY(-15px) scale(1.02); 
            border-color: var(--exotic-purple); 
            box-shadow: 0 30px 60px rgba(155, 89, 182, 0.3), 0 0 80px rgba(255, 215, 0, 0.15); 
            background: rgba(255, 255, 255, 0.08); 
        }
.exotic-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(155, 89, 182, 0.2) 50%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 1;
        }
.exotic-card:hover::before {
            width: 500px;
            height: 500px;
            animation: sparkle 2s infinite;
        }
@keyframes sparkle {
            0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) rotate(0deg); }
            50% { opacity: 0.6; transform: translate(-50%, -50%) rotate(180deg); }
        }
.exotic-card.vip-card::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--exotic-rainbow);
            border-radius: 28px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
            background-size: 400% 400%;
            animation: rainbowBorder 3s linear infinite;
        }
.exotic-card.vip-card:hover::after {
            opacity: 1;
        }
@keyframes rainbowBorder {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.exotic-img-wrapper { 
            height: 340px; 
            position: relative; 
            overflow: hidden; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: rgba(0, 0, 0, 0.5); 
        }
.exotic-img { 
            width: 100%; 
            height: auto; 
            object-fit: cover; 
            transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
        }
.exotic-card:hover .exotic-img { 
            transform: scale(1.2) rotate(2deg); 
            filter: brightness(1.15) saturate(1.2);
        }
.qv-btn-trigger { 
            position: absolute; 
            top: 15px; 
            right: 15px; 
            width: 48px; 
            height: 48px; 
            background: rgba(0,0,0,0.8); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            z-index: 10; 
            backdrop-filter: blur(10px); 
            transition: 0.3s; 
            font-size: 1.4rem; 
            border: 2px solid var(--exotic-purple); 
            opacity: 1; 
            transform: translateY(-10px); 
        }
.exotic-card:hover .qv-btn-trigger { 
            opacity: 1; 
            transform: translateY(0) scale(1.1); 
        }
.qv-btn-trigger:hover { 
            background: var(--exotic-purple); 
            border-color: var(--exotic-gold); 
            color: #fff; 
            transform: scale(1.25) rotate(360deg); 
            box-shadow: 0 0 25px var(--exotic-purple);
        }
.exotic-content { 
            padding: 30px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            position: relative;
            z-index: 2;
        }
.exotic-name { 
            font-family:'Manrope',sans-serif; 
            font-size: 1.35rem; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 20px; 
            line-height: 1.3; 
        }
.exotic-stats {
            display: flex;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            gap: 12px;
            margin-bottom: 20px;
            padding: 18px;
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(80, 200, 120, 0.05) 100%);
            border-radius: 16px;
            border: 1px solid rgba(155, 89, 182, 0.2);
        }
.exotic-stats:hover {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
            border-color: var(--exotic-purple);
            box-shadow: 0 0 30px rgba(155, 89, 182, 0.3);
            transform: translateY(-3px);
        }
.exotic-stat { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px; 
            flex: 1; 
        }
.exotic-stat-icon {
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 1.4rem;
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
        }
.exotic-stats:hover .exotic-stat-icon {
            transform: scale(1.3);
            filter: drop-shadow(0 0 15px var(--exotic-gold));
        }
.exotic-stats:hover .exotic-stat:nth-child(1) .exotic-stat-icon {
            animation: magicFloat 1s infinite;
        }
.exotic-stats:hover .exotic-stat:nth-child(2) .exotic-stat-icon {
            animation: beautySpin 1.2s infinite;
        }
.exotic-stats:hover .exotic-stat:nth-child(3) .exotic-stat-icon {
            animation: careWiggle 1s infinite;
        }
.dot {
            transition: 0.3s;
        }
.exotic-stats:hover .dot.fill {
            animation: neonMagic 1.2s infinite alternate;
        }
.exotic-stat-dots .dot:nth-child(1) { animation-delay: 0.1s; }
.exotic-stat-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.exotic-stat-dots .dot:nth-child(3) { animation-delay: 0.3s; }
.exotic-stat-dots .dot:nth-child(4) { animation-delay: 0.4s; }
.exotic-stat-dots .dot:nth-child(5) { animation-delay: 0.5s; }
@keyframes neonMagic {
            0% { 
                transform: scale(1); 
                opacity: 1; 
                box-shadow: 0 0 8px var(--exotic-gold);
            }
            100% { 
                transform: scale(1.5); 
                opacity: 0.7; 
                box-shadow: 0 0 25px var(--exotic-purple);
                background: var(--exotic-gold);
            }
        }
@keyframes magicFloat {
            0%, 100% { transform: translateY(0) scale(1.3); }
            50% { transform: translateY(-12px) scale(1.3); }
        }
@keyframes beautySpin {
            0%, 100% { transform: rotate(0deg) scale(1.3); }
            50% { transform: rotate(180deg) scale(1.5); }
        }
@keyframes careWiggle {
            0%, 100% { transform: rotate(0deg) scale(1.3); }
            25% { transform: rotate(15deg) scale(1.3); }
            75% { transform: rotate(-15deg) scale(1.3); }
        }
.exotic-stat-dots { 
            display: flex; 
            gap: 5px; 
        }
.dot { 
            width: 8px; 
            height: 8px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.15); 
            transition: 0.3s; 
        }
.dot.fill { 
            background: var(--exotic-gold); 
            box-shadow: 0 0 10px var(--exotic-gold); 
        }
.exotic-stat-val { 
            font-size: 0.65rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            font-weight: 700; 
            margin-top: 3px; 
        }
.exotic-footer { 
            margin-top: auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-top: 1px solid rgba(155, 89, 182, 0.2); 
            padding-top: 20px; 
        }
.exotic-price-label { 
            font-size: 0.7rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            display: block; 
        }
.exotic-price { 
            font-size: 1.4rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--exotic-purple) 0%, var(--exotic-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.exotic-arrow { 
            width: 42px; 
            height: 42px; 
            border-radius: 50%; 
            background: rgba(155, 89, 182, 0.15); 
            border: 2px solid var(--exotic-purple); 
            color: var(--exotic-gold); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
            cursor: pointer; 
            font-size: 1.2rem;
        }
.exotic-card:hover .exotic-arrow { 
            color: #fff; 
            background: var(--exotic-purple); 
            transform: rotate(-45deg) scale(1.1); 
            box-shadow: 0 0 20px var(--exotic-purple);
        }
.btn-show-more { 
            background: transparent; 
            border: 2px solid rgba(155, 89, 182, 0.4); 
            color: var(--exotic-gold); 
            padding: 16px 45px; 
            border-radius: 50px; 
            font-size: 1rem; 
            font-weight: 700; 
            cursor: pointer; 
            transition: 0.4s; 
            display: inline-block; 
            margin-top: 50px; 
        }
.btn-show-more:hover { 
            border-color: var(--exotic-purple); 
            background: rgba(155, 89, 182, 0.15);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
        }
.smart-badge-container {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 5;
        }
.s-badge {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            color: white;
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(155,89,182,0.4);
            transform: translateX(-10px);
            opacity: 0;
            transition: 0.4s ease;
        }
.exotic-card .s-badge { opacity: 1; transform: translateX(0); }
.s-badge.mega-rare { 
            border-color: var(--exotic-gold); 
            color: var(--exotic-gold); 
            animation: megaRareGlow 2s infinite;
        }
@keyframes megaRareGlow {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
            50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8); }
        }
.s-badge.rare { border-color: var(--exotic-coral); color: var(--exotic-coral); }
.s-badge.exotic { border-color: var(--exotic-purple); color: var(--exotic-purple); }
.s-badge.popular { border-color: var(--exotic-emerald); color: var(--exotic-emerald); }
.s-badge.vip { 
            background: var(--exotic-rainbow); 
            border: none; 
            color: white;
            font-weight: 900;
        }
.compare-section { padding: 100px 0; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; margin-top: 50px; }
.comp-card { padding: 45px; border-radius: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 20px; }
.comp-wild { background: rgba(255, 50, 50, 0.05); border: 1px solid rgba(255, 50, 50, 0.2); }
.comp-our { 
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(80, 200, 120, 0.05) 100%); 
            border: 2px solid var(--exotic-purple); 
            box-shadow: 0 0 50px rgba(155, 89, 182, 0.2); 
        }
.comp-head { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.comp-title { font-family: 'Playfair Display'; font-size: 1.9rem; font-weight: 700; color: white; }
.comp-icon { font-size: 2.2rem; }
.comp-list li { display: flex; gap: 15px; margin-bottom: 15px; color: rgba(255,255,255,0.8); font-size: 1rem; }
.comp-list li i { font-style: normal; font-weight: bold; min-width: 20px; }
.check { color: var(--exotic-gold); }
.cross { color: #ff4d4d; }
@media (max-width: 768px) { 
            .compare-grid { grid-template-columns: 1fr; } 
            .comp-card { padding: 30px 20px; } 
        }
.quiz-wow-section {
            background: linear-gradient(145deg, #1a1f1d 0%, #0a0e0d 100%);
            border-radius: 35px;
            padding: 70px 50px;
            border: 1px solid rgba(155, 89, 182, 0.3);
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0,0,0,0.6);
            min-height: 550px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
.quiz-wow-section::before {
            content: '🦜';
            position: absolute;
            top: 5%;
            right: 5%;
            font-size: 14rem;
            opacity: 0.04;
            animation: rotateExotic 25s linear infinite;
            pointer-events: none;
        }
@keyframes rotateExotic { 
            0% { transform: rotate(0deg); } 
            100% { transform: rotate(360deg); } 
        }
.quiz-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            background: var(--exotic-rainbow);
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 15px var(--exotic-purple);
            background-size: 200% 200%;
            animation: rainbowProgress 3s linear infinite;
        }
@keyframes rainbowProgress {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.quiz-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 850px;
            margin: 0 auto;
        }
.q-title {
            font-family: 'Playfair Display';
            font-size: 2.7rem;
            margin-bottom: 18px;
            color: white;
        }
.q-subtitle {
            color: rgba(255,255,255,0.65);
            margin-bottom: 45px;
            font-size: 1.15rem;
        }
.q-options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }
.q-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(155,89,182,0.3);
            padding: 35px 25px;
            border-radius: 24px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
.q-card:hover {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(80, 200, 120, 0.1) 100%);
            border-color: var(--exotic-purple);
            transform: translateY(-12px) scale(1.05);
            box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
        }
.q-card-icon { 
            font-size: 3.5rem; 
            margin-bottom: 10px;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
        }
.q-card-text { font-weight: 700; font-size: 1.15rem; color: white; }
.q-card-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.quiz-loader {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
.loader-circle {
            width: 90px;
            height: 90px;
            border: 6px solid rgba(255,255,255,0.1);
            border-top: 6px solid var(--exotic-purple);
            border-right: 6px solid var(--exotic-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 25px;
        }
@keyframes spin { 
            0% { transform: rotate(0deg); } 
            100% { transform: rotate(360deg); } 
        }
.quiz-result { display: none; animation: fadeIn 0.9s ease; }
.res-img { 
            width: 240px; 
            height: 240px; 
            object-fit: cover;
            object-position: center 20%;
            border-radius: 50%; 
            border: 5px solid var(--exotic-gold); 
            margin: 0 auto 30px; 
            box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
            background-color: #000;
        }
.quiz-form-box {
            background: rgba(255,255,255,0.05); 
            padding: 35px; 
            border-radius: 24px; 
            max-width: 500px; 
            margin: 0 auto;
            border: 1px solid rgba(155,89,182,0.3);
        }
.quiz-input {
            width: 100%;
            padding: 16px;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(155,89,182,0.4);
            border-radius: 14px;
            color: white;
            margin-bottom: 12px;
            font-size: 1rem;
            text-align: center;
            outline: none;
            transition: 0.3s;
        }
.quiz-input:focus {
            border-color: var(--exotic-purple);
            background: rgba(0,0,0,0.6);
            box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
        }
.res-match { 
            color: var(--exotic-gold); 
            font-weight: 800; 
            text-transform: uppercase; 
            letter-spacing: 3px; 
            margin-bottom: 12px; 
            display: block;
            font-size: 1.1rem;
        }
.quiz-step { display: none; animation: slideIn 0.5s ease; }
.quiz-step.active { display: block; }
@keyframes slideIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
.btn-retry {
            background: rgba(155, 89, 182, 0.15);
            border: 1px solid rgba(155, 89, 182, 0.4);
            color: var(--exotic-gold);
            padding: 14px 32px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(5px);
            margin-bottom: 30px;
        }
.btn-retry:hover {
            background: rgba(155, 89, 182, 0.25);
            border-color: var(--exotic-purple);
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(155, 89, 182, 0.4);
        }
.btn-retry:hover .retry-icon {
            transform: rotate(360deg);
        }
.retry-icon {
            display: inline-block;
            transition: transform 0.6s ease;
            font-size: 1.2rem;
            line-height: 1;
        }
@media (max-width: 768px) {
            .q-options-grid { grid-template-columns: 1fr; }
            .q-card { flex-direction: row; text-align: left; padding: 25px; }
            .q-card-icon { margin-bottom: 0; margin-right: 15px; font-size: 2.5rem; }
        }
.legality-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #141a18 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(155, 89, 182, 0.2);
        }
.legality-section::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: radial-gradient(circle at 80% 50%, rgba(155, 89, 182, 0.08), transparent 60%);
            pointer-events: none;
        }
.legality-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.legality-title {
            font-family: 'Playfair Display';
            font-size: clamp(2.8rem, 5.5vw, 4rem);
            color: white;
            margin-bottom: 25px;
            line-height: 1.1;
        }
.doc-item {
            display: flex;
            gap: 25px;
            padding: 28px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(155, 89, 182, 0.15);
            border-radius: 24px;
            margin-bottom: 18px;
            transition: 0.4s;
            cursor: default;
        }
.doc-item:hover {
            background: rgba(155, 89, 182, 0.12);
            border-color: var(--exotic-purple);
            transform: translateX(15px);
            box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
        }
.doc-icon {
            font-size: 2.2rem;
            color: var(--exotic-gold);
            background: rgba(155, 89, 182, 0.15);
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            flex-shrink: 0;
        }
.animal-card-legal {
            position: relative;
            border-radius: 45px;
            overflow: hidden;
            border: 1px solid rgba(155, 89, 182, 0.4);
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7);
            transform: rotate(3deg);
            transition: 0.6s;
        }
.animal-card-legal:hover {
            transform: rotate(0deg) scale(1.03);
            border-color: var(--exotic-purple);
            box-shadow: 0 40px 100px rgba(155, 89, 182, 0.4);
        }
.animal-card-legal img {
            width: 100%;
            height: auto;
            display: block;
        }
@media (max-width: 900px) {
            .legality-grid { grid-template-columns: 1fr; }
            .animal-card-legal { display: none; }
        }
.seo-catalog-section { 
            padding: 100px 0; 
            margin-top: 150px; 
            background: radial-gradient(circle at 50% 10%, #1a1f1d 0%, #050806 100%); 
            position: relative; 
            overflow: hidden; 
            border-top: 1px solid rgba(155, 89, 182, 0.15); 
            border-bottom: 1px solid rgba(155, 89, 182, 0.15); 
        }
.seo-bg-grid { 
            position: absolute; 
            width: 100%; 
            height: 100%; 
            top: 0; 
            left: 0; 
            background-image: linear-gradient(rgba(155, 89, 182, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(155, 89, 182, 0.04) 1px, transparent 1px); 
            background-size: 60px 60px; 
            opacity: 0.6; 
            pointer-events: none; 
        }
.seo-content-wrapper { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 70px; 
            position: relative; 
            z-index: 2; 
        }
.seo-text-block { 
            max-width: 950px; 
            margin: 0 auto; 
            text-align: left; 
        }
.seo-text-block h2 { 
            font-family:'Manrope',sans-serif; 
            font-size: clamp(2.2rem, 4.5vw, 3.8rem); 
            color: white; 
            margin-bottom: 35px; 
            line-height: 1.15; 
        }
.seo-text-block h2 span { 
            background: linear-gradient(135deg, var(--exotic-purple) 0%, var(--exotic-gold) 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
        }
.seo-description { 
            color: rgba(255, 255, 255, 0.8); 
            font-size: 1.08rem; 
            line-height: 1.9; 
            margin-bottom: 35px; 
        }
.seo-description p { 
            margin-bottom: 22px; 
        }
.seo-description ul { 
            list-style: none; 
            margin: 25px 0; 
            padding-left: 10px; 
            color: rgba(255,255,255,0.9); 
        }
.seo-description li { 
            margin-bottom: 12px; 
            display: flex; 
            align-items: center; 
            gap: 12px; 
        }
.seo-description strong { 
            color: var(--exotic-gold); 
            font-weight: 600; 
        }
.trust-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 12px; 
            background: rgba(155, 89, 182, 0.15); 
            border: 1px solid var(--exotic-purple); 
            padding: 12px 24px; 
            border-radius: 50px; 
            color: var(--exotic-gold); 
            font-size: 0.88rem; 
            font-weight: 700; 
            margin-bottom: 35px; 
            box-shadow: 0 0 25px rgba(155, 89, 182, 0.3); 
        }
.faq-glass { 
            max-width: 950px; 
            width: 100%; 
            margin-bottom: 35px; 
            margin: 0 auto; 
            background: rgba(255, 255, 255, 0.03); 
            backdrop-filter: blur(15px); 
            border: 1px solid rgba(155, 89, 182, 0.15); 
            border-radius: 35px; 
            padding: 50px 60px; 
            box-shadow: 0 35px 70px rgba(0,0,0,0.5); 
        }
.faq-glass h3 { 
            font-family:'Manrope',sans-serif; 
            color: white; 
            font-size: 2.3rem; 
            margin-bottom: 35px; 
            text-align: center; 
        }
.faq-row { 
            border-bottom: 1px solid rgba(155, 89, 182, 0.15); 
            padding: 22px 0; 
        }
.faq-row:last-child { 
            border-bottom: none; 
        }
.faq-q { 
            font-weight: 700; 
            color: white; 
            font-size: 1.15rem; 
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            transition: 0.3s; 
        }
.faq-q:hover { 
            color: var(--exotic-gold); 
        }
.faq-a { 
            color: rgba(255, 255, 255, 0.65); 
            font-size: 0.98rem; 
            line-height: 1.7; 
            max-height: 0; 
            overflow: hidden; 
            transition: max-height 0.5s ease, padding 0.5s ease; 
        }
.faq-row.active .faq-a { 
            max-height: 1200px; 
            padding-top: 22px; 
            opacity: 1; 
        }
.faq-row.active .faq-q { 
            color: var(--exotic-gold); 
        }
.plus-icon { 
            transition: 0.4s; 
            font-size: 1.5rem; 
        }
.faq-row.active .plus-icon { 
            transform: rotate(45deg); 
            color: var(--exotic-gold); 
        }
.seo-tags { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 12px; 
            margin-top: 45px; 
            padding-top: 35px; 
            border-top: 1px solid rgba(155,89,182,0.08); 
        }
.seo-tag { 
            background: rgba(155,89,182,0.08); 
            padding: 10px 18px; 
            border-radius: 12px; 
            font-size: 0.82rem; 
            color: rgba(155,89,182,0.7); 
            border: 1px solid rgba(155,89,182,0.15); 
            transition: 0.3s; 
        }
.seo-tag:hover { 
            color: var(--exotic-gold); 
            border-color: var(--exotic-purple); 
            background: rgba(155,89,182,0.15);
        }
@media (max-width: 768px) { 
            .seo-catalog-section { 
                margin-top: 70px; 
                margin-bottom: 70px; 
                padding: 60px 0; 
            } 
            .faq-glass { 
                padding: 35px 25px; 
            } 
            .seo-content-wrapper { 
                gap: 50px; 
            }
        }
footer { 
            padding: 120px 0 50px; 
            background: rgba(10, 14, 13, 0.8); 
            border-top: 1px solid var(--border); 
            margin-top: auto; 
            position: relative; 
            z-index: 10; 
        }
.footer-grid { 
            display: grid; 
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
            gap: 70px; 
            margin-bottom: 90px; 
        }
.footer-col h4 { 
            color: var(--primary); 
            margin-bottom: 35px; 
            text-transform: uppercase; 
            font-size: 0.95rem; 
            letter-spacing: 2px; 
            font-weight: 800; 
        }
.footer-col li { 
            margin-bottom: 18px; 
        }
.footer-col a:hover { 
            color: var(--primary); 
            padding-left: 6px; 
        }
.f-contact { 
            display: flex; 
            align-items: center; 
            gap: 18px; 
            margin-bottom: 22px; 
        }
.f-contact i { 
            color: var(--accent); 
            font-size: 1.3rem; 
            font-style: normal; 
        }
.footer-bottom-row { 
            border-top: 1px solid var(--border); 
            padding-top: 45px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            font-size: 0.85rem; 
            color: var(--text-soft); 
        }
@media (max-width: 1024px) { 
            .footer-grid { 
                grid-template-columns: 1fr; 
                gap: 45px; 
            } 
            
            .footer-bottom-row { 
                flex-direction: column; 
                gap: 25px; 
                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.4s ease; 
        }
.modal-box, .qv-box { 
            position: relative !important; 
            background: #111; 
            border: 1px solid var(--exotic-purple); 
            border-radius: 24px; 
            width: 950px; 
            max-width: 100%; 
            max-height: 92vh; 
            display: flex; 
            flex-direction: column; 
            overflow: hidden; 
            animation: zoomIn 0.4s ease; 
            box-shadow: 0 25px 60px rgba(155, 89, 182, 0.4); 
        }
@keyframes zoomIn { 
            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(--exotic-purple) !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(--exotic-purple) !important;
            color: #000 !important;
            transform: rotate(90deg);
            box-shadow: 0 0 25px var(--exotic-purple);
        }
.qv-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            height: 600px; 
            overflow: hidden; 
        }
.qv-image { 
            background: black; 
            width: 100%; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border-right: 1px solid rgba(155,89,182,0.3); 
        }
.qv-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
.qv-scroll-area { 
            padding: 45px 45px 110px 45px; 
            overflow-y: auto; 
            display: flex; 
            flex-direction: column; 
        }
.qv-fixed-footer { 
            position: absolute; 
            bottom: 0; 
            right: 0; 
            width: 50%; 
            padding: 22px 45px; 
            background: rgba(17, 17, 17, 0.96); 
            border-top: 1px solid rgba(155,89,182,0.3); 
            display: flex; 
            gap: 18px; 
            backdrop-filter: blur(8px); 
        }
.qv-header h2 { 
            font-family: 'Playfair Display'; 
            font-size: 2.4rem; 
            color: var(--exotic-gold); 
            margin-bottom: 28px; 
            line-height: 1; 
        }
.qv-price { 
            font-size: 2.7rem; 
            font-weight: 800; 
            color: var(--orange); 
            margin-bottom: 22px; 
            font-family: 'Manrope'; 
        }
.qv-btn-order {
            padding: 16px; 
            background: linear-gradient(135deg, var(--orange), #E08719); 
            border: none; 
            border-radius: 14px; 
            color: white; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            transition: var(--transition);
        }
.qv-btn-order:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(243, 146, 33, 0.6);
        }
.qv-phone { 
            flex: 1; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--exotic-purple); 
            border-radius: 14px; 
            color: var(--exotic-gold); 
            font-weight: 700; 
            text-decoration: none; 
            transition: var(--transition);
        }
.qv-phone:hover {
            background: var(--exotic-purple);
            color: #fff;
        }
.catalog-modal { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 11000; 
            background: rgba(10, 14, 13, 0.98); 
            backdrop-filter: blur(20px); 
            flex-direction: column; 
            align-items: center; 
            justify-content: flex-start; 
            overflow-y: auto; 
            opacity: 0; 
            transition: opacity 0.4s 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(155, 89, 182, 0.15); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--exotic-purple); 
        }
.cat-modal-close:hover {
            background: var(--exotic-purple);
            color: #000;
            transform: rotate(90deg);
            box-shadow: 0 0 30px var(--exotic-purple);
        }
.cat-modal-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
            gap: 25px; 
            width: 100%; 
            max-width: 1100px; 
            padding: 50px 25px 120px 25px; 
        }
.cat-modal-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-align: center; 
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(26, 31, 29, 0.6) 100%); 
            padding: 30px 18px; 
            border-radius: 24px; 
            border: 1px solid rgba(155, 89, 182, 0.25); 
            transition: all 0.4s ease; 
            cursor: pointer; 
            text-decoration: none; 
        }
.cat-modal-item:hover { 
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.25) 0%, rgba(243, 146, 33, 0.15) 100%); 
            border-color: var(--exotic-purple); 
            transform: translateY(-8px) scale(1.08); 
            box-shadow: 0 15px 35px rgba(155, 89, 182, 0.3);
        }
.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.4s ease; 
        }
.mobile-nav-box { 
            position: absolute; 
            top: 0; 
            right: -100%; 
            width: 80%; 
            max-width: 350px; 
            height: 100%; 
            background: linear-gradient(180deg, #0f1412 0%, #1a1f1d 100%); 
            border-left: 2px solid var(--exotic-purple); 
            padding: 30px 25px; 
            display: flex; 
            flex-direction: column; 
            transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: -15px 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(155, 89, 182, 0.25); 
            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: 22px; 
        }
.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(155, 89, 182, 0.15); 
            padding: 18px; 
            border-radius: 14px; 
            font-size: 0.78rem; 
            text-align: center; 
            color: var(--exotic-gold); 
            border: 1px solid var(--exotic-purple); 
        }
.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.green { 
            background: linear-gradient(135deg, #7BBF6A, #42C4C1); 
            color: white; 
        }
.btn-hero.orange { 
            background: linear-gradient(135deg, var(--orange) 0%, #42c4c1 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: 16px; 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(155,89,182,0.3); 
            border-radius: 50px; 
            color: white; 
            margin-bottom: 16px; 
            outline: none; 
            transition: var(--transition);
        }
.form-input:focus { 
            border-color: var(--exotic-purple); 
            background: rgba(255,255,255,0.1);
            box-shadow: 0 0 20px rgba(155, 89, 182, 0.2);
        }
@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: 28px 28px 0 0 !important; 
                border: none !important; 
                border-top: 1px solid var(--exotic-purple) !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: 38vh; 
                min-height: 280px; 
                border-bottom: 1px solid rgba(155,89,182,0.3); 
                border-right: none;
            }
            
            .qv-image img { 
                padding: 18px; 
                object-fit: contain !important; 
            }
            
            .qv-scroll-area { 
                flex-grow: 1; 
                padding: 25px 25px 0 25px; 
            }
            
            .qv-fixed-footer { 
                position: relative; 
                width: 100%; 
                padding: 18px 25px 30px 25px; 
                flex-direction: column; 
                gap: 12px; 
            }
            
            .exotic-grid {
                grid-template-columns: 1fr;
            }
            
            .catalog-control-bar {
                padding: 12px 0;
            }
            
            .c-nav-link {
                padding: 9px 16px;
                font-size: 0.82rem;
            }
            
            .control-nav,
            .sf-scroll {
                justify-content: flex-start;
                padding-left: 18px;
            }
        }
@media (max-width: 768px) {
            .cat-modal-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.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); }