﻿: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);
            

        }
.hero-ara-section { 
            background: linear-gradient(180deg, #0a0e0d 0%, #141a18 100%); 
            padding: 80px 0 100px; 
            position: relative; 
            overflow: hidden; 
            min-height: 70vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
.hero-ara-section::before { 
            content: ''; 
            position: absolute; 
            top: -50%; 
            left: -50%; 
            width: 200%; 
            height: 200%; 
            background: 
                radial-gradient(circle at 20% 30%, rgba(66, 196, 193, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(243, 146, 33, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(243, 146, 33, 0.1) 0%, transparent 50%);
            animation: araFeathers 20s ease-in-out infinite; 
            pointer-events: none; 
        }
@keyframes araFeathers {
            0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
            50% { transform: rotate(180deg) scale(1.2); opacity: 0.8; }
        }
.floating-feathers {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.feather {
            position: absolute;
            width: 40px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            opacity: 0.3;
            border-radius: 50% 0 50% 0;
            animation: floatFeather 15s ease-in-out infinite;
            filter: blur(2px);
        }
.feather:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.feather:nth-child(2) { top: 60%; left: 80%; animation-delay: 5s; background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 100%); }
.feather:nth-child(3) { top: 30%; left: 70%; animation-delay: 10s; background: linear-gradient(135deg, var(--green) 0%, var(--primary) 100%); }
@keyframes floatFeather {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }
.hero-ara-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
.hero-ara-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 10px;
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.2) 0%, rgba(243, 146, 33, 0.2) 100%); 
            border: 2px solid var(--primary);
            color: white; 
            padding: 12px 25px; 
            border-radius: 50px; 
            font-weight: 800; 
            font-size: 0.85rem; 
            margin-bottom: 30px; 
            text-transform: uppercase; 
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.4); 
            animation: badgePulse 3s ease-in-out infinite;
        }
@keyframes badgePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(66, 196, 193, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(243, 146, 33, 0.6); }
        }
.hero-ara-title{ 
            font-family:'Manrope',sans-serif; 
            font-size: clamp(3rem, 8vw, 6rem); 
            font-weight:800; 
            line-height: 1.1; 
            margin-bottom: 25px; 
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
.ara-gradient-text { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 50%, var(--orange) 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            animation: araGradientShift 5s ease infinite;
            background-size: 200% 200%;
        }
@keyframes araGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.hero-ara-subtitle { 
            font-size: clamp(1.1rem, 2.5vw, 1.4rem); 
            color: rgba(255,255,255,0.7); 
            max-width: 800px; 
            margin: 0 auto 40px; 
            line-height: 1.6;
        }
.hero-ara-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            max-width: 700px;
            margin: 50px auto 0;
        }
.ara-stat-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 25px 20px;
            text-align: center;
            transition: var(--transition);
        }
.ara-stat-box:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(66, 196, 193, 0.3);
            background: rgba(66, 196, 193, 0.1);
        }
.ara-stat-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: block;
        }
.ara-stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--orange);
            display: block;
            margin-bottom: 5px;
        }
.ara-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.ara-filters-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; 
            box-shadow: 0 5px 30px rgba(0,0,0,0.5);
        }
@media (max-width: 1024px) { 
            .ara-filters-bar { 
                top: 134px; 
                padding: 15px 0;
            } 
        }
.ara-filter-nav { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            padding-bottom: 5px; 
            scrollbar-width: none; 
            justify-content: center; 
        }
.ara-filter-nav::-webkit-scrollbar {
            display: none;
        }
.ara-filter-btn { 
            white-space: nowrap; 
            color: rgba(255,255,255,0.7); 
            font-size: 0.9rem; 
            font-weight: 700; 
            padding: 12px 25px; 
            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; 
            display: flex;
            align-items: center;
            gap: 8px;
        }
.ara-filter-btn:hover { 
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.2) 0%, rgba(243, 146, 33, 0.2) 100%); 
            border-color: var(--primary); 
            color: white;
            transform: translateY(-2px); 
            box-shadow: 0 5px 15px rgba(66, 196, 193, 0.4); 
        }
.ara-filter-btn.active { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%); 
            color: #000; 
            border-color: transparent; 
            font-weight: 800;
            box-shadow: 0 8px 25px rgba(66, 196, 193, 0.5); 
        }
.ara-smart-filters { 
            padding: 20px 0; 
            border-bottom: 1px solid rgba(66, 196, 193, 0.1); 
            background: rgba(10, 14, 13, 0.5); 
        }
.ara-sf-scroll { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            justify-content: center; 
            padding-bottom: 5px; 
        }
.ara-sf-scroll::-webkit-scrollbar {
            display: none;
        }
.ara-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: 10px 20px; 
            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; 
        }
.ara-sf-btn:hover { 
            background: rgba(66, 196, 193, 0.15); 
            border-color: var(--primary); 
            color: var(--primary); 
        }
.ara-sf-btn.active {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 100%);
            color: black;
            border-color: transparent;
            font-weight: 800;
        }
.ara-catalog-section { 
            padding: 80px 0; 
            position: relative;
        }
.ara-catalog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(66, 196, 193, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(243, 146, 33, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
.ara-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
            gap: 35px; 
            position: relative; 
            z-index: 2; 
        }
.ara-card { 
            display: flex; 
            flex-direction: column; 
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%); 
            border: 1px solid rgba(255, 255, 255, 0.1); 
            border-radius: 25px; 
            overflow: hidden; 
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
            position: relative; 
            cursor: pointer; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
.ara-card:hover { 
            transform: translateY(-15px) scale(1.02); 
            border-color: var(--primary); 
            box-shadow: 0 25px 50px rgba(66, 196, 193, 0.4); 
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.08) 0%, rgba(243, 146, 33, 0.05) 100%); 
        }
.ara-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(243, 146, 33, 0.1) 50%, transparent 70%);
            opacity: 0;
            transition: 0.8s;
            pointer-events: none;
        }
.ara-card:hover::before {
            opacity: 1;
            transform: rotate(45deg);
        }
.ara-img-wrapper { 
            height: 320px; 
            position: relative; 
            overflow: hidden; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
        }
.ara-img { 
            width: 85%; 
            max-width: 85%; 
            height: auto; 
            object-fit: contain; 
            transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
            filter: brightness(0.95);
        }
.ara-card:hover .ara-img { 
            transform: scale(1.15) rotate(5deg); 
            filter: brightness(1.1);
        }
.ara-badges { 
            position: absolute; 
            top: 15px; 
            left: 15px; 
            display: flex; 
            flex-direction: column; 
            gap: 8px; 
            z-index: 10; 
        }
.ara-badge { 
            background: rgba(0, 0, 0, 0.7); 
            backdrop-filter: blur(8px); 
            color: white; 
            padding: 6px 14px; 
            border-radius: 10px; 
            font-size: 0.75rem; 
            font-weight: 700; 
            display: flex; 
            align-items: center; 
            gap: 6px; 
            border: 1px solid rgba(255,255,255,0.2);
            transform: translateX(-10px);
            opacity: 0;
            animation: badgeSlideIn 0.5s ease forwards;
        }
@keyframes badgeSlideIn {
            to { transform: translateX(0); opacity: 1; }
        }
.ara-badge:nth-child(2) { animation-delay: 0.1s; }
.ara-badge:nth-child(3) { animation-delay: 0.2s; }
.ara-badge.premium { border-color: var(--orange); color: var(--orange); }
.ara-badge.rare { border-color: var(--orange); color: var(--orange); }
.ara-badge.popular { border-color: var(--primary); color: var(--primary); }
.ara-qv-btn { 
            position: absolute; 
            top: 15px; 
            right: 15px; 
            width: 45px; 
            height: 45px; 
            background: rgba(0,0,0,0.8); 
            backdrop-filter: blur(10px);
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            z-index: 10; 
            transition: 0.3s; 
            font-size: 1.3rem; 
            border: 2px solid rgba(66, 196, 193, 0.5); 
            opacity: 0; 
            transform: translateY(-15px) scale(0.8);
        }
.ara-card:hover .ara-qv-btn { 
            opacity: 1; 
            transform: translateY(0) scale(1);
        }
.ara-qv-btn:hover { 
            background: var(--primary); 
            border-color: var(--orange); 
            color: #000; 
            transform: scale(1.15) rotate(15deg); 
            box-shadow: 0 5px 20px rgba(66, 196, 193, 0.6);
        }
.ara-content { 
            padding: 30px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            gap: 20px;
        }
.ara-name { 
            font-family:'Manrope',sans-serif; 
            font-size: 1.3rem; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 5px; 
            line-height: 1.3; 
            transition: 0.3s;
        }
.ara-card:hover .ara-name {
            color: var(--orange);
        }
.ara-latin {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            margin-bottom: 15px;
        }
.ara-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            transition: 0.4s;
        }
.ara-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(66, 196, 193, 0.1), transparent);
            transition: 0.8s;
        }
.ara-card:hover .ara-stats::before {
            left: 100%;
        }
.ara-card:hover .ara-stats {
            background: rgba(66, 196, 193, 0.08);
            border-color: rgba(66, 196, 193, 0.3);
            box-shadow: inset 0 0 20px rgba(66, 196, 193, 0.1);
        }
.ara-stat { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px; 
            position: relative;
            z-index: 1;
        }
.ara-stat-icon {
            font-size: 1.5rem;
            transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: grayscale(0.3);
        }
.ara-card:hover .ara-stat-icon {
            transform: scale(1.3) rotate(10deg);
            filter: grayscale(0) drop-shadow(0 0 8px var(--orange));
        }
.ara-card:hover .ara-stat:nth-child(1) .ara-stat-icon {
            animation: iconBounce 0.6s ease;
        }
.ara-card:hover .ara-stat:nth-child(2) .ara-stat-icon {
            animation: iconBounce 0.6s 0.1s ease;
        }
.ara-card:hover .ara-stat:nth-child(3) .ara-stat-icon {
            animation: iconBounce 0.6s 0.2s ease;
        }
@keyframes iconBounce {
            0%, 100% { transform: scale(1.3) rotate(10deg); }
            50% { transform: scale(1.5) rotate(-10deg); }
        }
.ara-stat-dots { 
            display: flex; 
            gap: 4px; 
        }
.ara-dot { 
            width: 7px; 
            height: 7px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.2); 
            transition: 0.3s; 
            box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
        }
.ara-dot.fill { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%); 
            box-shadow: 0 0 8px var(--orange); 
            animation: dotGlow 1.5s infinite alternate;
        }
@keyframes dotGlow {
            0% { box-shadow: 0 0 5px var(--orange); }
            100% { box-shadow: 0 0 15px var(--orange), 0 0 25px var(--primary); }
        }
.ara-card:hover .ara-dot.fill {
            transform: scale(1.2);
        }
.ara-stat-label { 
            font-size: 0.7rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            font-weight: 700; 
            letter-spacing: 0.5px;
            margin-top: 3px; 
        }
.ara-size-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 15px;
            background: rgba(243, 146, 33, 0.1);
            border: 1px solid rgba(243, 146, 33, 0.3);
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--orange);
            transition: 0.3s;
        }
.ara-card:hover .ara-size-badge {
            background: rgba(243, 146, 33, 0.2);
            border-color: var(--orange);
            transform: scale(1.05);
        }
.ara-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: 20px; 
        }
.ara-price-block {
            flex: 1;
        }
.ara-price-label { 
            font-size: 0.75rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            display: block; 
            margin-bottom: 5px;
        }
.ara-price { 
            font-size: 1.4rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.ara-arrow { 
            width: 40px; 
            height: 40px; 
            border-radius: 50%; 
            background: rgba(66, 196, 193, 0.15); 
            border: 2px solid var(--primary); 
            color: var(--primary); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
            cursor: pointer; 
            font-size: 1.2rem;
        }
.ara-card:hover .ara-arrow { 
            background: var(--primary); 
            color: #000; 
            transform: rotate(-45deg) scale(1.2); 
            box-shadow: 0 5px 20px rgba(66, 196, 193, 0.6);
        }
.ara-load-more { 
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }
.btn-ara-more { 
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.1) 0%, rgba(243, 146, 33, 0.1) 100%); 
            border: 2px solid var(--primary); 
            color: #fff; 
            padding: 18px 50px; 
            border-radius: 50px; 
            font-size: 1rem; 
            font-weight: 700; 
            cursor: pointer; 
            transition: 0.4s; 
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.btn-ara-more:hover { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%); 
            color: #000; 
            border-color: var(--orange);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.5);
        }
.why-ara-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #141a18 100%);
            position: relative;
            overflow: hidden;
        }
.why-ara-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(66, 196, 193, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }
.why-ara-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(243, 146, 33, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }
.why-ara-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.why-ara-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 30px;
            line-height: 1.1;
        }
.why-ara-content h2 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.why-ara-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
.why-ara-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: 0.4s;
            cursor: default;
        }
.why-ara-item:hover {
            background: rgba(66, 196, 193, 0.08);
            border-color: var(--primary);
            transform: translateX(15px);
            box-shadow: -5px 0 20px rgba(66, 196, 193, 0.3);
        }
.why-ara-icon {
            font-size: 2.5rem;
            min-width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(66, 196, 193, 0.1);
            border-radius: 15px;
            border: 2px solid rgba(66, 196, 193, 0.3);
            transition: 0.4s;
        }
.why-ara-item:hover .why-ara-icon {
            transform: scale(1.15) rotate(10deg);
            background: var(--primary);
            border-color: var(--orange);
            box-shadow: 0 5px 20px rgba(66, 196, 193, 0.5);
        }
.why-ara-text h4 {
            font-size: 1.2rem;
            color: white;
            margin-bottom: 8px;
            font-weight: 700;
        }
.why-ara-text p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
        }
.why-ara-image {
            position: relative;
        }
.why-ara-image img {
            width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 3px solid rgba(66, 196, 193, 0.3);
            transition: 0.5s;
        }
.why-ara-image:hover img {
            transform: scale(1.05) rotate(2deg);
            border-color: var(--primary);
            box-shadow: 0 40px 100px rgba(66, 196, 193, 0.5);
        }
.floating-badge {
            position: absolute;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 15px;
            border: 2px solid var(--orange);
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: floatBadge 3s ease-in-out infinite;
        }
.floating-badge:nth-child(1) {
            top: 10%;
            right: -20px;
            animation-delay: 0s;
        }
.floating-badge:nth-child(2) {
            bottom: 15%;
            left: -30px;
            animation-delay: 1s;
            border-color: var(--primary);
        }
@media (max-width: 900px) {
            .why-ara-grid { 
                grid-template-columns: 1fr; 
                gap: 40px;
            }
            .why-ara-image { 
                order: -1; 
            }
            .floating-badge {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 10px;
            }
        }
.ara-compare-section {
            padding: 80px 0;
            background: rgba(10, 14, 13, 0.5);
        }
.ara-compare-title {
            font-family: 'Playfair Display';
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }
.ara-compare-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.ara-compare-table {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px;
            overflow-x: auto;
        }
.ara-compare-table table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
.ara-compare-table thead tr {
            border-bottom: 2px solid var(--primary);
        }
.ara-compare-table th {
            text-align: left;
            padding: 20px;
            color: var(--orange);
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
.ara-compare-table td {
            padding: 20px;
            color: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
.ara-compare-table tbody tr {
            transition: 0.3s;
        }
.ara-compare-table tbody tr:hover {
            background: rgba(66, 196, 193, 0.05);
            transform: scale(1.01);
        }
.ara-species-name {
            font-weight: 700;
            color: white;
            font-size: 1.05rem;
        }
.ara-species-emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
.ara-price-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #141a18 100%);
            position: relative;
            overflow: hidden;
        }
.ara-price-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(90deg, rgba(66, 196, 193, 0.03) 0px, transparent 2px, transparent 40px),
                repeating-linear-gradient(0deg, rgba(66, 196, 193, 0.03) 0px, transparent 2px, transparent 40px);
            opacity: 0.3;
            pointer-events: none;
        }
.ara-price-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
.ara-price-badge {
            display: inline-block;
            background: rgba(66, 196, 193, 0.1);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
.ara-price-title {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 15px;
        }
.ara-price-title span {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.ara-price-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 700px;
            margin: 0 auto;
        }
.ara-price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
.ara-price-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: 0.5s;
            position: relative;
            overflow: hidden;
			z-index: 1;
        }
.ara-price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(66, 196, 193, 0.1), transparent);
            transform: rotate(45deg);
            transition: 0.8s;
        }
.ara-price-card:hover::before {
            left: 100%;
        }
.ara-price-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            background: rgba(66, 196, 193, 0.08);
            box-shadow: 0 25px 50px rgba(66, 196, 193, 0.3);
        }
.ara-price-card.popular {
            border: 2px solid var(--orange);
            background: rgba(243, 146, 33, 0.05);
        }
.ara-price-card.popular::after {
            content: '⭐ ПОПУЛЯРНЫЙ';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--orange);
            color: black;
            padding: 5px 40px;
            font-size: 0.7rem;
            font-weight: 800;
            transform: rotate(45deg);
            box-shadow: 0 5px 15px rgba(243, 146, 33, 0.5);
        }
.ara-price-emoji {
            font-size: 4rem;
            display: block;
            margin-bottom: 20px;
            animation: bounce 2s ease-in-out infinite;
        }
@keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
.ara-price-card h3{
            font-size: 1.5rem;
            color: white;
            margin-bottom: 10px;
            font-weight:800;
        }
.ara-price-card .latin {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            margin-bottom: 25px;
        }
.ara-price-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
        }
.ara-price-features {
            list-style: none;
            margin: 25px 0;
            text-align: left;
        }
.ara-price-features li {
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
.ara-price-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }
.btn-ara-order {
			width: 100%;
			padding: 15px;
			background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
			border: none;
			border-radius: 12px;
			color: black;
			font-weight: 800;
			text-transform: uppercase;
			cursor: pointer;
			transition: 0.3s;
			font-size: 0.9rem;
			letter-spacing: 1px;
			position: relative; 
			z-index: 10; 
			pointer-events: auto; 
		}
.btn-ara-order:hover {
			transform: translateY(-3px);
			box-shadow: 0 10px 30px rgba(66, 196, 193, 0.5);
		}
.ara-quiz-section {
            padding: 100px 0;
            background: radial-gradient(circle at 50% 50%, #1a1f1d 0%, #0a0e0d 100%);
            position: relative;
            overflow: hidden;
        }
.ara-quiz-section::before {
            content: '🦜';
            position: absolute;
            font-size: 400px;
            opacity: 0.02;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
.ara-quiz-container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.1) 0%, rgba(243, 146, 33, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(66, 196, 193, 0.3);
            border-radius: 35px;
            padding: 60px 50px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }
.ara-quiz-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--orange) 100%);
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 15px var(--primary);
        }
.ara-quiz-header {
            text-align: center;
            margin-bottom: 50px;
        }
.ara-quiz-step-indicator {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
.ara-quiz-question {
            font-family: 'Playfair Display';
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: white;
            margin-bottom: 15px;
            line-height: 1.2;
        }
.ara-quiz-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
        }
.ara-quiz-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
.ara-quiz-option {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px 25px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
        }
.ara-quiz-option::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(66, 196, 193, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
.ara-quiz-option:hover::before {
            width: 300px;
            height: 300px;
        }
.ara-quiz-option:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            background: rgba(66, 196, 193, 0.1);
            box-shadow: 0 15px 40px rgba(66, 196, 193, 0.3);
        }
.ara-quiz-option-icon {
            font-size: 3.5rem;
            position: relative;
            z-index: 1;
            transition: 0.4s;
        }
.ara-quiz-option:hover .ara-quiz-option-icon {
            transform: scale(1.2) rotate(10deg);
        }
.ara-quiz-option-text {
            position: relative;
            z-index: 1;
        }
.ara-quiz-option-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }
.ara-quiz-option-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
.ara-quiz-loader {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }
.ara-loader-spinner {
            width: 100px;
            height: 100px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-top: 5px solid var(--primary);
            border-right: 5px solid var(--orange);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
            margin-bottom: 30px;
        }
@keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
.ara-loader-text {
            font-size: 1.3rem;
            color: white;
            font-weight: 700;
            margin-bottom: 15px;
        }
.ara-loader-subtext {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.5);
        }
.ara-quiz-result {
            display: none;
            text-align: center;
            animation: fadeIn 0.8s ease;
        }
@keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
.ara-result-match {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            color: black;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }
.ara-result-title {
            font-family: 'Playfair Display';
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            margin-bottom: 30px;
        }
.ara-result-img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            object-position: center 20%;
            border-radius: 50%;
            border: 5px solid var(--primary);
            margin: 0 auto 30px;
            box-shadow: 0 0 50px rgba(66, 196, 193, 0.5);
            animation: resultImgAppear 1s ease;
        }
@keyframes resultImgAppear {
            from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
            to { transform: scale(1) rotate(0deg); opacity: 1; }
        }
.ara-result-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto 40px;
        }
.btn-ara-retry {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            margin-bottom: 30px;
        }
.btn-ara-retry:hover {
            background: rgba(66, 196, 193, 0.15);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }
.ara-retry-icon {
            display: inline-block;
            transition: transform 0.5s ease;
        }
.btn-ara-retry:hover .ara-retry-icon {
            transform: rotate(180deg);
        }
.ara-quiz-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 35px;
            border-radius: 20px;
            max-width: 500px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
.ara-form-title {
            color: var(--orange);
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
.ara-quiz-input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            margin-bottom: 15px;
            font-size: 1rem;
            text-align: center;
            outline: none;
            transition: 0.3s;
        }
.ara-quiz-input:focus {
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 15px rgba(66, 196, 193, 0.3);
        }
.ara-quiz-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
.btn-ara-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            border: none;
            border-radius: 12px;
            color: black;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
.btn-ara-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.5);
        }
.ara-form-note {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 15px;
            text-align: center;
        }
.ara-quiz-step {
            display: none;
        }
.ara-quiz-step.active {
            display: block;
            animation: slideIn 0.5s ease;
        }
@keyframes slideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
.ara-care-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 14, 13, 0.8) 0%, rgba(20, 26, 24, 0.9) 100%);
            position: relative;
            overflow: hidden;
        }
.ara-care-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 60px;
            align-items: center;
        }
.ara-care-image {
            position: relative;
        }
.ara-care-image img {
            width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 3px solid rgba(66, 196, 193, 0.3);
        }
.expert-badge {
            position: absolute;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 20px;
            border: 2px solid var(--orange);
            color: white;
            font-weight: 700;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
        }
.expert-badge:nth-child(1) {
            top: 10%;
            right: -30px;
        }
.expert-badge:nth-child(2) {
            bottom: 15%;
            left: -40px;
            border-color: var(--primary);
        }
.expert-badge-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 5px;
        }
.expert-badge-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }
.ara-care-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 25px;
            line-height: 1.1;
        }
.ara-care-content h2 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.ara-care-intro {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            line-height: 1.7;
        }
.ara-care-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
.ara-care-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--primary);
            border-radius: 15px;
            transition: 0.3s;
        }
.ara-care-item:hover {
            background: rgba(66, 196, 193, 0.08);
            transform: translateX(10px);
            box-shadow: -5px 0 20px rgba(66, 196, 193, 0.2);
        }
.ara-care-item-icon {
            font-size: 2rem;
            min-width: 50px;
        }
.ara-care-item h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
.ara-care-item p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
        }
@media (max-width: 900px) {
            .ara-care-grid {
                grid-template-columns: 1fr;
            }
            .ara-care-image {
                order: -1;
            }
            .expert-badge {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 10px;
            }
        }
.ara-seo-section {
            padding: 100px 0;
            background: radial-gradient(circle at 50% 10%, #1a1f1d 0%, #050806 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(66, 196, 193, 0.2);
            border-bottom: 1px solid rgba(66, 196, 193, 0.2);
        }
.ara-seo-grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(66, 196, 193, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(66, 196, 193, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.4;
            pointer-events: none;
        }
.ara-seo-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.ara-faq-container {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(66, 196, 193, 0.2);
            border-radius: 30px;
            padding: 50px 45px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
            margin-bottom: 60px;
        }
.ara-faq-title {
            font-family: 'Playfair Display';
            font-size: 2.5rem;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
.ara-faq-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.ara-faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            transition: 0.3s;
        }
.ara-faq-item:last-child {
            border-bottom: none;
        }
.ara-faq-question {
            font-weight: 700;
            color: white;
            font-size: 1.15rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
            padding-right: 20px;
        }
.ara-faq-question:hover {
            color: var(--primary);
        }
.ara-faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: 0.4s;
            min-width: 30px;
            text-align: center;
        }
.ara-faq-item.active .ara-faq-icon {
            transform: rotate(45deg);
            color: var(--orange);
        }
.ara-faq-answer {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
.ara-faq-item.active .ara-faq-answer {
            max-height: 1000px;
            padding-top: 20px;
        }
.ara-faq-item.active .ara-faq-question {
            color: var(--primary);
        }
.ara-seo-text {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            padding: 50px 45px;
        }
.ara-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);
        }
.ara-seo-text h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
        }
.ara-seo-text h2 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.ara-seo-description {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.05rem;
            line-height: 1.8;
        }
.ara-seo-description p {
            margin-bottom: 20px;
        }
.ara-seo-description strong {
            color: var(--orange);
            font-weight: 600;
        }
.ara-seo-description ul {
            list-style: none;
            margin: 25px 0;
            padding-left: 10px;
        }
.ara-seo-description li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
.ara-seo-description li::before {
            content: '🦜';
            font-size: 1.2rem;
            flex-shrink: 0;
        }
.ara-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);
        }
.ara-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;
        }
.ara-seo-tag:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(66, 196, 193, 0.05);
        }
.modal-box, .ara-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);
        }
.ara-qv-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            height: 550px; 
            overflow: hidden; 
        }
.ara-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); 
        }
.ara-qv-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
.ara-qv-scroll { 
            padding: 40px 40px 100px 40px; 
            overflow-y: auto; 
            display: flex; 
            flex-direction: column; 
        }
.ara-qv-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); 
        }
.ara-qv-header h2 { 
            font-family: 'Playfair Display'; 
            font-size: 2.2rem; 
            color: var(--primary); 
            margin-bottom: 25px; 
            line-height: 1; 
        }
.ara-qv-price { 
            font-size: 2.5rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px; 
            font-family: 'Manrope'; 
        }
.btn-ara-qv-order {
            flex: 1;
            padding: 15px; 
            background: linear-gradient(135deg, var(--primary), var(--orange)); 
            border: none; 
            border-radius: 12px; 
            color: black; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            transition: var(--transition);
        }
.btn-ara-qv-order:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(66, 196, 193, 0.5);
        }
.ara-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);
        }
.ara-qv-phone:hover {
            background: var(--primary);
            color: #000;
        }
@media (max-width: 900px) {
            .modal { 
                align-items: flex-end; 
                padding: 0; 
                background: rgba(0,0,0,0.8); 
            }
            
            .modal-box, .ara-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); 
                } 
            }
            
            .ara-qv-grid { 
                display: flex; 
                flex-direction: column; 
                height: 100%; 
            }
            
            .ara-qv-image { 
                height: 35vh; 
                min-height: 250px; 
                border-bottom: 1px solid rgba(255,255,255,0.1); 
                border-right: none;
            }
            
            .ara-qv-image img { 
                padding: 15px; 
                object-fit: contain !important; 
            }
            
            .ara-qv-scroll { 
                flex-grow: 1; 
                padding: 20px 20px 0 20px; 
            }
            
            .ara-qv-footer { 
                position: relative; 
                width: 100%; 
                padding: 15px 20px 25px 20px; 
                flex-direction: column; 
                gap: 10px; 
            }
        }
.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.ara-blue { 
            background: linear-gradient(135deg, var(--primary), #42C4C1); 
            color: white; 
        }
.btn-hero.ara-gradient { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            color: black; 
        }
.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);
            box-shadow: 0 0 15px rgba(66, 196, 193, 0.3);
        }
@media (max-width: 768px) {
            .ara-grid {
                grid-template-columns: 1fr;
            }
            
            .ara-filters-bar {
                padding: 10px 0;
            }
            
            .ara-filter-btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .ara-filter-nav,
            .ara-sf-scroll {
                justify-content: flex-start;
                padding-left: 15px;
            }
            
            .ara-price-grid {
                grid-template-columns: 1fr;
            }
            
            .ara-quiz-options {
                grid-template-columns: 1fr;
            }
            
            .ara-quiz-option {
                flex-direction: row;
                text-align: left;
                padding: 20px;
            }
            
            .ara-quiz-option-icon {
                margin-bottom: 0;
                margin-right: 15px;
                font-size: 2.5rem;
            }
            
            .cat-modal-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9000;
            box-shadow: 0 5px 20px rgba(66, 196, 193, 0.4);
            transition: 0.3s;
            color: black;
            font-size: 1.5rem;
        }
.scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.6);
        }
@media (max-width: 768px) {
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
.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);
        }
.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;
  }
}