/* Общие стили сайта: главная и страницы услуг. */
  /* Шрифты раздаются с нашего домена, а не с Google Fonts: иначе IP посетителя уходит третьей стороне за рубеж (152-ФЗ). */
  @font-face{font-family:'Golos Text'; font-style:normal; font-weight:400 900; font-display:swap; src:url(../fonts/golos-text-cyrillic-ext.woff2) format('woff2'); unicode-range:U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F}
  @font-face{font-family:'Golos Text'; font-style:normal; font-weight:400 900; font-display:swap; src:url(../fonts/golos-text-cyrillic.woff2) format('woff2'); unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
  @font-face{font-family:'Golos Text'; font-style:normal; font-weight:400 900; font-display:swap; src:url(../fonts/golos-text-latin-ext.woff2) format('woff2'); unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}
  @font-face{font-family:'Golos Text'; font-style:normal; font-weight:400 900; font-display:swap; src:url(../fonts/golos-text-latin.woff2) format('woff2'); unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
  @font-face{font-family:'Russo One'; font-style:normal; font-weight:400; font-display:swap; src:url(../fonts/russo-one-cyrillic.woff2) format('woff2'); unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
  @font-face{font-family:'Russo One'; font-style:normal; font-weight:400; font-display:swap; src:url(../fonts/russo-one-latin-ext.woff2) format('woff2'); unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}
  @font-face{font-family:'Russo One'; font-style:normal; font-weight:400; font-display:swap; src:url(../fonts/russo-one-latin.woff2) format('woff2'); unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}

  /* width/height атрибуты у <img> — только для резерва места (CLS); :where() не перебивает стили блоков. */
  :where(img){height:auto}

  :root{
    --ink:#0a0a0c;
    --surface:#131316;
    --surface-2:#1b1b20;
    --surface-3:#242429;
    --line:#2c2c33;
    --line-soft:#1f1f25;
    --red:#e2132a;
    --red-deep:#9c0f1f;
    --red-glow:#ff2e46;
    --green:#1fae5c;
    --green-glow:#27c96a;
    --paper:#f4f2ec;
    --paper-dim:#c9c7c2;
    --muted:#9c99a3;
    --muted-2:#726f79;
    --radius-s:10px;
    --radius-m:18px;
    --radius-l:28px;
    --maxw:1180px;
    --shadow-red: 0 18px 40px -14px rgba(226,19,42,.45);
    color-scheme: dark;
  }

  *{box-sizing:border-box}
  html,body{margin:0;padding:0}
  body{
    background:var(--ink);
    color:var(--paper);
    font-family:'Golos Text', 'PT Sans', Arial, sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    padding-inline:0;
  }
  h1,h2,h3,.display{
    font-family:'Russo One','Golos Text',Arial,sans-serif;
    font-weight:400;
    letter-spacing:.01em;
    text-wrap:balance;
    margin:0;
  }
  p{margin:0}
  img{max-width:100%;display:block}
  a{color:inherit;text-decoration:none}
  button{font-family:inherit}
  ::selection{background:var(--red);color:#fff}
  .container{
    width:100%;
    max-width:var(--maxw);
    margin-inline:auto;
    padding-inline:20px;
  }
  @media (min-width:720px){ .container{padding-inline:32px} }

  .skip-link{
    position:absolute; left:-999px; top:0; background:var(--red); color:#fff;
    padding:10px 16px; border-radius:0 0 8px 0; z-index:200;
  }
  .skip-link:focus{left:0}

  /* ---------- NAV ---------- */
  .nav{
    position:sticky; top:env(safe-area-inset-top,0px); z-index:100;
    background:rgba(10,10,12,.72);
    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);
    border-bottom:1px solid var(--line-soft);
  }
  .nav-row{
    display:flex; align-items:center; justify-content:space-between;
    gap:16px; padding-block:12px;
  }
  .brand{display:flex; align-items:center; gap:10px; min-width:0}
  .brand-badge{
    width:38px;height:38px;border-radius:9px;flex:none;
    background:linear-gradient(155deg,#fff 0 46%, var(--red) 46% 100%);
    display:grid; place-items:center;
    font-family:'Russo One'; font-size:16px; color:var(--ink);
    box-shadow:0 6px 18px -6px rgba(226,19,42,.6);
    position:relative; overflow:hidden;
  }
  .brand-badge span{position:relative; z-index:2}
  .brand-name{
    font-family:'Russo One'; font-size:14.5px; line-height:1.15;
    letter-spacing:.02em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }
  .brand-name em{display:block; font-style:normal; font-size:9.5px; color:var(--muted); letter-spacing:.24em; font-family:'Golos Text'; font-weight:700; margin-top:2px}
  .nav-actions{display:flex; align-items:center; gap:8px; flex:none}
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    border-radius:999px; font-weight:700; font-size:14px; cursor:pointer;
    border:1px solid transparent; padding:12px 20px; line-height:1; min-height:44px;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space:nowrap;
  }
  .btn:active{transform:scale(.97)}
  .btn-primary{background:var(--red); color:#fff; box-shadow:var(--shadow-red)}
  .btn-primary:hover{background:var(--red-glow); box-shadow:0 20px 44px -12px rgba(255,46,70,.55)}
  .btn-ghost{background:transparent; border-color:var(--line); color:var(--paper)}
  .btn-ghost:hover{border-color:var(--red); color:#fff}
  .btn-green{background:var(--green); color:#fff; box-shadow:0 18px 40px -14px rgba(31,174,92,.45)}
  .btn-green:hover{background:var(--green-glow); box-shadow:0 20px 44px -12px rgba(39,201,106,.55)}
  .btn-outline-sm{padding:9px 14px; font-size:12.5px; border-radius:999px; border:1px solid var(--line); color:var(--paper-dim)}
  .btn-outline-sm:hover{border-color:var(--red); color:#fff}
  .btn-icon svg{width:15px;height:15px}
  .nav-call{display:none}
  @media (min-width:600px){ .nav-call{display:inline-flex} }
  .nav-actions{min-width:0}
  .nav-cta-full{display:none}
  .nav-cta-short{display:inline}
  @media (min-width:420px){ .nav-cta-full{display:inline} .nav-cta-short{display:none} }
  @media (max-width:419px){ .nav-phone-btn{padding-inline:14px} }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding-top:clamp(28px,6vw,52px);
    padding-bottom:clamp(40px,7vw,72px);
    overflow:hidden;
    isolation:isolate;
  }
  .hero-bg{
    position:absolute; inset:0; z-index:-2; overflow:hidden;
    background:
      radial-gradient(1100px 680px at 85% 6%, rgba(226,19,42,.24), transparent 60%),
      radial-gradient(760px 560px at 6% 96%, rgba(226,19,42,.14), transparent 65%),
      linear-gradient(160deg, #101013 0%, #0a0a0c 55%, #050506 100%);
  }
  .hero-bg::before{
    content:""; position:absolute; inset:0; opacity:.5; mix-blend-mode:overlay;
    background-image:
      repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 3px);
  }
  .beam{position:absolute; z-index:-1; opacity:.5; mix-blend-mode:screen; pointer-events:none}
  .beam-a{
    width:160%; height:5px; left:-30%; top:14%;
    background:linear-gradient(90deg, transparent, var(--red-glow), transparent);
    transform:rotate(-11deg); filter:blur(1px);
    animation:sweep 7s ease-in-out infinite;
  }
  .beam-b{
    width:160%; height:3px; left:-30%; top:63%;
    background:linear-gradient(90deg, transparent, var(--red-glow), transparent);
    transform:rotate(-11deg); opacity:.3;
    animation:sweep 9s ease-in-out infinite 1.4s;
  }
  @keyframes sweep{ 0%,100%{opacity:.15} 50%{opacity:.55} }

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; font-weight:800; letter-spacing:.22em; text-transform:uppercase;
    color:#fff; background:rgba(10,10,12,.78); border:1px solid rgba(255,255,255,.16);
    padding:8px 16px; border-radius:999px;
    backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    box-shadow:0 10px 26px -10px rgba(0,0,0,.55);
  }
  .eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--red-glow); box-shadow:0 0 10px 2px var(--red-glow)}

  .hero-grid{
    display:grid; gap:28px; margin-top:22px;
    grid-template-columns:1fr;
  }
  .hero-grid > *{min-width:0}
  @media (min-width:860px){ .hero-grid{grid-template-columns:1.15fr .85fr; align-items:center; gap:20px} }

  .hero h1{
    font-size:clamp(26px,4.4vw,44px); line-height:1.02; color:#fff;
    margin-top:16px;
  }
  .hero h1 .accent{color:var(--red-glow)}
  .hero-sub{
    margin-top:18px; max-width:56ch; color:var(--paper-dim);
    font-size:clamp(15px,2vw,18px); line-height:1.55;
  }
  .hero-cta{display:flex; flex-wrap:wrap; gap:12px; margin-top:28px}
  .hero-meta{
    display:flex; flex-wrap:wrap; gap:18px; margin-top:26px;
    color:var(--muted); font-size:13px;
  }
  .hero-meta span{display:flex; align-items:center; gap:8px}
  .hero-meta svg{width:15px;height:15px; color:var(--red-glow); flex:none}

  .hero-card{
    background:linear-gradient(180deg, rgba(27,27,32,.9), rgba(19,19,22,.9));
    border:1px solid var(--line); border-radius:var(--radius-l);
    overflow:hidden; backdrop-filter:blur(6px);
    box-shadow:0 30px 60px -30px rgba(0,0,0,.7);
  }
  .hero-card-photo{position:relative; aspect-ratio:4/3}
  .hero-card-photo img{width:100%; height:100%; object-fit:cover; object-position:58% 42%}
  .hero-card-photo::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(13,13,16,.95) 0%, transparent 45%);
  }
  .hero-card-body{padding:20px 22px 22px}
  .hero-card-title{font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); font-weight:800}
  .hero-warranty{display:flex; align-items:baseline; gap:14px; margin-top:10px}
  .hero-warranty b{font-family:'Russo One'; font-size:44px; color:#fff; line-height:1; flex:none}
  .hero-warranty span{color:var(--paper-dim); font-size:13.5px; line-height:1.4; flex:1}
  .hero-card hr{border:none; border-top:1px solid var(--line-soft); margin:16px 0}
  .hero-chip-row{display:flex; flex-wrap:wrap; gap:8px}
  .chip{
    font-size:12px; font-weight:700; color:var(--paper-dim);
    border:1px solid var(--line); border-radius:999px; padding:7px 12px;
  }

  /* ---------- TICKER ---------- */
  .ticker-wrap{
    border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
    background:var(--surface); overflow:hidden; padding-block:13px;
  }
  .ticker{display:flex; width:max-content; gap:0; animation:marquee 32s linear infinite}
  .ticker:hover{animation-play-state:paused}
  @keyframes marquee{ from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .ticker-item{
    display:flex; align-items:center; gap:12px; padding-inline:22px;
    font-size:13.5px; font-weight:700; color:var(--muted); white-space:nowrap;
    letter-spacing:.02em; text-transform:uppercase;
  }
  .ticker-item b{color:var(--paper)}
  .ticker-item .sep{color:var(--red); font-size:10px}

  /* ---------- STATS BAR ---------- */
  .stats-bar{
    background:var(--surface); border-bottom:1px solid var(--line-soft);
    padding-block:clamp(28px,4vw,40px);
  }
  .stats-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:24px 16px;
  }
  @media (min-width:640px){ .stats-grid{grid-template-columns:repeat(4,1fr); gap:12px} }
  .stat{
    display:flex; flex-direction:column; gap:4px; text-align:center;
    padding-inline:8px; border-left:1px solid var(--line-soft);
  }
  @media (max-width:639px){
    .stat:nth-child(odd){border-left:none}
  }
  @media (min-width:640px){
    .stat:first-child{border-left:none}
  }
  .stat b{
    font-family:'Russo One'; font-size:clamp(24px,4vw,34px); color:#fff; line-height:1;
  }
  .stat b .accent{color:var(--red-glow)}
  .stat span{font-size:12px; color:var(--muted); line-height:1.4}

  /* ---------- SECTION SHELL ---------- */
  section{position:relative}
  .section-pad{padding-block:clamp(52px,9vw,96px)}
  .section-head{max-width:62ch; margin-bottom:clamp(30px,5vw,48px)}
  .kicker{
    font-size:12px; font-weight:800; letter-spacing:.2em; text-transform:uppercase; color:var(--red-glow);
    display:flex; align-items:center; gap:10px;
  }
  .kicker::before{content:"";width:26px;height:2px;background:var(--red)}
  .section-head h2{font-size:clamp(26px,4.4vw,42px); color:#fff; margin-top:12px}
  .section-head p{color:var(--muted); margin-top:14px; font-size:15.5px; line-height:1.6}

  [data-reveal]{opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1)}
  [data-reveal].in-view{opacity:1; transform:translateY(0)}
  @media (prefers-reduced-motion:reduce){
    [data-reveal]{opacity:1; transform:none; transition:none}
    .beam, .ticker{animation:none}
  }

  /* ---------- SERVICES ---------- */
  .svc-grid{display:grid; grid-template-columns:1fr; gap:16px}
  @media (min-width:700px){ .svc-grid{grid-template-columns:repeat(2,1fr)} }
  @media (min-width:1040px){ .svc-grid{grid-template-columns:repeat(3,1fr)} }

  .svc-card{
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-m);
    padding:24px; display:flex; flex-direction:column; gap:14px;
    transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .svc-card:hover{
    transform:translateY(-6px); border-color:rgba(226,19,42,.5);
    box-shadow:0 26px 50px -22px rgba(226,19,42,.35); background:var(--surface-2);
  }
  .svc-icon{
    width:46px;height:46px;border-radius:12px; flex:none;
    background:linear-gradient(155deg, rgba(226,19,42,.18), rgba(226,19,42,.02));
    border:1px solid rgba(226,19,42,.3);
    display:grid; place-items:center; color:var(--red-glow);
  }
  .svc-icon svg{width:24px;height:24px}
  .svc-card h3{font-family:'Golos Text'; font-weight:800; font-size:18.5px; color:#fff}
  .svc-list{display:flex; flex-direction:column; gap:9px; margin-top:2px}
  .svc-row{
    display:flex; justify-content:space-between; gap:10px; font-size:13.5px;
    color:var(--paper-dim); border-top:1px dashed var(--line-soft); padding-top:9px;
  }
  .svc-row:first-child{border-top:none; padding-top:0}
  .svc-row b{color:#fff; font-variant-numeric:tabular-nums; white-space:nowrap; font-weight:700}
  .svc-foot{
    margin-top:auto; display:flex; align-items:center; justify-content:space-between;
    padding-top:14px; border-top:1px solid var(--line-soft);
  }
  .svc-from{font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.1em}
  .svc-from b{display:block; color:var(--red-glow); font-family:'Russo One'; font-size:19px; letter-spacing:0; margin-top:2px}
  .svc-link{font-size:13px; font-weight:800; color:#fff; display:flex; align-items:center; gap:6px; padding-block:12px; margin-block:-12px}
  .svc-link svg{width:14px;height:14px; transition:transform .2s ease}
  .svc-card:hover .svc-link svg{transform:translateX(4px)}

  .svc-wash-anim{
    flex:1; min-height:56px; position:relative; overflow:hidden;
    border-radius:12px; margin:2px 0 4px;
    background:linear-gradient(180deg, rgba(226,19,42,.07), rgba(226,19,42,.02));
    border:1px dashed var(--line-soft);
  }
  @media (max-width:699px){ .svc-wash-anim{min-height:190px} }
  .svc-wash-sweep{
    position:absolute; top:0; bottom:0; width:36%; left:-40%;
    background:linear-gradient(90deg, transparent, rgba(255,46,70,.22), transparent);
    animation:svc-wash-sweep 3.4s ease-in-out infinite;
  }
  @keyframes svc-wash-sweep{
    0%{left:-40%} 50%{left:100%} 100%{left:100%}
  }
  .svc-bubble{
    position:absolute; bottom:8px; border-radius:50%;
    background:rgba(255,255,255,.55);
    animation:svc-wash-bubble 3.2s ease-in infinite;
  }
  .svc-bubble.b1{left:20%; width:7px; height:7px; animation-delay:0s}
  .svc-bubble.b2{left:47%; width:5px; height:5px; animation-delay:.9s}
  .svc-bubble.b3{left:71%; width:9px; height:9px; animation-delay:1.8s}
  .svc-bubble.b4{left:34%; width:6px; height:6px; animation-delay:.4s}
  .svc-bubble.b5{left:59%; width:8px; height:8px; animation-delay:1.3s}
  .svc-bubble.b6{left:85%; width:5px; height:5px; animation-delay:2.3s}
  .svc-bubble.b7{left:12%; width:5px; height:5px; animation-delay:2.6s}
  .svc-bubble.b8{left:27%; width:8px; height:8px; animation-delay:.7s}
  .svc-bubble.b9{left:40%; width:4px; height:4px; animation-delay:1.5s}
  .svc-bubble.b10{left:54%; width:7px; height:7px; animation-delay:2.9s}
  .svc-bubble.b11{left:65%; width:5px; height:5px; animation-delay:.2s}
  .svc-bubble.b12{left:92%; width:6px; height:6px; animation-delay:1.9s}
  .svc-bubble-h{
    position:absolute; border-radius:50%;
    background:rgba(255,255,255,.5);
    animation:svc-wash-bubble-h linear infinite;
  }
  .svc-bubble-h.h1{top:22%; width:6px; height:6px; animation-duration:4.2s; animation-delay:0s}
  .svc-bubble-h.h2{top:40%; width:4px; height:4px; animation-duration:3.6s; animation-delay:1.1s}
  .svc-bubble-h.h3{top:62%; width:7px; height:7px; animation-duration:4.8s; animation-delay:2.1s}
  .svc-bubble-h.h4{top:78%; width:5px; height:5px; animation-duration:4s; animation-delay:.6s}
  .svc-bubble-h.h8{top:30%; width:5px; height:5px; animation-duration:4.6s; animation-delay:1.9s}
  .svc-bubble-h.h9{top:55%; width:6px; height:6px; animation-duration:3.9s; animation-delay:.9s}
  .svc-bubble-h.h10{top:68%; width:4px; height:4px; animation-duration:4.3s; animation-delay:2.7s}
  .svc-bubble-h.h11{top:88%; width:7px; height:7px; animation-duration:5.1s; animation-delay:.2s}
  @keyframes svc-wash-bubble-h{
    0%{left:-6%; opacity:0}
    10%{opacity:.85}
    90%{opacity:.85}
    100%{left:104%; opacity:0}
  }
  .svc-bubble-h.h5{top:15%; width:5px; height:5px; animation-name:svc-wash-bubble-h-r; animation-duration:4.4s; animation-delay:.3s}
  .svc-bubble-h.h6{top:50%; width:7px; height:7px; animation-name:svc-wash-bubble-h-r; animation-duration:3.8s; animation-delay:1.7s}
  .svc-bubble-h.h7{top:70%; width:4px; height:4px; animation-name:svc-wash-bubble-h-r; animation-duration:5s; animation-delay:2.6s}
  .svc-bubble-h.h12{top:8%; width:5px; height:5px; animation-name:svc-wash-bubble-h-r; animation-duration:4.1s; animation-delay:1.4s}
  .svc-bubble-h.h13{top:44%; width:4px; height:4px; animation-name:svc-wash-bubble-h-r; animation-duration:4.7s; animation-delay:3.1s}
  .svc-bubble-h.h14{top:82%; width:6px; height:6px; animation-name:svc-wash-bubble-h-r; animation-duration:3.7s; animation-delay:.8s}
  @keyframes svc-wash-bubble-h-r{
    0%{left:104%; opacity:0}
    10%{opacity:.85}
    90%{opacity:.85}
    100%{left:-6%; opacity:0}
  }
  .svc-wash-car{
    position:absolute; left:50%; top:54%; transform:translate(-50%,-50%);
    width:96%; max-width:230px; opacity:.92;
  }
  @keyframes svc-wash-bubble{
    0%{transform:translateY(0) scale(1); opacity:0}
    12%{opacity:.85}
    100%{transform:translateY(-40px) scale(.4); opacity:0}
  }
  @media (prefers-reduced-motion:reduce){
    .svc-wash-sweep, .svc-bubble, .svc-bubble-h{animation:none; display:none}
  }

  /* ---------- ZONES ---------- */
  .zones-shell{
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-l);
    overflow:hidden;
  }
  .zones-grid{display:grid; grid-template-columns:1fr}
  .zones-grid > *{min-width:0}
  @media (min-width:880px){ .zones-grid{grid-template-columns:1.05fr 1fr} }
  .zones-img{position:relative; min-height:220px; background:var(--ink)}
  .zones-img img{width:100%; height:100%; object-fit:contain; position:absolute; inset:0}
  .zones-img.zc img{opacity:0; transition:opacity .5s ease}
  .zones-img.zc img.active{opacity:1}
  .zc-prev,.zc-next{top:50%; transform:translateY(-50%); width:38px; height:38px; z-index:2}
  .zc-prev{left:12px} .zc-next{right:12px}
  .zc-prev svg,.zc-next svg{width:18px;height:18px}
  .zc-dots{position:absolute; left:0; right:0; bottom:12px; display:flex; justify-content:center; gap:7px; z-index:2}
  .zc-dot{position:relative; width:7px; height:7px; border-radius:50%; background-color:rgba(255,255,255,.35); border:none; padding:0; cursor:pointer; transition:background .2s ease, transform .2s ease}
  .zc-dot.active{background-color:var(--red); transform:scale(1.3)}
  /* Невидимая область нажатия вокруг маленьких точек (удобнее попадать пальцем). */
  .zc-dot::before, .rev-dot::before{content:""; position:absolute; inset:-12px -4px}
  @media (max-width:640px){ .zc-prev,.zc-next{width:34px;height:34px} }
  .zones-body{padding:clamp(22px,4vw,40px); display:flex; flex-direction:column; gap:22px}
  .tier-grid{display:grid; grid-template-columns:1fr; gap:12px}
  @media (min-width:480px){ .tier-grid{grid-template-columns:repeat(3,1fr)} }
  .tier{
    border:1px solid var(--line); border-radius:var(--radius-s); padding:16px;
    display:flex; flex-direction:column; gap:8px; position:relative;
    transition:border-color .2s ease, transform .2s ease;
  }
  .tier:hover{transform:translateY(-3px)}
  .tier.pop{border-color:var(--red); background:linear-gradient(180deg, rgba(226,19,42,.12), transparent 60%)}
  .tier-badge{
    position:absolute; top:-11px; right:14px; background:var(--red); color:#fff;
    font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
    padding:4px 9px; border-radius:999px;
  }
  .tier-name{font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--muted)}
  .tier-price{font-family:'Russo One'; font-size:24px; color:#fff; white-space:nowrap}
  .tier-desc{font-size:12.5px; color:var(--paper-dim); line-height:1.5}

  /* ---------- GALLERY ---------- */
  .gal-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:12px;
  }
  @media (min-width:700px){ .gal-grid{grid-template-columns:repeat(4,1fr); grid-auto-rows:150px} }
  .gal-grid > *{min-width:0}
  .gal-item{
    position:relative; border-radius:var(--radius-s); overflow:hidden; border:1px solid var(--line);
    aspect-ratio:1/1; padding:0; margin:0; display:block; width:100%; height:100%;
    background:transparent; color:inherit; font:inherit; text-align:left; cursor:pointer;
    -webkit-appearance:none; appearance:none;
  }
  .gal-item:focus-visible{outline:2px solid var(--red-glow); outline-offset:2px}
  .gal-item::after{
    content:""; position:absolute; inset:0; opacity:0; transition:opacity .2s ease;
    background:rgba(0,0,0,.25);
  }
  .gal-item:hover::after, .gal-item:focus-visible::after{opacity:1}
  .gal-item .zoom-hint{
    position:absolute; top:10px; right:10px; width:28px; height:28px; border-radius:50%;
    background:rgba(10,10,12,.65); border:1px solid rgba(255,255,255,.25);
    display:grid; place-items:center; color:#fff; opacity:0; transition:opacity .2s ease;
  }
  .gal-item:hover .zoom-hint, .gal-item:focus-visible .zoom-hint{opacity:1}
  .gal-item .zoom-hint svg{width:14px;height:14px}
  @media (min-width:700px){ .gal-item{aspect-ratio:auto} }
  .gal-item img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease}
  .gal-item:hover img{transform:scale(1.08)}
  .gal-item.tall{grid-row:span 2}
  .gal-item.wide{grid-column:span 2}
  @media (max-width:699px){ .gal-item.wide{aspect-ratio:2/1} }
  .gal-item--banner{background:var(--ink)}
  .gal-item--banner img{object-fit:contain}
  .gal-item--banner:hover img, .gal-item--banner:focus-visible img{transform:none}
  .gal-cap{
    position:absolute; left:0; right:0; bottom:0; padding:12px 12px 10px;
    background:linear-gradient(0deg, rgba(0,0,0,.82), transparent);
    font-size:12px; font-weight:700; color:#fff;
  }

  /* ---------- GUARANTEES ---------- */
  .guar-grid{display:grid; grid-template-columns:1fr; gap:14px}
  @media (min-width:700px){ .guar-grid{grid-template-columns:repeat(2,1fr)} }
  @media (min-width:1040px){ .guar-grid{grid-template-columns:repeat(4,1fr)} }
  .guar-card{
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-m);
    padding:22px; display:flex; flex-direction:column; gap:10px;
  }
  .guar-num{font-family:'Russo One'; font-size:30px; color:var(--red-glow)}
  .guar-card h4{font-family:'Golos Text'; font-weight:800; font-size:14.5px; color:#fff}
  .guar-card p{font-size:13px; color:var(--muted); line-height:1.55}

  /* ---------- REVIEWS ---------- */
  .rev-pages{overflow:hidden; transition:height .35s ease}
  @media (prefers-reduced-motion:reduce){ .rev-pages{transition:none} }
  .rev-source{
    display:inline-flex; align-items:center; gap:10px; margin-top:14px;
    font-size:13px; color:var(--paper-dim);
  }
  .rev-source b{color:#fff}
  .rev-source .stars{color:#f5b400; letter-spacing:1px}
  .rev-source a{color:var(--red-glow); font-weight:700}
  .rev-source a:hover{text-decoration:underline}
  .rev-grid{display:grid; grid-template-columns:1fr; gap:16px}
  @media (min-width:700px){ .rev-grid{grid-template-columns:repeat(2,1fr)} }
  @media (min-width:1040px){ .rev-grid{grid-template-columns:repeat(3,1fr)} }
  .rev-card{
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-m);
    padding:22px; display:flex; flex-direction:column; gap:14px;
  }
  .rev-head{display:flex; align-items:center; gap:12px}
  .rev-avatar{
    width:42px; height:42px; border-radius:50%; flex:none;
    background:linear-gradient(155deg, var(--red), var(--red-deep));
    display:grid; place-items:center; color:#fff; font-family:'Russo One'; font-size:15px;
  }
  .rev-name{font-weight:700; font-size:14.5px; color:#fff}
  .rev-meta{font-size:12px; color:var(--muted)}
  .rev-stars{color:#f5b400; font-size:13px; letter-spacing:1px}
  .rev-text{font-size:14px; color:var(--paper-dim); line-height:1.6}
  .rev-more{
    display:none; align-self:flex-start; margin-top:-18px;
    background:none; border:none; padding:12px 0; margin-bottom:-12px; cursor:pointer;
    color:var(--red-glow); font-size:12.5px; font-weight:700;
  }
  @media (max-width:699px){
    .rev-text{display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden}
    .rev-text.expanded{display:block; -webkit-line-clamp:unset; overflow:visible}
    .rev-more:not([hidden]){display:inline-block}
  }
  .rev-pagination{display:flex; align-items:center; justify-content:center; gap:16px; margin-top:28px}
  @media (max-width:759px){
    .rev-pagination{scroll-margin-bottom:calc(66px + env(safe-area-inset-bottom,0px) + 16px)}
  }
  .rev-page-btn{
    width:44px; height:44px; border-radius:50%; flex:none;
    border:1px solid var(--line); background:var(--surface); color:#fff;
    display:grid; place-items:center; cursor:pointer;
    transition:border-color .2s ease, background .2s ease;
  }
  .rev-page-btn:hover:not(:disabled){border-color:var(--red-glow); background:var(--surface-2)}
  .rev-page-btn:disabled{opacity:.35; cursor:default}
  .rev-page-btn svg{width:18px;height:18px}
  .rev-dots{display:flex; align-items:center; gap:8px}
  .rev-dot{position:relative; width:8px; height:8px; padding:0; border-radius:5px; border:none; background-color:var(--line); cursor:pointer; transition:width .2s ease, background .2s ease}
  .rev-dot.active{width:22px; background-color:var(--red-glow)}

  /* ---------- TEAM ---------- */
  .team-grid{display:grid; grid-template-columns:1fr; gap:28px; align-items:center}
  .team-grid > *{min-width:0}
  @media (min-width:900px){ .team-grid{grid-template-columns:1fr 1fr} }
  .team-photo{border-radius:var(--radius-l); overflow:hidden; border:1px solid var(--line)}
  .team-text p{color:var(--paper-dim); font-size:15px; line-height:1.7}
  .team-text h2 + p{margin-top:16px}
  .team-text p + p{margin-top:14px}
  .team-badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:20px}

  /* ---------- CONTACT ---------- */
  .contact-shell{
    display:grid; grid-template-columns:1fr; gap:24px;
    background:linear-gradient(160deg, var(--surface), var(--surface-2));
    border:1px solid var(--line); border-radius:var(--radius-l);
    padding:clamp(22px,4vw,40px);
  }
  @media (min-width:940px){ .contact-shell{grid-template-columns:1fr 1fr; gap:40px} }
  .contact-shell > *{min-width:0}

  .field{display:flex; flex-direction:column; gap:7px; min-width:0}
  .field label{font-size:12.5px; font-weight:700; color:var(--muted)}
  .field input, .field select, .field textarea{
    width:100%; max-width:100%;
    background:var(--surface-3); border:1px solid var(--line); border-radius:12px;
    padding:13px 14px; color:#fff; font-size:15px; font-family:inherit;
    outline:none; transition:border-color .2s ease, box-shadow .2s ease;
  }
  .field input::placeholder, .field textarea::placeholder{color:var(--muted-2)}
  .field input:focus, .field select:focus, .field textarea:focus{
    border-color:var(--red); box-shadow:0 0 0 3px rgba(226,19,42,.18);
  }
  .field textarea{resize:vertical; min-height:88px}
  .hp-field{position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden}
  .form-grid{display:grid; grid-template-columns:1fr; gap:14px}
  @media (min-width:520px){ .form-grid{grid-template-columns:1fr 1fr} }
  .form-grid .full{grid-column:1/-1}
  .consent{display:flex; gap:10px; align-items:flex-start; font-size:12px; color:var(--muted); line-height:1.5; cursor:pointer}
  .consent input{flex:none; width:18px; height:18px; margin:1px 0 0; accent-color:var(--red)}
  .consent a{color:var(--paper-dim); text-decoration:underline; text-underline-offset:2px}
  #leadForm{display:flex; flex-direction:column; gap:16px}
  .form-note{font-size:12.5px; color:var(--muted)}

  .success{
    display:none; flex-direction:column; gap:14px; align-items:flex-start;
    background:rgba(226,19,42,.08); border:1px solid rgba(226,19,42,.35);
    border-radius:var(--radius-m); padding:20px; margin-top:16px;
  }
  .success.show{display:flex}
  .success h4{color:#fff; font-family:'Golos Text'; font-weight:800; font-size:16px}
  .success p{font-size:13.5px; color:var(--paper-dim); line-height:1.55}
  .success-actions{display:flex; flex-wrap:wrap; gap:10px}

  .contact-info{display:flex; flex-direction:column; gap:20px; min-width:0}
  .info-card{
    background:var(--surface-3); border:1px solid var(--line); border-radius:var(--radius-m);
    overflow:hidden;
  }
  .info-card img{width:100%; display:block}
  .info-row{display:flex; gap:14px; align-items:flex-start}
  .info-row svg{width:19px;height:19px; color:var(--red-glow); flex:none; margin-top:2px}
  .info-row a{font-weight:700; font-size:15px}
  .info-row .info-sub{color:var(--muted); font-size:12.5px; margin-top:2px}
  .info-list{display:flex; flex-direction:column; gap:16px; margin-top:28px; padding-top:28px; border-top:1px solid var(--line-soft)}
  .info-list:first-child{margin-top:0; padding-top:0; border-top:0}

  /* ---------- FOOTER ---------- */
  footer{border-top:1px solid var(--line-soft); padding-block:28px; padding-bottom:calc(28px + env(safe-area-inset-bottom,0px))}
  .foot-row{display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between}
  .foot-links{display:flex; gap:18px; flex-wrap:wrap}
  .foot-links a{font-size:13px; color:var(--muted); font-weight:600; display:inline-block; padding-block:12px; margin-block:-12px}
  .foot-links a:hover{color:#fff}
  .foot-copy{font-size:12px; color:var(--muted-2)}
  .foot-legal{margin-top:8px}
  .foot-legal a{color:var(--muted); text-decoration:underline; text-underline-offset:2px}
  .foot-legal a:hover{color:#fff}

  /* ---------- MOBILE STICKY CTA ---------- */
  .mobile-cta{
    position:fixed; left:0; right:0; bottom:0; z-index:90;
    display:flex; gap:1px; background:var(--line);
    padding-bottom:env(safe-area-inset-bottom,0px);
    border-top:1px solid var(--line);
  }
  .mobile-cta a{
    flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
    padding:14px 10px; background:var(--surface); color:#fff; font-weight:800; font-size:13.5px;
  }
  .mobile-cta a.primary{background:var(--red)}
  .mobile-cta a.call{background:var(--green)}
  .mobile-cta svg{width:16px;height:16px}
  @media (min-width:760px){ .mobile-cta{display:none} }
  body{padding-bottom:66px}
  @media (min-width:760px){ body{padding-bottom:0} }

  .visually-hidden{position:absolute; width:1px;height:1px; overflow:hidden; clip:rect(0 0 0 0)}

  /* ---------- LIGHTBOX ---------- */
  .lightbox{
    position:fixed; inset:0; z-index:300; display:flex; align-items:center; justify-content:center;
    background:rgba(6,6,8,.94); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
    opacity:0; visibility:hidden; transition:opacity .22s ease;
    padding:env(safe-area-inset-top,20px) 20px env(safe-area-inset-bottom,20px);
  }
  .lightbox.open{opacity:1; visibility:visible}
  .lightbox-figure{display:flex; flex-direction:column; align-items:center; gap:14px; max-width:min(92vw,1100px)}
  .lightbox-img{
    max-width:92vw; max-height:78vh; object-fit:contain; border-radius:var(--radius-s);
    box-shadow:0 30px 70px -20px rgba(0,0,0,.7);
  }
  .lightbox-cap{color:var(--paper-dim); font-size:14px; text-align:center}
  .lightbox-btn{
    position:absolute; display:grid; place-items:center; width:44px; height:44px; border-radius:50%;
    background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.25); color:#fff; cursor:pointer;
    transition:background .18s ease, border-color .18s ease;
  }
  .lightbox-btn:hover, .lightbox-btn:focus-visible{background:rgba(226,19,42,.35); border-color:var(--red-glow)}
  .lightbox-btn svg{width:20px;height:20px}
  .lightbox-close{top:env(safe-area-inset-top,16px); right:16px}
  .lightbox-prev{left:16px; top:50%; transform:translateY(-50%)}
  .lightbox-next{right:16px; top:50%; transform:translateY(-50%)}
  @media (max-width:640px){
    .lightbox-prev{left:8px} .lightbox-next{right:8px}
    .lightbox-btn{width:40px;height:40px}
  }

  /* ---------- SERVICE PAGES + FAQ ---------- */
  .crumbs{display:flex; flex-wrap:wrap; gap:6px; font-size:12.5px; color:var(--muted); margin-bottom:18px}
  .crumbs a{color:var(--muted); text-decoration:underline; text-underline-offset:2px}
  .crumbs a:hover{color:#fff}
  .page-hero{padding-block:clamp(36px,7vw,72px) clamp(28px,5vw,48px)}
  .page-hero h1{font-size:clamp(28px,4.8vw,48px); line-height:1.08; color:#fff; margin-top:14px; max-width:20ch}
  .page-hero .lead{color:var(--paper-dim); font-size:16px; line-height:1.65; margin-top:16px; max-width:62ch}
  .page-hero .hero-cta{margin-top:24px}
  .page-grid{display:grid; grid-template-columns:1fr; gap:28px; align-items:start}
  @media (min-width:900px){ .page-grid{grid-template-columns:1.1fr .9fr; gap:44px} }
  .page-grid > *{min-width:0}
  .page-photo{border-radius:var(--radius-l); overflow:hidden; border:1px solid var(--line)}
  .page-photo img{width:100%; display:block}
  .page-block{margin-top:clamp(40px,6vw,64px)}
  .page-block h2{font-size:clamp(22px,3.4vw,32px); color:#fff; line-height:1.15}
  .page-block > p, .page-block li{color:var(--paper-dim); font-size:15.5px; line-height:1.7}
  .page-block > p{margin-top:14px; max-width:70ch}
  .page-block ul.plain{margin-top:14px; padding-left:20px; display:flex; flex-direction:column; gap:6px}
  .price-card{background:linear-gradient(160deg, var(--surface), var(--surface-2)); border:1px solid var(--line); border-radius:var(--radius-l); padding:clamp(20px,3vw,28px); margin-top:18px}
  .price-note{color:var(--muted); font-size:13px; line-height:1.55; margin-top:14px}
  .steps{display:grid; grid-template-columns:1fr; gap:12px; margin-top:18px; counter-reset:step}
  @media (min-width:700px){ .steps{grid-template-columns:repeat(2,1fr)} }
  .step{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-m); padding:18px 18px 18px 58px; position:relative; color:var(--paper-dim); font-size:14.5px; line-height:1.6}
  .step::before{counter-increment:step; content:counter(step); position:absolute; left:18px; top:16px; width:28px; height:28px; border-radius:50%; background:rgba(226,19,42,.14); color:var(--red-glow); display:grid; place-items:center; font-family:'Russo One'; font-size:14px}
  .step b{display:block; color:#fff; font-size:15px; margin-bottom:4px}
  .faq{display:flex; flex-direction:column; gap:10px; margin-top:18px}
  .faq details{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-m); padding:0 18px}
  .faq summary{cursor:pointer; list-style:none; padding:16px 28px 16px 0; color:#fff; font-weight:700; font-size:15px; line-height:1.45; position:relative}
  .faq summary::-webkit-details-marker{display:none}
  .faq summary::after{content:"+"; position:absolute; right:0; top:13px; color:var(--red-glow); font-size:22px; font-weight:400; line-height:1}
  .faq details[open] summary::after{content:"−"}
  .faq details > div{color:var(--paper-dim); font-size:14.5px; line-height:1.7; padding-bottom:16px}
  .faq a, .page-block > p a{color:#fff; text-decoration:underline; text-underline-offset:2px; text-decoration-color:var(--red)}
  .cta-band{margin-top:clamp(40px,6vw,64px); background:linear-gradient(160deg, var(--surface), var(--surface-2)); border:1px solid var(--line); border-radius:var(--radius-l); padding:clamp(22px,4vw,36px); display:flex; flex-direction:column; gap:16px}
  .cta-band h2{font-size:clamp(22px,3.4vw,30px); color:#fff; line-height:1.15}
  .cta-band p{color:var(--paper-dim); font-size:15px; line-height:1.6}
  .cta-band .hero-cta{margin-top:0}
  .related{display:grid; grid-template-columns:1fr; gap:10px; margin-top:18px}
  @media (min-width:600px){ .related{grid-template-columns:repeat(2,1fr)} }
  @media (min-width:980px){ .related{grid-template-columns:repeat(3,1fr)} }
  .related a{display:flex; justify-content:space-between; align-items:center; gap:10px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-m); padding:16px 18px; color:#fff; font-weight:700; font-size:14.5px}
  .related a:hover{border-color:var(--red)}
  .related a span{color:var(--muted); font-weight:600; font-size:13px; white-space:nowrap}
  .svc-card h3 a{color:inherit}
  .svc-card h3 a:hover{color:var(--red-glow)}
  .foot-services{display:flex; flex-wrap:wrap; gap:6px 16px; margin-top:16px}
  .foot-services a{font-size:12.5px; color:var(--muted); display:inline-block; padding-block:10px; margin-block:-10px}
  .foot-services a:hover{color:#fff}

  /* ---------- COOKIE BANNER (js/consent.js) ---------- */
  .cookie-banner{
    position:fixed; left:12px; right:12px; bottom:calc(58px + env(safe-area-inset-bottom,0px)); z-index:95;
    background:var(--surface-2); border:1px solid var(--line); border-radius:var(--radius-m);
    padding:16px; box-shadow:0 18px 50px -12px rgba(0,0,0,.6);
    display:flex; flex-direction:column; gap:12px; max-width:560px;
  }
  @media (min-width:760px){ .cookie-banner{left:24px; right:auto; bottom:24px} }
  .cookie-banner p{font-size:13.5px; line-height:1.55; color:var(--paper-dim)}
  .cookie-banner a{color:#fff; text-decoration:underline; text-underline-offset:2px}
  .cookie-actions{display:flex; flex-wrap:wrap; gap:10px}
  .cookie-actions .btn-outline-sm{padding:12px 20px; font-size:14px; min-height:44px}
