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

    :root {
        --blue: #1B3FE0;
        --blue-dark: #0A1F8F;
        --blue-light: #4D6BF5;
        --blue-pale: #EEF1FF;
        --white: #FFFFFF;
        --gray-50: #F7F8FC;
        --gray-100: #EEF0F7;
        --gray-200: #D5D9E8;
        --gray-300: #B8BDD2;
        --gray-400: #8A90A5;
        --gray-600: #4A4F63;
        --gray-800: #1E2132;
        --black: #0D0F1A;
        --font-h: 'Unbounded', sans-serif;
        --font-b: 'Onest', sans-serif;
        --ease: cubic-bezier(0.16, 1, 0.3, 1);
        --pad: 60px;
    }

    html { font-size:16px; -webkit-font-smoothing:antialiased; scroll-behavior:smooth; }
    body { font-family:var(--font-b); background:var(--white); color:var(--gray-800); overflow-x:hidden; }

    /* ═══════════ UTILITY ═══════════ */
    .container { max-width:1340px; margin:0 auto; padding:0 var(--pad); }
    .section { padding:0 0 100px 0; position:relative; overflow:hidden;margin-bottom:50px; }
    .section-dark { background:var(--black); color:var(--white); }
    .section-gray { background:var(--gray-50); padding-top:50px; }
    .section-label { font-family:var(--font-h); font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:3px; color:var(--blue); margin-bottom:16px; display:flex; align-items:center; gap:12px; }
    .section-label::before { content:''; width:32px; height:2px; background:var(--blue); border-radius:1px; }
    .section-title { font-family:var(--font-h); font-weight:800; font-size:clamp(28px, 3.2vw, 46px); line-height:1.15; color:var(--black); margin-bottom:20px; }
    .section-dark .section-title { color:var(--white); }
    .section-subtitle { font-family:var(--font-b); font-weight:400; font-size:17px; line-height:1.6; color:var(--gray-400); max-width:560px; }
    .section-head { margin-bottom:56px; }
    .reveal { opacity:0; transform:translateY(40px); }

    /* ═══════════ HEADER ═══════════ */
    .header { position:fixed; top:0; left:0; right:0; z-index:1000; padding:20px var(--pad); display:flex; align-items:center; justify-content:space-between; transition:all .4s ease; }
    .header.scrolled { background:rgba(255,255,255,.95); backdrop-filter:blur(20px); box-shadow:0 2px 30px rgba(0,0,0,.06); padding:14px var(--pad); }
    .logo img { height:60px; width:auto; transition:height .3s ease; }
    .header.scrolled .logo img { height:44px; }
    .nav { display:flex; gap:32px; }
    .nav a { font-family:var(--font-b); font-weight:500; font-size:14px; color:var(--gray-600); text-decoration:none; position:relative; transition:color .3s; }
    .nav a::after { content:''; position:absolute; bottom:-6px; left:50%; width:0; height:5px; background:var(--blue); border-radius:50%; transition:all .3s; transform:translateX(-50%); }
    .nav a:hover, .nav a.active { color:var(--black); }
    .nav a.active::after { width:5px; }
    .header-phone { display:flex; align-items:center; gap:10px; background:var(--white); border:1.5px solid var(--gray-200); border-radius:100px; padding:8px 18px 8px 10px; text-decoration:none; transition:all .3s; box-shadow:0 2px 12px rgba(0,0,0,.04); }
    .header-phone:hover { border-color:var(--blue); box-shadow:0 4px 20px rgba(27,63,224,.12); }
    .phone-icon { width:34px; height:34px; background:var(--blue); border-radius:50%; display:flex; align-items:center; justify-content:center; }
    .phone-icon svg { width:15px; height:15px; fill:var(--white); }
    .phone-number { font-weight:600; font-size:15px; color:var(--gray-800); }
    .badge-24 { background:var(--blue); color:var(--white); font-family:var(--font-h); font-weight:700; font-size:10px; padding:4px 9px; border-radius:5px; }

    /* ═══════════ HERO (compact, bg from your file) ═══════════ */
    .hero { position:relative; width:100%; height:100vh; min-height:700px; display:flex; flex-direction:column; overflow:hidden; }
    .hero-bg { position:absolute; inset:0; z-index:0; }
    .hero-bg img { width:100%; height:100%; object-fit:cover; }
    .hero-content { position:relative; z-index:10; padding:160px var(--pad) 0; flex:1; display:flex; }
    .hero-left { flex:1; max-width:560px; padding-top:20px; }
    .hero-title { font-family:var(--font-h); font-weight:900; font-size:clamp(40px,4.6vw,68px); line-height:1.05; text-transform:uppercase; letter-spacing:-1px; margin-bottom:36px; }
    .hero-title span { display:block; }
    .hero-title .hl { color:var(--blue); }
    .hero-sub {
        font-size:19px;
        line-height:1.55;
        color:var(--gray-600);
        font-style:italic;
        margin-top:8px;
        margin-bottom:24px;
        max-width:460px;
    }
    .hero-desc { font-size:14.5px; line-height:1.7; color:var(--gray-400); max-width:400px; margin-bottom:32px; }
    .hero-cta { display:flex; gap:14px; margin-bottom:44px; }
    .btn { display:inline-flex; align-items:center; gap:12px; padding:15px 28px; border-radius:100px; font-family:var(--font-b); font-weight:600; font-size:14.5px; text-decoration:none; cursor:pointer; transition:all .4s var(--ease); border:2px solid transparent; }
    .btn-primary { background:var(--blue); color:var(--white); border-color:var(--blue); }
    .btn-primary:hover { background:var(--blue-dark); transform:translateY(-2px); box-shadow:0 8px 28px rgba(27,63,224,.35); }
    .btn-outline { background:transparent; color:var(--gray-800); border-color:var(--gray-200); }
    .btn-outline:hover { border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }
    .btn-arrow { display:flex; transition:transform .3s; }
    .btn:hover .btn-arrow { transform:translateX(4px); }
    .btn-arrow svg { width:18px; height:18px; }
    .tab-item::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gray-200); transition:all .3s; }
    .floating-text { position:absolute; right:42%; top:50%; z-index:15; text-align:center; }
    .floating-text p { font-family:var(--font-h); font-weight:600; font-size:11px; text-transform:uppercase; letter-spacing:2px; color:var(--blue); line-height:1.9; }
    .hero-right { position:absolute; right:var(--pad); top:52%; z-index:20; }
    .info-badges { display:flex; flex-direction:column; gap:10px; background:rgba(255,255,255,.92); backdrop-filter:blur(16px); border-radius:16px; padding:22px 24px; box-shadow:0 8px 40px rgba(0,0,0,.08); border:1px solid rgba(255,255,255,.6); }
    .info-badge { display:flex; align-items:center; gap:12px; }
    .info-badge+.info-badge { padding-top:10px; border-top:1px solid var(--gray-100); }
    .badge-icon { width:40px; height:40px; border-radius:50%; background:var(--gray-50); border:1.5px solid var(--gray-200); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .badge-icon svg { width:18px; height:18px; }
    .badge-text strong { display:block; font-family:var(--font-h); font-weight:700; font-size:14px; color:var(--black); }
    .badge-text span { font-size:12px; color:var(--gray-400); }

    /* ═══════════ BLOCK 1: ADVANTAGES ═══════════ */
    .advantages-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
    .adv-card { background:var(--white); border:1.5px solid var(--gray-100); border-radius:20px; padding:32px 28px; transition:all .4s var(--ease); position:relative; overflow:hidden; }
    .adv-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--blue), var(--blue-light)); transform:scaleX(0); transform-origin:left; transition:transform .5s var(--ease); }
    .adv-card:hover::after { transform:scaleX(1); }
    .adv-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(27,63,224,.08); border-color:rgba(27,63,224,.15); }
    .adv-icon { width:56px; height:56px; border-radius:16px; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
    .adv-icon svg { width:26px; height:26px; stroke:var(--blue); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
    .adv-num { font-family:var(--font-h); font-weight:800; font-size:32px; color:var(--blue); margin-bottom:4px; }
    .adv-num-label { font-size:13px; color:var(--gray-400); margin-bottom:12px; }
    .adv-title { font-family:var(--font-h); font-weight:700; font-size:16px; color:var(--black); margin-bottom:8px; }
    .adv-desc { font-size:14px; line-height:1.6; color:var(--gray-400); }

    /* ═══════════ BLOCK 2: SERVICES ═══════════ */
    .services-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
    .svc-card { background:var(--white); border:1.5px solid var(--gray-100); border-radius:20px; padding:32px 28px; cursor:pointer; transition:all .4s var(--ease); position:relative; overflow:hidden; text-decoration:none; display:block; }
    .svc-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--blue); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease); }
    .svc-card:hover::before { transform:scaleX(1); }
    .svc-card:hover { border-color:var(--blue); box-shadow:0 12px 40px rgba(27,63,224,.08); transform:translateY(-4px); }
    .svc-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:20px; }
    .svc-num { font-family:var(--font-h); font-weight:700; font-size:13px; color:var(--blue); opacity:.5; }
    .svc-icon { width:52px; height:52px; border-radius:14px; background:var(--gray-50); border:1.5px solid var(--gray-100); display:flex; align-items:center; justify-content:center; }
    .svc-icon svg { width:24px; height:24px; stroke:var(--blue); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
    .svc-label { font-size:14px; color:var(--gray-400); margin-bottom:2px; }
    .svc-title-row { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
    .svc-title { font-family:var(--font-h); font-weight:700; font-size:19px; color:var(--black); }
    .svc-arrow { width:36px; height:36px; border-radius:50%; border:1.5px solid var(--gray-200); display:flex; align-items:center; justify-content:center; transition:all .3s; flex-shrink:0; }
    .svc-card:hover .svc-arrow { background:var(--blue); border-color:var(--blue); }
    .svc-card:hover .svc-arrow svg { stroke:var(--white); }
    .svc-arrow svg { width:16px; height:16px; stroke:var(--gray-400); fill:none; stroke-width:2; transition:stroke .3s; }
    .svc-desc { font-size:14px; line-height:1.6; color:var(--gray-400); }

    /* ═══════════ BLOCK 3: PROCESS ═══════════ */
    .process-track { display:grid; grid-template-columns:repeat(4, 1fr); gap:0; position:relative; }
    .process-track::before { content:''; position:absolute; top:44px; left:10%; right:10%; height:2px; background:var(--gray-200); z-index:0; }
    .process-line { position:absolute; top:44px; left:10%; height:2px; background:var(--blue); z-index:1; width:0; }
    .step { text-align:center; position:relative; z-index:2; padding:0 16px; }
    .step-circle { width:88px; height:88px; border-radius:50%; background:var(--white); border:2.5px solid var(--gray-200); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; transition:all .5s var(--ease); position:relative; }
    .step-circle.active { border-color:var(--blue); background:var(--blue); }
    .step-circle.active svg { stroke:var(--white); }
    .step-circle svg { width:32px; height:32px; stroke:var(--blue); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; transition:stroke .3s; }
    .step-num { font-family:var(--font-h); font-weight:700; font-size:12px; color:var(--blue); margin-bottom:10px; letter-spacing:1px; }
    .step-title { font-family:var(--font-h); font-weight:700; font-size:15px; color:var(--black); margin-bottom:8px; }
    .step-desc { font-size:13.5px; line-height:1.6; color:var(--gray-400); max-width:220px; margin:0 auto; }

    /* ═══════════ BLOCK 4: PRICING ═══════════ */
    .price-tabs { display:flex; gap:6px; margin-bottom:32px; flex-wrap:wrap; }
    .price-tab { padding:12px 24px; border-radius:100px; font-family:var(--font-b); font-weight:600; font-size:14px; cursor:pointer; border:1.5px solid var(--gray-200); background:var(--white); color:var(--gray-600); transition:all .3s; }
    .price-tab.active, .price-tab:hover { background:var(--blue); color:var(--white); border-color:var(--blue); }
    .price-table { width:100%; border-collapse:separate; border-spacing:0; border-radius:16px; overflow:hidden; border:1.5px solid var(--gray-100); }
    .price-table thead th { font-family:var(--font-h); font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:1px; color:var(--gray-400); padding:18px 24px; text-align:left; background:var(--gray-50); border-bottom:1.5px solid var(--gray-100); }
    .price-table tbody td { padding:18px 24px; font-size:15px; border-bottom:1px solid var(--gray-100); transition:background .2s; }
    .price-table tbody tr:last-child td { border-bottom:none; }
    .price-table tbody tr:hover td { background:var(--blue-pale); }
    .price-table .price-val { font-family:var(--font-h); font-weight:700; color:var(--blue); font-size:15px; white-space:nowrap; }
    .price-table .free { color:#22C55E; font-weight:700; }
    .price-panel { display:none; }
    .price-panel.active { display:block; }
    .price-note { margin-top:24px; display:flex; align-items:center; gap:12px; padding:18px 24px; background:var(--blue-pale); border-radius:12px; font-size:14px; color:var(--gray-600); }
    .price-note svg { width:20px; height:20px; stroke:var(--blue); fill:none; flex-shrink:0; }

    /* ═══════════ BLOCK 5: DISTRICTS ═══════════ */
    .districts-wrap { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
    .districts-map { position:relative; aspect-ratio:1; background:var(--gray-50); border-radius:24px; border:1.5px solid var(--gray-100); overflow:hidden; display:flex; align-items:center; justify-content:center; }
    .districts-map svg { width:85%; height:85%; }
    .district-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
    .district-card { padding:18px 20px; border-radius:14px; border:1.5px solid var(--gray-100); background:var(--white); cursor:pointer; transition:all .3s var(--ease); display:flex; align-items:center; gap:14px; text-decoration:none; }
    .district-card:hover { border-color:var(--blue); transform:translateX(6px); box-shadow:0 6px 20px rgba(27,63,224,.08); }
    .district-pin { width:36px; height:36px; border-radius:10px; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .3s; }
    .district-card:hover .district-pin { background:var(--blue); }
    .district-card:hover .district-pin svg { stroke:white; }
    .district-pin svg { width:16px; height:16px; stroke:var(--blue); fill:none; stroke-width:2; transition:stroke .3s; }
    .district-name { font-family:var(--font-h); font-weight:600; font-size:13px; color:var(--black); margin-bottom:2px; }
    .district-time { font-size:12px; color:var(--gray-400); }

    /* ═══════════ BLOCK 6: REVIEWS ═══════════ */
    /* ── Reviews ── */
    .reviews-slider { position:relative; overflow:hidden; }
    .reviews-track { display:flex; transition:transform .55s cubic-bezier(.16,1,.3,1); will-change:transform; }
    .review-card { flex-shrink:0; background:var(--white); border:1.5px solid var(--gray-100); border-radius:20px; padding:32px 28px; display:flex; flex-direction:column; }
    .review-stars { display:flex; gap:3px; margin-bottom:16px; }
    .review-stars svg { width:18px; height:18px; fill:#FACC15; }
    .review-text { font-size:15px; line-height:1.7; color:var(--gray-600); margin-bottom:20px; font-style:italic; }
    .review-author { display:flex; align-items:center; gap:12px; }
    .review-avatar { width:44px; height:44px; border-radius:50%; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-weight:700; font-size:16px; color:var(--blue); }
    .review-name { font-family:var(--font-h); font-weight:600; font-size:14px; color:var(--black); }
    .review-meta { font-size:12px; color:var(--gray-400); }
    .slider-nav { display:flex; gap:10px; margin-top:32px; justify-content:center; }
    .slider-btn { width:48px; height:48px; border-radius:50%; border:1.5px solid var(--gray-200); background:var(--white); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .3s; }
    .slider-btn:hover { border-color:var(--blue); background:var(--blue); }
    .slider-btn:hover svg { stroke:var(--white); }
    .slider-btn svg { width:18px; height:18px; stroke:var(--gray-600); fill:none; stroke-width:2; transition:stroke .3s; }
    .slider-dots { display:flex; gap:8px; align-items:center; }
    .slider-dot { width:8px; height:8px; border-radius:50%; background:var(--gray-200); transition:all .3s; cursor:pointer; }
    .slider-dot.active { background:var(--blue); width:24px; border-radius:4px; }

    /* ═══════════ BLOCK 7: BRANDS ═══════════ */
    .brands-marquee { overflow:hidden; position:relative; padding:20px 0; }
    .brands-marquee::before, .brands-marquee::after { content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none; }
    .brands-marquee::before { left:0; background:linear-gradient(90deg, var(--gray-50), transparent); }
    .brands-marquee::after { right:0; background:linear-gradient(270deg, var(--gray-50), transparent); }
    .brands-track { display:flex; gap:48px; animation:marquee 30s linear infinite; width:max-content; }
    .brand-item { display:flex; align-items:center; gap:10px; white-space:nowrap; flex-shrink:0; opacity:.5; transition:opacity .3s; }
    .brand-item:hover { opacity:1; }
    .brand-logo { width:40px; height:40px; border-radius:10px; background:var(--white); border:1px solid var(--gray-200); display:flex; align-items:center; justify-content:center; }
    .brand-logo svg { width:22px; height:22px; stroke:var(--gray-600); fill:none; }
    .brand-name { font-family:var(--font-h); font-weight:600; font-size:15px; color:var(--gray-600); }
    @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    /* ═══════════ BLOCK 8: FAQ ═══════════ */
    .faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .faq-item { border:1.5px solid var(--gray-100); border-radius:16px; overflow:hidden; transition:border-color .3s; background:var(--white); }
    .faq-item.open { border-color:var(--blue); }
    .faq-q { padding:22px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px; cursor:pointer; transition:background .2s; }
    .faq-q:hover { background:var(--gray-50); }
    .faq-q h3 { font-family:var(--font-h); font-weight:600; font-size:14px; color:var(--black); line-height:1.4; }
    .faq-toggle { width:32px; height:32px; border-radius:50%; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .3s; }
    .faq-item.open .faq-toggle { background:var(--blue); transform:rotate(45deg); }
    .faq-toggle svg { width:14px; height:14px; stroke:var(--blue); fill:none; stroke-width:2.5; transition:stroke .3s; }
    .faq-item.open .faq-toggle svg { stroke:var(--white); }
    .faq-a { max-height:0; overflow:hidden; transition:max-height .5s var(--ease); }
    .faq-a-inner { padding:0 24px 22px; font-size:14px; line-height:1.7; color:var(--gray-400); }

    /* ═══════════ SEO TEXT ═══════════ */
    .seo-section { padding:50px 0 60px; background:var(--white); position:relative; overflow:hidden; }
    .seo-section::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:80px; height:3px; background:var(--blue); border-radius:2px; }
    .seo-wrap { display:grid; grid-template-columns:1fr 1fr; gap:60px; }
    .seo-col {}
    .seo-col h2 { font-family:var(--font-h); font-weight:800; font-size:clamp(24px, 2.8vw, 36px); line-height:1.2; color:var(--black); margin-bottom:24px; }
    .seo-col h2 span { color:var(--blue); }
    .seo-col h3 { font-family:var(--font-h); font-weight:700; font-size:17px; color:var(--black); margin:28px 0 12px; position:relative; padding-left:20px; }
    .seo-col h3::before { content:''; position:absolute; left:0; top:4px; width:4px; height:18px; background:var(--blue); border-radius:2px; }
    .seo-col p { font-family:var(--font-b); font-size:15px; line-height:1.8; color:var(--gray-600); margin-bottom:14px; }
    .seo-col a { color:var(--blue); text-decoration:none; font-weight:600; border-bottom:1.5px solid transparent; transition:border-color .3s; }
    .seo-col a:hover { border-color:var(--blue); }
    .seo-highlight { background:var(--blue-pale); border-radius:16px; padding:28px 32px; margin:24px 0; border-left:4px solid var(--blue); }
    .seo-highlight p { color:var(--gray-800); margin-bottom:0; font-weight:500; }
    .seo-stats { display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin:28px 0; }
    .seo-stat { text-align:center; padding:20px 12px; background:var(--gray-50); border-radius:14px; border:1px solid var(--gray-100); }
    .seo-stat-num { font-family:var(--font-h); font-weight:800; font-size:28px; color:var(--blue); margin-bottom:4px; }
    .seo-stat-label { font-size:12px; color:var(--gray-400); font-weight:500; }
    .seo-districts { display:flex; flex-wrap:wrap; gap:8px; margin:16px 0; }
    .seo-district-tag { display:inline-block; padding:6px 14px; background:var(--gray-50); border:1px solid var(--gray-100); border-radius:100px; font-size:13px; color:var(--gray-600); text-decoration:none; font-weight:500; transition:all .3s; }
    .seo-district-tag:hover { background:var(--blue-pale); border-color:var(--blue); color:var(--blue); }

    /* ═══════════ BLOCK 9: CTA + FOOTER ═══════════ */
    .cta-banner { background:var(--blue); border-radius:28px; padding:60px; display:flex; align-items:center; justify-content:space-between; gap:40px; position:relative; overflow:hidden; }
    .cta-banner::before { content:''; position:absolute; top:-60%; right:-10%; width:400px; height:400px; background:rgba(255,255,255,.06); border-radius:50%; }
    .cta-banner::after { content:''; position:absolute; bottom:-40%; left:20%; width:300px; height:300px; background:rgba(255,255,255,.04); border-radius:50%; }
    .cta-content { position:relative; z-index:2; }
    .cta-title { font-family:var(--font-h); font-weight:800; font-size:clamp(24px, 2.6vw, 36px); color:var(--white); margin-bottom:12px; }
    .cta-sub { font-size:16px; color:rgba(255,255,255,.7); max-width:440px; }
    .cta-actions { display:flex; gap:14px; position:relative; z-index:2; flex-shrink:0; }
    .btn-white { background:var(--white); color:var(--blue); border-color:var(--white); }
    .btn-white:hover { background:var(--gray-50); transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,.2); }
    .btn-ghost { background:transparent; color:var(--white); border-color:rgba(255,255,255,.3); }
    .btn-ghost:hover { border-color:var(--white); background:rgba(255,255,255,.1); transform:translateY(-2px); }

    .footer { padding:60px 0 32px; background:var(--black); color:rgba(255,255,255,.7); }
    .footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:48px; }
    .footer-brand p { font-size:14px; line-height:1.7; margin-top:16px; color:rgba(255,255,255,.4); max-width:280px; }
    .footer-brand .logo-footer { font-family:var(--font-h); font-weight:800; font-size:24px; font-style:italic; color:var(--white); }
    .footer-col h4 { font-family:var(--font-h); font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:1.5px; color:var(--white); margin-bottom:20px; }
    .footer-col a { display:block; font-size:14px; color:rgba(255,255,255,.5); text-decoration:none; padding:5px 0; transition:color .2s; }
    .footer-col a:hover { color:var(--white); }
    .footer-contact-item { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
    .footer-contact-item svg { width:18px; height:18px; stroke:var(--blue-light); fill:none; flex-shrink:0; }
    .footer-contact-item a, .footer-contact-item span { font-size:14px; color:rgba(255,255,255,.6); text-decoration:none; }
    .footer-contact-item a:hover { color:var(--white); }
    .footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:13px; color:rgba(255,255,255,.3); }
    .footer-socials { display:flex; gap:10px; }
    .footer-socials a { width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; transition:all .3s; }
    .footer-socials a:hover { border-color:var(--blue); background:var(--blue); }
    .footer-socials a svg { width:16px; height:16px; fill:rgba(255,255,255,.5); transition:fill .3s; }
    .footer-socials a:hover svg { fill:var(--white); }

    /* ═══════════ WHATSAPP FLOAT ═══════════ */
    .wa-float { position:fixed; bottom:28px; right:28px; z-index:999; width:60px; height:60px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.4); transition:transform .3s; text-decoration:none; }
    .wa-float:hover { transform:scale(1.1); }
    .wa-float svg { width:28px; height:28px; fill:var(--white); }
    .wa-pulse { position:absolute; inset:-6px; border-radius:50%; border:2px solid #25D366; animation:waPulse 2s infinite; }
    @keyframes waPulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.4);opacity:0} }

    /* ═══════════ CALLBACK BUTTON (header) ═══════════ */
    .btn-callback { display:inline-flex; align-items:center; gap:8px; padding:10px 22px; border-radius:100px; font-family:var(--font-b); font-weight:600; font-size:13px; color:var(--white); background:var(--blue); border:none; cursor:pointer; transition:all .4s var(--ease); white-space:nowrap; text-decoration:none; }
    .btn-callback:hover { background:var(--blue-dark); transform:translateY(-1px); box-shadow:0 6px 24px rgba(27,63,224,.35); }
    .btn-callback svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
    .header-right { display:flex; align-items:center; gap:14px; }

    /* ═══════════ MODAL OVERLAY ═══════════ */
    .modal-overlay { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; pointer-events:none; opacity:0; }
    .modal-overlay.active { pointer-events:all; }
    .modal-backdrop { position:absolute; inset:0; background:rgba(13,15,26,.6); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
    .modal-card { position:relative; z-index:2; width:100%; max-width:480px; background:var(--white); border-radius:28px; padding:48px 40px; box-shadow:0 32px 80px rgba(0,0,0,.2); transform:translateY(30px) scale(.95); }
    .modal-close { position:absolute; top:20px; right:20px; width:40px; height:40px; border-radius:50%; border:1.5px solid var(--gray-200); background:var(--white); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .3s; z-index:3; }
    .modal-close:hover { border-color:var(--blue); background:var(--blue-pale); transform:rotate(90deg); }
    .modal-close svg { width:18px; height:18px; stroke:var(--gray-600); fill:none; stroke-width:2; stroke-linecap:round; }
    .modal-icon { width:72px; height:72px; border-radius:50%; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
    .modal-icon svg { width:32px; height:32px; stroke:var(--blue); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
    .modal-title { font-family:var(--font-h); font-weight:800; font-size:24px; color:var(--black); text-align:center; margin-bottom:8px; }
    .modal-subtitle { font-size:14px; color:var(--gray-400); text-align:center; margin-bottom:32px; line-height:1.5; }
    .form-group { margin-bottom:16px; position:relative; }
    .form-input { width:100%; padding:16px 20px 16px 52px; border:2px solid var(--gray-200); border-radius:14px; font-family:var(--font-b); font-size:15px; color:var(--black); background:var(--white); outline:none; transition:all .3s; }
    .form-input::placeholder { color:var(--gray-300); }
    .form-input:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(27,63,224,.1); }
    .form-icon { position:absolute; left:18px; top:50%; transform:translateY(-50%); width:20px; height:20px; stroke:var(--gray-300); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; transition:stroke .3s; pointer-events:none; }
    .form-input:focus ~ .form-icon { stroke:var(--blue); }
    .form-submit { width:100%; padding:18px; border:none; border-radius:14px; background:var(--blue); color:var(--white); font-family:var(--font-b); font-weight:700; font-size:16px; cursor:pointer; transition:all .4s var(--ease); margin-top:8px; display:flex; align-items:center; justify-content:center; gap:10px; }
    .form-submit:hover { background:var(--blue-dark); transform:translateY(-2px); box-shadow:0 8px 28px rgba(27,63,224,.35); }
    .form-submit svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
    .form-note { text-align:center; margin-top:16px; font-size:12px; color:var(--gray-400); line-height:1.5; }
    .form-note a { color:var(--blue); text-decoration:none; }
    .form-divider { display:flex; align-items:center; gap:12px; margin:20px 0; }
    .form-divider span { font-size:12px; color:var(--gray-300); white-space:nowrap; }
    .form-divider::before, .form-divider::after { content:''; flex:1; height:1px; background:var(--gray-100); }
    .form-wa { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:14px; border-radius:14px; border:1.5px solid #25D366; background:rgba(37,211,102,.06); color:#128C7E; font-family:var(--font-b); font-weight:600; font-size:14px; text-decoration:none; transition:all .3s; }
    .form-wa:hover { background:#25D366; color:var(--white); }
    .form-wa svg { width:20px; height:20px; fill:currentColor; }

    /* ═══════════ SUCCESS STATE ═══════════ */
    .modal-success { display:none; text-align:center; }
    .modal-success.show { display:block; }
    .modal-form.hidden { display:none; }
    .success-check { width:80px; height:80px; border-radius:50%; background:#ECFDF5; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
    .success-check svg { width:40px; height:40px; stroke:#22C55E; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
    .success-title { font-family:var(--font-h); font-weight:800; font-size:22px; color:var(--black); margin-bottom:8px; }
    .success-text { font-size:14px; color:var(--gray-400); line-height:1.6; }

    /* ═══════════════════════════════════════════
       BURGER MENU
       ═══════════════════════════════════════════ */
    .burger { display:none; width:44px; height:44px; border-radius:12px; border:1.5px solid var(--gray-200); background:var(--white); cursor:pointer; position:relative; z-index:1001; flex-shrink:0; align-items:center; justify-content:center; flex-direction:column; gap:5px; transition:border-color .3s; }
    .burger:hover { border-color:var(--blue); }
    .burger span { display:block; width:20px; height:2px; background:var(--gray-800); border-radius:2px; transition:all .4s cubic-bezier(.77,0,.18,1); transform-origin:center; }
    .burger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
    .burger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

    .mobile-menu { position:fixed; inset:0; z-index:999; background:var(--white); display:flex; flex-direction:column; pointer-events:none; opacity:0; padding:100px 28px 28px; overflow-y:auto; }
    .mobile-menu.active { pointer-events:all; }
    .mobile-menu-nav { display:flex; flex-direction:column; gap:4px; margin-bottom:28px; }
    .mobile-menu-nav a { font-family:var(--font-h); font-weight:700; font-size:22px; color:var(--black); text-decoration:none; padding:16px 0; border-bottom:1px solid var(--gray-100); display:flex; align-items:center; justify-content:space-between; }
    .mobile-menu-nav a:last-child { border-bottom:none; }
    .mobile-menu-nav a svg { width:20px; height:20px; stroke:var(--gray-300); fill:none; stroke-width:2; }
    .mobile-menu-phone { display:flex; flex-direction:column; gap:12px; margin-top:auto; padding-top:24px; border-top:1px solid var(--gray-100); }
    .mobile-menu-phone a { font-family:var(--font-h); font-weight:700; font-size:20px; color:var(--blue); text-decoration:none; }
    .mobile-menu-btns { display:flex; gap:10px; margin-top:16px; }
    .mobile-menu-btns .btn { flex:1; justify-content:center; font-size:14px; padding:14px 16px; }

    /* ═══════════════════════════════════════════
       RESPONSIVE — TABLET (≤1024px)
       ═══════════════════════════════════════════ */
    @media (max-width:1024px) {
        :root { --pad:32px; }
        .nav { display:none; }
        .btn-callback { display:none; }
        .burger { display:flex; }
        .header { padding:16px var(--pad); }
        .header.scrolled { padding:12px var(--pad); }
        .header-phone .phone-number { display:none; }
        .header-phone .badge-24 { display:none; }
        .header-phone { padding:8px; border:none; box-shadow:none; background:transparent; }
        .phone-icon { width:40px; height:40px; }
        .logo img { height:48px; }
        .header.scrolled .logo img { height:40px; }
        .section { padding:72px 0; }
        .section-head { margin-bottom:40px; }
        .section-title { font-size:clamp(24px,5vw,36px); }

        .hero { min-height:auto; height:auto; padding-bottom:40px; }
        .hero-content { padding:120px var(--pad) 0; }
        .hero-title { font-size:clamp(36px,7vw,56px); }
        .hero-right { display:none; }
        .floating-text { display:none; }
        .hero-left { max-width:100%; }

        .advantages-grid { grid-template-columns:repeat(2,1fr); }
        .services-grid { grid-template-columns:repeat(2,1fr); }
        .process-track { grid-template-columns:repeat(2,1fr); gap:32px; }
        .process-track::before { display:none; }
        .process-line { display:none; }
        .districts-wrap { grid-template-columns:1fr; gap:32px; }
        .districts-map { max-height:300px; }
        /* reviews: card widths set by JS */
        .faq-grid { grid-template-columns:1fr; }
        .seo-wrap { grid-template-columns:1fr; gap:40px; }
        .footer-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
        .cta-banner { flex-direction:column; text-align:center; padding:40px 28px; }
        .cta-actions { justify-content:center; }
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE — MOBILE (≤640px)
       ═══════════════════════════════════════════ */
    @media (max-width:640px) {
        :root { --pad:20px; }

        /* ── Header ── */
        .header { padding:14px var(--pad); gap:8px; }
        .header.scrolled { padding:10px var(--pad); }
        .logo img { height:40px; }
        .header.scrolled .logo img { height:36px; }
        .phone-icon { width:38px; height:38px; }
        .burger { width:40px; height:40px; border-radius:10px; }
        .burger span { width:18px; }

        /* ── Hero ── */
        .hero { min-height:auto; height:auto; }
        .hero-bg img { object-position:70% center; }
        .hero-content { padding:100px var(--pad) 0; }
        .hero-title { font-size:clamp(32px,9vw,48px); margin-bottom:50px; letter-spacing:-.5px; }
        .hero-sub { font-size:16px; line-height:1.55; margin-top:10px; margin-bottom:10px; }
        .hero-desc { font-size:13.5px; margin-bottom:24px; max-width:100%; }
        .hero-cta { flex-direction:column; gap:10px; margin-bottom:32px; }
        .hero-cta .btn { justify-content:center; width:100%; padding:16px 24px; }
        .hero-right { display:none; }
        .floating-text { display:none; }

        /* ── Info badges — show below hero on mobile ── */
        .mobile-badges { display:flex !important; gap:10px; padding:20px var(--pad); overflow-x:auto; -webkit-overflow-scrolling:touch; }
        .mobile-badge { flex:0 0 auto; display:flex; align-items:center; gap:10px; background:var(--white); border:1.5px solid var(--gray-100); border-radius:14px; padding:14px 18px; white-space:nowrap; }
        .mobile-badge svg { width:20px; height:20px; stroke:var(--blue); fill:none; flex-shrink:0; }
        .mobile-badge strong { font-family:var(--font-h); font-weight:700; font-size:13px; color:var(--black); }
        .mobile-badge span { font-size:11px; color:var(--gray-400); }

        /* ── Sections ── */
        .section { padding:56px 0; }
        .section-head { margin-bottom:32px; }
        .section-label { font-size:11px; letter-spacing:2px; margin-bottom:12px; }
        .section-title { font-size:clamp(22px,6vw,30px); margin-bottom:14px; }
        .section-subtitle { font-size:15px; }

        /* ── Advantages ── */
        .advantages-grid {
            grid-template-columns:repeat(2, minmax(0, 1fr));
            gap:12px;
        }

        .adv-card {
            padding:20px 14px;
            display:block;
            min-width:0;
            min-height:190px;
        }

        .adv-icon {
            width:48px;
            height:48px;
            border-radius:14px;
            margin-bottom:14px;
            flex-shrink:0;
        }

        .adv-icon svg { width:22px; height:22px; }

        .adv-num {
            font-size:28px;
            line-height:1;
            margin-bottom:4px;
        }

        .adv-num-label {
            font-size:12px;
            line-height:1.25;
            margin-bottom:10px;
        }

        .adv-title {
            font-size:14px;
            line-height:1.25;
            margin-bottom:8px;
            word-break:normal;
        }

        .adv-desc {
            font-size:12.5px;
            line-height:1.45;
            overflow-wrap:anywhere;
        }

        /* ── Services ── */
        .services-grid { grid-template-columns:1fr; gap:12px; }
        .svc-card { padding:24px 20px; }
        .svc-title { font-size:17px; }

        /* ── Process 2×2 ── */
        .process-track { grid-template-columns:1fr 1fr; gap:12px; }
        .process-track::before { display:none; }
        .process-line { display:none; }
        .step { text-align:center; padding:20px 12px; background:var(--white); border:1.5px solid var(--gray-100); border-radius:16px; }
        .step-circle { width:52px; height:52px; min-width:52px; margin:0 auto 12px; }
        .step-circle svg { width:22px; height:22px; }
        .step-num { font-size:11px; margin-bottom:6px; }
        .step-title { font-size:13px; margin-bottom:4px; }
        .step-desc { font-size:12px; max-width:100%; margin:0; line-height:1.5; }

        /* ── Reviews ── */
        .review-card { padding:22px 18px; border-radius:16px; }
        .review-text { font-size:14px; margin-bottom:16px; }
        .review-avatar { width:38px; height:38px; font-size:14px; }
        .slider-nav { margin-top:20px; }
        .price-tabs { gap:6px; overflow-x:auto; flex-wrap:nowrap; -webkit-overflow-scrolling:touch; padding-bottom:4px; }
        .price-tab { padding:10px 18px; font-size:13px; white-space:nowrap; flex-shrink:0; }
        .price-table thead th { padding:14px 16px; font-size:11px; }
        .price-table tbody td { padding:14px 16px; font-size:13.5px; }
        .price-val { font-size:13.5px !important; }
        .price-note { padding:14px 16px; font-size:13px; }

        /* ── Districts ── */
        .districts-wrap { grid-template-columns:1fr; }
        .districts-map { display:none; }
        .district-list { grid-template-columns:1fr; gap:8px; }
        .district-card { padding:14px 16px; }

        /* ── Reviews ── */
        .reviews-track { gap:12px; }
        .review-card { min-width:calc(100vw - 52px); padding:24px 20px; }
        .review-text { font-size:14px; margin-bottom:16px; }
        .review-avatar { width:38px; height:38px; font-size:14px; }
        .slider-nav { margin-top:24px; }

        /* ── FAQ ── */
        .faq-grid { gap:10px; }
        .faq-q { padding:18px 16px; }
        .faq-q h3 { font-size:13px; }
        .faq-toggle { width:28px; height:28px; }
        .faq-toggle svg { width:12px; height:12px; }
        .faq-a-inner { padding:0 16px 18px; font-size:13px; }

        /* ── SEO Text ── */
        .seo-section { padding:56px 0 48px; }
        .seo-wrap { gap:32px; }
        .seo-col h2 { font-size:22px; }
        .seo-col h3 { font-size:15px; }
        .seo-col p { font-size:14px; }
        .seo-stats { grid-template-columns:repeat(3,1fr); gap:8px; }
        .seo-stat { padding:14px 8px; }
        .seo-stat-num { font-size:22px; }
        .seo-stat-label { font-size:10px; }
        .seo-highlight { padding:20px; margin:16px 0; }
        .seo-districts { gap:6px; }
        .seo-district-tag { padding:6px 12px; font-size:12px; }

        /* ── CTA + Footer ── */
        .cta-banner { border-radius:20px; padding:32px 20px; }
        .cta-title { font-size:20px; }
        .cta-sub { font-size:14px; }
        .cta-actions { flex-direction:column; width:100%; }
        .cta-actions .btn { width:100%; justify-content:center; }
        .footer { padding:40px 0 24px; }
        .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
		.footer-brand { grid-column:1 / -1; }
		.footer-col:last-child { grid-column:1 / -1; }
        .footer-brand p { max-width:100%; }
        .footer-col h4 { margin-bottom:14px; }
        .footer-bottom { flex-direction:column; gap:8px; text-align:center; }

        /* ── Modal ── */
        .modal-card { max-width:100%; margin:0 12px; padding:36px 24px; border-radius:24px; }
        .modal-icon { width:60px; height:60px; margin-bottom:20px; }
        .modal-icon svg { width:28px; height:28px; }
        .modal-title { font-size:20px; }
        .modal-subtitle { font-size:13px; margin-bottom:24px; }
        .form-input { padding:14px 18px 14px 46px; font-size:14px; }

        /* ── WA float ── */
        .wa-float { bottom:20px; right:20px; width:54px; height:54px; }
        .wa-float svg { width:24px; height:24px; }

        /* ── Brands ── */
        .brand-name { font-size:13px; }
        .brand-logo { width:34px; height:34px; }
        .brands-track { gap:32px; }
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE — SMALL MOBILE (≤380px)
       ═══════════════════════════════════════════ */
    @media (max-width:380px) {
        .hero-title { font-size:28px; }
        .hero-sub { font-size:15px; margin-top:8px; margin-bottom:18px; }
        .btn { padding:14px 20px; font-size:13.5px; }
        .seo-stats { grid-template-columns:1fr; }
        .section-title { font-size:20px; }
        .advantages-grid { gap:10px; }
        .adv-card { padding:18px 12px; min-height:180px; }
        .adv-icon { width:44px; height:44px; margin-bottom:12px; }
        .adv-num { font-size:24px; }
        .adv-title { font-size:13px; }
        .adv-desc { font-size:12px; }
    }
    

/* Project split/SEO patch */
.mobile-hero-image {
    display: none;
}
.mobile-hero-image img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .hero-bg {
        display: none;
    }
    .mobile-hero-image {
        display: block;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 32px;
        padding: 0 16px;
    }
}

/* ═══════════ PATCH: slider + 404 ═══════════ */
.slider-btn.disabled { opacity:.45; pointer-events:none; }

.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 18% 18%, rgba(27,63,224,.09), transparent 32%),
        radial-gradient(circle at 85% 72%, rgba(27,63,224,.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f8faff 100%);
    overflow: hidden;
}

.error-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.error-main::before,
.error-main::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.error-main::before {
    width: 760px;
    height: 760px;
    right: -260px;
    top: 110px;
    background: rgba(27,63,224,.08);
}

.error-main::after {
    width: 520px;
    height: 2px;
    left: -80px;
    bottom: 120px;
    background: linear-gradient(90deg, transparent, rgba(27,63,224,.26), transparent);
    transform: rotate(-8deg);
}

.error-card {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 54px;
    border: 1.5px solid var(--gray-100);
    border-radius: 32px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 28px 90px rgba(15,23,42,.08);
    backdrop-filter: blur(12px);
}

.error-code {
    font-family: var(--font-h);
    font-size: clamp(72px, 12vw, 144px);
    line-height: .86;
    font-weight: 900;
    letter-spacing: -.08em;
    color: var(--blue);
    margin-bottom: 22px;
}

.error-title {
    font-family: var(--font-h);
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 18px;
}

.error-text {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.error-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.error-links a {
    padding: 10px 14px;
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    background: var(--white);
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s var(--ease);
}

.error-links a:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-main {
        padding: 104px 0 54px;
    }

    .error-card {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .error-text {
        font-size: 15px;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* PATCH: mobile hero badges - 4 items, 2 columns */
@media (max-width: 768px) {
    .mobile-badges {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 20px var(--pad) 28px;
        overflow: visible;
    }

    .mobile-badge {
        width: 100%;
        min-width: 0;
        flex: initial;
        justify-content: flex-start;
        padding: 16px 14px;
        white-space: normal;
    }

    .mobile-badge strong {
        font-size: 13px;
        line-height: 1.2;
    }

    .mobile-badge span {
        font-size: 11px;
        line-height: 1.25;
    }
}

@media (max-width: 380px) {
    .mobile-badges {
        gap: 10px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-badge {
        padding: 14px 12px;
        gap: 8px;
    }

    .mobile-badge svg {
        width: 18px;
        height: 18px;
    }
}
