﻿: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);
            
            
            --reptile-green: #00FF87;
            --reptile-emerald: #50C878;
            --reptile-lime: #32CD32;
            --reptile-jade: #00A86B;
            --reptile-scale: #2E8B57;
        }
.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: 15%;
            right: 8%; 
            font-size: 10rem;
            opacity: 0.04;
            animation: floatReptile 6s ease-in-out infinite; 
            filter: blur(2px);
        }
.hero-catalog::after { 
            content: ''; 
            position: absolute; 
            top: -150px; 
            left: -150px; 
            width: 900px; 
            height: 900px; 
            background: radial-gradient(circle, rgba(0, 255, 135, 0.1) 0%, transparent 70%); 
            filter: blur(120px); 
            pointer-events: none; 
            animation: pulseGreen 12s ease-in-out infinite; 
        }
@keyframes floatReptile {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.04; }
            50% { transform: translateY(-20px) rotate(5deg); opacity: 0.07; }
        }
@keyframes pulseGreen {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.15); }
        }
.hero-badge { 
            display: inline-flex; 
            align-items: center; 
            justify-content: center; 
            background: linear-gradient(135deg, var(--reptile-green) 0%, var(--reptile-emerald) 100%); 
            color: black; 
            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(0, 255, 135, 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, var(--reptile-green) 0%, var(--primary) 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(--reptile-green); 
            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(--reptile-green) 0%, var(--reptile-emerald) 100%); 
            color: #000; 
            border-color: transparent; 
            transform: translateY(-2px); 
            box-shadow: 0 5px 15px rgba(0, 255, 135, 0.4); 
        }
.smart-filters { 
            padding: 15px 0 25px; 
            border-bottom: 1px solid rgba(0, 255, 135, 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(0, 255, 135, 0.15); 
            border-color: var(--reptile-green); 
            color: var(--reptile-green); 
        }
.category-section { 
            padding: 60px 0; 
        }
.reptiles-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
            gap: 35px; 
            position: relative; 
            z-index: 2; 
        }
.reptile-card { 
            display: flex; 
            flex-direction: column; 
            background: rgba(255, 255, 255, 0.03); 
            border: 1px solid rgba(0, 255, 135, 0.2); 
            border-radius: 24px; 
            overflow: hidden; 
            transition: all 0.4s; 
            position: relative; 
            cursor: pointer; 
        }
.reptile-card:hover { 
            transform: translateY(-10px); 
            border-color: var(--reptile-green); 
            box-shadow: 0 25px 50px rgba(0, 255, 135, 0.2), 0 0 60px rgba(0, 255, 135, 0.1); 
            background: rgba(255, 255, 255, 0.06); 
        }
.reptile-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(0, 255, 135, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
            pointer-events: none;
            z-index: 1;
        }
.reptile-card:hover::before {
            width: 450px;
            height: 450px;
        }
.reptile-img-wrapper { 
            height: 320px; 
            position: relative; 
            overflow: hidden; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: rgba(0, 0, 0, 0.4); 
        }
.reptile-img { 
            width: 100%; 
            height: auto; 
            object-fit: cover; 
            transition: 0.6s; 
        }
.reptile-card:hover .reptile-img { 
            transform: scale(1.15); 
            filter: brightness(1.1);
        }
.qv-btn-trigger { 
            position: absolute; 
            top: 15px; 
            right: 15px; 
            width: 44px; 
            height: 44px; 
            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.3rem; 
            border: 2px solid var(--reptile-green); 
            opacity: 1; 
            transform: translateY(-10px); 
        }
.reptile-card:hover .qv-btn-trigger { 
            opacity: 1; 
            transform: translateY(0); 
        }
.qv-btn-trigger:hover { 
            background: var(--reptile-green); 
            border-color: var(--reptile-green); 
            color: #000; 
            transform: scale(1.15); 
        }
.reptile-content { 
            padding: 30px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            position: relative;
            z-index: 2;
        }
.reptile-name { 
            font-family:'Manrope',sans-serif; 
            font-size: 1.3rem; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 18px; 
            line-height: 1.3; 
        }
.reptile-stats {
            display: flex;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            gap: 12px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(0, 255, 135, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(0, 255, 135, 0.1);
        }
.reptile-stats:hover {
            background: rgba(0, 255, 135, 0.12);
            border-color: var(--reptile-green);
            box-shadow: 0 0 25px rgba(0, 255, 135, 0.2);
            transform: translateY(-2px);
        }
.reptile-stat { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 6px; 
            flex: 1; 
        }
.reptile-stat-icon {
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 1.3rem;
        }
.reptile-stats:hover .reptile-stat-icon {
            transform: scale(1.25);
            filter: drop-shadow(0 0 8px var(--reptile-green));
        }
.reptile-stats:hover .reptile-stat:nth-child(1) .reptile-stat-icon {
            animation: grow 0.8s infinite;
        }
.reptile-stats:hover .reptile-stat:nth-child(2) .reptile-stat-icon {
            animation: heat 1s infinite;
        }
.reptile-stats:hover .reptile-stat:nth-child(3) .reptile-stat-icon {
            animation: difficulty 0.9s infinite;
        }
.dot {
            transition: 0.3s;
        }
.reptile-stats:hover .dot.fill {
            animation: neonGreen 1s infinite alternate;
        }
.reptile-stat-dots .dot:nth-child(1) { animation-delay: 0.1s; }
.reptile-stat-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.reptile-stat-dots .dot:nth-child(3) { animation-delay: 0.3s; }
.reptile-stat-dots .dot:nth-child(4) { animation-delay: 0.4s; }
.reptile-stat-dots .dot:nth-child(5) { animation-delay: 0.5s; }
@keyframes neonGreen {
            0% { 
                transform: scale(1); 
                opacity: 1; 
                box-shadow: 0 0 5px var(--reptile-green);
            }
            100% { 
                transform: scale(1.4); 
                opacity: 0.6; 
                box-shadow: 0 0 20px var(--reptile-green);
                background: #00FF87;
            }
        }
@keyframes grow {
            0%, 100% { transform: scale(1.25); }
            50% { transform: scale(1.5); }
        }
@keyframes heat {
            0%, 100% { transform: scale(1.25) rotate(0deg); filter: hue-rotate(0deg); }
            50% { transform: scale(1.4) rotate(10deg); filter: hue-rotate(30deg); }
        }
@keyframes difficulty {
            0%, 100% { transform: scale(1.25); opacity: 1; }
            50% { transform: scale(1.45); opacity: 0.8; }
        }
.reptile-stat-dots { 
            display: flex; 
            gap: 4px; 
        }
.dot { 
            width: 7px; 
            height: 7px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.15); 
            transition: 0.3s; 
        }
.dot.fill { 
            background: var(--reptile-green); 
            box-shadow: 0 0 8px var(--reptile-green); 
        }
.reptile-stat-val { 
            font-size: 0.65rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            font-weight: 700; 
            margin-top: 2px; 
        }
.reptile-footer { 
            margin-top: auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-top: 1px solid rgba(0, 255, 135, 0.2); 
            padding-top: 20px; 
        }
.reptile-price-label { 
            font-size: 0.7rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            display: block; 
        }
.reptile-price { 
            font-size: 1.3rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--reptile-green) 0%, var(--reptile-emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.reptile-arrow { 
            width: 38px; 
            height: 38px; 
            border-radius: 50%; 
            background: rgba(0, 255, 135, 0.1); 
            border: 1px solid var(--reptile-green); 
            color: var(--reptile-green); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.3s; 
            cursor: pointer; 
            font-size: 1.1rem;
        }
.reptile-card:hover .reptile-arrow { 
            color: #000; 
            background: var(--reptile-green); 
            transform: rotate(-45deg); 
        }
.btn-show-more { 
            background: transparent; 
            border: 2px solid rgba(0, 255, 135, 0.3); 
            color: var(--reptile-green); 
            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: var(--reptile-green); 
            background: rgba(0, 255, 135, 0.1);
            transform: translateY(-3px);
        }
.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.75);
            backdrop-filter: blur(5px);
            color: white;
            padding: 7px 14px;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(0, 255, 135, 0.3);
            transform: translateX(-10px);
            opacity: 0;
            transition: 0.4s ease;
        }
.reptile-card .s-badge { opacity: 1; transform: translateX(0); }
.s-badge.premium { border-color: var(--reptile-green); color: var(--reptile-green); }
.s-badge.rare { border-color: #FF6B6B; color: #FF6B6B; }
.s-badge.venomous { border-color: #9B59B6; color: #9B59B6; }
.s-badge.large { border-color: var(--orange); color: var(--orange); }
.s-badge.beginner { border-color: var(--green); color: var(--green); }
.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(0, 255, 135, 0.05); border: 2px solid var(--reptile-green); box-shadow: 0 0 40px rgba(0, 255, 135, 0.15); }
.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(--reptile-green); }
.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: 30px;
            padding: 60px 40px;
            border: 1px solid rgba(0, 255, 135, 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: 5%;
            right: 5%;
            font-size: 12rem;
            opacity: 0.03;
            animation: slither 15s linear infinite;
            pointer-events: none;
        }
@keyframes slither { 
            0% { transform: rotate(0deg) translateX(0); } 
            50% { transform: rotate(10deg) translateX(20px); }
            100% { transform: rotate(0deg) translateX(0); } 
        }
.quiz-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--reptile-green);
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px var(--reptile-green);
        }
.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(0, 255, 135, 0.2);
            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(0, 255, 135, 0.1);
            border-color: var(--reptile-green);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 135, 0.2);
        }
.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(--reptile-green);
            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(--reptile-green); 
            margin: 0 auto 25px; 
            box-shadow: 0 0 40px rgba(0, 255, 135, 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(0, 255, 135, 0.2);
        }
.quiz-input {
            width: 100%;
            padding: 15px;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(0, 255, 135, 0.3);
            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(--reptile-green);
            background: rgba(0,0,0,0.5);
            box-shadow: 0 0 15px rgba(0, 255, 135, 0.2);
        }
.res-match { color: var(--reptile-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); }
        }
.btn-retry {
            background: rgba(0, 255, 135, 0.1);
            border: 1px solid rgba(0, 255, 135, 0.3);
            color: var(--reptile-green);
            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(0, 255, 135, 0.2);
            border-color: var(--reptile-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 135, 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;
        }
@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(0, 255, 135, 0.1);
        }
.legality-section::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: radial-gradient(circle at 80% 50%, rgba(0, 255, 135, 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(0, 255, 135, 0.1);
            border-radius: 20px;
            margin-bottom: 15px;
            transition: 0.3s;
            cursor: default;
        }
.doc-item:hover {
            background: rgba(0, 255, 135, 0.08);
            border-color: var(--reptile-green);
            transform: translateX(10px);
        }
.doc-icon {
            font-size: 2rem;
            color: var(--reptile-green);
            background: rgba(0, 255, 135, 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(0, 255, 135, 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(--reptile-green);
        }
.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: 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(0, 255, 135, 0.1); border-bottom: 1px solid rgba(0, 255, 135, 0.1); }
.seo-bg-grid { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background-image: linear-gradient(rgba(0, 255, 135, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 135, 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(--reptile-green) 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(--reptile-green); font-weight: 600; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(0, 255, 135, 0.1); border: 1px solid var(--reptile-green); padding: 10px 20px; border-radius: 50px; color: var(--reptile-green); font-size: 0.85rem; font-weight: 700; margin-bottom: 30px; box-shadow: 0 0 20px rgba(0, 255, 135, 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(0, 255, 135, 0.1); 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(0, 255, 135, 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(--reptile-green); }
.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(--reptile-green); }
.plus-icon { transition: 0.3s; font-size: 1.4rem; }
.faq-row.active .plus-icon { transform: rotate(45deg); color: var(--reptile-green); }
.seo-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(0, 255, 135, 0.05); }
.seo-tag { background: rgba(0, 255, 135, 0.05); padding: 8px 16px; border-radius: 10px; font-size: 0.8rem; color: rgba(0, 255, 135, 0.6); border: 1px solid rgba(0, 255, 135, 0.1); transition: 0.3s; }
.seo-tag:hover { color: var(--reptile-green); border-color: var(--reptile-green); }
@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(--reptile-green); 
            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, 255, 135, 0.3); 
        }
@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(--reptile-green) !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(--reptile-green) !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(0, 255, 135, 0.2); 
        }
.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(0, 255, 135, 0.2); 
            display: flex; 
            gap: 15px; 
            backdrop-filter: blur(5px); 
        }
.qv-header h2 { 
            font-family: 'Playfair Display'; 
            font-size: 2.2rem; 
            color: var(--reptile-green); 
            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(--reptile-green); 
            border-radius: 12px; 
            color: var(--reptile-green); 
            font-weight: 700; 
            text-decoration: none; 
            transition: var(--transition);
        }
.qv-phone:hover {
            background: var(--reptile-green);
            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(0, 255, 135, 0.1); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--reptile-green); 
        }
.cat-modal-close:hover {
            background: var(--reptile-green);
            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(0, 255, 135, 0.05) 0%, rgba(26, 31, 29, 0.5) 100%); 
            padding: 25px 15px; 
            border-radius: 20px; 
            border: 1px solid rgba(0, 255, 135, 0.2); 
            transition: all 0.3s ease; 
            cursor: pointer; 
            text-decoration: none; 
        }
.cat-modal-item:hover { 
            background: linear-gradient(135deg, rgba(0, 255, 135, 0.2) 0%, rgba(243, 146, 33, 0.1) 100%); 
            border-color: var(--reptile-green); 
            transform: translateY(-5px) scale(1.05); 
        }
.mobile-nav-box { 
            position: absolute; 
            top: 0; 
            right: -100%; 
            width: 75%; 
            max-width: 320px; 
            height: 100%; 
            background: linear-gradient(180deg, #0f1412 0%, #1a1f1d 100%); 
            border-left: 2px solid var(--reptile-green); 
            padding: 25px 20px; 
            display: flex; 
            flex-direction: column; 
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: -10px 0 50px rgba(0,0,0,0.9); 
            overflow-y: auto; 
        }
.mn-header { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 30px; 
            border-bottom: 1px solid rgba(0, 255, 135, 0.2); 
            padding-bottom: 15px; 
        }
.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; 
        }
.mn-badge-bottom { 
            margin-top: auto; 
            background: rgba(0, 255, 135, 0.1); 
            padding: 15px; 
            border-radius: 12px; 
            font-size: 0.75rem; 
            text-align: center; 
            color: var(--reptile-green); 
            border: 1px solid var(--reptile-green); 
        }
.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(0, 255, 135, 0.2); 
            border-radius: 50px; 
            color: white; 
            margin-bottom: 15px; 
            outline: none; 
            transition: var(--transition);
        }
.form-input:focus { 
            border-color: var(--reptile-green); 
            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(--reptile-green) !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(0, 255, 135, 0.2); 
                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; 
            }
            
            .reptiles-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);
            }
        }
.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;
  }
}