﻿:root {
            --primary: #42C4C1;
            --accent: #B89B72;
            --bg-dark: #0a0e0d;
            --bg-dark-lighter: #1a1f1d;
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --orange: #F39221;
            --border: rgba(66, 196, 193, 0.2);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
* { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }
html { 
            scroll-behavior: smooth; 
            overflow-x: hidden; 
        }
body { 
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text); 
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-lighter) 100%);
            line-height: 1.6; 
            overflow-x: hidden; 
        }
.container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 25px;
        }
header {
            position: fixed; 
            top: 0; 
            width: 100%; 
            z-index: 2000;
            background: rgba(10, 14, 13, 0.95); 
            backdrop-filter: blur(25px);
            border-bottom: 1px solid var(--border); 
            padding: 12px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }
.header-right { 
            display: flex; 
            align-items: center; 
            gap: 20px;
        }
@media (max-width: 768px) {
            .phone-val {
                font-size: 0.9rem;
            }
            
            .hamburger {
                display: flex;
            }
        }
.privacy-hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1f1d 100%);
            position: relative;
            overflow: hidden;
        }
.privacy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(66, 196, 193, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(123, 191, 106, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
.privacy-hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
.privacy-icon {
            font-size: 5rem;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
        }
@keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
.privacy-hero h1 {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }
.privacy-hero h1 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.privacy-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-soft);
            max-width: 700px;
            margin: 0 auto 30px;
        }
.privacy-date {
            display: inline-block;
            background: rgba(66, 196, 193, 0.1);
            border: 1px solid var(--primary);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
        }
@media (max-width: 768px) {
            .privacy-hero {
                padding: 120px 0 60px;
            }
        }
.privacy-content {
            padding: 80px 0;
            background: var(--bg-dark);
            position: relative;
        }
.privacy-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 25px;
            padding: clamp(35px, 5vw, 50px) clamp(30px, 4vw, 45px);
            margin-bottom: 35px;
            transition: 0.3s;
        }
.privacy-section:hover {
            background: rgba(66, 196, 193, 0.05);
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.2);
        }
.privacy-section h2 {
            font-family:'Manrope',sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
.section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(66, 196, 193, 0.15);
            border-radius: 50%;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
.privacy-section h3{
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-weight:800;
            color: var(--green);
            margin: 30px 0 15px;
        }
.privacy-section p {
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            color: var(--text-soft);
            line-height: 1.8;
            margin-bottom: 20px;
        }
.privacy-section ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
.privacy-section li {
            padding: 12px 0 12px 35px;
            position: relative;
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            color: var(--text-soft);
            line-height: 1.7;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
.privacy-section li:last-child {
            border-bottom: none;
        }
.privacy-section li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 800;
            font-size: 1.2rem;
        }
.privacy-section strong {
            color: var(--primary);
            font-weight: 700;
        }
.privacy-section a {
            color: var(--primary);
            text-decoration: underline;
        }
.privacy-section a:hover {
            color: var(--green);
        }
.privacy-contacts {
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.1) 0%, rgba(123, 191, 106, 0.05) 100%);
            border: 2px solid var(--primary);
            text-align: center;
            padding: 50px;
        }
.privacy-contacts h2 {
            justify-content: center;
        }
.contact-item {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin: 15px 20px;
            font-size: 1.1rem;
            color: white;
        }
.contact-item a {
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
        }
.contact-item a:hover {
            color: var(--green);
        }
@media (max-width: 768px) {
            .privacy-section h2 {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-item {
                display: flex;
                margin: 15px 0;
            }
        }
footer { 
            padding: 60px 0 30px; 
            background: rgba(10, 14, 13, 0.8); 
            border-top: 1px solid var(--border); 
        }
.footer-simple {
            text-align: center;
        }
.footer-simple .logo {
            font-size: 2rem;
            margin-bottom: 20px;
            display: inline-block;
        }
.footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
.footer-links a {
            color: var(--text-soft);
            font-weight: 600;
            transition: 0.3s;
        }
.footer-links a:hover {
            color: var(--primary);
        }
.footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--text-soft);
            font-size: 0.9rem;
        }
.scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9000;
            box-shadow: 0 5px 20px rgba(66, 196, 193, 0.5);
            transition: 0.3s;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
.scroll-to-top:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.7);
        }
.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, 31, 29, 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;
            padding: 8px 12px;
        }