﻿:root {
    --primary: #42C4C1;
    --accent: #B89B72;
    --red-tail: #DC143C;
    --emerald: #50C878;
    --sapphire: #0F52BA;
    --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);
}
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    background: none; 
    border: none;
    z-index: 10;
}
.hero-krasno-section { 
    background: linear-gradient(180deg, #0a0e0d 0%, #141a18 100%); 
    padding: 80px 0 100px; 
    position: relative; 
    overflow: hidden; 
    min-height: 75vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.hero-krasno-section::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(80, 200, 120, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 82, 186, 0.12) 0%, transparent 50%);
    animation: krasnoWaves 18s ease-in-out infinite; 
    pointer-events: none; 
}
@keyframes krasnoWaves {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
    50% { transform: rotate(180deg) scale(1.15); opacity: 0.85; }
}
.floating-feathers-krasno {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
.feather-krasno {
    position: absolute;
    width: 50px;
    height: 90px;
    background: linear-gradient(135deg, var(--red-tail) 0%, var(--emerald) 100%);
    opacity: 0.25;
    border-radius: 50% 0 50% 0;
    animation: floatFeatherKrasno 16s ease-in-out infinite;
    filter: blur(2px);
}
.feather-krasno:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.feather-krasno:nth-child(2) { top: 65%; left: 85%; animation-delay: 5s; background: linear-gradient(135deg, var(--emerald) 0%, var(--sapphire) 100%); }
.feather-krasno:nth-child(3) { top: 35%; left: 75%; animation-delay: 10s; background: linear-gradient(135deg, var(--sapphire) 0%, var(--red-tail) 100%); }
.feather-krasno:nth-child(4) { top: 80%; left: 20%; animation-delay: 13s; }
@keyframes floatFeatherKrasno {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(200deg); }
}
.hero-krasno-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.hero-krasno-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25) 0%, rgba(80, 200, 120, 0.2) 100%); 
    border: 2px solid var(--red-tail);
    color: white; 
    padding: 12px 28px; 
    border-radius: 50px; 
    font-weight: 800; 
    font-size: 0.9rem; 
    margin-bottom: 30px; 
    text-transform: uppercase; 
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5); 
    animation: badgePulseKrasno 3s ease-in-out infinite;
}
@keyframes badgePulseKrasno {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5); }
    50% { transform: scale(1.06); box-shadow: 0 18px 45px rgba(80, 200, 120, 0.7); }
}
.hero-krasno-title{ 
    font-family:'Manrope',sans-serif; 
    font-size: clamp(3.2rem, 9vw, 6.5rem); 
    font-weight:800; 
    line-height: 1.05; 
    margin-bottom: 28px; 
    text-shadow: 0 6px 25px rgba(0,0,0,0.6);
}
.krasno-gradient-text { 
    background: linear-gradient(135deg, var(--red-tail) 0%, var(--emerald) 50%, var(--sapphire) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    animation: krasnoGradientShift 6s ease infinite;
    background-size: 200% 200%;
}
@keyframes krasnoGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-krasno-subtitle { 
    font-size: clamp(1.15rem, 2.8vw, 1.5rem); 
    color: rgba(255,255,255,0.75); 
    max-width: 850px; 
    margin: 0 auto 45px; 
    line-height: 1.65;
}
.hero-krasno-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 22px;
    max-width: 750px;
    margin: 55px auto 0;
}
.krasno-stat-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}
.krasno-stat-box:hover {
    transform: translateY(-12px);
    border-color: var(--red-tail);
    box-shadow: 0 18px 45px rgba(220, 20, 60, 0.4);
    background: rgba(220, 20, 60, 0.12);
}
.krasno-stat-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}
.krasno-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red-tail);
    display: block;
    margin-bottom: 6px;
}
.krasno-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.krasno-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(--red-tail); 
    position: sticky; 
    top: 74px; 
    z-index: 1500; 
    padding: 22px 0; 
    box-shadow: 0 6px 32px rgba(0,0,0,0.55);
}
@media (max-width: 1024px) { 
    .krasno-filters-bar { 
        top: 134px; 
        padding: 16px 0;
    } 
}
.krasno-filter-nav { 
    display: flex; 
    gap: 14px; 
    overflow-x: auto; 
    padding-bottom: 6px; 
    scrollbar-width: none; 
    justify-content: center; 
}
.krasno-filter-nav::-webkit-scrollbar {
    display: none;
}
.krasno-filter-btn { 
    white-space: nowrap; 
    color: rgba(255,255,255,0.75); 
    font-size: 0.92rem; 
    font-weight: 700; 
    padding: 13px 27px; 
    border-radius: 50px; 
    background: rgba(255,255,255,0.06); 
    border: 1px solid rgba(255,255,255,0.12); 
    transition: all 0.35s ease; 
    cursor: pointer; 
    display: flex;
    align-items: center;
    gap: 9px;
}
.krasno-filter-btn:hover { 
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.22) 0%, rgba(80, 200, 120, 0.18) 100%); 
    border-color: var(--red-tail); 
    color: white;
    transform: translateY(-3px); 
    box-shadow: 0 6px 18px rgba(220, 20, 60, 0.45); 
}
.krasno-filter-btn.active { 
    background: linear-gradient(135deg, var(--red-tail) 0%, var(--emerald) 100%); 
    color: #000; 
    border-color: transparent; 
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(220, 20, 60, 0.6); 
}
.krasno-catalog-section { 
    padding: 90px 0; 
    position: relative;
}
.krasno-catalog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 12% 25%, rgba(220, 20, 60, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 88% 75%, rgba(80, 200, 120, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
.krasno-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 40px; 
    position: relative; 
    z-index: 2;
    justify-items: center;
}
.krasno-card { 
    display: flex; 
    flex-direction: column; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%); 
    border: 1px solid rgba(255, 255, 255, 0.12); 
    border-radius: 28px; 
    overflow: hidden; 
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative; 
    cursor: pointer; 
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    max-width: 420px;
    width: 100%;
}
.krasno-card:hover { 
    transform: translateY(-18px) scale(1.03); 
    border-color: var(--red-tail); 
    box-shadow: 0 28px 55px rgba(220, 20, 60, 0.5); 
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(80, 200, 120, 0.06) 100%); 
}
.krasno-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(220, 20, 60, 0.15) 50%, transparent 70%);
    opacity: 0;
    transition: 0.9s;
    pointer-events: none;
}
.krasno-card:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}
.krasno-img-wrapper { 
    height: 380px; 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
}
.krasno-img { 
    width: 90%; 
    max-width: 90%; 
    height: auto; 
    object-fit: contain; 
    transition: 0.9s cubic-bezier(0.4, 0, 0.2, 1); 
    filter: brightness(0.96);
}
.krasno-card:hover .krasno-img { 
    transform: scale(1.2) rotate(6deg); 
    filter: brightness(1.15);
}
.krasno-badges { 
    position: absolute; 
    top: 18px; 
    left: 18px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    z-index: 10; 
}
.krasno-badge { 
    background: rgba(0, 0, 0, 0.75); 
    backdrop-filter: blur(10px); 
    color: white; 
    padding: 7px 16px; 
    border-radius: 12px; 
    font-size: 0.78rem; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 7px; 
    border: 1px solid rgba(255,255,255,0.25);
    transform: translateX(-12px);
    opacity: 0;
    animation: badgeSlideInKrasno 0.6s ease forwards;
}
@keyframes badgeSlideInKrasno {
    to { transform: translateX(0); opacity: 1; }
}
.krasno-badge:nth-child(2) { animation-delay: 0.12s; }
.krasno-badge:nth-child(3) { animation-delay: 0.24s; }
.krasno-badge.cites { border-color: var(--primary); color: var(--primary); }
.krasno-badge.rare { border-color: var(--red-tail); color: var(--red-tail); }
.krasno-badge.popular { border-color: var(--emerald); color: var(--emerald); }
.krasno-qv-btn { 
    position: absolute; 
    top: 18px; 
    right: 18px; 
    width: 48px; 
    height: 48px; 
    background: rgba(0,0,0,0.85); 
    backdrop-filter: blur(12px);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    z-index: 10; 
    transition: 0.35s; 
    font-size: 1.4rem; 
    border: 2px solid rgba(220, 20, 60, 0.6); 
    opacity: 0; 
    transform: translateY(-18px) scale(0.85);
}
.krasno-card:hover .krasno-qv-btn { 
    opacity: 1; 
    transform: translateY(0) scale(1);
}
.krasno-qv-btn:hover { 
    background: var(--red-tail); 
    border-color: var(--emerald); 
    color: #000; 
    transform: scale(1.2) rotate(18deg); 
    box-shadow: 0 6px 22px rgba(220, 20, 60, 0.7);
}
.krasno-content { 
    padding: 35px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 22px;
}
.krasno-name { 
    font-family:'Manrope',sans-serif; 
    font-size: 1.45rem; 
    font-weight: 700; 
    color: #fff; 
    margin-bottom: 6px; 
    line-height: 1.25; 
    transition: 0.35s;
}
.krasno-card:hover .krasno-name {
    color: var(--red-tail);
}
.krasno-latin {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    margin-bottom: 18px;
}
.krasno-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: 0.45s;
}
.krasno-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.12), transparent);
    transition: 0.9s;
}
.krasno-card:hover .krasno-stats::before {
    left: 100%;
}
.krasno-card:hover .krasno-stats {
    background: rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.35);
    box-shadow: inset 0 0 22px rgba(220, 20, 60, 0.12);
}
.krasno-stat { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
    position: relative;
    z-index: 1;
}
.krasno-stat-icon {
    font-size: 1.65rem;
    transition: 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: grayscale(0.35);
}
.krasno-card:hover .krasno-stat-icon {
    transform: scale(1.35) rotate(12deg);
    filter: grayscale(0) drop-shadow(0 0 10px var(--red-tail));
}
.krasno-card:hover .krasno-stat:nth-child(1) .krasno-stat-icon {
    animation: iconBounceKrasno 0.7s ease;
}
.krasno-card:hover .krasno-stat:nth-child(2) .krasno-stat-icon {
    animation: iconBounceKrasno 0.7s 0.12s ease;
}
.krasno-card:hover .krasno-stat:nth-child(3) .krasno-stat-icon {
    animation: iconBounceKrasno 0.7s 0.24s ease;
}
@keyframes iconBounceKrasno {
    0%, 100% { transform: scale(1.35) rotate(12deg); }
    50% { transform: scale(1.6) rotate(-12deg); }
}
.krasno-stat-dots { 
    display: flex; 
    gap: 5px; 
}
.krasno-dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.22); 
    transition: 0.35s; 
    box-shadow: inset 0 0 4px rgba(0,0,0,0.6);
}
.krasno-dot.fill { 
    background: linear-gradient(135deg, var(--red-tail) 0%, var(--emerald) 100%); 
    box-shadow: 0 0 10px var(--red-tail); 
    animation: dotGlowKrasno 1.6s infinite alternate;
}
@keyframes dotGlowKrasno {
    0% { box-shadow: 0 0 6px var(--red-tail); }
    100% { box-shadow: 0 0 18px var(--red-tail), 0 0 28px var(--emerald); }
}
.krasno-card:hover .krasno-dot.fill {
    transform: scale(1.25);
}
.krasno-stat-label { 
    font-size: 0.72rem; 
    color: rgba(255,255,255,0.55); 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 0.6px;
    margin-top: 4px; 
}
.krasno-size-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(220, 20, 60, 0.12);
    border: 1px solid rgba(220, 20, 60, 0.35);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--red-tail);
    transition: 0.35s;
}
.krasno-card:hover .krasno-size-badge {
    background: rgba(220, 20, 60, 0.22);
    border-color: var(--red-tail);
    transform: scale(1.06);
}
.krasno-footer { 
    margin-top: auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-top: 1px solid rgba(255, 255, 255, 0.12); 
    padding-top: 22px; 
}
.krasno-price-block {
    flex: 1;
}
.krasno-price-label { 
    font-size: 0.78rem; 
    color: rgba(255,255,255,0.55); 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 6px;
}
.krasno-price { 
    font-size: 1.5rem; 
    font-weight: 800; 
    background: linear-gradient(135deg, var(--red-tail) 0%, var(--emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.krasno-arrow { 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    background: rgba(220, 20, 60, 0.18); 
    border: 2px solid var(--red-tail); 
    color: var(--red-tail); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
    cursor: pointer; 
    font-size: 1.3rem;
}
.krasno-card:hover .krasno-arrow { 
    background: var(--red-tail); 
    color: #000; 
    transform: rotate(-45deg) scale(1.25); 
    box-shadow: 0 6px 22px rgba(220, 20, 60, 0.7);
}
@media (min-width: 1200px) {
    .krasno-grid.few-items {
        justify-content: center;
    }
}
.why-ara-section {
    padding: 100px 0;
    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;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.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-price-section {
    padding: 100px 0;
    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;
    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;
    border: none;
    border-radius: 12px;
    color: white;
    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;
    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;
    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;
    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;
    transition: opacity 0.3s ease;
}
.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;
}
.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 {
    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;
    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-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-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-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: block;
    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(--red-tail); 
    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(--red-tail) !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(--red-tail) !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; 
    margin-bottom: 25px; 
    line-height: 1; 
}
.ara-qv-price { 
    font-size: 2.5rem; 
    font-weight: 800; 
    margin-bottom: 20px; 
    font-family: 'Manrope'; 
}
.btn-ara-qv-order {
    flex: 1;
    padding: 15px; 
    border: none; 
    border-radius: 12px; 
    color: white; 
    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(220, 20, 60, 0.5);
}
.ara-qv-phone { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid; 
    border-radius: 12px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: var(--transition);
}
.ara-qv-phone:hover {
    background: var(--red-tail);
    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(220, 20, 60, 0.15); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid var(--red-tail); 
}
.cat-modal-close:hover {
    background: var(--red-tail);
    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(220, 20, 60, 0.08) 0%, rgba(26, 31, 29, 0.5) 100%); 
    padding: 25px 15px; 
    border-radius: 20px; 
    border: 1px solid rgba(220, 20, 60, 0.25); 
    transition: all 0.3s ease; 
    cursor: pointer; 
    text-decoration: none; 
}
.cat-modal-item:hover { 
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25) 0%, rgba(80, 200, 120, 0.15) 100%); 
    border-color: var(--red-tail); 
    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(--red-tail); 
    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(220, 20, 60, 0.25); 
    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; 
    padding: 15px; 
    border-radius: 12px; 
    font-size: 0.75rem; 
    text-align: center; 
    border: 1px solid; 
}
.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: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(--red-tail); 
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9000;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    transition: 0.3s;
    color: white;
    font-size: 1.5rem;
}
.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.6);
}
@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(--red-tail) !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; 
    }
    
    .cat-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
@media (max-width: 768px) {
    .krasno-grid {
        grid-template-columns: 1fr;
    }
    
    .krasno-filters-bar {
        padding: 10px 0;
    }
    
    .krasno-filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .krasno-filter-nav {
        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;
    }
}
.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);
        }