﻿:root {
            --primary: #00D4FF; 
            --secondary: #9D4EDD; 
            --accent: #FFD700; 
            --bg-dark: #0a0a0f;
            --bg-dark-lighter: #15151d;
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --border: rgba(0, 212, 255, 0.2);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 35px 60px -15px rgba(0, 212, 255, 0.4);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
header {
            position: fixed; 
            top: 0; 
            width: 100%; 
            z-index: 2000;
            background: rgba(10, 10, 15, 0.95); 
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-bottom: 1px solid var(--border); 
            padding: 12px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }
.dropdown {
            position: absolute; 
            top: 100%;
            left: 0;
            width: 240px;
            background: rgba(21, 21, 29, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 12px; 
            padding: 15px 0; 
            opacity: 0; 
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            border: 1px solid var(--border); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }
.dropdown a:hover { 
            color: var(--primary); 
            background: rgba(0, 212, 255, 0.1);
        }
.soc-group a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
.soc-group a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
        }
.btn-consult { 
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white; 
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 800; 
            font-size: 0.75rem;
            border: none; 
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }
.btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
        }
@media (max-width: 1024px) {
            header { 
                padding: 10px 0; 
            }
            
            .header-inner {
                flex-direction: column;
                gap: 10px;
            }
            
            .logo-row {
                gap: 15px;
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .mobile-phone-top {
                display: block !important;
                font-size: 0.9rem;
                font-weight: 800;
                color: var(--text);
            }
            
            .header-bottom-mobile {
                width: 100%;
                display: flex !important;
                justify-content: center;
                padding: 10px 0;
                border-top: 1px solid var(--border);
                margin-top: 10px;
            }
            
            .header-right {
                display: none !important;
            }
        }
.hero-peacock-section { 
            background: linear-gradient(180deg, #0a0a0f 0%, #0f1520 100%); 
            padding: 80px 0 100px; 
            position: relative; 
            overflow: hidden; 
            min-height: 85vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
.hero-peacock-section::before { 
            content: ''; 
            position: absolute; 
            top: -50%; 
            left: 50%; 
            width: 150%; 
            height: 150%; 
            background: 
                radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
            transform: translateX(-50%);
            animation: pulsePeacock 10s ease-in-out infinite; 
            pointer-events: none; 
        }
@keyframes pulsePeacock {
            0%, 100% { opacity: 0.9; transform: translateX(-50%) scale(1) rotate(0deg); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.15) rotate(5deg); }
        }
.floating-feathers-peacock {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.feather-peacock {
            position: absolute;
            width: 50px;
            height: 80px;
            background: linear-gradient(135deg, 
                var(--primary) 0%, 
                var(--secondary) 50%, 
                var(--accent) 100%);
            opacity: 0.25;
            clip-path: ellipse(40% 50% at 50% 50%);
            animation: floatFeatherPeacock 20s ease-in-out infinite;
            filter: blur(1.5px);
            border-radius: 50%;
        }
.feather-peacock::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            border-radius: 50%;
            opacity: 0.6;
        }
.feather-peacock:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; transform: rotate(25deg); }
.feather-peacock:nth-child(2) { top: 60%; left: 82%; animation-delay: 5s; transform: rotate(-15deg); width: 60px; height: 90px; }
.feather-peacock:nth-child(3) { top: 30%; left: 90%; animation-delay: 10s; transform: rotate(45deg); }
.feather-peacock:nth-child(4) { top: 80%; left: 12%; animation-delay: 15s; transform: rotate(-30deg); width: 45px; height: 75px; }
.feather-peacock:nth-child(5) { top: 20%; left: 50%; animation-delay: 3s; transform: rotate(10deg); }
.feather-peacock:nth-child(6) { top: 70%; left: 45%; animation-delay: 8s; transform: rotate(-20deg); width: 55px; height: 85px; }
@keyframes floatFeatherPeacock {
            0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)) scale(1); opacity: 0.25; }
            25% { transform: translateY(-60px) rotate(calc(var(--rotate, 0deg) + 15deg)) scale(1.2); opacity: 0.45; }
            50% { transform: translateY(-30px) rotate(calc(var(--rotate, 0deg) + 30deg)) scale(0.9); opacity: 0.2; }
            75% { transform: translateY(-50px) rotate(calc(var(--rotate, 0deg) + 45deg)) scale(1.1); opacity: 0.35; }
        }
.hero-peacock-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }
.hero-peacock-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 12px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(157, 78, 221, 0.25) 100%); 
            border: 2px solid var(--primary);
            color: white; 
            padding: 14px 32px; 
            border-radius: 50px; 
            font-weight: 800; 
            font-size: 0.95rem; 
            margin-bottom: 35px; 
            text-transform: uppercase; 
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6), 0 0 60px rgba(157, 78, 221, 0.3); 
            animation: badgePulsePeacock 3.5s ease-in-out infinite;
        }
@keyframes badgePulsePeacock {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6), 0 0 60px rgba(157, 78, 221, 0.3); }
            50% { transform: scale(1.1); box-shadow: 0 15px 50px rgba(157, 78, 221, 0.8), 0 0 80px rgba(255, 215, 0, 0.4); }
        }
.hero-peacock-title{ 
            font-family:'Manrope',sans-serif; 
            font-size: clamp(3.8rem, 10vw, 3.5rem); 
            font-weight:800; 
            line-height: 1; 
            margin-bottom: 35px; 
            text-shadow: 0 8px 30px rgba(0, 212, 255, 0.7), 0 0 60px rgba(157, 78, 221, 0.5);
            letter-spacing: -2px;
        }
.peacock-gradient-text { 
            background: linear-gradient(135deg, 
                var(--primary) 0%, 
                var(--secondary) 35%, 
                var(--accent) 70%, 
                var(--primary) 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            animation: peacockGradientShift 8s ease infinite;
            background-size: 400% 400%;
        }
@keyframes peacockGradientShift {
            0% { background-position: 0% 50%; }
            33% { background-position: 100% 50%; }
            66% { background-position: 50% 100%; }
            100% { background-position: 0% 50%; }
        }
.hero-peacock-subtitle { 
            font-size: clamp(1.2rem, 3vw, 1.6rem); 
            color: rgba(255,255,255,0.8); 
            max-width: 900px; 
            margin: 0 auto 55px; 
            line-height: 1.8;
        }
.hero-peacock-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            max-width: 950px;
            margin: 70px auto 0;
        }
.peacock-stat-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.25);
            border-radius: 30px;
            padding: 35px 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
.peacock-stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: 0.7s;
        }
.peacock-stat-box:hover::before {
            opacity: 1;
            transform: scale(1.3) rotate(45deg);
        }
.peacock-stat-box:hover {
            transform: translateY(-15px) scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 25px 60px rgba(0, 212, 255, 0.5), 0 0 80px rgba(157, 78, 221, 0.3);
            background: rgba(0, 212, 255, 0.15);
        }
.peacock-stat-icon {
            font-size: 3.5rem;
            margin-bottom: 18px;
            display: block;
            filter: drop-shadow(0 5px 20px rgba(0, 212, 255, 0.6));
        }
.peacock-stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 10px;
            text-shadow: 0 3px 15px rgba(0, 212, 255, 0.5);
        }
.peacock-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }
.peacock-filters-bar { 
            background: linear-gradient(135deg, rgba(15, 15, 20, 0.98) 0%, rgba(21, 21, 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, 212, 255, 0.4);
        }
@media (max-width: 1024px) { 
            .peacock-filters-bar { 
                top: 134px; 
                padding: 15px 0;
            } 
        }
.peacock-filter-nav { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            padding-bottom: 5px; 
            scrollbar-width: none; 
            justify-content: center; 
        }
.peacock-filter-nav::-webkit-scrollbar {
            display: none;
        }
.peacock-filter-btn { 
            white-space: nowrap; 
            color: rgba(255,255,255,0.7); 
            font-size: 0.9rem; 
            font-weight: 700; 
            padding: 12px 28px; 
            border-radius: 50px; 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(0, 212, 255, 0.2); 
            transition: all 0.3s ease; 
            cursor: pointer; 
            display: flex;
            align-items: center;
            gap: 8px;
        }
.peacock-filter-btn:hover { 
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(157, 78, 221, 0.25) 100%); 
            border-color: var(--primary); 
            color: white;
            transform: translateY(-2px); 
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5); 
        }
.peacock-filter-btn.active { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); 
            color: #fff; 
            border-color: transparent; 
            font-weight: 800;
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6); 
        }
.peacock-smart-filters { 
            padding: 20px 0; 
            border-bottom: 1px solid rgba(0, 212, 255, 0.15); 
            background: rgba(10, 10, 15, 0.5); 
        }
.peacock-sf-scroll { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            justify-content: center; 
            padding-bottom: 5px; 
        }
.peacock-sf-scroll::-webkit-scrollbar {
            display: none;
        }
.peacock-sf-btn { 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(0, 212, 255, 0.2); 
            color: rgba(255,255,255,0.7); 
            padding: 10px 22px; 
            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; 
        }
.peacock-sf-btn:hover { 
            background: rgba(0, 212, 255, 0.2); 
            border-color: var(--primary); 
            color: var(--primary); 
        }
.peacock-sf-btn.active {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            border-color: transparent;
            font-weight: 800;
        }
.peacock-catalog-section { 
            padding: 80px 0; 
            position: relative;
        }
.peacock-catalog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(157, 78, 221, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
            pointer-events: none;
        }
.peacock-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); 
            gap: 45px; 
            position: relative; 
            z-index: 2;
            justify-content: center;
        }
@media (min-width: 768px) {
            .peacock-grid[data-count="1"],
            .peacock-grid[data-count="2"],
            .peacock-grid[data-count="3"],
            .peacock-grid[data-count="4"] {
                justify-content: center;
                grid-template-columns: repeat(auto-fit, minmax(420px, 480px));
            }
        }
.peacock-card { 
            display: flex; 
            flex-direction: column; 
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%); 
            border: 1px solid rgba(0, 212, 255, 0.2); 
            border-radius: 35px; 
            overflow: hidden; 
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
            position: relative; 
            cursor: pointer; 
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
.peacock-card:hover { 
            transform: translateY(-20px) scale(1.04); 
            border-color: var(--primary); 
            box-shadow: 0 35px 70px rgba(0, 212, 255, 0.6), 0 0 80px rgba(157, 78, 221, 0.4); 
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(157, 78, 221, 0.1) 100%); 
        }
.peacock-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.2) 50%, transparent 70%);
            opacity: 0;
            transition: 1s;
            pointer-events: none;
        }
.peacock-card:hover::before {
            opacity: 1;
            transform: rotate(45deg);
        }
.peacock-img-wrapper { 
            height: 450px; 
            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%);
        }
.peacock-img { 
            width: 95%; 
            max-width: 95%; 
            height: auto; 
            object-fit: contain; 
            transition: 1s cubic-bezier(0.4, 0, 0.2, 1); 
            filter: brightness(0.98) saturate(1.15);
        }
.peacock-card:hover .peacock-img { 
            transform: scale(1.3) rotate(4deg); 
            filter: brightness(1.2) saturate(1.4);
        }
.peacock-badges { 
            position: absolute; 
            top: 25px; 
            left: 25px; 
            display: flex; 
            flex-direction: column; 
            gap: 12px; 
            z-index: 10; 
        }
.peacock-badge { 
            background: rgba(0, 0, 0, 0.8); 
            backdrop-filter: blur(12px); 
            color: white; 
            padding: 10px 18px; 
            border-radius: 14px; 
            font-size: 0.85rem; 
            font-weight: 700; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            border: 1px solid rgba(0, 212, 255, 0.35);
            transform: translateX(-10px);
            opacity: 0;
            animation: badgeSlideIn 0.7s ease forwards;
        }
@keyframes badgeSlideIn {
            to { transform: translateX(0); opacity: 1; }
        }
.peacock-badge:nth-child(2) { animation-delay: 0.15s; }
.peacock-badge:nth-child(3) { animation-delay: 0.3s; }
.peacock-badge.premium { border-color: var(--accent); color: var(--accent); }
.peacock-badge.rare { border-color: var(--secondary); color: var(--secondary); }
.peacock-badge.popular { border-color: var(--primary); color: var(--primary); }
.peacock-qv-btn { 
            position: absolute; 
            top: 25px; 
            right: 25px; 
            width: 55px; 
            height: 55px; 
            background: rgba(0,0,0,0.88); 
            backdrop-filter: blur(15px);
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            z-index: 10; 
            transition: 0.4s; 
            font-size: 1.5rem; 
            border: 2px solid rgba(0, 212, 255, 0.7); 
            opacity: 0; 
            transform: translateY(-20px) scale(0.7);
        }
.peacock-card:hover .peacock-qv-btn { 
            opacity: 1; 
            transform: translateY(0) scale(1);
        }
.peacock-qv-btn:hover { 
            background: var(--primary); 
            border-color: var(--secondary); 
            color: #000; 
            transform: scale(1.25) rotate(15deg); 
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.8);
        }
.peacock-content { 
            padding: 40px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            gap: 25px;
        }
.peacock-name { 
            font-family:'Manrope',sans-serif; 
            font-size: 1.7rem; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 10px; 
            line-height: 1.3; 
            transition: 0.3s;
        }
.peacock-card:hover .peacock-name {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.peacock-latin {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            margin-bottom: 20px;
        }
.peacock-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 28px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: 0.5s;
        }
.peacock-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
            transition: 1s;
        }
.peacock-card:hover .peacock-stats::before {
            left: 100%;
        }
.peacock-card:hover .peacock-stats {
            background: rgba(0, 212, 255, 0.12);
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.2);
        }
.peacock-stat { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 12px; 
            position: relative;
            z-index: 1;
        }
.peacock-stat-icon {
            font-size: 1.9rem;
            transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: grayscale(0.1);
        }
.peacock-card:hover .peacock-stat-icon {
            transform: scale(1.5) rotate(18deg);
            filter: grayscale(0) drop-shadow(0 0 12px var(--primary));
        }
.peacock-card:hover .peacock-stat:nth-child(1) .peacock-stat-icon {
            animation: iconBouncePeacock 0.8s ease;
        }
.peacock-card:hover .peacock-stat:nth-child(2) .peacock-stat-icon {
            animation: iconBouncePeacock 0.8s 0.15s ease;
        }
.peacock-card:hover .peacock-stat:nth-child(3) .peacock-stat-icon {
            animation: iconBouncePeacock 0.8s 0.3s ease;
        }
@keyframes iconBouncePeacock {
            0%, 100% { transform: scale(1.5) rotate(18deg); }
            50% { transform: scale(1.8) rotate(-18deg); }
        }
.peacock-stat-dots { 
            display: flex; 
            gap: 6px; 
        }
.peacock-dot { 
            width: 9px; 
            height: 9px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.2); 
            transition: 0.4s; 
            box-shadow: inset 0 0 5px rgba(0,0,0,0.6);
        }
.peacock-dot.fill { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%); 
            box-shadow: 0 0 12px var(--primary); 
            animation: dotGlowPeacock 2s infinite alternate;
        }
@keyframes dotGlowPeacock {
            0% { box-shadow: 0 0 8px var(--primary); }
            100% { box-shadow: 0 0 20px var(--primary), 0 0 35px var(--secondary); }
        }
.peacock-card:hover .peacock-dot.fill {
            transform: scale(1.4);
        }
.peacock-stat-label { 
            font-size: 0.75rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            font-weight: 700; 
            letter-spacing: 0.8px;
            margin-top: 5px; 
        }
.peacock-size-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px 20px;
            background: rgba(157, 78, 221, 0.15);
            border: 1px solid rgba(157, 78, 221, 0.4);
            border-radius: 16px;
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--secondary);
            transition: 0.3s;
        }
.peacock-card:hover .peacock-size-badge {
            background: rgba(157, 78, 221, 0.3);
            border-color: var(--secondary);
            transform: scale(1.08);
        }
.peacock-footer { 
            margin-top: auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-top: 1px solid rgba(0, 212, 255, 0.2); 
            padding-top: 25px; 
        }
.peacock-price-block {
            flex: 1;
        }
.peacock-price-label { 
            font-size: 0.8rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            display: block; 
            margin-bottom: 8px;
        }
.peacock-price { 
            font-size: 1.8rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.peacock-arrow { 
            width: 50px; 
            height: 50px; 
            border-radius: 50%; 
            background: rgba(0, 212, 255, 0.2); 
            border: 2px solid var(--primary); 
            color: var(--primary); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
            cursor: pointer; 
            font-size: 1.4rem;
        }
.peacock-card:hover .peacock-arrow { 
            background: var(--primary); 
            color: #000; 
            transform: rotate(-45deg) scale(1.3); 
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.8);
        }
.peacock-load-more { 
            display: flex;
            justify-content: center;
            margin-top: 80px;
        }
.btn-peacock-more { 
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%); 
            border: 2px solid var(--primary); 
            color: #fff; 
            padding: 22px 60px; 
            border-radius: 50px; 
            font-size: 1.1rem; 
            font-weight: 700; 
            cursor: pointer; 
            transition: 0.4s; 
            display: inline-flex;
            align-items: center;
            gap: 16px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
.btn-peacock-more:hover { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); 
            color: #fff; 
            border-color: var(--secondary);
            transform: translateY(-7px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.7);
        }
.why-peacock-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0a0f 0%, #0f1520 100%);
            position: relative;
            overflow: hidden;
        }
.why-peacock-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite;
        }
.why-peacock-section::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -200px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(157, 78, 221, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 12s ease-in-out infinite reverse;
        }
@keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.2); opacity: 1; }
        }
.why-peacock-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.why-peacock-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(3rem, 6vw, 5rem);
            color: white;
            margin-bottom: 40px;
            line-height: 1.1;
        }
.why-peacock-content h2 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.why-peacock-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
.why-peacock-item {
            display: flex;
            gap: 25px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 25px;
            transition: 0.5s;
            cursor: default;
        }
.why-peacock-item:hover {
            background: rgba(0, 212, 255, 0.12);
            border-color: var(--primary);
            transform: translateX(20px);
            box-shadow: -8px 0 30px rgba(0, 212, 255, 0.4);
        }
.why-peacock-icon {
            font-size: 3rem;
            min-width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 212, 255, 0.15);
            border-radius: 20px;
            border: 2px solid rgba(0, 212, 255, 0.4);
            transition: 0.5s;
        }
.why-peacock-item:hover .why-peacock-icon {
            transform: scale(1.25) rotate(15deg);
            background: var(--primary);
            border-color: var(--secondary);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.7);
        }
.why-peacock-text h4 {
            font-size: 1.35rem;
            color: white;
            margin-bottom: 12px;
            font-weight: 700;
        }
.why-peacock-text p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            font-size: 1rem;
        }
.why-peacock-image {
            position: relative;
        }
.why-peacock-image img {
            width: 100%;
            height: auto;
            border-radius: 40px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
            border: 3px solid rgba(0, 212, 255, 0.4);
            transition: 0.7s;
        }
.why-peacock-image:hover img {
            transform: scale(1.08) rotate(3deg);
            border-color: var(--primary);
            box-shadow: 0 50px 120px rgba(0, 212, 255, 0.7);
        }
.floating-badge-peacock {
            position: absolute;
            background: rgba(0, 0, 0, 0.88);
            backdrop-filter: blur(15px);
            padding: 20px 28px;
            border-radius: 20px;
            border: 2px solid var(--accent);
            color: white;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
            animation: floatBadgePeacock 4s ease-in-out infinite;
        }
.floating-badge-peacock:nth-child(1) {
            top: 15%;
            right: -30px;
            animation-delay: 0s;
        }
.floating-badge-peacock:nth-child(2) {
            bottom: 20%;
            left: -40px;
            animation-delay: 1.5s;
            border-color: var(--primary);
        }
@keyframes floatBadgePeacock {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
@media (max-width: 900px) {
            .why-peacock-grid { 
                grid-template-columns: 1fr; 
                gap: 50px;
            }
            .why-peacock-image { 
                order: -1; 
            }
            .floating-badge-peacock {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 15px;
            }
        }
.peacock-price-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0a0f 0%, #0f1520 100%);
            position: relative;
            overflow: hidden;
        }
.peacock-price-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.05) 0px, transparent 2px, transparent 50px),
                repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.05) 0px, transparent 2px, transparent 50px);
            opacity: 0.4;
            pointer-events: none;
        }
.peacock-price-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
.peacock-price-badge {
            display: inline-block;
            background: rgba(0, 212, 255, 0.15);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
.peacock-price-title {
            font-family: 'Playfair Display';
            font-size: clamp(3rem, 6vw, 5rem);
            color: white;
            margin-bottom: 25px;
        }
.peacock-price-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.peacock-price-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }
.peacock-price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
            justify-content: center;
        }
.peacock-price-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 212, 255, 0.25);
            border-radius: 32px;
            padding: 50px 40px;
            text-align: center;
            transition: 0.7s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
.peacock-price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.15), transparent);
            transform: rotate(45deg);
            transition: 1s;
        }
.peacock-price-card:hover::before {
            left: 100%;
        }
.peacock-price-card:hover {
            transform: translateY(-20px);
            border-color: var(--primary);
            background: rgba(0, 212, 255, 0.12);
            box-shadow: 0 35px 70px rgba(0, 212, 255, 0.5);
        }
.peacock-price-card.popular {
            border: 2px solid var(--accent);
            background: rgba(255, 215, 0, 0.08);
        }
.peacock-price-card.popular::after {
            content: '⭐ ПОПУЛЯРНЫЙ';
            position: absolute;
            top: 30px;
            right: -45px;
            background: var(--accent);
            color: #000;
            padding: 7px 50px;
            font-size: 0.75rem;
            font-weight: 800;
            transform: rotate(45deg);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
        }
.peacock-price-emoji {
            font-size: 5rem;
            display: block;
            margin-bottom: 30px;
            animation: bouncePeacock 3s ease-in-out infinite;
        }
@keyframes bouncePeacock {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
.peacock-price-card h3{
            font-size: 1.8rem;
            color: white;
            margin-bottom: 15px;
            font-weight:800;
        }
.peacock-price-card .latin {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            margin-bottom: 32px;
        }
.peacock-price-value {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px;
        }
.peacock-price-features {
            list-style: none;
            margin: 32px 0;
            text-align: left;
        }
.peacock-price-features li {
            padding: 14px 0;
            color: rgba(255, 255, 255, 0.75);
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 1rem;
        }
.peacock-price-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.4rem;
        }
.btn-peacock-order {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border: none;
            border-radius: 16px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.4s;
            font-size: 1rem;
            letter-spacing: 1.5px;
            position: relative;
            z-index: 10;
            pointer-events: auto;
        }
.btn-peacock-order:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.7);
        }
.peacock-quiz-section {
            padding: 120px 0;
            background: radial-gradient(circle at 50% 50%, #15151d 0%, #0a0a0f 100%);
            position: relative;
            overflow: hidden;
        }
.peacock-quiz-section::before {
            content: '🦚';
            position: absolute;
            font-size: 500px;
            opacity: 0.03;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: rotateSun 70s linear infinite;
        }
@keyframes rotateSun {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
.peacock-quiz-container {
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(157, 78, 221, 0.1) 100%);
            backdrop-filter: blur(30px);
            border: 2px solid rgba(0, 212, 255, 0.4);
            border-radius: 45px;
            padding: 80px 60px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
            position: relative;
            overflow: hidden;
        }
.peacock-quiz-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 7px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            width: 0%;
            transition: width 0.7s ease;
            box-shadow: 0 0 25px var(--primary);
        }
.peacock-quiz-header {
            text-align: center;
            margin-bottom: 60px;
        }
.peacock-quiz-step-indicator {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }
.peacock-quiz-question {
            font-family: 'Playfair Display';
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
.peacock-quiz-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
        }
.peacock-quiz-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 28px;
            margin-top: 50px;
        }
.peacock-quiz-option {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 212, 255, 0.25);
            border-radius: 28px;
            padding: 40px 32px;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }
.peacock-quiz-option::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.8s, height 0.8s;
        }
.peacock-quiz-option:hover::before {
            width: 400px;
            height: 400px;
        }
.peacock-quiz-option:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            background: rgba(0, 212, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 212, 255, 0.5);
        }
.peacock-quiz-option-icon {
            font-size: 4.5rem;
            position: relative;
            z-index: 1;
            transition: 0.6s;
        }
.peacock-quiz-option:hover .peacock-quiz-option-icon {
            transform: scale(1.3) rotate(15deg);
        }
.peacock-quiz-option-text {
            position: relative;
            z-index: 1;
        }
.peacock-quiz-option-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
.peacock-quiz-option-desc {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.65);
        }
.peacock-quiz-loader {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 500px;
        }
.peacock-loader-spinner {
            width: 120px;
            height: 120px;
            border: 7px solid rgba(255, 255, 255, 0.15);
            border-top: 7px solid var(--primary);
            border-right: 7px solid var(--secondary);
            border-bottom: 7px solid var(--accent);
            border-radius: 50%;
            animation: spin 2s linear infinite;
            margin-bottom: 40px;
        }
@keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
.peacock-loader-text {
            font-size: 1.5rem;
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
        }
.peacock-loader-subtext {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.5);
        }
.peacock-quiz-result {
            display: none;
            text-align: center;
            animation: fadeInPeacock 1s ease;
        }
@keyframes fadeInPeacock {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
.peacock-result-match {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.95rem;
            text-transform: uppercase;
            margin-bottom: 32px;
            letter-spacing: 1.5px;
        }
.peacock-result-title {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: white;
            margin-bottom: 40px;
        }
.peacock-result-img {
            width: 300px;
            height: 300px;
            object-fit: cover;
            object-position: center 20%;
            border-radius: 50%;
            border: 5px solid var(--primary);
            margin: 0 auto 40px;
            box-shadow: 0 0 70px rgba(0, 212, 255, 0.7);
            animation: resultImgAppearPeacock 1.4s ease;
        }
@keyframes resultImgAppearPeacock {
            from { transform: scale(0.5) rotate(-15deg); opacity: 0; }
            to { transform: scale(1) rotate(0deg); opacity: 1; }
        }
.peacock-result-desc {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.9;
            max-width: 750px;
            margin: 0 auto 50px;
        }
.btn-peacock-retry {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: 0.4s;
            margin-bottom: 40px;
        }
.btn-peacock-retry:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-5px);
        }
.peacock-retry-icon {
            display: inline-block;
            transition: transform 0.7s ease;
        }
.btn-peacock-retry:hover .peacock-retry-icon {
            transform: rotate(180deg);
        }
.peacock-quiz-form {
            background: rgba(255, 255, 255, 0.08);
            padding: 45px;
            border-radius: 28px;
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid rgba(0, 212, 255, 0.25);
        }
.peacock-form-title {
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 28px;
            text-transform: uppercase;
            font-size: 1.05rem;
            letter-spacing: 1.5px;
        }
.peacock-quiz-input {
            width: 100%;
            padding: 20px 28px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: center;
            outline: none;
            transition: 0.3s;
        }
.peacock-quiz-input:focus {
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
        }
.peacock-quiz-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
.btn-peacock-submit {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            border: none;
            border-radius: 16px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.4s;
            font-size: 1.05rem;
            letter-spacing: 1.5px;
        }
.btn-peacock-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.7);
        }
.peacock-form-note {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 20px;
            text-align: center;
        }
.peacock-quiz-step {
            display: none;
        }
.peacock-quiz-step.active {
            display: block;
            animation: slideInPeacock 0.7s ease;
        }
@keyframes slideInPeacock {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
.peacock-care-section {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(15, 21, 32, 0.95) 100%);
            position: relative;
            overflow: hidden;
        }
.peacock-care-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 80px;
            align-items: center;
        }
.peacock-care-image {
            position: relative;
        }
.peacock-care-image img {
            width: 100%;
            height: auto;
            border-radius: 40px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
            border: 3px solid rgba(0, 212, 255, 0.4);
        }
.expert-badge-peacock {
            position: absolute;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            padding: 25px 32px;
            border-radius: 25px;
            border: 2px solid var(--accent);
            color: white;
            font-weight: 700;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
        }
.expert-badge-peacock:nth-child(1) {
            top: 15%;
            right: -40px;
        }
.expert-badge-peacock:nth-child(2) {
            bottom: 22%;
            left: -50px;
            border-color: var(--primary);
        }
.expert-badge-peacock-icon {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 10px;
        }
.expert-badge-peacock-text {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.85);
        }
.peacock-care-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(3rem, 6vw, 5rem);
            color: white;
            margin-bottom: 32px;
            line-height: 1.1;
        }
.peacock-care-content h2 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.peacock-care-intro {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 50px;
            line-height: 1.9;
        }
.peacock-care-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
.peacock-care-item {
            display: flex;
            gap: 28px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.04);
            border-left: 4px solid var(--primary);
            border-radius: 20px;
            transition: 0.4s;
        }
.peacock-care-item:hover {
            background: rgba(0, 212, 255, 0.12);
            transform: translateX(15px);
            box-shadow: -8px 0 30px rgba(0, 212, 255, 0.3);
        }
.peacock-care-item-icon {
            font-size: 2.5rem;
            min-width: 60px;
        }
.peacock-care-item h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
.peacock-care-item p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            font-size: 1rem;
        }
@media (max-width: 900px) {
            .peacock-care-grid {
                grid-template-columns: 1fr;
            }
            .peacock-care-image {
                order: -1;
            }
            .expert-badge-peacock {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 15px;
            }
        }
.peacock-seo-section {
            padding: 120px 0;
            background: radial-gradient(circle at 50% 15%, #15151d 0%, #06060a 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(0, 212, 255, 0.3);
            border-bottom: 1px solid rgba(0, 212, 255, 0.3);
        }
.peacock-seo-grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
            background-size: 70px 70px;
            opacity: 0.5;
            pointer-events: none;
        }
.peacock-seo-content {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.peacock-faq-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 40px;
            padding: 60px 55px;
            box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
            margin-bottom: 80px;
        }
.peacock-faq-title {
            font-family: 'Playfair Display';
            font-size: 3rem;
            color: white;
            text-align: center;
            margin-bottom: 50px;
        }
.peacock-faq-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.peacock-faq-item {
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            padding: 32px 0;
            transition: 0.3s;
        }
.peacock-faq-item:last-child {
            border-bottom: none;
        }
.peacock-faq-question {
            font-weight: 700;
            color: white;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
            padding-right: 30px;
        }
.peacock-faq-question:hover {
            color: var(--primary);
        }
.peacock-faq-icon {
            font-size: 1.7rem;
            color: var(--primary);
            transition: 0.5s;
            min-width: 40px;
            text-align: center;
        }
.peacock-faq-item.active .peacock-faq-icon {
            transform: rotate(45deg);
            color: var(--accent);
        }
.peacock-faq-answer {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.1rem;
            line-height: 1.9;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.7s ease, padding 0.7s ease;
        }
.peacock-faq-item.active .peacock-faq-answer {
            max-height: 1500px;
            padding-top: 28px;
        }
.peacock-faq-item.active .peacock-faq-question {
            color: var(--primary);
        }
.peacock-seo-text {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 32px;
            padding: 60px 55px;
        }
.peacock-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(0, 212, 255,0.15);
			border: 1px solid var(--primary);
			padding: 14px 28px;
			border-radius: 50px;
			color: var(--primary);
			font-size: 0.9rem;
			font-weight: 700;
			margin-bottom: 40px;
			box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
			}
.peacock-seo-text h2 {
        font-family: 'Playfair Display';
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        color: white;
        margin-bottom: 32px;
        line-height: 1.2;
    }
.peacock-seo-text h2 span {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
.peacock-seo-description {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1rem;
        line-height: 2;
    }
.peacock-seo-description p {
        margin-bottom: 28px;
    }
.peacock-seo-description strong {
        color: var(--accent);
        font-weight: 600;
    }
.peacock-seo-description ul {
        list-style: none;
        margin: 32px 0;
        padding-left: 15px;
    }
.peacock-seo-description li {
        margin-bottom: 16px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }
.peacock-seo-description li::before {
        content: '🦚';
        font-size: 1.4rem;
        flex-shrink: 0;
    }
.peacock-seo-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 50px;
        padding-top: 40px;
        border-top: 1px solid rgba(0, 212, 255, 0.1);
    }
.peacock-seo-tag {
        background: rgba(255, 255, 255, 0.05);
        padding: 12px 20px;
        border-radius: 14px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(0, 212, 255, 0.1);
        transition: 0.3s;
    }
.peacock-seo-tag:hover {
        color: var(--primary);
        border-color: var(--primary);
        background: rgba(0, 212, 255, 0.1);
    }
footer { 
            padding: 100px 0 40px; 
            background: rgba(10, 10, 15, 0.8); 
            border-top: 1px solid var(--border); 
            margin-top: auto; 
            position: relative; 
            z-index: 10; 
        }
.modal { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 10000; 
            background: rgba(0, 0, 0, 0.94); 
            backdrop-filter: blur(10px); 
            align-items: center; 
            justify-content: center; 
            padding: 0; 
            opacity: 0; 
            transition: opacity 0.4s ease; 
        }
.modal-box, .peacock-qv-box { 
            position: relative !important; 
            background: #111; 
            border: 1px solid var(--primary); 
            border-radius: 28px; 
            width: 1000px; 
            max-width: 100%; 
            max-height: 90vh; 
            display: flex; 
            flex-direction: column; 
            overflow: hidden; 
            animation: zoomInPeacock 0.5s ease; 
            box-shadow: 0 30px 70px rgba(0,0,0,0.95); 
        }
@keyframes zoomInPeacock { 
            from { 
                opacity: 0; 
                transform: scale(0.9); 
            } 
            to { 
                opacity: 1; 
                transform: scale(1); 
            } 
        }
.form-box-styled { 
            max-width: 600px; 
            padding: 50px; 
        }
.modal-close { 
            position: absolute !important; 
            top: 25px !important; 
            right: 25px !important; 
            width: 52px !important; 
            height: 52px !important; 
            background: rgba(0,0,0,0.7) !important; 
            border: 2px solid var(--primary) !important; 
            border-radius: 50% !important; 
            color: white !important; 
            font-size: 28px !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);
        }
.peacock-qv-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            height: 650px; 
            overflow: hidden; 
        }
.peacock-qv-image { 
            background: black; 
            width: 100%; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border-right: 1px solid rgba(0, 212, 255, 0.25); 
        }
.peacock-qv-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
.peacock-qv-scroll { 
            padding: 50px 50px 120px 50px; 
            overflow-y: auto; 
            display: flex; 
            flex-direction: column; 
        }
.peacock-qv-footer { 
            position: absolute; 
            bottom: 0; 
            right: 0; 
            width: 50%; 
            padding: 25px 50px; 
            background: rgba(17, 17, 17, 0.98); 
            border-top: 1px solid rgba(0, 212, 255, 0.25); 
            display: flex; 
            gap: 20px; 
            backdrop-filter: blur(10px); 
        }
.peacock-qv-header h2 { 
            font-family: 'Playfair Display'; 
            font-size: 2.6rem; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px; 
            line-height: 1; 
        }
.peacock-qv-price { 
            font-size: 3rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 28px; 
            font-family: 'Manrope'; 
        }
.btn-peacock-qv-order {
            flex: 1;
            padding: 18px; 
            background: linear-gradient(135deg, var(--primary), var(--secondary)); 
            border: none; 
            border-radius: 16px; 
            color: white; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            transition: var(--transition);
        }
.btn-peacock-qv-order:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.7);
        }
.peacock-qv-phone { 
            flex: 1; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--primary); 
            border-radius: 16px; 
            color: var(--primary); 
            font-weight: 700; 
            text-decoration: none; 
            transition: var(--transition);
        }
.peacock-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.88); 
            }
            
            .modal-box, .peacock-qv-box { 
                width: 100% !important; 
                margin: 0 !important; 
                border-radius: 32px 32px 0 0 !important; 
                border: none !important; 
                border-top: 1px solid var(--primary) !important; 
                height: 94vh !important; 
                max-height: 94vh !important; 
                animation: slideUpPeacock 0.6s ease; 
            }
            
            @keyframes slideUpPeacock { 
                from { 
                    transform: translateY(100%); 
                } 
                to { 
                    transform: translateY(0); 
                } 
            }
            
            .peacock-qv-grid { 
                display: flex; 
                flex-direction: column; 
                height: 100%; 
            }
            
            .peacock-qv-image { 
                height: 40vh; 
                min-height: 300px; 
                border-bottom: 1px solid rgba(0, 212, 255, 0.25); 
                border-right: none;
            }
            
            .peacock-qv-image img { 
                padding: 20px; 
                object-fit: contain !important; 
            }
            
            .peacock-qv-scroll { 
                flex-grow: 1; 
                padding: 28px 28px 0 28px; 
            }
            
            .peacock-qv-footer { 
                position: relative; 
                width: 100%; 
                padding: 20px 28px 32px 28px; 
                flex-direction: column; 
                gap: 14px; 
            }
        }
.catalog-modal { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 11000; 
            background: rgba(10, 10, 15, 0.99); 
            backdrop-filter: blur(20px); 
            flex-direction: column; 
            align-items: center; 
            justify-content: flex-start; 
            overflow-y: auto; 
            opacity: 0; 
            transition: opacity 0.4s ease; 
            padding-top: 80px; 
        }
.cat-modal-close { 
            position: fixed; 
            top: 28px; 
            right: 28px; 
            font-size: 3rem; 
            color: white; 
            cursor: pointer; 
            line-height: 1; 
            transition: 0.4s; 
            z-index: 100; 
            width: 60px; 
            height: 60px; 
            background: rgba(0, 212, 255, 0.15); 
            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(160px, 1fr)); 
            gap: 28px; 
            width: 100%; 
            max-width: 1100px; 
            padding: 60px 28px 120px 28px; 
        }
.cat-modal-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-align: center; 
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(21, 21, 29, 0.5) 100%); 
            padding: 32px 20px; 
            border-radius: 28px; 
            border: 1px solid rgba(0, 212, 255, 0.3); 
            transition: all 0.4s ease; 
            cursor: pointer; 
            text-decoration: none; 
        }
.cat-modal-item:hover { 
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(157, 78, 221, 0.2) 100%); 
            border-color: var(--primary); 
            transform: translateY(-10px) scale(1.08); 
        }
.mobile-nav-overlay { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 12000; 
            background: rgba(0,0,0,0.7); 
            backdrop-filter: blur(10px); 
            opacity: 0; 
            transition: opacity 0.4s ease; 
        }
.mobile-nav-box { 
            position: absolute; 
            top: 0; 
            right: -100%; 
            width: 80%; 
            max-width: 360px; 
            height: 100%; 
            background: linear-gradient(180deg, #0f0f14 0%, #15151d 100%); 
            border-left: 2px solid var(--primary); 
            padding: 32px 28px; 
            display: flex; 
            flex-direction: column; 
            transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: -15px 0 70px rgba(0,0,0,0.95); 
            overflow-y: auto; 
        }
.mn-header { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 40px; 
            border-bottom: 1px solid rgba(0, 212, 255, 0.3); 
            padding-bottom: 20px; 
        }
.mn-close { 
            background: none; 
            border: none; 
            color: #fff; 
            font-size: 2.4rem; 
            cursor: pointer; 
        }
.mn-link-list { 
            list-style: none; 
            padding: 0; 
            display: flex; 
            flex-direction: column; 
            gap: 28px; 
        }
.mn-link-list a { 
            font-size: 1.2rem; 
            font-weight: 700; 
            color: #fff; 
            text-transform: uppercase; 
        }
.mn-contacts-center { 
            margin-bottom: 40px; 
        }
.mn-phone-large { 
            font-size: 1.6rem; 
            font-weight: 800; 
            color: #fff; 
            display: block; 
            margin-bottom: 20px; 
        }
.mn-socials { 
            display: flex; 
            gap: 20px; 
        }
.mn-badge-bottom { 
            margin-top: auto; 
            background: rgba(0, 212, 255, 0.15); 
            padding: 20px; 
            border-radius: 16px; 
            font-size: 0.8rem; 
            text-align: center; 
            color: var(--primary); 
            border: 1px solid var(--primary); 
        }
.btn-hero { 
            display: inline-block; 
            padding: 20px 40px; 
            border-radius: 50px; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            text-decoration: none; 
            border: none; 
            box-shadow: 0 15px 30px rgba(0,0,0,0.4); 
            transition: var(--transition);
        }
.btn-hero.peacock-royal { 
            background: linear-gradient(135deg, var(--primary), var(--secondary)); 
            color: white; 
        }
.btn-hero.peacock-gradient { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            color: white; 
        }
.btn-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }
.form-input { 
            width: 100%; 
            padding: 18px; 
            background: rgba(255,255,255,0.08); 
            border: 1px solid rgba(0, 212, 255, 0.25); 
            border-radius: 50px; 
            color: white; 
            margin-bottom: 20px; 
            outline: none; 
            transition: var(--transition);
        }
.form-input:focus { 
            border-color: var(--primary); 
            background: rgba(255,255,255,0.15);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
        }
.scroll-to-top {
            position: fixed;
            bottom: 120px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9000;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
            transition: 0.4s;
            color: white;
            font-size: 1.8rem;
        }
.scroll-to-top:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.8);
        }
@media (max-width: 768px) {
            .scroll-to-top {
                bottom: 110px;
                right: 28px;
                width: 55px;
                height: 55px;
            }
        }
.mobile-tab { 
            position: fixed; 
            bottom: 22px;
            left: 18px;
            right: 18px;
            height: 80px;
            background: linear-gradient(135deg, rgba(10, 14, 13, 0.99) 0%, rgba(15, 21, 32, 0.99) 100%);
            backdrop-filter: blur(25px);
            border-radius: 50px;
            display: none;
            justify-content: space-around; 
            align-items: center; 
            z-index: 2500; 
            box-shadow: 0 25px 70px rgba(0,0,0,0.9);
            border: 1px solid var(--border);
        }
.tab-item { 
            text-align: center; 
            color: rgba(255,255,255,0.5); 
            font-size: 0.68rem;
            text-transform: uppercase; 
            font-weight: 700;
            transition: var(--transition);
        }
.tab-item i { 
            display: block; 
            font-size: 1.6rem;
            margin-bottom: 5px;
            font-style: normal; 
        }
@media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }
        }
@media (max-width: 768px) {
            
            .hero-peacock-section {
                padding: 55px 0 65px;
                min-height: auto;
            }
            
            .hero-peacock-badge {
                font-size: 0.8rem;
                padding: 12px 22px;
            }
            
            .hero-peacock-title {
                font-size: clamp(2.8rem, 11vw, 4rem) !important;
                margin-bottom: 22px;
            }
            
            .hero-peacock-subtitle {
                font-size: 1.05rem;
                margin-bottom: 40px;
            }
            
            .hero-peacock-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
            
            .peacock-stat-box {
                padding: 22px 18px;
            }
            
            .peacock-stat-icon {
                font-size: 2.2rem;
            }
            
            .peacock-stat-value {
                font-size: 2rem;
            }
            
            .peacock-stat-label {
                font-size: 0.78rem;
            }
            
            
            .peacock-filters-bar {
                padding: 14px 0;
            }
            
            .peacock-filter-nav,
            .peacock-sf-scroll {
                justify-content: flex-start;
                padding-left: 18px;
                padding-right: 18px;
                gap: 12px;
            }
            
            .peacock-filter-btn {
                padding: 11px 20px;
                font-size: 0.82rem;
                white-space: nowrap;
            }
            
            .peacock-sf-btn {
                padding: 9px 18px;
                font-size: 0.82rem;
            }
            
            
            .peacock-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            
            
            .peacock-card {
                max-width: 550px;
                margin: 0 auto;
            }
            
            .peacock-img-wrapper {
                height: 340px;
            }
            
            .peacock-content {
                padding: 28px 22px;
                gap: 20px;
            }
            
            .peacock-name {
                font-size: 1.4rem;
            }
            
            .peacock-latin {
                font-size: 0.82rem;
            }
            
            .peacock-stats {
                padding: 22px 18px;
                gap: 14px;
            }
            
            .peacock-stat-icon {
                font-size: 1.6rem;
            }
            
            .peacock-stat-dots {
                gap: 4px;
            }
            
            .peacock-dot {
                width: 7px;
                height: 7px;
            }
            
            .peacock-stat-label {
                font-size: 0.68rem;
            }
            
            .peacock-size-badge {
                padding: 11px 16px;
                font-size: 0.82rem;
            }
            
            .peacock-price {
                font-size: 1.5rem;
            }
            
            .peacock-arrow {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
            
            
            .why-peacock-section {
                padding: 65px 0;
            }
            
            .why-peacock-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            
            .why-peacock-content h2 {
                font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
                margin-bottom: 28px;
                text-align: center;
            }
            
            .why-peacock-list {
                gap: 22px;
            }
            
            .why-peacock-item {
                padding: 22px 18px;
                gap: 18px;
            }
            
            .why-peacock-icon {
                font-size: 2.2rem;
                min-width: 55px;
                height: 55px;
            }
            
            .why-peacock-text h4 {
                font-size: 1.15rem;
            }
            
            .why-peacock-text p {
                font-size: 0.92rem;
            }
            
            .why-peacock-image {
                order: -1;
            }
            
            
            .peacock-price-section {
                padding: 65px 0;
            }
            
            .peacock-price-header {
                margin-bottom: 55px;
            }
            
            .peacock-price-badge {
                font-size: 0.78rem;
                padding: 10px 20px;
            }
            
            .peacock-price-title {
                font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
            }
            
            .peacock-price-subtitle {
                font-size: 1rem;
                padding: 0 12px;
            }
            
            .peacock-price-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            
            .peacock-price-card {
                padding: 38px 28px;
            }
            
            .peacock-price-card.popular::after {
                top: 22px;
                right: -35px;
                padding: 6px 38px;
                font-size: 0.68rem;
            }
            
            .peacock-price-emoji {
                font-size: 3.8rem;
                margin-bottom: 22px;
            }
            
            .peacock-price-card h3 {
                font-size: 1.5rem;
            }
            
            .peacock-price-value {
                font-size: 2.4rem;
            }
            
            .peacock-price-features {
                margin: 22px 0;
            }
            
            .peacock-price-features li {
                font-size: 0.88rem;
                padding: 11px 0;
            }
            
            
            .peacock-quiz-section {
                padding: 65px 0;
            }
            
            .peacock-quiz-container {
                padding: 45px 22px;
                border-radius: 28px;
            }
            
            .peacock-quiz-header {
                margin-bottom: 38px;
            }
            
            .peacock-quiz-step-indicator {
                font-size: 0.78rem;
                margin-bottom: 18px;
            }
            
            .peacock-quiz-question {
                font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
                margin-bottom: 18px;
            }
            
            .peacock-quiz-subtitle {
                font-size: 1rem;
            }
            
            .peacock-quiz-options {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-top: 32px;
            }
            
            .peacock-quiz-option {
                flex-direction: row;
                text-align: left;
                padding: 22px 18px;
                gap: 18px;
            }
            
            .peacock-quiz-option-icon {
                font-size: 2.8rem;
                margin: 0;
            }
            
            .peacock-quiz-option-title {
                font-size: 1.15rem;
            }
            
            .peacock-quiz-option-desc {
                font-size: 0.82rem;
            }
            
            .peacock-quiz-loader {
                min-height: 380px;
            }
            
            .peacock-loader-spinner {
                width: 90px;
                height: 90px;
                margin-bottom: 28px;
            }
            
            .peacock-loader-text {
                font-size: 1.2rem;
            }
            
            .peacock-loader-subtext {
                font-size: 0.88rem;
            }
            
            .peacock-result-title {
                font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
            }
            
            .peacock-result-img {
                width: 240px;
                height: 240px;
            }
            
            .peacock-result-desc {
                font-size: 1rem;
                padding: 0 12px;
            }
            
            .peacock-quiz-form {
                padding: 32px 22px;
			}


.peacock-form-title {
            font-size: 0.88rem;
        }
        
        .peacock-quiz-input {
            padding: 16px 20px;
            font-size: 1rem;
        }
        
        
        .peacock-care-section {
            padding: 65px 0;
        }
        
        .peacock-care-grid {
            grid-template-columns: 1fr;
            gap: 45px;
        }
        
        .peacock-care-image {
            order: -1;
        }
        
        .peacock-care-content h2 {
            font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
            text-align: center;
        }
        
        .peacock-care-intro {
            font-size: 1rem;
            text-align: center;
        }
        
        .peacock-care-list {
            gap: 20px;
        }
        
        .peacock-care-item {
            padding: 22px 18px;
            gap: 18px;
        }
        
        .peacock-care-item-icon {
            font-size: 2rem;
            min-width: 50px;
        }
        
        .peacock-care-item h4 {
            font-size: 1.05rem;
        }
        
        .peacock-care-item p {
            font-size: 0.88rem;
        }
        
        .expert-badge-peacock {
            position: relative;
            top: auto !important;
            bottom: auto !important;
            left: auto !important;
            right: auto !important;
            display: inline-block;
            margin: 12px;
            padding: 18px 22px;
        }
        
        .expert-badge-peacock-icon {
            font-size: 2rem;
        }
        
        .expert-badge-peacock-text {
            font-size: 0.82rem;
        }
        
        
        .peacock-seo-section {
            padding: 65px 0;
        }
        
        .peacock-faq-container {
            padding: 38px 22px;
            border-radius: 28px;
            margin-bottom: 55px;
        }
        
        .peacock-faq-title {
            font-size: 2.2rem !important;
            margin-bottom: 32px;
        }
        
        .peacock-faq-item {
            padding: 22px 0;
        }
        
        .peacock-faq-question {
            font-size: 1.05rem;
            padding-right: 18px;
        }
        
        .peacock-faq-icon {
            font-size: 1.4rem;
            min-width: 28px;
        }
        
        .peacock-faq-answer {
            font-size: 0.92rem;
        }
        
        .peacock-seo-text {
            padding: 38px 22px;
            border-radius: 22px;
        }
        
        .peacock-trust-badge {
            font-size: 0.78rem;
            padding: 10px 18px;
        }
        
        .peacock-seo-text h2 {
            font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        }
        
        .peacock-seo-description {
            font-size: 0.92rem;
        }
        
        .peacock-seo-description li {
            font-size: 0.88rem;
            margin-bottom: 12px;
        }
        
        .peacock-seo-tags {
            gap: 10px;
            margin-top: 32px;
        }
        
        .peacock-seo-tag {
            font-size: 0.78rem;
            padding: 10px 16px;
        }
        
        
        .cat-modal-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            padding: 32px 18px 90px 18px;
        }
        
        .cat-modal-item {
            padding: 22px 14px;
        }
        
        .cat-modal-item i {
            font-size: 1.6rem !important;
        }
        
        .cat-modal-item h4 {
            font-size: 1rem !important;
        }
        
        .cat-modal-item p {
            font-size: 0.78rem !important;
        }
        
        
        .btn-peacock-more {
            padding: 18px 45px;
            font-size: 0.92rem;
        }
        
        .btn-hero {
            padding: 16px 28px;
            font-size: 0.88rem;
        }
    }
@media (max-width: 480px) {
        .container {
            padding: 0 16px;
        }
        
        .hero-peacock-title {
            font-size: 2.4rem !important;
        }
        
        .hero-peacock-stats {
            grid-template-columns: 1fr;
        }
        
        .peacock-filter-btn,
        .peacock-sf-btn {
            font-size: 0.78rem;
            padding: 9px 16px;
        }
        
        .peacock-name {
            font-size: 1.25rem;
        }
        
        .peacock-price {
            font-size: 1.4rem;
        }
        
        .why-peacock-content h2,
        .peacock-price-title,
        .peacock-care-content h2,
        .peacock-seo-text h2 {
            font-size: 2rem !important;
        }
        
        .peacock-quiz-question {
            font-size: 1.5rem !important;
        }
        
        .peacock-quiz-option {
            padding: 18px 14px;
        }
        
        .peacock-quiz-option-icon {
            font-size: 2.2rem;
        }
        
        .peacock-result-img {
            width: 200px;
            height: 200px;
        }
        
        .cat-modal-grid {
            grid-template-columns: 1fr;
        }
    }
@media (max-width: 768px) {
        
        * {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        
        body {
            overflow-x: hidden;
            max-width: 100vw;
        }
        
        .container {
            max-width: 100%;
            overflow-x: hidden;
        }
        
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        
        .modal-box, .peacock-qv-box {
            max-width: 100vw;
        }
        
        
        .form-input,
        .peacock-quiz-input {
            max-width: 100%;
            font-size: 16px !important; 
        }
        
        
        .peacock-price-value {
            word-spacing: normal;
            letter-spacing: normal;
        }
        
        
        .peacock-badge,
        .hero-peacock-badge,
        .peacock-price-badge {
            max-width: calc(100% - 35px);
            text-align: center;
        }
        
        
        button, .btn-hero, .btn-consult {
            width: 100%;
            max-width: 100%;
            white-space: normal;
        }
        
        
        .footer-grid {
            gap: 32px;
        }
        
        .footer-col {
            text-align: center;
        }
        
        .footer-col ul {
            padding: 0;
        }
        
        .f-contact {
            justify-content: center;
        }
        
        
        .floating-badge-peacock {
            position: relative;
            top: auto !important;
            bottom: auto !important;
            left: auto !important;
            right: auto !important;
            display: inline-block;
            margin: 12px 6px;
        }
        
        
        @media (hover: none) {
            .peacock-card:hover {
                transform: none;
            }
            
            .peacock-qv-btn {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
    }
@media (max-width: 360px) {
        .hero-peacock-title {
            font-size: 2rem !important;
        }
        
        .peacock-stat-box {
            padding: 18px 12px;
        }
        
        .peacock-content {
            padding: 22px 16px;
        }
        
        .peacock-quiz-container {
            padding: 32px 16px;
        }
        
        .peacock-faq-container,
        .peacock-seo-text {
            padding: 28px 16px;
        }
    }