* { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary: #00CBA9;
            --secondary: #6366F1;
            --dark: #1a1a1a;
            --darker: #0d0d0d;
            --iphone-bg: #F2F2F7;
            --iphone-card: #FFFFFF;
            --iphone-border: #E5E5EA;
            --iphone-text: #1C1C1E;
            --iphone-gray: #8E8E93;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Roboto', sans-serif;
            background: var(--darker);
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        header {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-bar {
            width: 4px;
            height: 24px;
            border-radius: 10px;
        }

        .status-bar.open {
            background: #00CBA9;
            animation: pulseGreen 2s ease-in-out infinite;
        }

        .status-bar.closed {
            background: #FF4444;
            animation: pulseRed 2s ease-in-out infinite;
        }

        @keyframes pulseGreen {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 203, 169, 0.7); }
            50% { opacity: 0.8; box-shadow: 0 0 15px 5px rgba(0, 203, 169, 0.3); }
        }

        @keyframes pulseRed {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
            50% { opacity: 0.8; box-shadow: 0 0 15px 5px rgba(255, 68, 68, 0.3); }
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .work-schedule {
            text-align: right;
            font-size: 0.85rem;
        }

        .schedule-status {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .schedule-status.open { color: #00CBA9; }
        .schedule-status.closed { color: #FF4444; }

        .schedule-time {
            color: #666;
            font-size: 0.75rem;
        }

        .header-phone {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .phone-icon {
            font-size: 1.2rem;
            display: none; /* СКРЫТО НА DESKTOP ПО УМОЛЧАНИЮ */
        }

        .phone-number {
            font-weight: 700;
        }

        .btn-login-header {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: 2px solid var(--primary);
            border-radius: 4px;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-login-header:hover {
            background: var(--primary);
            color: var(--dark);
        }

        /* HERO - ЦЕНТРИРОВАН, ТЕКСТ ВЛЕВО */
        .hero {
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 5%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="1920" height="600"%3E%3Crect fill="%231a1a1a" width="1920" height="600"/%3E%3Ctext x="960" y="300" font-family="Arial" font-size="120" fill="%23333" text-anchor="middle"%3E🖥️💻📱%3C/text%3E%3C/svg%3E');
            background-size: cover;
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            text-align: left; /* ТЕКСТ ВЛЕВО */
        }

        h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: flex-start; /* КНОПКИ ВЛЕВО */
        }

        .btn-hero {
            padding: 1.2rem 2.5rem;
            background: var(--primary);
            border: none;
            border-radius: 50px;
            color: var(--dark);
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 203, 169, 0.4);
        }

        .btn-discount {
            padding: 1.2rem 2.5rem;
            background: transparent;
            border: 2px solid var(--primary);
            border-radius: 50px;
            color: var(--primary);
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s;
        }

        .btn-discount:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 203, 169, 0.4);
        }

        /* СЕКЦИЯ УСЛУГ - БЕЗ РАМОК, ВСЕ УГЛЫ ЗАКРУГЛЕНЫ */
        .services {
            position: relative;
            padding: 3rem 5%;
            z-index: 2;
            display: flex;
            justify-content: center;
        }

        .services-elevated {
            background: var(--iphone-bg);
            border-radius: 40px; /* ВСЕ 4 УГЛА ЗАКРУГЛЕНЫ */
            padding: 1.2rem 5% 1.2rem 5%;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.08),
                0 2px 10px rgba(0, 0, 0, 0.04);
            position: relative;
            width: 100%;
            max-width: 1400px; /* ЦЕНТРИРОВАНО, БЕЗ ЧЕРНЫХ РАМОК */
        }

        .services-header {
            text-align: center;
            margin-bottom: 0.8rem;
        }

        .services-header h2 {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--iphone-text);
            margin-bottom: 0.2rem;
            letter-spacing: -0.5px;
        }

        .services-subtitle {
            color: var(--iphone-gray);
            font-size: 0.8rem;
            font-weight: 400;
        }

        .carousel-wrapper {
            overflow: hidden;
            margin: 0 -5%;
            padding: 0.8rem 0;
            cursor: grab;
            -webkit-overflow-scrolling: touch; /* ПЛАВНАЯ ПРОКРУТКА НА iOS */
        }

        .carousel-wrapper:active {
            cursor: grabbing;
        }

        .carousel-track {
            display: flex;
            gap: 1rem;
            padding: 0 5%;
            will-change: transform;
        }

        /* КАРТОЧКИ С ЭФФЕКТОМ ЛУПЫ */
        .service-card {
            flex: 0 0 400px;
            background: var(--iphone-card);
            border-radius: 16px;
            padding: 1.2rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 0.5px solid var(--iphone-border);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.06),
                0 1px 3px rgba(0, 0, 0, 0.03);
            min-height: 160px;
        }

        /* ЭФФЕКТ ЛУПЫ - УВЕЛИЧЕНИЕ */
        .service-card:hover {
            transform: translateY(-8px) scale(1.05); /* УВЕЛИЧЕНИЕ В 1.05 РАЗА */
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.08);
            border-color: var(--primary);
            z-index: 10;
        }

        .service-badge-container {
            min-height: 20px;
            margin-bottom: 0.6rem;
            display: flex;
            align-items: flex-start;
        }

        .service-badge {
            display: inline-block;
            padding: 0.25rem 0.7rem;
            background: linear-gradient(135deg, #007AFF, #5E5CE6);
            border-radius: 10px;
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(0, 122, 255, 0.25);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.6rem;
        }

        .service-icon {
            font-size: 2.2rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: transform 0.4s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1); /* ИКОНКА УВЕЛИЧИВАЕТСЯ */
        }

        .service-info h3 {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--iphone-text);
            margin-bottom: 0.2rem;
            letter-spacing: -0.3px;
        }

        .service-price {
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .service-description {
            color: var(--iphone-gray);
            font-size: 0.8rem;
            line-height: 1.3;
            font-weight: 400;
        }

        .service-arrow {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary), #00A88A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            transition: all 0.4s;
            box-shadow: 0 2px 8px rgba(0, 203, 169, 0.25);
        }

        .service-card:hover .service-arrow {
            transform: rotate(45deg) scale(1.2); /* СТРЕЛКА ВРАЩАЕТСЯ И УВЕЛИЧИВАЕТСЯ */
            box-shadow: 0 4px 12px rgba(0, 203, 169, 0.35);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            pointer-events: none;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            pointer-events: auto;
            background: #1e1e1e;
            border: 1px solid rgba(0,203,169,0.2);
            padding: 4rem 2.5rem 2.5rem;
            border-radius: 24px;
            width: 90%;
            max-width: 520px;
            position: relative;
            animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0,203,169,0.08);
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.8) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-close:hover {
            color: #000;
            transform: rotate(90deg);
        }

        .modal h3 { color: #fff; }

        .modal h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .login-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            margin-bottom: 1rem;
            color: var(--dark);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .login-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 203, 169, 0.1);
        }

        .btn-login {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), #00A88A);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            margin-bottom: 1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 203, 169, 0.3);
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 203, 169, 0.4);
        }

        .login-links {
            text-align: center;
            font-size: 0.85rem;
            color: #666;
        }

        .login-links a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }

        .login-divider {
            text-align: center;
            margin: 1.5rem 0;
            color: #666;
            position: relative;
        }

        .login-divider::before,
        .login-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background: #ddd;
        }

        .login-divider::before { left: 0; }
        .login-divider::after { right: 0; }

        .social-login {
            display: flex;
            gap: 0.8rem;
        }

        .social-login-btn {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            background: #fff;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .social-login-btn:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        /* FOOTER - ЦЕНТРИРОВАН */
        footer {
            padding: 4rem 5%;
            background: var(--dark);
            text-align: center;
            display: flex;
            justify-content: center;
        }

        .footer-content {
            max-width: 1400px;
            width: 100%;
        }

        footer h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        footer h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .footer-phone {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

        /* MOBILE: вибрация трубки */
        @keyframes phoneVibrate {
            0%   { transform: rotate(0deg); }
            8%   { transform: rotate(-18deg); }
            16%  { transform: rotate(18deg); }
            24%  { transform: rotate(-14deg); }
            32%  { transform: rotate(14deg); }
            40%  { transform: rotate(-9deg); }
            48%  { transform: rotate(9deg); }
            56%  { transform: rotate(-4deg); }
            64%  { transform: rotate(4deg); }
            72%  { transform: rotate(-1deg); }
            80%  { transform: rotate(1deg); }
            100% { transform: rotate(0deg); }
        }

        @media (max-width: 768px) {
            .nav-links, .work-schedule { display: none; }
            .header-phone { 
                font-size: 1.5rem; 
                color: #fff;
            }
            .phone-icon { 
                display: flex;
                align-items: center;
                justify-content: center;
                animation: phoneVibrate 1.6s ease-in-out infinite;
                transform-origin: center;
            }
            .phone-icon svg {
                width: 28px;
                height: 28px;
                fill: var(--primary);
                filter: drop-shadow(0 0 6px rgba(0, 203, 169, 0.7));
            }
            .phone-number { display: none; }
            .btn-login-header { padding: 0.6rem 1rem; font-size: 0.85rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.5rem; }
            .hero-buttons { flex-direction: column; gap: 1rem; }
            .btn-hero, .btn-discount { width: 100%; justify-content: center; }
            .services { padding: 2rem 3%; }
            .services-elevated { border-radius: 30px; padding: 1rem 5%; }
            .services-header h2 { font-size: 1.5rem; }
            .carousel-wrapper { 
                cursor: default;
                -webkit-user-select: none;
                user-select: none;
            }
            .carousel-wrapper:active {
                cursor: default;
            }
            .carousel-track { gap: 0.8rem; }
            .service-card { flex: 0 0 320px; padding: 1rem; min-height: 150px; }
            .service-icon { font-size: 2rem; }
            .service-info h3 { font-size: 0.9rem; }
        }

        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            .service-card { flex: 0 0 280px; }
            .services-header h2 { font-size: 1.4rem; }
            .phone-icon { font-size: 1.6rem; } /* ТРУБКА НА МАЛЕНЬКИХ ЭКРАНАХ */
        }
        /* ===== FEEDBACK MODAL ===== */
        .feedback-modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 10001;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(12px);
            padding: 1rem;
        }
        .feedback-modal.active { display: flex; }

        .feedback-content {
            background: #1e1e1e;
            border: 1px solid rgba(0,203,169,0.2);
            border-radius: 24px;
            padding: 2.5rem;
            width: 100%;
            max-width: 520px;
            position: relative;
            animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0,203,169,0.08);
            max-height: 90vh;
            overflow-y: auto;
        }

        .feedback-content::-webkit-scrollbar { width: 4px; }
        .feedback-content::-webkit-scrollbar-track { background: transparent; }
        .feedback-content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

        .feedback-close {
            position: absolute;
            top: 1.2rem; right: 1.2rem;
            background: rgba(255,255,255,0.08);
            border: none;
            width: 36px; height: 36px;
            border-radius: 50%;
            font-size: 1.2rem;
            color: #aaa;
            cursor: pointer;
            transition: all 0.3s;
            display: flex; align-items: center; justify-content: center;
        }
        .feedback-close:hover { background: rgba(255,50,50,0.15); color: #FF4444; transform: rotate(90deg); }

        .feedback-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 0.4rem;
            padding-right: 2.5rem;
        }
        .feedback-cooldown-notice {
            font-size: 0.75rem;
            color: #f5a623;
            margin-top: 0.3rem;
            margin-bottom: 0.2rem;
            opacity: 0.85;
        }
        .feedback-subtitle {
            color: var(--iphone-gray);
            font-size: 0.85rem;
            margin-bottom: 1.8rem;
        }

        .feedback-field {
            margin-bottom: 1.2rem;
        }
        .feedback-field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }
        .feedback-input {
            width: 100%;
            padding: 0.9rem 1.1rem;
            background: rgba(255,255,255,0.05);
            border: 1.5px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s;
            outline: none;
            font-family: inherit;
        }
        .feedback-input::placeholder { color: rgba(255,255,255,0.25); }
        .feedback-input:focus {
            border-color: var(--primary);
            background: rgba(0,203,169,0.05);
            box-shadow: 0 0 0 3px rgba(0,203,169,0.1);
        }
        .feedback-input.error { border-color: #FF4444; box-shadow: 0 0 0 3px rgba(255,68,68,0.1); }

        textarea.feedback-input {
            resize: vertical;
            min-height: 100px;
            max-height: 200px;
        }

        /* Загрузка файлов */
        .upload-area {
            border: 2px dashed rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 1.5rem 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: rgba(255,255,255,0.02);
        }
        .upload-area:hover, .upload-area.drag-over {
            border-color: var(--primary);
            background: rgba(0,203,169,0.05);
        }
        .upload-area input[type="file"] {
            display: none;
        }
        .upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
        .upload-text { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
        .upload-text span { color: var(--primary); font-weight: 600; }
        .upload-hint { color: rgba(255,255,255,0.3); font-size: 0.75rem; margin-top: 0.3rem; }

        /* Превью файлов */
        .files-preview {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .files-preview-header {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
            margin-bottom: 0.2rem;
        }
        .file-chip {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            background: #2a2a2a;
            border: 1px solid #3a3a3a;
            border-radius: 10px;
            padding: 0.65rem 0.9rem;
            font-size: 0.82rem;
            color: #fff;
            width: 100%;
            box-sizing: border-box;
            transition: border-color 0.3s, background 0.3s;
        }
        .file-chip.uploading {
            border-color: rgba(0,203,169,0.4);
            background: #252525;
        }
        .file-chip.done {
            border-color: var(--primary);
            background: rgba(0,203,169,0.08);
        }
        .file-chip-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
        }
        .file-chip-icon { font-size: 1rem; flex-shrink: 0; }
        .file-chip-name {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
            color: rgba(255,255,255,0.85);
            font-size: 0.8rem;
        }
        .file-chip-pct {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
            min-width: 36px;
            text-align: right;
            transition: font-size 0.2s;
        }
        .file-chip.done .file-chip-pct { font-size: 1.1rem; }
        .file-chip-remove {
            background: none; border: none;
            color: rgba(255,255,255,0.25);
            cursor: pointer; padding: 0 0 0 0.3rem;
            font-size: 1.1rem; line-height: 1;
            flex-shrink: 0;
            transition: color 0.2s;
        }
        .file-chip-remove:hover { color: #FF4444; }
        .file-chip-bar-wrap {
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        .file-chip-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), #00eab8);
            border-radius: 10px;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Кнопка отправки */
        /* Чекбокс согласия */
        .privacy-check-wrap {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 1rem;
            cursor: pointer;
            user-select: none;
        }
        .privacy-check-wrap input[type="checkbox"] {
            display: none;
        }
        .privacy-checkbox {
            width: 18px;
            height: 18px;
            min-width: 18px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 5px;
            background: rgba(255,255,255,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            transition: border-color 0.25s, background 0.25s;
            font-size: 0.7rem;
            color: transparent;
        }
        .privacy-check-wrap:hover .privacy-checkbox {
            border-color: var(--primary);
        }
        .privacy-check-wrap input:checked ~ .privacy-checkbox {
            border-color: var(--primary);
            background: var(--primary);
            color: #0d0d0d;
        }
        .privacy-check-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.5;
        }
        .privacy-check-label a {
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
        }
        .privacy-check-label a:hover { opacity: 0.8; }

        /* Модал политики */
        .privacy-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 10002;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .privacy-modal.active { display: flex; }
        .privacy-modal-content {
            background: #1e1e1e;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 2rem;
            max-width: 560px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            color: rgba(255,255,255,0.75);
            font-size: 0.82rem;
            line-height: 1.7;
        }
        .privacy-modal-content h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 1.2rem;
        }
        .privacy-modal-content h4 {
            color: var(--primary);
            font-size: 0.85rem;
            margin: 1rem 0 0.3rem;
        }
        .privacy-modal-content p { margin-bottom: 0.6rem; }
        .privacy-modal-close {
            position: absolute;
            top: 1rem; right: 1rem;
            background: none; border: none;
            color: rgba(255,255,255,0.4);
            font-size: 1.4rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .privacy-modal-close:hover { color: #fff; }

        .btn-feedback-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), #00A88A);
            border: none;
            border-radius: 14px;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 0.5rem;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0,203,169,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-family: inherit;
        }
        .btn-feedback-submit:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,203,169,0.4);
        }
        .btn-feedback-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Cooldown / статус */
        .feedback-status {
            text-align: center;
            font-size: 0.85rem;
            margin-top: 0.8rem;
            min-height: 1.2rem;
            transition: all 0.3s;
        }
        .feedback-status.success { color: var(--primary); }
        .feedback-status.error-msg { color: #FF4444; }
        .feedback-status.cooldown { color: var(--iphone-gray); }

        .cooldown-bar-wrap {
            height: 3px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            margin-top: 0.5rem;
            overflow: hidden;
            display: none;
        }
        .cooldown-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 10px;
            transition: width 1s linear;
        }

        /* Успех оверлей */
        .feedback-success-overlay {
            position: absolute;
            inset: 0;
            background: #1e1e1e;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s;
        }
        .feedback-success-overlay.show {
            opacity: 1;
            pointer-events: all;
        }
        .success-icon {
            width: 70px; height: 70px;
            background: rgba(0,203,169,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 2.2rem;
            border: 2px solid var(--primary);
        }
        .success-title { font-family: 'Oswald', sans-serif; font-size: 1.6rem; color: #fff; }
        .success-text { color: var(--iphone-gray); font-size: 0.9rem; text-align: center; padding: 0 2rem; }
        .btn-success-close {
            padding: 0.8rem 2rem;
            background: transparent;
            border: 2px solid var(--primary);
            border-radius: 50px;
            color: var(--primary);
            font-weight: 700;
            cursor: pointer;
            margin-top: 0.5rem;
            transition: all 0.3s;
            font-family: inherit;
        }
        .btn-success-close:hover { background: var(--primary); color: #0d0d0d; }

        /* Spinner */
        @keyframes spin { to { transform: rotate(360deg); } }
        .spinner {
            width: 18px; height: 18px;
            border: 2px solid rgba(0,0,0,0.3);
            border-top-color: #0d0d0d;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            display: none;
        }
        .spinner.show { display: block; }

        /* Подсказка страны у телефона */
        .phone-country-hint {
            display: none;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.4rem;
            padding: 0.4rem 0.8rem;
            background: rgba(0,203,169,0.08);
            border: 1px solid rgba(0,203,169,0.2);
            border-radius: 8px;
            font-size: 0.78rem;
            color: var(--primary);
        }
        .phone-country-hint.show { display: flex; }
        .phone-country-hint.hint-error {
            background: rgba(255,68,68,0.08);
            border-color: rgba(255,68,68,0.3);
            color: #FF6B6B;
        }
        .phone-digits-left { margin-left: auto; font-size: 0.72rem; opacity: 0.7; }

        /* Индикатор email */
        .email-hint {
            display: none;
            font-size: 0.76rem;
            margin-top: 0.35rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
        }
        .email-hint.show { display: block; }
        .email-hint.invalid { color: #FF6B6B; }
        .city-hint { color: #FF6B6B; font-size: 0.76rem; margin-top: 0.35rem;
                     padding: 0.3rem 0.6rem; border-radius: 6px; display: none; }
        .city-hint.show { display: block; }

        /* Иконка статуса справа в поле */
        .feedback-input-wrap { position: relative; }
        .feedback-input-wrap .feedback-input { padding-right: 2.5rem; }
        .input-status-icon {
            position: absolute; right: 0.9rem; top: 50%;
            transform: translateY(-50%);
            font-size: 1rem; pointer-events: none;
            opacity: 0; transition: opacity 0.3s;
        }
        .input-status-icon.show { opacity: 1; }