/* ================================================================
 * СТИЛИ сайта «GeekFixPro» — изначальный дизайн (сохранён без изменений)
 * Источник: deepseek_html_20260830_fde4ef.html
 * ================================================================ */
/* ================================================================
           ОБЩИЕ СТИЛИ
           ================================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: #0A0A0A;
            color: #f0f4ff;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            padding: 0;
            overflow-x: hidden;
            font-size: 0.9375rem;
            font-weight: 400;
        }

        /* ----- ХЕДЕР (без рамки по умолчанию) ----- */
        .header-wrapper {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            width: 100%;
            max-width: 1200px;
            padding: 0 30px;
            height: 70px;
            background: transparent;
            backdrop-filter: none;
            border: none;
            border-radius: 60px;
            transition: height 0.5s ease, max-width 0.5s ease, top 0.5s ease, background 0.5s ease, backdrop-filter 0.5s ease, border-radius 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
            display: flex;
            align-items: center;
        }
        .header-wrapper.scrolled {
            height: 56px;
            max-width: 1100px;
            top: 12px;
            background: rgba(30, 40, 60, 0.25);
            backdrop-filter: blur(8px);
            border-radius: 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #22d3ee, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: font-size 0.3s;
        }
        .header-wrapper.scrolled .logo { font-size: 1.3rem; }
        .nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav a {
            color: #94a3b8;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            transition: 0.2s;
            position: relative;
            text-shadow: 0 0 10px rgba(0,0,0,0.5);
            cursor: pointer;
        }
        .nav a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #22d3ee, #3b82f6);
            transition: 0.3s;
        }
        .nav a:hover { color: #fff; }
        .nav a:hover::after { width: 100%; }
        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #22d3ee);
            color: #fff !important;
            padding: 6px 18px;
            border-radius: 60px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
            font-size: 0.85rem;
        }
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0f4ff;
            font-size: 1.6rem;
            cursor: pointer;
            z-index: 10;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            z-index: 200;
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
            transform: scale(0.95);
            pointer-events: none;
        }
        .mobile-nav.open {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
        }
        .mobile-nav a {
            color: #f0f4ff;
            font-size: 1.6rem;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
            cursor: pointer;
        }
        .mobile-nav a:hover { color: #22d3ee; }
        .mobile-nav .close-menu {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav { display: none; }
            .mobile-nav { display: flex; }
            .header-wrapper { top: 10px; height: 60px; border-radius: 40px; padding: 0 16px; max-width: 100%; }
            .header-wrapper.scrolled { height: 48px; max-width: 94%; top: 8px; border-radius: 30px; }
            .logo { font-size: 1.3rem; }
            .header-wrapper.scrolled .logo { font-size: 1rem; }
        }

        /* ----- ГЕРОЙ ----- */
        .hero-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 30px 60px;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(20, 30, 50, 0.9) 0%, rgba(10, 10, 10, 0.2) 50%, #0A0A0A 100%);
            border: none;
            margin-bottom: 0;
        }
        .hero-canvas-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
        }
        .hero-canvas {
            width: 100%;
            height: 100%;
            opacity: 0.35;
        }
        .hero-content {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            z-index: 1;
        }
        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }
        .hero-content h1 .highlight {
            background: linear-gradient(135deg, #22d3ee, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-content p {
            font-size: 1.3rem;
            color: #94a3b8;
            max-width: 600px;
            margin-bottom: 32px;
            font-weight: 400;
        }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 36px;
        }
        .badge {
            background: rgba(255, 255, 255, 0.04);
            padding: 6px 20px;
            border-radius: 60px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #94a3b8;
            font-weight: 400;
        }
        .badge i { color: #22d3ee; margin-right: 6px; }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero-btn {
            font-size: 1.1rem;
            padding: 14px 38px;
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
        }
        .hero-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
        }
        .hero-info-text {
            display: inline-block;
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 400;
            background: transparent;
            padding: 0;
            border: none;
            border-radius: 0;
            box-shadow: none;
            backdrop-filter: none;
        }
        .hero-info-text i {
            color: #22d3ee;
            margin-right: 6px;
            font-size: 0.9rem;
        }
        @media (max-width: 600px) {
            .hero-content h1 { font-size: 2.8rem; }
            .hero-wrapper { padding: 90px 16px 40px; min-height: 80vh; }
            .hero-btn { font-size: 1rem; padding: 10px 24px; }
            .hero-info-text { font-size: 0.85rem; }
        }

        /* ----- ОСНОВНОЙ КОНТЕЙНЕР ----- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 1;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
        }

        /* ----- УСЛУГИ (глассморфизм) ----- */
        .services {
            padding: 60px 0 40px;
            scroll-margin-top: 80px;
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }
        .section-title .accent {
            background: linear-gradient(135deg, #22d3ee, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-sub {
            color: #94a3b8;
            font-size: 1.1rem;
            margin-bottom: 48px;
            font-weight: 400;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }
        .service-item {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 32px 24px;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            cursor: default;
            transform-style: preserve-3d;
            perspective: 600px;
            will-change: transform;
        }
        .service-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(59, 130, 246, 0.05));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 1;
        }
        .service-item:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 12px 48px rgba(59, 130, 246, 0.25);
            border-color: rgba(34, 211, 238, 0.3);
            background: rgba(255, 255, 255, 0.06);
        }
        .service-item .glow {
            position: absolute;
            inset: -50%;
            background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(59, 130, 246, 0.2), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 0;
        }
        .service-item:hover .glow { opacity: 1; }
        .service-item .icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            background: rgba(59, 130, 246, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .service-item:hover .icon {
            background: rgba(59, 130, 246, 0.25);
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
        }
        .service-item .icon svg {
            width: 34px;
            height: 34px;
            stroke: #22d3ee;
            fill: none;
            stroke-width: 1.5;
            filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.2));
        }
        .service-item h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 4px;
            position: relative;
            z-index: 2;
        }
        .service-item .price {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #22d3ee, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 2;
        }
        .service-item .desc {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 4px;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }
        .city-info {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            justify-content: center;
            padding: 16px 28px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(8px);
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .city-info span {
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 400;
        }
        .city-info .city-tag {
            background: rgba(59, 130, 246, 0.12);
            color: #22d3ee;
            padding: 4px 18px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.85rem;
            border: 1px solid rgba(59, 130, 246, 0.1);
        }

        /* ================================================================
           БЛОГ — СЛАЙДЕР
           ================================================================ */
        .blog {
            padding: 60px 0 160px;
            scroll-margin-top: 80px;
        }
        .blog .section-title {
            text-align: center;
            font-size: 2.4rem;
            font-weight: 700;
        }
        .blog .section-sub {
            text-align: center;
            margin-bottom: 60px;
            font-size: 1rem;
            font-weight: 400;
        }

        .blog-wrapper {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            padding-top: 40px;
            padding-bottom: 60px;
            min-height: 450px;
        }

        .blog-entries {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 80px;
            padding-right: 20px;
            max-width: 550px;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .blog-entry {
            padding: 0;
            opacity: 0.15;
            transform: scale(0.97);
            transition: opacity 0.6s ease, transform 0.6s ease;
            cursor: pointer;
            background: transparent;
            text-align: left;
            position: relative;
        }
        .blog-entry.active {
            opacity: 1 !important;
            transform: scale(1) !important;
        }
        .blog-entry:not(.active) {
            opacity: 0.15 !important;
            transform: scale(0.97) !important;
        }
        .blog-entry .tag {
            display: inline-block;
            background: rgba(59, 130, 246, 0.12);
            color: #22d3ee;
            font-size: 0.6rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            padding: 2px 12px;
            border-radius: 40px;
            margin-bottom: 6px;
        }
        .blog-entry h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: #f0f4ff;
        }
        .blog-entry p {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.6;
            font-weight: 400;
        }
        .blog-entry .date {
            color: #64748b;
            font-size: 0.75rem;
            margin-top: 8px;
            font-weight: 400;
        }

        .blog-image-wrapper {
            position: absolute;
            right: 0;
            top: 0;
            width: 550px;
            height: 300px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            background: #111;
            transition: top 0.7s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: top;
            z-index: 2;
            cursor: pointer;
        }
        .slider-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .slider-track img {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider-controls {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            z-index: 3;
            pointer-events: none;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(6px);
            padding: 8px 16px;
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .slider-controls button {
            pointer-events: auto;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-size: 0.8rem;
            cursor: pointer;
            transition: 0.3s;
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slider-controls button:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }
        .slider-dots {
            display: flex;
            gap: 6px;
            pointer-events: auto;
        }
        .slider-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            cursor: pointer;
            transition: 0.3s;
        }
        .slider-dots span.active {
            background: #22d3ee;
            box-shadow: 0 0 12px rgba(34,211,238,0.4);
        }
        .slider-dots span:hover {
            background: rgba(255,255,255,0.6);
        }

        @media (max-width: 1100px) {
            .blog-wrapper {
                flex-direction: column;
                align-items: center;
                padding-top: 0;
                padding-bottom: 20px;
                gap: 20px;
                min-height: auto;
            }
            .blog-image-wrapper {
                display: none;
            }
            .slider-controls {
                display: none;
            }
            .blog-entries {
                max-width: 100%;
                padding-right: 0;
                gap: 40px;
                margin: 0 auto;
            }
        }
        @media (max-width: 600px) {
            .blog-entry h3 { font-size: 1rem; }
            .blog-entry p { font-size: 0.8rem; }
            .blog-entries { gap: 30px; }
        }

        /* ================================================================
           ОТЗЫВЫ
           ================================================================ */
        .reviews-section {
            padding: 40px 0 20px;
            scroll-margin-top: 80px;
        }
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 16px;
        }
        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            max-width: 720px;
            margin: 0 auto;
        }

        .review-item {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 20px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 12px 16px;
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            cursor: default;
            transform-style: preserve-3d;
            perspective: 600px;
            will-change: transform;
        }
        .review-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.03));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        .review-item .review-glow {
            position: absolute;
            inset: -50%;
            background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(59, 130, 246, 0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 0;
        }
        .review-item:hover .review-glow {
            opacity: 1;
        }
        .review-item:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 12px 48px rgba(59, 130, 246, 0.2);
            border-color: rgba(34, 211, 238, 0.2);
            background: rgba(255, 255, 255, 0.06);
        }

        .review-avatar {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e293b, #334155);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: #22d3ee;
            border: 2px solid rgba(59, 130, 246, 0.2);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        .review-header {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 12px;
            position: relative;
            z-index: 1;
            min-width: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 1rem;
            color: #f0f4ff;
        }
        .review-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            letter-spacing: 1px;
            display: flex;
            gap: 2px;
        }
        .review-stars .empty {
            color: #475569;
        }
        .review-meta {
            color: #64748b;
            font-size: 0.7rem;
            font-weight: 400;
            margin-left: auto;
            position: relative;
            z-index: 1;
            white-space: nowrap;
        }
        .review-text {
            color: #cbd5e1;
            font-size: 0.95rem;
            flex: 1 1 100%;
            margin: 4px 0 0;
            font-style: normal;
            font-weight: 400;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            padding-left: 64px;
        }

        @media (max-width: 480px) {
            .review-text {
                padding-left: 0;
            }
            .review-header {
                flex-wrap: wrap;
            }
            .review-meta {
                margin-left: 0;
                width: 100%;
            }
        }

        .btn-review {
            background: linear-gradient(135deg, #3b82f6, #22d3ee);
            color: #fff;
            padding: 10px 28px;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
        }
        .btn-review:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
        }

        /* ================================================================
           ПОПАПЫ — чекбоксы с правильным центрированием
           ================================================================ */
        .popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 300;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .popup-overlay.active {
            display: flex;
        }
        .popup-content {
            background: rgba(30, 30, 40, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            max-width: 540px;
            width: 100%;
            padding: 24px 28px 28px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            color: #f0f4ff;
        }
        .popup-mac-buttons {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            justify-content: flex-end;
            position: sticky;
            top: 0;
            background: transparent;
            z-index: 5;
            padding: 4px 0;
        }
        .popup-mac-btn {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            color: rgba(0,0,0,0.5);
            line-height: 1;
        }
        .popup-mac-btn:hover {
            transform: scale(1.15);
        }
        .popup-mac-btn.minimize {
            background: #ffbd2e;
            order: 1;
        }
        .popup-mac-btn.minimize::after {
            content: '−';
            opacity: 0.7;
            color: #5a3e00;
        }
        .popup-mac-btn.minimize:hover::after {
            opacity: 1;
        }
        .popup-mac-btn.maximize {
            background: #28c840;
            order: 2;
        }
        .popup-mac-btn.maximize::after {
            content: '⤢';
            opacity: 0.7;
            color: #003d0a;
        }
        .popup-mac-btn.maximize:hover::after {
            opacity: 1;
        }
        .popup-mac-btn.close {
            background: #ff5f57;
            order: 3;
        }
        .popup-mac-btn.close::after {
            content: '✕';
            opacity: 0;
            transition: opacity 0.2s;
            color: #4a0000;
        }
        .popup-mac-btn.close:hover::after {
            opacity: 1;
        }

        .popup-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .popup-content .sub {
            color: #94a3b8;
            margin-bottom: 20px;
            font-size: 0.95rem;
            font-weight: 400;
        }
        .popup-content .form-group {
            margin-bottom: 14px;
        }
        .popup-content .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.85rem;
            margin-bottom: 3px;
            color: #f0f4ff;
        }
        .popup-content .form-group input,
        .popup-content .form-group select,
        .popup-content .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 0.95rem;
            transition: 0.2s;
            outline: none;
            font-family: inherit;
            font-weight: 400;
        }
        .popup-content .form-group input::placeholder,
        .popup-content .form-group textarea::placeholder {
            color: #94a3b8;
        }
        .popup-content .form-group select option {
            background: #1a1a1a;
            color: #fff;
        }
        .popup-content .form-group input:focus,
        .popup-content .form-group select:focus,
        .popup-content .form-group textarea:focus {
            border-color: #3b82f6;
            background: rgba(59, 130, 246, 0.15);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        /* --- ПРАВОВЫЕ ДОКУМЕНТЫ В МОДАЛЬНОМ ОКНЕ --- */
        .legal-modal .popup-content { max-width: 720px; }
        .legal-body h2 { font-size: 1.25rem; font-weight: 700; margin: 22px 0 10px; color: #f0f4ff; }
        .legal-body h2:first-child { margin-top: 0; }
        .legal-body p { font-size: 0.95rem; line-height: 1.65; margin: 0 0 12px; color: #d7deee; }
        .legal-body ul.policy-list { list-style: none; padding: 0; margin: 0 0 14px; }
        .legal-body ul.policy-list li { position: relative; padding: 4px 0 4px 26px; font-size: 0.93rem; line-height: 1.55; color: #d7deee; }
        .legal-body ul.policy-list li i { position: absolute; left: 2px; top: 9px; color: #22d3ee; font-size: 0.8rem; }

        /* --- ПОЛНЫЙ ТЕКСТ ЗАПИСИ В ПОП-АПЕ БЛОГА --- */
        .blog-popup-body { color: #cbd5e1; font-size: 1rem; line-height: 1.75; }
        .blog-popup-body > * { margin-bottom: 12px; }
        .blog-popup-body h2 { font-size: 1.35rem; font-weight: 700; margin: 22px 0 10px; color: #f0f4ff; line-height: 1.3; }
        .blog-popup-body h3 { font-size: 1.15rem; font-weight: 600; margin: 18px 0 8px; color: #e2e8f0; }
        .blog-popup-body p { font-size: 1rem; line-height: 1.75; margin: 0 0 12px; color: #d7deee; }
        .blog-popup-body ul, .blog-popup-body ol { margin: 6px 0 14px 22px; }
        .blog-popup-body ul li, .blog-popup-body ol li { margin-bottom: 6px; color: #d7deee; line-height: 1.6; }
        .blog-popup-body ul li::marker { color: #22d3ee; }
        .blog-popup-body ol li::marker { color: #3b82f6; font-weight: 600; }
        .blog-popup-body img { max-width: 100%; height: auto; border-radius: 14px; margin: 14px 0; cursor: pointer; border: 1px solid rgba(255,255,255,.08); }
        .blog-popup-body blockquote { border-left: 3px solid #3b82f6; padding: 6px 0 6px 16px; margin: 12px 0; color: #94a3b8; font-style: italic; }
        .blog-popup-body a { color: #22d3ee; text-decoration: underline; word-break: break-word; }
        .blog-popup-body code { background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 6px; font-size: .9em; }

        /* --- СКРОЛЛ-БАРЫ (единый стиль под тёмный гласс-дизайн) --- */
        .popup-content::-webkit-scrollbar { width: 10px; }
        .popup-content::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 8px; margin: 6px; }
        .popup-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.16);
            border: 2px solid transparent;
            border-radius: 8px;
            background-clip: content-box;
            transition: background-color 0.2s ease;
        }
        .popup-content::-webkit-scrollbar-thumb:hover { background: #22d3ee; }

        /* Единый тонкий скролл-бар для остального контента страницы (Firefox) */
        * { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.18) transparent; }

        .checkbox-group {
            display: flex;
            flex-direction: row;
            gap: 24px;
            margin-top: 4px;
            flex-wrap: wrap;
        }
        .checkbox-group label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #cbd5e1;
            cursor: pointer;
            vertical-align: middle;
        }
        .checkbox-group label:hover {
            color: #f0f4ff;
        }
        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin: 0;
            flex-shrink: 0;
            accent-color: #3b82f6;
            cursor: pointer;
            vertical-align: middle;
        }

        /* --- ЗВЁЗДНЫЙ РЕЙТИНГ (центрирование) --- */
        .rating-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .rating-group label {
            margin-bottom: 0;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2.2rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #475569;
            transition: color 0.2s, transform 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .star-rating label:hover {
            transform: scale(1.2);
        }

        .popup-content .captcha-hint {
            color: #64748b;
            font-size: 0.8rem;
            margin: 8px 0 14px;
            font-weight: 400;
        }
        .popup-content .captcha-hint i { margin-right: 6px; color: #22d3ee; }
        .btn-submit {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #3b82f6, #22d3ee);
            border: none;
            border-radius: 60px;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            transition: 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
        }

        /* ================================================================
           ПОЛНОЭКРАННЫЙ ПРОСМОТРЩИК
           ================================================================ */
        .image-viewer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 500;
            align-items: center;
            justify-content: center;
            padding: 40px;
            flex-direction: column;
        }
        .image-viewer-overlay.active {
            display: flex;
        }
        .image-viewer-content {
            position: relative;
            width: 100%;
            max-width: 900px;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .image-viewer-content img {
            max-width: 100%;
            max-height: 75vh;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.7);
            transition: opacity 0.3s;
            cursor: default;
            background: #111;
        }
        .image-viewer-controls {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-top: 20px;
            width: 100%;
            justify-content: center;
        }
        .image-viewer-controls button {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
        }
        .image-viewer-controls button:hover {
            background: rgba(255,255,255,0.15);
            transform: scale(1.05);
        }
        .image-viewer-dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .image-viewer-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            cursor: pointer;
            transition: 0.3s;
        }
        .image-viewer-dots span.active {
            background: #22d3ee;
            box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
            transform: scale(1.2);
        }
        .image-viewer-dots span:hover {
            background: rgba(255,255,255,0.4);
        }
        .image-viewer-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 1.8rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .image-viewer-close:hover {
            color: #fff;
            transform: rotate(90deg);
        }

        /* ----- ФУТЕР ----- */
        .footer {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 30px 0 24px;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .footer-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }
        .footer-left .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .footer-left .logo span {
            background: linear-gradient(135deg, #22d3ee, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-left .social-links {
            display: flex;
            gap: 14px;
        }
        .footer-left .social-links a {
            color: #64748b;
            font-size: 1.4rem;
            transition: 0.2s;
        }
        .footer-left .social-links a:hover {
            color: #22d3ee;
            transform: scale(1.1);
        }
        .footer-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        .footer-center .copy {
            color: #64748b;
            font-size: 0.75rem;
            letter-spacing: 0.3px;
            font-weight: 400;
        }
        .footer-center .master-name {
            color: #64748b;
            font-size: 0.75rem;
            margin-top: 2px;
            font-weight: 400;
        }
        .footer-center .master-name span { color: #22d3ee; }
        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }
        .footer-right .docs a {
            color: #94a3b8;
            font-size: 0.75rem;
            text-decoration: none;
            margin-left: 12px;
            transition: 0.2s;
            font-weight: 400;
        }
        .footer-right .docs a:hover { color: #22d3ee; }
        .footer-right .inn-placeholder {
            background: rgba(255, 255, 255, 0.03);
            padding: 2px 14px;
            border-radius: 40px;
            display: inline-block;
            font-family: monospace;
            font-size: 0.75rem;
            color: #94a3b8;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 4px;
            font-weight: 400;
        }
        @media (max-width: 768px) {
            .footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-left { align-items: center; }
            .footer-right { align-items: center; }
            .footer-right .docs a { margin: 0 6px; }
        }

        /* ================================================================
           СТРАНИЦА БЛОГА + ПАГИНАЦИЯ
           ================================================================ */
        .blog-list-page { padding: 120px 0 40px; scroll-margin-top: 80px; }
        .page-title { font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; text-align: center; }
        .page-sub { text-align: center; color: #94a3b8; font-size: 1.05rem; margin-bottom: 44px; font-weight: 400; }

        /* Блог — горизонтальные карточки со слайдером (столбцом) */
        .blog-grid { display: flex; flex-direction: column; gap: 22px; margin-bottom: 48px; }

        .blog-card-h { display: flex; gap: 24px; background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; overflow: hidden; cursor: pointer; transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease, background .4s ease; box-shadow: 0 8px 32px rgba(0,0,0,.4); align-items: stretch; }
        .blog-card-h:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(59,130,246,.25); border-color: rgba(34,211,238,.3); background: rgba(255,255,255,.06); }

        .bc-slider { position: relative; flex: 0 0 360px; max-width: 360px; min-height: 240px; background: #111; overflow: hidden; }
        .bc-slider .bc-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease, opacity .3s ease; }
        .bc-slider:hover .bc-main-img { transform: scale(1.04); }
        .bc-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(15,23,42,.72); color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: .2s; z-index: 2; }
        .bc-arrow:hover { background: rgba(59,130,246,.9); }
        .bc-arrow.prev { left: 12px; }
        .bc-arrow.next { right: 12px; }
        .bc-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
        .bc-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: .2s; }
        .bc-dots span.active { background: #22d3ee; box-shadow: 0 0 8px rgba(34,211,238,.7); }
        .bc-placeholder { color: #334155; display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; }

        .bc-body { flex: 1; padding: 26px 30px 28px; display: flex; flex-direction: column; gap: 10px; position: relative; }
        .bc-body .bc-tag { align-self: flex-start; background: rgba(59,130,246,.12); color: #22d3ee; font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; padding: 3px 14px; border-radius: 40px; }
        .bc-body h3 { font-size: 1.45rem; font-weight: 700; margin: 0; color: #f0f4ff; line-height: 1.28; }
        .bc-body p { color: #94a3b8; font-size: .96rem; line-height: 1.65; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
        .bc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
        .bc-date { color: #64748b; font-size: .8rem; font-weight: 500; }
        .bc-read { color: #22d3ee; font-size: .88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

        /* Слайдер в модальном окне записи */
        .blog-slider { position:relative; margin:12px 0; }
        .blog-slider-arrow { position:absolute; top:50%; transform:translateY(-50%); width:38px; height:38px; border-radius:50%; border:none; background:rgba(15,23,42,.7); color:#fff; font-size:.9rem; cursor:pointer; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); transition:.2s; z-index:2; }
        .blog-slider-arrow:hover { background:rgba(59,130,246,.85); }
        .blog-slider-arrow.prev { left:10px; }
        .blog-slider-arrow.next { right:10px; }
        .blog-slider-dots { display:flex; justify-content:center; gap:6px; margin-top:8px; }
        .blog-slider-dots span { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.25); cursor:pointer; }
        .blog-slider-dots span.active { background:#22d3ee; box-shadow:0 0 8px rgba(34,211,238,.6); }

        /* Пагинация */
        .pagination-wrap { padding: 0 0 120px; }
        .pagination { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; }
        .pagination button, .pagination .page-num { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color:#cbd5e1; width:44px; height:44px; border-radius:12px; font-size:.95rem; font-weight:500; cursor:pointer; transition:.3s; display:flex; align-items:center; justify-content:center; }
        .pagination button:hover, .pagination .page-num:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
        .pagination .page-num.active { background: linear-gradient(135deg,#3b82f6,#22d3ee); color:#fff; border-color: transparent; box-shadow: 0 6px 20px rgba(59,130,246,.4); }
        .pagination button:disabled { opacity:.4; cursor:not-allowed; transform:none; }
        .pagination .page-dots { width:auto; height:auto; border:none; background:none; color:#64748b; }

        @media (max-width:600px) {
            .page-title { font-size: 2rem; }
            .blog-grid { gap: 16px; }
            /* Горизонтальная карточка складывается в столбец на телефоне. */
            .blog-card-h { flex-direction: column; }
            .bc-slider { flex: none; width: 100%; max-width: 100%; height: 220px; }
            .bc-body { padding: 20px; }
            .bc-body h3 { font-size: 1.25rem; }
            .pagination button, .pagination .page-num { width: 40px; height: 40px; }
        }

        /* ============================================================
           COOKIE-БАННЕР + МОДАЛЬНОЕ ОКНО СОГЛАСИЯ
           ============================================================ */
        .cookie-banner {
            position: fixed;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%) translateY(30px);
            width: min(520px, calc(100% - 28px));
            z-index: 400;
            background: rgba(24, 26, 36, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 18px;
            padding: 16px 20px 18px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(34, 211, 238, 0.08);
            opacity: 0;
            transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .45s ease;
            color: #f0f4ff;
        }
        .cookie-banner.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .cookie-banner.hidden {
            opacity: 0;
            transform: translateX(-50%) translateY(30px);
            pointer-events: none;
        }
        .cookie-close {
            position: absolute;
            top: 10px; right: 12px;
            width: 30px; height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,.14);
            background: rgba(255,255,255,.05);
            color: #94a3b8;
            cursor: pointer;
            font-size: .8rem;
            display: flex; align-items: center; justify-content: center;
            transition: .3s;
        }
        .cookie-close:hover { color: #fff; border-color: rgba(34,211,238,.5); }
        .cookie-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 4px; }
        .cookie-banner h3 { font-size: 1.12rem; font-weight: 700; margin: 0 0 6px; }
        .cookie-banner p { color: #cbd5e1; font-size: .84rem; line-height: 1.55; margin: 0 0 12px; }
        .cookie-banner a { color: #22d3ee; text-decoration: none; font-weight: 600; border-bottom: 1px dashed rgba(34,211,238,.4); }
        .cookie-banner a:hover { color: #3b82f6; }
        .cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
        .cookie-btn {
            padding: 7px 18px;
            border-radius: 60px;
            font-weight: 600;
            font-size: .82rem;
            cursor: pointer;
            border: 1px solid transparent;
            transition: all .3s;
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
        }
        .cookie-btn-primary {
            background: linear-gradient(135deg, #3b82f6, #22d3ee);
            color: #fff !important;
            box-shadow: 0 0 22px rgba(59, 130, 246, 0.35);
        }
        .cookie-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(59,130,246,.5); }
        .cookie-btn-ghost {
            background: transparent;
            border-color: rgba(255,255,255,.22);
            color: #cbd5e1 !important;
        }
        .cookie-btn-ghost:hover { border-color: #22d3ee; color: #fff; background: rgba(34,211,238,.08); }

        /* ============================================================
           СТРАНИЦА ПОЛИТИКИ COOKIE
           ============================================================ */
        .policy-page { padding: 40px 0 60px; }
        .policy-inner {
            max-width: 820px;
            margin: 0 auto;
            background: rgba(24, 26, 36, 0.75);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 22px;
            padding: 40px 44px 44px;
        }
        .policy-icon { font-size: 2.6rem; display: block; margin-bottom: 4px; }
        .policy-inner h1 { font-size: 2rem; font-weight: 800; margin: 0 0 16px; line-height: 1.2; }
        .policy-lead { color: #cbd5e1; font-size: 1.05rem; line-height: 1.7; margin: 0 0 28px; }
        .policy-inner h2 { font-size: 1.35rem; font-weight: 700; margin: 34px 0 14px; color: #fff; }
        .policy-inner p { color: #cbd5e1; font-size: .98rem; line-height: 1.75; margin: 0 0 12px; }
        .cookie-table { width: 100%; border-collapse: collapse; margin: 6px 0 4px; overflow: hidden; border-radius: 14px; }
        .cookie-table th, .cookie-table td { text-align: left; padding: 12px 14px; font-size: .88rem; vertical-align: top; }
        .cookie-table thead th { background: rgba(59,130,246,.14); color: #e2e8f0; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.1); }
        .cookie-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.07); }
        .cookie-table tbody tr:last-child { border-bottom: none; }
        .cookie-table td code { background: rgba(34,211,238,.12); color: #22d3ee; padding: 2px 7px; border-radius: 6px; font-size: .82rem; }
        .badge { display: inline-block; padding: 3px 11px; border-radius: 40px; font-size: .72rem; font-weight: 600; }
        .badge-essential { background: rgba(34,211,238,.15); color: #22d3ee; }
        .badge-pref { background: rgba(59,130,246,.16); color: #93c5fd; }
        .cookie-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 6px; }
        .cat-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 20px; }
        .cat-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 12px; background: linear-gradient(135deg, rgba(59,130,246,.22), rgba(34,211,238,.22)); color: #22d3ee; }
        .cat-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; color: #fff; }
        .cat-card p { font-size: .86rem; line-height: 1.6; margin: 0; color: #cbd5e1; }
        .policy-list { color: #cbd5e1; font-size: .94rem; line-height: 1.7; padding-left: 20px; margin: 0; }
        .policy-list li { margin-bottom: 8px; }
        .policy-list i { color: #22d3ee; margin-right: 8px; }
        .policy-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; color: #22d3ee; text-decoration: none; font-weight: 600; font-size: .95rem; border-bottom: 1px dashed rgba(34,211,238,.4); padding-bottom: 2px; }
        .policy-back:hover { color: #3b82f6; }

        @media (max-width:760px) {
            .cookie-categories { grid-template-columns: 1fr; }
            .policy-inner { padding: 30px 22px 34px; }
            .cookie-banner { bottom: 12px; width: min(460px, calc(100% - 24px)); padding: 14px 18px 16px; }
        }