:root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #f59e0b;
            --dark: #0f172a;
            --gray-900: #1e293b;
            --gray-800: #334155;
            --gray-600: #475569;
            --gray-400: #94a3b8;
            --gray-200: #e2e8f0;
            --gray-100: #f1f5f9;
            --white: #ffffff;
            --success: #10b981;
            --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* OVERFLOW_X_FIX_V1: prevent decorative absolute elements from causing horizontal scroll */
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
        }
        h1,h2,h3,h4,h5,h6{font-family:"Manrope",-apple-system,BlinkMacSystemFont,sans-serif;letter-spacing:-0.02em;}
        img, svg, video { max-width: 100%; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--gray-200);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav {
            display: flex;
            gap: 24px;
        }

        .nav a {
            color: var(--gray-600);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
        }

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

        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-phone a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
        }

        .header-phone a:hover {
            color: var(--primary);
        }

        .header-address {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--gray-600);
            font-size: 13px;
            font-weight: 500;
        }

        .header-address::before {
            content: '';
            display: inline-block;
            width: 14px;
            height: 14px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
        }

        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }

        .header-contacts {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(99,102,241,0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-badge::before {
            content: '🔥';
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        /* Hero mini-form */
        .hero-form {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            max-width: 420px;
        }
        .hero-form-row {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        .hero-form input {
            flex: 1;
            padding: 14px 16px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Manrope', sans-serif;
            outline: none;
            transition: border-color 0.3s;
            min-width: 0;
        }
        .hero-form input:focus {
            border-color: var(--primary);
        }
        .hero-form input::placeholder {
            color: var(--gray-400);
        }
        .hero-form-btn {
            width: 100%;
            padding: 14px;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: 'Manrope', sans-serif;
        }
        .hero-form-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99,102,241,0.4);
        }
        .hero-form-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        .hero-form-note {
            text-align: center;
            font-size: 12px;
            color: var(--gray-400);
            margin-top: 8px;
        }
        .hero-form-success {
            display: none;
            text-align: center;
            padding: 30px 20px;
        }
        .hero-form-success.show {
            display: block;
        }
        .hero-form-success .checkmark {
            width: 60px;
            height: 60px;
            background: #dcfce7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
        }
        .hero-form-success h4 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .hero-form-success p {
            font-size: 14px;
            color: var(--gray-600);
        }
        .hero-call-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .hero-call-link:hover {
            color: var(--primary);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray-600);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* ===== Realistic iPhone mockup ===== */
        /* ===== Phone screen — no frame ===== */
        .phone-mockup {
            width: 300px;
            height: 600px;
            border-radius: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(99,102,241,0.25), 0 15px 40px rgba(0,0,0,0.15);
            animation: phoneFloat 6s ease-in-out infinite;
        }

        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: 40px;
            border: 3px solid rgba(255,255,255,0.15);
            z-index: 5;
            pointer-events: none;
        }

        .phone-mockup-inner {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .phone-wallpaper {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse at 20% 80%, rgba(245,158,11,0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.5) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(168,85,247,0.3) 0%, transparent 60%),
                linear-gradient(135deg, #0f0a2e 0%, #1a1050 30%, #2d1b69 60%, #0f0a2e 100%);
            animation: wallpaperShift 8s ease-in-out infinite alternate;
        }

        @keyframes wallpaperShift {
            0% { filter: hue-rotate(0deg) brightness(1); }
            100% { filter: hue-rotate(20deg) brightness(1.1); }
        }

        /* Animated repair slides on screen */
        .phone-slides {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .phone-slide {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            animation: slideShow 12s ease-in-out infinite;
        }
        .phone-slide:nth-child(1) { animation-delay: 0s; }
        .phone-slide:nth-child(2) { animation-delay: 3s; }
        .phone-slide:nth-child(3) { animation-delay: 6s; }
        .phone-slide:nth-child(4) { animation-delay: 9s; }

        .phone-slide-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .phone-slide-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .phone-slide-num {
            font-size: 48px;
            font-weight: 800;
            color: white;
            font-family: 'Manrope', sans-serif;
            line-height: 1;
            margin-bottom: 6px;
        }
        .phone-slide-num span {
            font-size: 24px;
            font-weight: 600;
        }

        .phone-slide-label {
            font-size: 15px;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            font-family: 'Manrope', sans-serif;
            letter-spacing: 0.5px;
        }

        .phone-slide-sub {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            font-family: 'Manrope', sans-serif;
            margin-top: 4px;
        }

        @keyframes slideShow {
            0%, 5% { opacity: 0; transform: translateY(20px) scale(0.95); }
            10%, 20% { opacity: 1; transform: translateY(0) scale(1); }
            25%, 100% { opacity: 0; transform: translateY(-20px) scale(0.95); }
        }

        /* Brand watermark */
        .phone-brand {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            text-align: center;
        }
        .phone-brand-name {
            font-size: 22px;
            font-weight: 800;
            color: white;
            font-family: 'Manrope', sans-serif;
            letter-spacing: 1px;
        }
        .phone-brand-dot {
            color: #f59e0b;
        }
        .phone-brand-sub {
            font-size: 10px;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 4px;
        }

        /* Home bar */
        .phone-home-bar {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: rgba(255,255,255,0.5);
            border-radius: 4px;
            z-index: 3;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-14px); }
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 12px 16px;
            border-radius: 14px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: float 3s ease-in-out infinite;
            border: 1px solid rgba(0,0,0,0.04);
        }

        .floating-card-1 {
            top: 40px;
            left: -20px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 80px;
            right: -20px;
            animation-delay: 1s;
        }

        .floating-card-3 {
            bottom: 30px;
            left: -40px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .floating-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .floating-icon svg {
            width: 18px;
            height: 18px;
        }

        .floating-icon.green { background: #dcfce7; }
        .floating-icon.green svg { fill: #16a34a; }
        .floating-icon.blue { background: #dbeafe; }
        .floating-icon.blue svg { fill: #2563eb; }
        .floating-icon.orange { background: #fef3c7; }
        .floating-icon.orange svg { fill: #d97706; }

        .floating-text {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.2;
        }

        .floating-subtext {
            font-size: 11px;
            color: var(--gray-400);
        }

        /* Section Styles */
        section {
            padding: 80px 0;
        }

        .section-anchor {
            position: relative;
            top: -120px;
            height: 0;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(99,102,241,0.1);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 600px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .section-subtitle {
            margin: 0 auto;
        }

        /* Services */
        .services {
            background: var(--gray-100);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        /* SERVICE_CARD_V2 */
        a.service-card { text-decoration: none; color: inherit; }
        .service-card {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 26px 24px 24px;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            border: 1px solid #e9d5ff;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(76, 29, 149, 0.05);
            display: flex;
            flex-direction: column;
            min-height: 220px;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #a78bfa, #7c3aed, #a78bfa, transparent);
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .service-card::after {
            content: '→';
            position: absolute;
            right: 24px;
            bottom: 22px;
            font-size: 22px;
            font-weight: 700;
            color: #7c3aed;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.25s ease, transform 0.25s ease;
            pointer-events: none;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(76, 29, 149, 0.18);
            border-color: #7c3aed;
        }
        .service-card:hover::before { opacity: 1; }
        .service-card:hover::after { opacity: 1; transform: translateX(0); }

        /* SERVICE_ICONS_SVG_V1 */
        .service-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            color: #7c3aed;
            box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.12), 0 4px 12px rgba(124, 58, 237, 0.10);
            transition: transform 0.25s ease, background 0.25s ease;
        }
        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: currentColor;
        }
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
            color: #fff;
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 8px 0;
            color: #0f172a;
            line-height: 1.3;
        }
        .service-card h3 a,
        .service-card h3 a:link,
        .service-card h3 a:visited {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .service-card:hover h3 a {
            color: #7c3aed;
        }
        .service-card p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.55;
            margin: 0;
            padding-right: 28px; /* leave room for hover arrow */
            flex: 1;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            margin-top: 10px;
        }

        .service-link:hover {
            color: var(--primary-dark);
        }

        .service-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .price-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .price-time {
            font-size: 13px;
            color: var(--gray-400);
            background: var(--gray-100);
            padding: 5px 10px;
            border-radius: 20px;
        }

        /* Prices */
        .prices {
            background: white;
        }


        .price-table {
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            overflow: hidden;
            background: white;
            max-width: 900px;
            margin: 0 auto;
        }

        .price-row {
            display: grid;
            grid-template-columns: 1.2fr 0.6fr 0.6fr;
            gap: 10px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--gray-200);
            font-size: 15px;
        }

        .price-row:last-child {
            border-bottom: none;
        }

        .price-row.price-row-header {
            background: var(--gray-100);
            font-weight: 700;
        }

        .price-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
        }

        .price-link:hover {
            color: var(--primary);
        }

        .price-note {
            text-align: center;
            color: var(--gray-600);
            margin-top: 14px;
            font-size: 14px;
        }

        /* About */
        .about {
            background: var(--gray-100);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 28px;
            border: 1px solid var(--gray-200);
        }

        .about-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .about-card p {
            color: var(--gray-600);
            margin-bottom: 14px;
            font-size: 14px;
        }

        .about-list {
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .about-list li {
            display: flex;
            gap: 8px;
            color: var(--gray-600);
            font-size: 14px;
        }

        /* Brands (dark neon redesign 2026-05-24) */
        .brands {
            position: relative;
            padding: 56px 0 60px;
            background: #02010c;
            overflow: visible;
        }
        .brands::before, .brands::after { content: none; display: none; }
        .brands-title {
            text-align: center;
            font-size: 13px;
            color: #a78bfa;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin: 0 0 8px;
            position: relative; z-index: 1;
            display: flex; align-items: center; justify-content: center; gap: 14px;
        }
        .brands-title::before, .brands-title::after {
            content: '◆'; color: #c084fc; font-size: 8px; opacity: 0.95; text-shadow: 0 0 8px rgba(192,132,252,0.9);
        }
        .brands-shelf {
            position: relative;
            margin: 0;
            max-width: none;
            width: 100%;
            padding: 4px 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            overflow: hidden;
            z-index: 1;
        }
        .brands-track {
            display: flex;
            width: max-content;
            animation: brandsScroll 45s linear infinite;
            gap: 0;
        }
        .brands-track img {
            display: block;
            height: auto;
            max-width: none;
            flex: 0 0 auto;
            margin: 0;
            clip-path: inset(0 40px 0 40px);
            -webkit-mask-image: linear-gradient(180deg,transparent 0%,#000 18%,#000 82%,transparent 100%);
                    mask-image: linear-gradient(180deg,transparent 0%,#000 18%,#000 82%,transparent 100%);
        }
        .brands-sep {
            flex: 0 0 auto;
            width: 1px;
            align-self: center;
            height: 64px;
            background: linear-gradient(180deg,
                rgba(192,132,252,0) 0%,
                rgba(192,132,252,0.55) 35%,
                rgba(217,70,239,0.85) 50%,
                rgba(192,132,252,0.55) 65%,
                rgba(192,132,252,0) 100%);
            box-shadow:
                0 0 8px rgba(192,132,252,0.7),
                0 0 16px rgba(168,85,247,0.5);
            margin: 0 -40px;
        }
        @keyframes brandsScroll {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }
        .brands-shelf:hover .brands-track { animation-play-state: paused; }
        .brands-shelf::before, .brands-shelf::after {
            content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
        }
        .brands-shelf::before { left: 0; background: linear-gradient(90deg, #050310 0%, rgba(5,3,16,0) 100%); }
        .brands-shelf::after  { right: 0; background: linear-gradient(270deg, #050310 0%, rgba(5,3,16,0) 100%); }
        /* Premium neon SVG line (top+bottom of brands) */
        .brands-top-line, .brands-bot-line {
            position: absolute; left: calc(8% + 40px); right: calc(8% + 40px); height: 2px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow:
                0 0 3px #ffffff,
                0 0 8px #ffffff,
                0 0 18px #ff7af5,
                0 0 38px #c084fc,
                0 0 70px rgba(168,85,247,0.7);
            pointer-events: none; z-index: 2;
        }
        .brands-top-line { top: 24px; }
        .brands-bot-line { bottom: 24px; }
        .brands-svg-line, .brands-line-glow { display: none; }
        .brands-line-glow { display: none; }
        .brands-track {
            display: flex;
            gap: 6px;
            animation: brands-scroll 38s linear infinite;
            width: max-content;
        }
        .brand-item {
            flex: 0 0 auto;
            width: 108px;
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            padding: 10px 6px 8px;
            background: transparent;
            border: 0;
            transition: transform .25s ease, filter .25s ease;
            filter: drop-shadow(0 0 6px rgba(192,132,252,0.18));
        }
        .brand-item:hover { transform: translateY(-3px); filter: drop-shadow(0 0 10px rgba(216,180,254,0.6)); }
        .brand-logo {
            width: 56px; height: 56px;
            display: flex; align-items: center; justify-content: center;
            color: #ede9fe;
            background: transparent;
            border: 0;
        }
        .brand-logo svg { width: 38px; height: 38px; fill: currentColor; }
        .brand-logo .bl-text { font-weight: 800; letter-spacing: 0.5px; color: #ede9fe; }
        .brand-name {
            font-size: 13.5px; font-weight: 600; color: #cbbff1; letter-spacing: 0.3px;
        }
        @keyframes brands-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (max-width: 720px) {
            .brand-item { width: 100px; }
            .brand-logo { width: 56px; height: 56px; }
            .brand-logo svg { width: 32px; height: 32px; }
        }

        /* Why Us */
        .why-us {
            background: var(--dark);
            color: white;
        }

        .why-us .section-badge {
            background: rgba(255,255,255,0.1);
            color: white;
        }

        .why-us .section-title {
            color: white;
        }

        .why-us .section-subtitle {
            color: var(--gray-400);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .why-card {
            text-align: center;
            padding: 30px 20px;
        }

        .why-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .why-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 14px;
            color: var(--gray-400);
        }

        /* Gallery */
        .gallery {
            background: radial-gradient(rgba(255,255,255,.035) 1px,transparent 1px) 0 0/4px 4px,radial-gradient(circle at 50% 0%,rgba(205,120,255,.22),transparent 55%),linear-gradient(180deg,#f6f2ff 0%,#f9f7ff 35%,#ffffff 100%);
            padding-top: 0;
            position: relative;
            overflow: hidden;
        }
        .gallery::before {
            content: '';
            position: absolute;
            bottom: -120px; left: -100px;
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(255,255,255,0.85), transparent 70%);
            pointer-events: none;
        }
        .gallery::after {
            content: '';
            position: absolute;
            bottom: -140px; right: -120px;
            width: 460px; height: 460px;
            background: radial-gradient(circle, rgba(255,255,255,0.8), transparent 70%);
            pointer-events: none;
        }
        .gallery .container { position: relative; z-index: 1; }
        .gallery .section-badge {
            background: rgba(124,58,237,0.1);
            color: #7c3aed;
        }
        .gallery .section-title { color: #1a1530; }
        .gallery .gal-accent {
            background: linear-gradient(120deg,#a78bfa,#7c3aed);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .gallery .section-subtitle { color: #6b7280; }
        .gallery-grid {
            display: grid;
            grid-template-columns: 1.32fr 1fr 1fr;
            grid-auto-rows: 232px;
            gap: 18px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .gallery-card {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(135deg,#2a1855,#14101f 70%);
            cursor: pointer;
            box-shadow: 0 12px 30px rgba(40,24,80,0.14);
        }
        .gallery-card--big { grid-column: 1; grid-row: 1 / span 2; }

        .gallery-card { box-shadow: 0 14px 40px rgba(40,24,80,0.22); transition: transform .25s ease, box-shadow .25s ease; }
        .gallery-card:hover { transform: translateY(-4px); box-shadow: 0 22px 56px rgba(60,30,140,0.32); }
        .gallery-tag { background: rgba(12,9,22,0.78); box-shadow: 0 6px 18px rgba(20,10,40,0.35); padding: 5px 12px 5px 5px; }
        .gallery-tag .gt-ic { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#a78bfa,#6d28d9); box-shadow: 0 4px 10px rgba(124,58,237,0.5); color: #fff; flex-shrink: 0; }
        .gallery-tag .gt-ic svg { width: 13px; height: 13px; }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
        }
        .gallery-card:hover img { transform: scale(1.06); }
        .gallery-card::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(8,6,16,0.35) 0%, rgba(8,6,16,0.12) 30%, transparent 55%);
            pointer-events: none;
        }
        .gallery-tag {
            position: absolute;
            top: 14px; left: 14px;
            z-index: 2;
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(12,9,22,0.74);
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.14);
            color: #fff;
            font-size: 12px; font-weight: 600;
            padding: 6px 12px;
            border-radius: 30px;
        }
        .gallery-info {
            position: absolute;
            left: 0; right: 0; bottom: 0;
            z-index: 2;
            padding: 16px 18px 16px;
            color: #fff;
        }
                        .gallery-info {
            left: 14px; right: 14px; bottom: 14px;
            padding: 5px 14px 5px;
            background: rgba(14,9,26,0.42);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            backdrop-filter: blur(14px) saturate(140%);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.28);
        }
        .gallery-info--big {
            left: 16px; right: 16px; bottom: 16px;
            padding: 18px 20px 18px;
            border-radius: 18px;
        }
        .gallery-info h4 { font-size: 15px; font-weight: 700; margin: 0 0 3px; }
        .gallery-info p { font-size: 12.5px; color: rgba(255,255,255,0.66); margin: 0 0 8px; line-height: 1.4; }
        .gallery-time {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: 12px; color: rgba(255,255,255,0.82);
        }
        .gallery-time svg { width: 13px; height: 13px; }
        .gallery-info--big {
            padding: 22px 22px 20px;
            display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
        }
        .gi-left { display: flex; align-items: flex-start; gap: 13px; min-width: 0; }
        .gi-icon {
            flex-shrink: 0;
            width: 42px; height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg,#8b5cf6,#6d28d9);
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 6px 16px rgba(124,58,237,0.5);
        }
        .gi-icon svg { width: 22px; height: 22px; }
        .gallery-info--big h4 { font-size: 18px; }
        .gallery-info--big p { font-size: 13px; margin-bottom: 7px; }
        .gi-btn {
            flex-shrink: 0;
            display: inline-flex; align-items: center; gap: 6px;
            background: #fff; color: #6d28d9;
            font-size: 13px; font-weight: 700;
            padding: 10px 18px; border-radius: 11px;
            text-decoration: none;
            transition: transform .2s, box-shadow .2s;
        }
        .gi-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
        .gallery-all-wrap { text-align: center; margin-top: 38px; }
        .gallery-all {
            display: inline-flex; align-items: center; gap: 8px;
            background: #fff; color: #6d28d9;
            padding: 15px 32px; border-radius: 14px;
            font-weight: 700; font-size: 15px;
            text-decoration: none;
            box-shadow: 0 12px 30px rgba(124,58,237,0.16);
            transition: transform .2s, box-shadow .2s;
        }
        .gallery-all:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(124,58,237,0.26); }
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 200px;
                max-width: 460px;
            }
            .gallery-card--big { grid-column: 1; grid-row: span 2; }
            .gallery-info--big { flex-direction: column; align-items: flex-start; gap: 12px; }
            .gi-btn { align-self: stretch; justify-content: center; }
        }

        /* Reviews */
        .reviews {
            background: white;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .review-card {
            background: var(--gray-100);
            border-radius: 20px;
            padding: 30px;
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 60px;
            color: var(--primary);
            opacity: 0.2;
            font-family: 'Manrope', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
            line-height: 1;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .review-name {
            font-weight: 600;
            color: var(--dark);
        }

        .review-date {
            font-size: 13px;
            color: var(--gray-400);
        }

        .review-stars {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 14px;
        }

        .review-text {
            color: var(--gray-600);
            font-size: 15px;
            line-height: 1.7;
        }

        .review-source {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--gray-200);
            font-size: 13px;
            color: var(--gray-400);
        }

        /* CTA Section */
        .cta {
            background: var(--gradient);
            padding: 80px 0;
        }

        .cta-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }

        .cta p {
            color: rgba(255,255,255,0.8);
            font-size: 18px;
            margin-bottom: 30px;
        }

        .cta-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
        }

        .cta-feature-icon {
            width: 30px;
            height: 30px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-form-card {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .cta-form-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .cta-form-card > p {
            color: var(--gray-600);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: none;
            height: 100px;
        }

        .form-submit {
            width: 100%;
            padding: 18px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99,102,241,0.4);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .form-success.show {
            display: block;
        }

        .form-success-icon {
            width: 80px;
            height: 80px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
            color: white;
        }

        .form-success h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-success p {
            color: var(--gray-600);
        }

        /* Process */
        .process {
            background: var(--gray-100);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: var(--gray-200);
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            color: white;
            margin: 0 auto 20px;
            border: 5px solid var(--gray-100);
        }

        .process-step h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .process-step p {
            font-size: 14px;
            color: var(--gray-600);
            max-width: 200px;
            margin: 0 auto;
        }

        /* Contact */
        .contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--dark);
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .contact-item p, .contact-item a {
            color: var(--gray-600);
            text-decoration: none;
            font-size: 15px;
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        .contact-map {
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            background: var(--gray-200);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-desc {
            color: var(--gray-400);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--gray-800);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

        .footer-social a:hover {
            background: var(--primary);
        }

        .footer h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid var(--gray-800);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-400);
            font-size: 14px;
        }

        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
            transition: bottom 0.3s ease;
        }

        .fab {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            transition: all 0.3s;
            text-decoration: none;
        }

        .fab:hover {
            transform: scale(1.1);
        }

        /* Плоский стиль FAB-ов */
        .fab {
            box-shadow: 0 8px 22px rgba(124,58,237,0.30) !important;
            position: relative;
        }
        .fab::before { content: none !important; }
        .fab svg { filter: none; }

        .fab-phone    { background: #16a34a; }
        .fab-telegram { background: #5b6cf5; }
        .fab-max      { background: #7c3aed; }

        /* Align CRM chat widget FAB with our floating stack */
        .dcc-fab {
            width: 56px !important;
            height: 56px !important;
            right: 30px !important;
            font-size: 22px !important;
            background: #a855f7 !important;
            box-shadow: 0 8px 22px rgba(168,85,247,0.40) !important;
        }
        .dcc-fab::before { content: none !important; }
        @media (max-width: 768px) {
            .dcc-fab {
                width: 48px !important;
                height: 48px !important;
                right: 16px !important;
                bottom: 200px !important;
                font-size: 20px !important;
            }
        }

        /* ===== Chat Widget ===== */
        /* Hide old widget — replaced by CRM-connected one */
.chat-widget-btn, .chat-widget-window { display: none !important; }
        .chat-widget-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(99,102,241,0.4);
            transition: all 0.3s;
            position: relative;
        }
        .chat-widget-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(99,102,241,0.5);
        }
        .chat-widget-btn svg {
            width: 28px;
            height: 28px;
            fill: white;
            transition: transform 0.3s;
        }
        .chat-widget-btn.active svg {
            transform: rotate(90deg);
        }
        .chat-widget-btn .chat-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(99,102,241,0.3);
            animation: chatPulse 2s ease-out infinite;
        }
        @keyframes chatPulse {
            0% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .chat-widget-window {
            position: fixed;
            bottom: 105px;
            right: 30px;
            width: 370px;
            max-height: 520px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 12px 48px rgba(0,0,0,0.15);
            z-index: 1001;
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: chatSlideUp 0.3s ease;
        }
        .chat-widget-window.open {
            display: flex;
        }
        @keyframes chatSlideUp {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .chat-widget-header {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .chat-widget-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .chat-widget-header-text h4 {
            font-size: 15px;
            font-weight: 700;
            font-family: 'Manrope', sans-serif;
        }
        .chat-widget-header-text p {
            font-size: 12px;
            opacity: 0.8;
            margin-top: 2px;
        }

        .chat-widget-body {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 320px;
            min-height: 180px;
        }
        .chat-msg {
            max-width: 80%;
            padding: 10px 14px;
            border-radius: 16px;
            font-size: 14px;
            line-height: 1.4;
            font-family: 'Manrope', sans-serif;
            word-wrap: break-word;
        }
        .chat-msg.bot {
            background: #f1f5f9;
            color: #334155;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }
        .chat-msg.user {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }
        .chat-msg.bot .chat-msg-time,
        .chat-msg.user .chat-msg-time {
            font-size: 10px;
            opacity: 0.6;
            margin-top: 4px;
        }

        .chat-quick-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 0 16px 10px;
        }
        .chat-quick-btn {
            padding: 6px 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 20px;
            background: white;
            font-size: 12px;
            font-weight: 500;
            color: #475569;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Manrope', sans-serif;
        }
        .chat-quick-btn:hover {
            border-color: #6366f1;
            color: #6366f1;
            background: #eef2ff;
        }

        .chat-widget-footer {
            padding: 12px 16px;
            border-top: 1px solid #f1f5f9;
            display: flex;
            gap: 8px;
        }
        .chat-widget-footer input {
            flex: 1;
            padding: 10px 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 12px;
            font-size: 14px;
            outline: none;
            font-family: 'Manrope', sans-serif;
            transition: border-color 0.2s;
        }
        .chat-widget-footer input:focus {
            border-color: #6366f1;
        }
        .chat-widget-footer button {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            flex-shrink: 0;
        }
        .chat-widget-footer button:hover {
            transform: scale(1.05);
        }
        .chat-widget-footer button svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        /* Chat auth overlay */
        .chat-auth-overlay {
            padding: 30px 20px;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .chat-auth-overlay h4 {
            font-size: 16px;
            color: #1e293b;
            margin-bottom: 6px;
            font-family: 'Manrope', sans-serif;
        }
        .chat-auth-overlay p {
            font-size: 13px;
            color: #94a3b8;
            margin-bottom: 16px;
            font-family: 'Manrope', sans-serif;
        }
        .chat-auth-overlay input {
            width: 100%;
            max-width: 240px;
            padding: 10px 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 12px;
            font-size: 14px;
            outline: none;
            text-align: center;
            font-family: 'Manrope', sans-serif;
            margin-bottom: 10px;
        }
        .chat-auth-overlay input:focus {
            border-color: #6366f1;
        }
        .chat-auth-overlay button {
            width: 100%;
            max-width: 240px;
            padding: 10px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Manrope', sans-serif;
        }
        .chat-auth-overlay .chat-auth-hint {
            font-size: 11px;
            color: #cbd5e1;
            margin-top: 12px;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 360px;
            height: 100vh;
            background: #fff;
            z-index: 2000;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -8px 0 32px rgba(15, 10, 36, 0.18);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            background: linear-gradient(135deg, #faf8ff 0%, #f0ebff 100%);
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .mobile-menu-close {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.1);
            border: none;
            border-radius: 50%;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            color: var(--primary);
            transition: background 0.2s, transform 0.2s;
        }
        .mobile-menu-close:hover {
            background: rgba(99, 102, 241, 0.2);
            transform: rotate(90deg);
        }

        .mobile-menu-content {
            padding: 16px;
        }

        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 20px;
        }

        .mobile-menu-nav a {
            position: relative;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 13px 40px 13px 16px;
            border-radius: 12px;
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }

        .mobile-menu-nav a::after {
            content: '';
            position: absolute;
            right: 16px;
            top: 50%;
            width: 8px;
            height: 8px;
            border-right: 2px solid var(--gray-400, #9ca3af);
            border-top: 2px solid var(--gray-400, #9ca3af);
            transform: translateY(-50%) rotate(45deg);
            transition: border-color 0.2s, right 0.2s;
        }

        .mobile-menu-nav a:hover,
        .mobile-menu-nav a:active {
            background: linear-gradient(90deg, rgba(99,102,241,0.08), rgba(99,102,241,0));
            color: var(--primary);
        }

        .mobile-menu-nav a:hover::after {
            border-color: var(--primary);
            right: 12px;
        }

        .mobile-menu-info {
            padding: 20px;
            background: var(--gray-100);
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .mobile-menu-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
        }

        .mobile-menu-info-item:last-child {
            margin-bottom: 0;
        }

        .mobile-menu-info-icon {
            font-size: 20px;
            flex-shrink: 0;
        }

        .mobile-menu-info-text {
            flex: 1;
        }

        .mobile-menu-info-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-600);
            margin-bottom: 5px;
        }

        .mobile-menu-info-text p,
        .mobile-menu-info-text a {
            font-size: 16px;
            color: var(--dark);
            text-decoration: none;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Callback Modal */
        .callback-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            padding: 20px;
        }

        .callback-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .callback-modal-content {
            background: white;
            border-radius: 25px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s;
        }

        .callback-modal.active .callback-modal-content {
            transform: scale(1);
        }

        .callback-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--gray-400);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .callback-modal-close:hover {
            background: var(--gray-100);
            color: var(--dark);
        }

        .callback-modal h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .callback-modal p {
            color: var(--gray-600);
            margin-bottom: 25px;
        }

        .callback-btn {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 15px rgba(245,158,11,0.3);
        }

        .callback-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245,158,11,0.4);
        }

        /* FAQ Section */
        .faq {
            background: var(--gray-100);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(99,102,241,0.1);
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            color: var(--dark);
            transition: color 0.3s;
        }

        .faq-item.active .faq-question {
            color: var(--primary);
        }

        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s;
            color: var(--primary);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 25px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 25px;
        }

        .faq-answer p {
            color: var(--gray-600);
            line-height: 1.7;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content, .cta-content, .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                display: none;
            }

            .services-grid, .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item:nth-child(1),
            .gallery-item:nth-child(5) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .header-address {
                display: none;
            }

            .header-right .callback-btn {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 90px 0 40px;
            }
            section {
                padding: 40px 0;
            }
            .hero-badge {
                display: flex;
                width: max-content;
                margin: 0 auto 16px;
            }
            .hero h1 {
                font-size: 32px;
            }

            .hero-content { min-width: 0; }
            .hero-content > * { min-width: 0; max-width: 100%; }
            .hero-form { max-width: 100%; }

            .hero-stats {
                justify-content: space-between;
                gap: 12px;
            }
            .hero-stats .stat-item { flex: 1; min-width: 0; }
            .hero-stats .stat-value { font-size: 28px; }

            .section-title {
                font-size: 28px;
            }

            .services-grid, .reviews-grid, .gallery-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .price-row {
                grid-template-columns: 1.4fr 0.8fr 0.8fr;
                gap: 8px;
                padding: 12px 14px;
                font-size: 13px;
            }

            .process-steps {
                flex-direction: column;
                gap: 30px;
            }

            .process-steps::before {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .floating-buttons {
                bottom: 80px;
                right: 16px;
            }

            .fab {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .chat-widget-window {
                right: 10px;
                left: 10px;
                width: auto;
                bottom: 90px;
                max-height: 60vh;
            }

            .chat-widget-btn {
                width: 52px;
                height: 52px;
            }
            }

            .mobile-cta-bar {
                display: flex !important;
            }
        }

        /* Sticky Mobile CTA Bar */
        .mobile-cta-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 1px solid var(--gray-200);
            padding: 10px 16px;
            z-index: 1000;
            box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
            gap: 8px;
        }

        .mobile-cta-bar a {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 12px 8px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            text-align: center;
        }

        .mobile-cta-call {
            background: var(--gradient);
            color: #fff !important;
        }

        .mobile-cta-form {
            background: var(--gray-100);
            color: var(--primary) !important;
            border: 1px solid var(--gray-200);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark);
            color: white;
            padding: 20px;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.5s;
        }

        .cookie-banner.show ~ .floating-buttons,
        .floating-buttons.hidden {
            bottom: 100px;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .cookie-text {
            font-size: 14px;
            color: var(--gray-400);
        }

        .cookie-text a {
            color: var(--primary);
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cookie-accept {
            background: var(--primary);
            color: white;
        }

        .cookie-decline {
            background: var(--gray-800);
            color: white;
        }

        /* === Discount System === */
        .discount-section {
            padding: 90px 0 36px;
            background: #02010c;
            position: relative;
            overflow: hidden;
        }
        .discount-section::before {
            content: '';
            position: absolute;
            top: -12%;
            left: 50%;
            transform: translateX(-50%);
            width: 920px;
            height: 620px;
            background: radial-gradient(ellipse at center, rgba(124,58,237,0.18), transparent 65%);
            pointer-events: none;
        }
        .discount-section::after{content:"";position:absolute;width:520px;height:520px;border-radius:50%;background:rgba(99,40,180,0.22);filter:blur(120px);top:-80px;left:-180px;pointer-events:none;z-index:0;}
        .discount-section .container { position: relative; z-index: 1; }
        .discount-section .section-badge {
            background: rgba(139,92,246,0.12);
            border: 1px solid rgba(139,92,246,0.32);
            color: #c4b5fd;
        }
        .discount-section .section-title { color: #fff; }
        .discount-section .section-subtitle { color: #9c95ad; }
        .discount-accent {
            background: linear-gradient(135deg, #a78bfa, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
        .discount-hero {
            display: grid;
            grid-template-columns: 1.18fr 1fr;
            gap: 56px;
            align-items: center;
            margin: 50px 0 64px;
        }
        .discount-card-stage {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 0;
        }
        .discount-card-frame {
            position: relative;
            display: inline-block;
            line-height: 0;
            width: 100%;
            max-width: 680px;
        }
        .discount-card-img {
            width: 100%;
            height: auto;
            display: block;
            -webkit-mask-image:linear-gradient(to right,transparent,#000 9%),linear-gradient(to left,transparent,#000 10%),linear-gradient(to bottom,transparent,#000 15%),linear-gradient(to top,transparent,#000 12%);
            -webkit-mask-composite:source-in,source-in,source-in;
            mask-image:linear-gradient(to right,transparent,#000 9%),linear-gradient(to left,transparent,#000 10%),linear-gradient(to bottom,transparent,#000 15%),linear-gradient(to top,transparent,#000 12%);
            mask-composite:intersect;
        }
        .discount-card-visual {
            position: relative;
            z-index: 1;
            background: linear-gradient(150deg, #211a3a 0%, #0d0920 100%);
            border: 1px solid rgba(139,92,246,0.22);
            border-radius: 22px;
            padding: 30px 28px;
            color: #fff;
            box-shadow: 0 26px 56px rgba(8,4,22,0.65);
            aspect-ratio: 1.586 / 1;
            width: 100%;
            max-width: 400px;
            overflow: hidden;
        }
        .discount-card-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 85% 18%, rgba(139,92,246,0.3), transparent 55%),
                radial-gradient(circle at 12% 95%, rgba(109,40,217,0.2), transparent 50%);
            pointer-events: none;
        }
        .discount-card-chip {
            position: relative;
            width: 42px;
            height: 30px;
            background: linear-gradient(135deg, #f4cf6b, #c89320);
            border-radius: 6px;
            margin-bottom: 22px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        .discount-card-label {
            position: relative;
            font-size: 12px;
            letter-spacing: 2.5px;
            color: rgba(255,255,255,0.62);
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .discount-card-percent {
            position: relative;
            font-size: 68px;
            font-weight: 800;
            background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }
        .discount-card-sub {
            position: relative;
            font-size: 12.5px;
            color: rgba(255,255,255,0.7);
            line-height: 1.4;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .discount-card-icon {
            position: absolute;
            right: 26px;
            bottom: 24px;
            color: rgba(196,181,253,0.7);
        }
        .discount-card-icon svg { width: 40px; height: 40px; }
        .discount-info h3 {
            font-size: 28px;
            margin-bottom: 16px;
            color: #fff;
            font-weight: 700;
        }
        .discount-info p {
            font-size: 15.5px;
            line-height: 1.65;
            color: #9c95ad;
            margin-bottom: 22px;
        }
        .discount-list { list-style: none; padding: 0; margin: 0; }
        .discount-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 0;
            font-size: 15px;
            color: #d7d2e3;
        }
        .discount-check {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #8b5cf6, #6d28d9);
            color: #fff;
            border-radius: 50%;
            font-size: 13px;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(124,58,237,0.4);
        }
        .discount-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 40px;
        }
        .discount-feature {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: linear-gradient(160deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            padding: 26px;
            transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
        }
        .discount-feature-glow {
            display: block;
            position: absolute;
            top: 0; left: 22px; right: 22px;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, rgba(178,150,255,0.9), transparent);
            border-radius: 2px;
            pointer-events: none;
        }
        .discount-feature:hover {
            transform: translateY(-4px);
            border-color: rgba(139,92,246,0.5);
            box-shadow: 0 18px 44px rgba(124,58,237,0.22);
        }
        .discount-feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(155deg, rgba(139,92,246,0.40), rgba(124,58,237,0.12));
            border: 1px solid rgba(139,92,246,0.32);
            border-radius: 13px;
            margin-bottom: 0;
            flex-shrink: 0;
            color: #8b5cf6;
            box-shadow: 0 8px 20px rgba(124,58,237,0.30), inset 0 1px 0 rgba(255,255,255,0.22);
        }
        .discount-feature-icon svg { width: 24px; height: 24px; }
        .discount-feature-stat {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 24px;
            font-weight: 600;
            color: #8b5cf6;
            line-height: 1;
        }
        .discount-feature h4 {
            font-size: 19px;
            color: #fff;
            margin: 0 0 0 14px;
            font-weight: 600;
            flex: 1;
            min-width: 0;
        }
        .discount-feature p {
            flex-basis: 100%;
            margin-top: 12px;
            font-size: 14px;
            color: #9c95ad;
            line-height: 1.6;
            margin: 0;
        }
        .discount-footer {
            position: relative;
            display: flex;
            align-items: center;
            gap: 24px;
            background: linear-gradient(135deg, #1a1030, #0f0a1e);
            border: 1px solid rgba(255,255,255,0.08);
            color: #fff;
            border-radius: 22px;
            padding: 30px 38px;
            overflow: hidden;
        }
        .discount-footer-pattern {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 88% 14%, rgba(139,92,246,0.32) 0%, transparent 40%),
                radial-gradient(circle at 8% 92%, rgba(109,40,217,0.25) 0%, transparent 45%);
            pointer-events: none;
        }
        .discount-footer > * { position: relative; z-index: 1; }
        .discount-gift { flex-shrink: 0; }
        .discount-gift svg {
            width: 60px; height: 60px;
            filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
        }
        .discount-footer-text { flex: 1; min-width: 0; }
        .discount-footer-text strong {
            display: block;
            font-size: 20px;
            margin-bottom: 5px;
            font-weight: 700;
            color: #fff;
        }
        .discount-footer-text p {
            margin: 0;
            color: rgba(255,255,255,0.72);
            font-size: 14.5px;
        }
        .discount-footer-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #8b5cf6, #6d28d9);
            color: #fff;
            padding: 15px 28px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
            flex-shrink: 0;
            box-shadow: 0 12px 28px rgba(124,58,237,0.45);
        }
        .discount-footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 36px rgba(124,58,237,0.6);
        }
        @media (max-width: 768px) {
            .discount-hero { grid-template-columns: 1fr; gap: 30px; }
            .discount-grid { grid-template-columns: 1fr; }
            .discount-card-visual { aspect-ratio: auto; padding: 26px 24px; max-width: 360px; }
            .discount-card-percent { font-size: 56px; }
            .discount-info h3 { font-size: 22px; }
            .discount-feature-stat { font-size: 22px; top: 20px; right: 20px; }
            .discount-footer { flex-direction: column; text-align: center; padding: 28px 22px; }
            .discount-footer-cta { width: 100%; justify-content: center; }
        }

        /* SEO_FAQ_BLOCK */
        .section-faq-seo .faq-list { max-width: 820px; margin: 24px auto 0; }
        .section-faq-seo .faq-q { background: #fff; border: 1px solid #e6ebf2; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
        .section-faq-seo .faq-q summary { list-style: none; cursor: pointer; padding: 16px 48px 16px 20px; font-weight: 600; font-size: 16px; color: #1a1a1a; position: relative; }
        .section-faq-seo .faq-q summary::-webkit-details-marker { display: none; }
        .section-faq-seo .faq-q summary::after { content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 24px; color: #6366f1; transition: transform .2s; }
        .section-faq-seo .faq-q[open] summary::after { content: '−'; }
        .section-faq-seo .faq-q[open] summary { color: #6366f1; }
        .section-faq-seo .faq-a { padding: 0 20px 18px; color: #4b5563; line-height: 1.65; font-size: 15px; }

    
        /* ===== Callback modal v2 — orb style ===== */
        .cb-v2 .callback-modal-content{
            background: radial-gradient(circle at 20% 0%, #f6efff 0%, #ffffff 55%);
            border: 1px solid rgba(167,139,250,0.35);
            box-shadow:
                0 0 0 6px rgba(168,85,247,0.07),
                0 30px 80px rgba(80,30,160,0.35),
                0 0 60px rgba(168,85,247,0.25);
            border-radius: 26px;
            padding: 36px 36px 30px;
            max-width: 460px;
        }
        .cb-v2 .callback-modal-close{
            background: #ffffff;
            color:#a78bfa; font-size:22px; font-weight:300; line-height:1;
            border-radius:12px; width:44px; height:44px;
            border:1px solid rgba(167,139,250,0.30);
            box-shadow: 0 2px 6px rgba(124,58,237,0.06);
            top:22px; right:22px;
        }
        .cb-v2 .callback-modal-close:hover{ background:#faf7ff; color:#7c3aed; border-color:rgba(124,58,237,0.45); }
        .cb-head{ display:flex; align-items:center; gap:16px; margin-bottom:22px; }
        .cb-orb{
            flex:0 0 auto; width:54px; height:54px; border-radius:16px;
            display:flex; align-items:center; justify-content:center;
            color:#7c3aed;
            background: linear-gradient(150deg,#f3ebff,#e9d8ff);
            border:1px solid rgba(124,58,237,0.20);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.95),
                0 8px 22px rgba(124,58,237,0.15);
            position:relative; overflow:hidden;
        }
        .cb-orb::before{ content:none; }
        .cb-orb svg{ width:26px; height:26px; position:relative; z-index:1; filter:none; stroke:#7c3aed; }
        .cb-title h3{ margin:0 0 8px; font-size:26px; font-weight:800; color:#1a1530; line-height:1.15; letter-spacing:-0.3px; }
        .cb-title h3 span{ background:linear-gradient(120deg,#a855f7,#d946ef); -webkit-background-clip:text; background-clip:text; color:transparent; }
        .cb-title p{ margin:0; color:#6b6480; font-size:15px; line-height:1.5; }
        .cb-v2 .cb-field{ position:relative; margin-bottom:12px; }
        .cb-v2 .cb-field .cb-ic{
            position:absolute; left:14px; top:14px; width:32px; height:32px; border-radius:10px;
            background: linear-gradient(150deg,#f3ebff,#e9d8ff);
            color:#7c3aed; display:flex; align-items:center; justify-content:center;
            border:1px solid rgba(124,58,237,0.18);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
            pointer-events:none;
        }
        .cb-v2 .cb-field .cb-ic svg{ width:16px; height:16px; }
        .cb-v2 .cb-field input,
        .cb-v2 .cb-field textarea{
            width:100%; padding:18px 16px 18px 58px; border-radius:14px;
            border:1px solid rgba(167,139,250,0.30); background:#fbf9ff;
            font-size:15px; color:#1a1530; transition:border-color .2s, box-shadow .2s, background .2s;
        }
        .cb-v2 .cb-field textarea{ min-height:96px; resize:vertical; padding-top:16px; }
        .cb-v2 .cb-field input::placeholder,
        .cb-v2 .cb-field textarea::placeholder{ color:#a59bb8; }
        .cb-v2 .cb-field input:focus,
        .cb-v2 .cb-field textarea:focus{
            outline:none; background:#ffffff;
            border-color:#a855f7; box-shadow:0 0 0 4px rgba(168,85,247,0.15);
        }
        .cb-v2 .form-submit{
            background: linear-gradient(135deg,#9333ea 0%,#a855f7 55%,#8b5cf6 100%);
            color:#fff; border:0; width:100%; padding:18px 20px; border-radius:16px;
            font-size:16px; font-weight:700; cursor:pointer;
            box-shadow:
                0 14px 32px rgba(147,51,234,0.55),
                0 0 28px rgba(168,85,247,0.45),
                inset 0 1px 0 rgba(255,255,255,0.25);
            transition: transform .15s ease, box-shadow .2s;
        }
        .cb-v2 .form-submit:hover{ transform:translateY(-1px); box-shadow:0 18px 38px rgba(147,51,234,0.65), 0 0 36px rgba(168,85,247,0.55), inset 0 1px 0 rgba(255,255,255,0.25); }
        .cb-v2 .form-consent{ color:#6b6480 !important; }
        .cb-v2 .form-consent a{ color:#7c3aed !important; }
        @media(max-width:520px){ .cb-v2 .callback-modal-content{ padding:26px 20px 22px; } .cb-head{ gap:12px; } .cb-orb{ width:54px; height:54px; } .cb-orb svg{ width:24px; height:24px; } .cb-title h3{ font-size:20px; } }

    
    .nv-rv-card.light .nv-rv-photo{background:linear-gradient(160deg,#f3edff,#ebe2fb);border:1px solid rgba(124,58,237,0.14);box-shadow:inset 0 0 0 1px rgba(255,255,255,0.6), 0 4px 14px rgba(80,30,140,0.05);}
    .nv-rv-st-stars{color:#facc15;letter-spacing:1px;font-size:13px;font-weight:400;margin-left:6px;vertical-align:1px;}