﻿: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);
        }
.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-catalog { 
            background: linear-gradient(180deg, #0a0e0d 0%, #141a18 100%); 
            padding: 60px 0 80px; 
            position: relative; 
            overflow: hidden; 
            text-align: center; 
            min-height: 40vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
.hero-catalog::before { 
            content: ''; 
            position: absolute; 
            top: -150px; 
            right: -150px; 
            width: 800px; 
            height: 800px; 
            background: radial-gradient(circle, rgba(66, 196, 193, 0.08) 0%, transparent 70%); 
            filter: blur(100px); 
            pointer-events: none; 
            animation: pulse 10s ease-in-out infinite; 
        }
@keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }
.hero-badge { 
            display: inline-flex; 
            align-items: center; 
            justify-content: center; 
            background: linear-gradient(135deg, var(--orange) 0%, #E08719 100%); 
            color: white; 
            padding: 10px 20px; 
            border-radius: 8px; 
            font-weight: 800; 
            font-size: 0.75rem; 
            margin-bottom: 25px; 
            text-transform: uppercase; 
            box-shadow: 0 5px 20px rgba(243, 146, 33, 0.4); 
        }
.hero-title{ 
            font-family:'Manrope',sans-serif; 
            font-size: clamp(2.5rem, 6vw, 5rem); 
            font-weight:800; 
            line-height: 1.2; 
            margin-bottom: 20px; 
        }
.gradient-text { 
            background: linear-gradient(135deg, #42C4C1 0%, #7BBF6A 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
        }
.hero-subtitle { 
            font-size: clamp(1rem, 2vw, 1.2rem); 
            color: rgba(255,255,255,0.6); 
            max-width: 900px; 
            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(--primary); 
            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(--primary) 0%, var(--green) 100%); 
            color: #000; 
            border-color: transparent; 
            transform: translateY(-2px); 
            box-shadow: 0 5px 15px rgba(66, 196, 193, 0.4); 
        }
.smart-filters { 
            padding: 15px 0 25px; 
            border-bottom: 1px solid rgba(66, 196, 193, 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(66, 196, 193, 0.15); 
            border-color: var(--primary); 
            color: var(--primary); 
        }
.category-section { 
            padding: 60px 0; 
        }
.parrot-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
            gap: 30px; 
            position: relative; 
            z-index: 2; 
        }
.p-card { 
            display: flex; 
            flex-direction: column; 
            background: rgba(255, 255, 255, 0.03); 
            border: 1px solid rgba(255, 255, 255, 0.1); 
            border-radius: 20px; 
            overflow: hidden; 
            transition: all 0.4s; 
            position: relative; 
            cursor: pointer; 
        }
.p-card:hover { 
            transform: translateY(-10px); 
            border-color: #42C4C1; 
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); 
            background: rgba(255, 255, 255, 0.06); 
        }
.p-img-wrapper { 
            height: 280px; 
            position: relative; 
            overflow: hidden; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: rgba(0, 0, 0, 0.3); 
        }
.p-img { 
            width: 80%; 
            max-width: 80%; 
            height: auto; 
            object-fit: contain; 
            transition: 0.6s; 
        }
.p-card:hover .p-img { 
            transform: scale(1.1); 
        }
.qv-btn-trigger { 
            position: absolute; 
            top: 15px; 
            right: 15px; 
            width: 40px; 
            height: 40px; 
            background: rgba(0,0,0,0.7); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            z-index: 10; 
            backdrop-filter: blur(8px); 
            transition: 0.3s; 
            font-size: 1.2rem; 
            border: 2px solid rgba(66, 196, 193, 0.3); 
            opacity: 1; 
            transform: translateY(-10px); 
        }
.p-card:hover .qv-btn-trigger { 
            opacity: 1; 
            transform: translateY(0); 
        }
.qv-btn-trigger:hover { 
            background: var(--primary); 
            border-color: var(--primary); 
            color: #000; 
            transform: scale(1.1); 
        }
.p-content { 
            padding: 25px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
        }
.p-name { 
            font-family: 'Manrope', sans-serif; 
            font-size: 1.1rem; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 15px; 
            line-height: 1.3; 
        }
.p-stats {
	display: flex;
    position: relative;
    overflow: hidden; 
    transition: all 0.4s ease;
}
.p-stats:hover {
    background: rgba(66, 196, 193, 0.08); 
    border-color: var(--primary); 
    box-shadow: 0 0 20px rgba(66, 196, 193, 0.15); 
    transform: translateY(-2px);
}
.p-stat { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 5px; 
            flex: 1; 
        }
.p-stat-icon {
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-stats:hover .p-stat-icon {
    transform: scale(1.2);
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}
.p-stats:hover .p-stat:nth-child(1) .p-stat-icon {
    animation: shake 0.5s infinite;
}
.p-stats:hover .p-stat:nth-child(2) .p-stat-icon {
    animation: pulse-brain 1s infinite;
}
.p-stats:hover .p-stat:nth-child(3) .p-stat-icon {
    animation: sound-wave 0.8s infinite;
}
.dot {
    transition: 0.3s;
}
.p-stats:hover .dot.fill {
    animation: neonWave 1s infinite alternate;
}
.p-stat-dots .dot:nth-child(1) { animation-delay: 0.1s; }
.p-stat-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.p-stat-dots .dot:nth-child(3) { animation-delay: 0.3s; }
.p-stat-dots .dot:nth-child(4) { animation-delay: 0.4s; }
.p-stat-dots .dot:nth-child(5) { animation-delay: 0.5s; }
@keyframes neonWave {
    0% { 
        transform: scale(1); 
        opacity: 1; 
        box-shadow: 0 0 5px var(--primary);
    }
    100% { 
        transform: scale(1.3); 
        opacity: 0.6; 
        box-shadow: 0 0 15px var(--primary);
        background: #fff; 
    }
}
@keyframes shake {
    0% { transform: rotate(0deg) scale(1.2); }
    25% { transform: rotate(10deg) scale(1.2); }
    50% { transform: rotate(0deg) scale(1.2); }
    75% { transform: rotate(-10deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1.2); }
}
@keyframes pulse-brain {
    0% { transform: scale(1.2); }
    50% { transform: scale(1.4); filter: brightness(1.5); }
    100% { transform: scale(1.2); }
}
@keyframes sound-wave {
    0% { transform: scale(1.2) skewX(0deg); }
    25% { transform: scale(1.2) skewX(-5deg); }
    75% { transform: scale(1.2) skewX(5deg); }
    100% { transform: scale(1.2) skewX(0deg); }
}
.p-stat-dots { 
            display: flex; 
            gap: 3px; 
        }
.dot { 
            width: 6px; 
            height: 6px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.15); 
            transition: 0.3s; 
        }
.dot.fill { 
            background: var(--primary); 
            box-shadow: 0 0 5px var(--primary); 
        }
.p-stat-val { 
            font-size: 0.65rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            font-weight: 700; 
            margin-top: 2px; 
        }
.p-footer { 
            margin-top: auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-top: 1px solid rgba(255, 255, 255, 0.1); 
            padding-top: 15px; 
        }
.p-price-label { 
            font-size: 0.7rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            display: block; 
        }
.p-price { 
            font-size: 1.2rem; 
            font-weight: 800; 
            color: #42C4C1; 
        }
.p-arrow { 
            width: 35px; 
            height: 35px; 
            border-radius: 50%; 
            background: rgba(66, 196, 193, 0.1); 
            border: 1px solid #42C4C1; 
            color: #42C4C1; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.3s; 
            cursor: pointer; 
        }
.p-card:hover .p-arrow { 
            color: #000; 
            background: var(--primary); 
            transform: rotate(-45deg); 
        }
.btn-show-more { 
            background: transparent; 
            border: 2px solid rgba(255, 255, 255, 0.2); 
            color: #fff; 
            padding: 15px 40px; 
            border-radius: 50px; 
            font-size: 1rem; 
            font-weight: 700; 
            cursor: pointer; 
            transition: 0.3s; 
            display: inline-block; 
            margin-top: 40px; 
        }
.btn-show-more:hover { 
            border-color: #42C4C1; 
            color: #42C4C1; 
        }
.compare-section { padding: 80px 0; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.comp-card { padding: 40px; border-radius: 24px; 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: rgba(66, 196, 193, 0.05); border: 2px solid var(--primary); box-shadow: 0 0 40px rgba(66, 196, 193, 0.1); }
.comp-head { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.comp-title { font-family: 'Playfair Display'; font-size: 1.8rem; font-weight: 700; color: white; }
.comp-icon { font-size: 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(--primary); }
.cross { color: #ff4d4d; }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } .comp-card { padding: 30px 20px; } }
.promo-section { margin: 80px 0; padding: 60px 60px; position: relative; overflow: hidden; background: linear-gradient(135deg, #1a1f1d 0%, #0a0e0d 100%); border-radius: 30px; border: 1px solid rgba(243, 146, 33, 0.3); }
.promo-content { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; gap: 40px; }
.promo-text { flex: 1; }
.promo-tag { background: var(--orange); color: black; padding: 5px 12px; border-radius: 6px; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; display: inline-block; margin-bottom: 15px; }
.promo-title { font-family: 'Playfair Display'; font-size: 2.5rem; color: white; margin-bottom: 15px; line-height: 1.1; }
.promo-desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; }
.promo-img { width: 400px; height: 300px; object-fit: contain; transform: rotate(-5deg); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
.promo-glow { position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(243, 146, 33, 0.2) 0%, transparent 70%); top: 50%; right: -100px; transform: translateY(-50%); pointer-events: none; }
@media (max-width: 1024px) { .promo-content { flex-direction: column; text-align: center; } .promo-img { width: 80%; height: auto; transform: rotate(0); } .promo-section { margin: 60px 15px; border-radius: 20px; } }
.quiz-section { 
            background: rgba(255,255,255,0.03); 
            border-radius: 30px; 
            padding: 60px; 
            border: 1px solid rgba(255,255,255,0.1); 
            text-align: center; 
        }
.quiz-step { 
            display: none; 
        }
.quiz-step.active { 
            display: block; 
            animation: fadeIn 0.5s; 
        }
.quiz-opt { 
            background: rgba(0,0,0,0.3); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid rgba(255,255,255,0.1); 
            cursor: pointer; 
            transition: 0.3s; 
            margin: 10px; 
            display: inline-block; 
            width: 200px; 
        }
.quiz-opt:hover { 
            background: var(--primary); 
            color: black; 
        }
@media (max-width: 768px) {
            .quiz-section {
                padding: 30px 20px;
            }
            
            .quiz-opt {
                width: 100%;
                margin: 10px 0;
            }
        }
.seo-catalog-section { padding: 80px 0; margin-top: 120px; background: radial-gradient(circle at 50% 10%, #1a1f1d 0%, #050806 100%); position: relative; overflow: hidden; border-top: 1px solid rgba(66, 196, 193, 0.1); border-bottom: 1px solid rgba(66, 196, 193, 0.1); }
.seo-bg-grid { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.5; pointer-events: none; }
.seo-content-wrapper { display: grid; grid-template-columns: 1fr; gap: 60px; position: relative; z-index: 2; }
.seo-text-block { max-width: 900px; margin: 0 auto; text-align: left; }
.seo-text-block h2 { font-family:'Manrope',sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); color: white; margin-bottom: 30px; line-height: 1.1; }
.seo-text-block h2 span { background: linear-gradient(135deg, var(--primary) 0%, #ffffff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.seo-description { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; line-height: 1.8; margin-bottom: 30px; }
.seo-description p { margin-bottom: 20px; }
.seo-description ul { list-style: none; margin: 20px 0; padding-left: 10px; color: rgba(255,255,255,0.9); }
.seo-description li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.seo-description strong { color: var(--primary); font-weight: 600; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(66, 196, 193, 0.1); border: 1px solid var(--primary); padding: 10px 20px; border-radius: 50px; color: var(--primary); font-size: 0.85rem; font-weight: 700; margin-bottom: 30px; box-shadow: 0 0 20px rgba(66, 196, 193, 0.2); }
.faq-glass { max-width: 900px; width: 100%; margin-bottom: 30px; margin: 0 auto; background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 30px; padding: 40px 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.faq-glass h3 { font-family:'Manrope',sans-serif; color: white; font-size: 2rem; margin-bottom: 30px; text-align: center; }
.faq-row { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; }
.faq-row:last-child { border-bottom: none; }
.faq-q { font-weight: 700; color: white; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-q:hover { color: var(--orange); }
.faq-a { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-row.active .faq-a { max-height: 1000px; padding-top: 20px; opacity: 1; }
.faq-row.active .faq-q { color: var(--primary); }
.plus-icon { transition: 0.3s; font-size: 1.4rem; }
.faq-row.active .plus-icon { transform: rotate(45deg); color: var(--primary); }
.seo-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.seo-tag { background: rgba(255,255,255,0.03); padding: 8px 16px; border-radius: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.seo-tag:hover { color: var(--primary); border-color: var(--primary); }
@media (max-width: 768px) { 
            .seo-catalog-section { margin-top: 60px; margin-bottom: 60px; padding: 50px 0; } 
            .faq-glass { padding: 30px 20px; } 
            .seo-content-wrapper { gap: 40px; }
        }
.modal-box, .qv-box { 
            position: relative !important; 
            background: #111; 
            border: 1px solid var(--primary); 
            border-radius: 20px; 
            width: 900px; 
            max-width: 100%; 
            max-height: 90vh; 
            display: flex; 
            flex-direction: column; 
            overflow: hidden; 
            animation: zoomIn 0.3s ease; 
            box-shadow: 0 20px 50px rgba(0,0,0,0.8); 
        }
@keyframes zoomIn { 
            from { 
                opacity: 0; 
                transform: scale(0.95); 
            } 
            to { 
                opacity: 1; 
                transform: scale(1); 
            } 
        }
.form-box-styled { 
            max-width: 500px; 
            padding: 40px; 
        }
.modal-close { 
            position: absolute !important; 
            top: 20px !important; 
            right: 20px !important; 
            width: 44px !important; 
            height: 44px !important; 
            background: rgba(0,0,0,0.5) !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: #000 !important;
            transform: rotate(90deg);
        }
.qv-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            height: 550px; 
            overflow: hidden; 
        }
.qv-image { 
            background: black; 
            width: 100%; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border-right: 1px solid rgba(255,255,255,0.1); 
        }
.qv-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
.qv-scroll-area { 
            padding: 40px 40px 100px 40px; 
            overflow-y: auto; 
            display: flex; 
            flex-direction: column; 
        }
.qv-fixed-footer { 
            position: absolute; 
            bottom: 0; 
            right: 0; 
            width: 50%; 
            padding: 20px 40px; 
            background: rgba(17, 17, 17, 0.95); 
            border-top: 1px solid rgba(255,255,255,0.1); 
            display: flex; 
            gap: 15px; 
            backdrop-filter: blur(5px); 
        }
.qv-header h2 { 
            font-family: 'Playfair Display'; 
            font-size: 2.2rem; 
            color: var(--primary); 
            margin-bottom: 25px; 
            line-height: 1; 
        }
.qv-price { 
            font-size: 2.5rem; 
            font-weight: 800; 
            color: var(--orange); 
            margin-bottom: 20px; 
            font-family: 'Manrope'; 
        }
.qv-btn-order {
            padding: 15px; 
            background: linear-gradient(135deg, var(--orange), #E08719); 
            border: none; 
            border-radius: 12px; 
            color: white; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            transition: var(--transition);
        }
.qv-btn-order:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(243, 146, 33, 0.5);
        }
.qv-phone { 
            flex: 1; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--primary); 
            border-radius: 12px; 
            color: var(--primary); 
            font-weight: 700; 
            text-decoration: none; 
            transition: var(--transition);
        }
.qv-phone:hover {
            background: var(--primary);
            color: #000;
        }
.catalog-modal { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 11000; 
            background: rgba(10, 14, 13, 0.98); 
            backdrop-filter: blur(15px); 
            flex-direction: column; 
            align-items: center; 
            justify-content: flex-start; 
            overflow-y: auto; 
            opacity: 0; 
            transition: opacity 0.3s ease; 
            padding-top: 60px; 
        }
.cat-modal-close { 
            position: fixed; 
            top: 20px; 
            right: 20px; 
            font-size: 2.5rem; 
            color: white; 
            cursor: pointer; 
            line-height: 1; 
            transition: 0.3s; 
            z-index: 100; 
            width: 50px; 
            height: 50px; 
            background: rgba(66, 196, 193, 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: #000;
            transform: rotate(90deg);
        }
.cat-modal-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
            gap: 20px; 
            width: 100%; 
            max-width: 1000px; 
            padding: 40px 20px 100px 20px; 
        }
.cat-modal-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-align: center; 
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.05) 0%, rgba(26, 31, 29, 0.5) 100%); 
            padding: 25px 15px; 
            border-radius: 20px; 
            border: 1px solid rgba(66, 196, 193, 0.2); 
            transition: all 0.3s ease; 
            cursor: pointer; 
            text-decoration: none; 
        }
.cat-modal-item:hover { 
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.2) 0%, rgba(243, 146, 33, 0.1) 100%); 
            border-color: var(--primary); 
            transform: translateY(-5px) scale(1.05); 
        }
.mn-close { 
            background: none; 
            border: none; 
            color: #fff; 
            font-size: 2rem; 
            cursor: pointer; 
        }
.mn-link-list a { 
            font-size: 1.1rem; 
            font-weight: 700; 
            color: #fff; 
            text-transform: uppercase; 
        }
.mn-contacts-center { 
            margin-bottom: 30px; 
        }
.btn-hero { 
            display: inline-block; 
            padding: 16px 30px; 
            border-radius: 50px; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            text-decoration: none; 
            border: none; 
            box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
            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(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }
.form-input { 
            width: 100%; 
            padding: 15px; 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(255,255,255,0.1); 
            border-radius: 50px; 
            color: white; 
            margin-bottom: 15px; 
            outline: none; 
            transition: var(--transition);
        }
.form-input:focus { 
            border-color: var(--primary); 
            background: rgba(255,255,255,0.1);
        }
@media (max-width: 900px) {
            .modal { 
                align-items: flex-end; 
                padding: 0; 
                background: rgba(0,0,0,0.8); 
            }
            
            .modal-box, .qv-box { 
                width: 100% !important; 
                margin: 0 !important; 
                border-radius: 24px 24px 0 0 !important; 
                border: none !important; 
                border-top: 1px solid var(--primary) !important; 
                height: 90vh !important; 
                max-height: 90vh !important; 
                animation: slideUp 0.4s ease; 
            }
            
            @keyframes slideUp { 
                from { 
                    transform: translateY(100%); 
                } 
                to { 
                    transform: translateY(0); 
                } 
            }
            
            .qv-grid { 
                display: flex; 
                flex-direction: column; 
                height: 100%; 
            }
            
            .qv-image { 
                height: 35vh; 
                min-height: 250px; 
                border-bottom: 1px solid rgba(255,255,255,0.1); 
                border-right: none;
            }
            
            .qv-image img { 
                padding: 15px; 
                object-fit: contain !important; 
            }
            
            .qv-scroll-area { 
                flex-grow: 1; 
                padding: 20px 20px 0 20px; 
            }
            
            .qv-fixed-footer { 
                position: relative; 
                width: 100%; 
                padding: 15px 20px 25px 20px; 
                flex-direction: column; 
                gap: 10px; 
            }
            
            .parrot-grid {
                grid-template-columns: 1fr;
            }
            
            .catalog-control-bar {
                padding: 10px 0;
            }
            
            .c-nav-link {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
            
            .control-nav,
            .sf-scroll {
                justify-content: flex-start;
                padding-left: 15px;
            }
        }
@media (max-width: 768px) {
            .cat-modal-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.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.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateX(-10px);
    opacity: 0;
    transition: 0.4s ease;
}
.p-card .s-badge { opacity: 1; transform: translateX(0); }
.s-badge.premium { border-color: #F39221; color: #F39221; }
.s-badge.talker { border-color: #42C4C1; color: #42C4C1; }
.s-badge.beginner { border-color: #7BBF6A; color: #7BBF6A; }
.p-card { overflow: hidden; }
.p-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-card:hover .p-img-wrapper img {
    transform: scale(1.08); 
}
.btn-meet {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 15px;
    transition: 0.3s;
    text-align: center;
    display: block;
}
.p-card:hover .btn-meet {
    background: var(--primary);
    color: black;
    box-shadow: 0 5px 20px rgba(66, 196, 193, 0.4);
}
.quiz-wow-section {
    background: linear-gradient(145deg, #1a1f1d 0%, #0a0e0d 100%);
    border-radius: 30px;
    padding: 60px 40px;
    border: 1px solid rgba(66, 196, 193, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quiz-wow-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66, 196, 193, 0.05) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
    pointer-events: none;
}
@keyframes rotateBg { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.quiz-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--primary);
}
.quiz-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.q-title {
    font-family: 'Playfair Display';
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}
.q-subtitle {
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.q-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.q-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.q-card:hover {
    background: rgba(66, 196, 193, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.q-card-icon { font-size: 3rem; margin-bottom: 10px; }
.q-card-text { font-weight: 700; font-size: 1.1rem; color: white; }
.q-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.quiz-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.loader-circle {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(255,255,255,0.1);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.quiz-result { display: none; animation: fadeIn 0.8s ease; }
.res-img { 
    width: 220px; 
    height: 220px; 
    object-fit: cover; 
    object-position: center 20%; 
    border-radius: 50%; 
    border: 4px solid var(--primary); 
    margin: 0 auto 25px; 
    box-shadow: 0 0 40px rgba(66, 196, 193, 0.4); 
    background-color: #000; 
}
.quiz-form-box {
    background: rgba(255,255,255,0.05); 
    padding: 30px; 
    border-radius: 20px; 
    max-width: 450px; 
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
}
.quiz-input {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: white;
    margin-bottom: 10px;
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: 0.3s;
}
.quiz-input:focus {
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}
.res-match { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.quiz-step { display: none; animation: slideIn 0.4s ease; }
.quiz-step.active { display: block; }
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .q-options-grid { grid-template-columns: 1fr; }
    .q-card { flex-direction: row; text-align: left; padding: 20px; }
    .q-card-icon { margin-bottom: 0; margin-right: 15px; font-size: 2rem; }
}
.legality-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #141a18 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(66, 196, 193, 0.1);
}
.legality-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 50%, rgba(66, 196, 193, 0.05), transparent 60%);
    pointer-events: none;
}
.legality-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.legality-title {
    font-family: 'Playfair Display';
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}
.doc-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
    cursor: default;
}
.doc-item:hover {
    background: rgba(66, 196, 193, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}
.doc-icon {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(66, 196, 193, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}
.animal-card-legal {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(66, 196, 193, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: rotate(2deg);
    transition: 0.5s;
}
.animal-card-legal:hover {
    transform: rotate(0deg) scale(1.02);
    border-color: var(--primary);
}
.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; }
}
.btn-retry {
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px); 
    margin-bottom: 25px;
}
.btn-retry:hover {
    background: rgba(66, 196, 193, 0.15); 
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.btn-retry:hover .retry-icon {
    transform: rotate(180deg);
}
.retry-icon {
    display: inline-block;
    transition: transform 0.5s ease;
    font-size: 1.1rem;
    line-height: 1;
}
.mobile-tab { 
            position: fixed; 
            bottom: 20px;
            left: 15px;
            right: 15px;
            height: 75px;
            background: linear-gradient(135deg, rgba(10, 14, 13, 0.98) 0%, rgba(26, 21, 15, 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.5); 
            font-size: 0.65rem;
            text-transform: uppercase; 
            font-weight: 700;
            transition: var(--transition);
        }
.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); }
.tags-cloud-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0e0d 0%, #141d2a 100%);
  margin: 40px 0;
}
.tags-cloud-container {
  max-width: 1200px;
  margin: 0 auto;
}
.tags-cloud-title {
  font-family:'Manrope',sans-serif;
  font-size: 2.5rem;
  color: #42C4C1;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(66, 196, 193, 0.3);
}
.tags-cloud-description {
  text-align: center;
  color: #B89B72;
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
}
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}
.tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(66, 196, 193, 0.1);
  border: 1px solid rgba(66, 196, 193, 0.3);
  border-radius: 25px;
  color: #42C4C1;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}
.tag:hover {
  background: rgba(66, 196, 193, 0.2);
  border-color: #42C4C1;
  box-shadow: 0 0 20px rgba(66, 196, 193, 0.4);
  transform: translateY(-2px);
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.load-more-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 40px;
  background: linear-gradient(135deg, #42C4C1, #2ea09e);
  border: none;
  border-radius: 30px;
  color: #0a0e0d;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 196, 193, 0.3);
}
.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(66, 196, 193, 0.5);
}
.load-more-btn.hidden {
  display: none;
}
@media (max-width: 768px) {
  .tags-cloud-title {
    font-size: 1.8rem;
  }
  
  .tags-cloud-description {
    font-size: 0.95rem;
  }
  
  .tag {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .load-more-btn {
    width: 100%;
    max-width: 300px;
  }
}