﻿    :root {
      --bg: #0b0d12;
      --panel: #131722;
      --panel-2: #171d2b;
      --stroke: rgba(255,255,255,.08);
      --text: #edf1f7;
      --muted: #9aa4b2;
      --red: #ef4b43;
      --red-2: #ff6f61;
      --blue: #4f7cff;
      --ok: #2ecc71;
      --shadow: 0 18px 50px rgba(0,0,0,.35);
      --radius: 22px;
      --max: 1240px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: clip; }
    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background:
        radial-gradient(circle at top right, rgba(79,124,255,.18), transparent 28%),
        radial-gradient(circle at top left, rgba(239,75,67,.16), transparent 24%),
        linear-gradient(180deg, #0a0c11 0%, #0b0d12 100%);
      color: var(--text);
      overflow-x: hidden;
    }
    .site-main {
      flex: 1 0 auto;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
    .nav {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.92);
      border-bottom: 1px solid rgba(15,23,42,.08);
      box-shadow: 0 8px 24px rgba(15,23,42,.06);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px; padding: 8px 0;
      flex-wrap: wrap;
    }
    .brand {
      display: flex; align-items: center; gap: 12px; min-width: 0;
    }
    .brand > div { min-width: 0; }
    .brand img {
      width: 48px; height: 48px; object-fit: contain;
      border-radius: 8px;
      background: #fff;
      padding: 3px;
    }
    .brand-title {
      font-size: .96rem; font-weight: 800; line-height: 1.15; letter-spacing: .02em;
      color: #050b16;
    }
    .brand-sub {
      color: rgba(31,41,55,.74);
      font-size: .8rem;
      font-weight: 500;
      line-height: 1.3;
      overflow-wrap: anywhere;
    }
    .nav-contacts {
      display: grid;
      grid-template-columns: minmax(0, auto) auto;
      grid-template-areas:
        "phone messengers"
        "email messengers";
      align-items: center;
      column-gap: 10px;
      row-gap: 1px;
      margin-left: auto;
      min-width: 0;
    }
    .nav-contacts > .nav-phone:first-of-type { grid-area: phone; }
    .nav-contacts > .nav-phone:last-of-type { grid-area: email; }
    .nav-phone {
      color: #050b16;
      font-size: 1.3rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: .01em;
      white-space: normal;
      overflow-wrap: anywhere;
      transition: color .2s ease, opacity .2s ease;
    }
    .nav-contacts > .nav-phone:first-of-type:hover { color: #111827; }
    .nav-contacts > .nav-phone:last-of-type {
      font-size: .95rem;
      font-weight: 800;
      color: rgb(255 12 0);
    }
    .nav-contacts > .nav-phone:last-of-type:hover {
      color: rgba(15,23,42,.92);
      opacity: 1;
    }
    .nav-messengers {
      grid-area: messengers;
      display: flex; align-items: center; gap: 6px;
      justify-self: end;
    }
    .messenger-link {
      width: 34px; height: 34px; padding: 0;
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid rgba(15,23,42,.12);
      background: #fff;
      color: #0f172a;
      box-shadow: 0 6px 16px rgba(15,23,42,.06);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
    }
    .messenger-link svg {
      width: 18px; height: 18px; display: block; fill: currentColor;
    }
    .messenger-link img {
      width: 18px; height: 18px; display: block; object-fit: contain;
    }
    .messenger-link:hover {
      transform: translateY(-1px) scale(1.04);
      border-color: rgba(15,23,42,.2);
      box-shadow: 0 10px 20px rgba(15,23,42,.1);
    }
    .messenger-telegram { color: #0f5fca; }
    .messenger-whatsapp { color: #15803d; }
    .messenger-max { color: #7c3aed; }
    .floating-call {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--red), var(--red-2));
      color: #fff;
      box-shadow: 0 18px 35px rgba(239,75,67,.34);
      z-index: 200;
      opacity: 0;
      transform: translateY(18px) scale(.92);
      pointer-events: none;
      transition: opacity .28s ease, transform .28s ease, box-shadow .28s ease, background-color .28s ease;
    }
    .floating-call.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .floating-call:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 22px 40px rgba(239,75,67,.4);
    }
    .floating-call svg {
      width: 24px;
      height: 24px;
      display: block;
      fill: currentColor;
    }
    .nav-cta { display: flex; gap: 10px; align-items: center; }
    .btn {
      border: 1px solid var(--stroke);
      border-radius: 16px;
      padding: 14px 18px;
      font-weight: 700;
      transition: .22s ease;
      cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      white-space: normal;
      text-align: center;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--red), var(--red-2));
      color: white;
      border-color: transparent;
      box-shadow: 0 12px 28px rgba(239,75,67,.28);
    }
    .nav .btn {
      min-height: 40px;
      border-radius: 9px;
      padding: 10px 16px;
      font-size: .93rem;
      line-height: 1.2;
    }
    .nav .btn-secondary {
      background: #fff;
      color: #0f172a;
      border-color: rgba(15,23,42,.22);
      font-weight: 800;
    }
    .nav .btn-secondary:hover {
      background: #f8fafc;
      border-color: rgba(17,24,39,.2);
      box-shadow: 0 8px 18px rgba(15,23,42,.08);
    }
    .nav .btn-primary {
      box-shadow: 0 10px 24px rgba(239,75,67,.18);
    }
    .nav .btn-primary:hover {
      box-shadow: 0 12px 24px rgba(239,75,67,.22);
    }
    .hero { padding: 32px 0 26px; }
    .hero-grid {
      display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch;
    }
    .hero-copy, .hero-media {
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
      border: 1px solid var(--stroke);
      border-radius: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .hero-copy { padding: 34px; position: relative; }
    .eyebrow {
      display: inline-flex; gap: 10px; align-items: center;
      padding: 8px 12px; border-radius: 999px;
      background: rgba(79,124,255,.08); color: #c6d4ff; border: 1px solid rgba(79,124,255,.22);
      font-size: .88rem; font-weight: 700;
    }
    h1 {
      margin: 18px 0 14px;
      font-size: clamp(2.2rem, 4.2vw, 4.4rem);
      line-height: 1.02; letter-spacing: -.03em;
      text-wrap: balance;
    }
    .lead {
      font-size: 1.08rem; line-height: 1.7; color: #e4e9f0; max-width: 760px;
    }
    .hero-points {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0;
    }
    .point {
      background: rgba(255,255,255,.03);
      border: 1px solid var(--stroke);
      border-radius: 18px; padding: 16px;
    }
    .point b { display: block; font-size: 1.4rem; margin-bottom: 6px; }
    .point span { color: var(--muted); font-size: .95rem; line-height: 1.5; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-note {
      margin-top: 16px; color: var(--muted); font-size: .98rem; line-height: 1.65;
    }
    .hero-media {
      min-height: 100%;
      display: flex; flex-direction: column;
    }
    .hero-media img {
      width: 100%; height: 100%; object-fit: cover; min-height: 540px;
      filter: saturate(1.03) contrast(1.05);
    }
    .media-badge {
      position: absolute; right: 18px; bottom: 18px;
      background: rgba(10,12,17,.86); border: 1px solid var(--stroke);
      color: white; padding: 14px 16px; border-radius: 18px; backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
    }
    .section { padding: 30px 0; }
    .section-title {
      font-size: clamp(1.7rem, 2.8vw, 2.8rem); line-height: 1.12; letter-spacing: -.03em; margin: 0 0 12px;
      text-wrap: balance;
    }
    .section-text {
      color: var(--muted); font-size: 1.02rem; line-height: 1.75; max-width: 780px; margin-bottom: 26px;
    }
    .cards-3 {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    }
    .cards-2 {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
    }
    .card {
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.018));
      border: 1px solid var(--stroke);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .card-body { padding: 22px; }
    .card h3 { margin: 0 0 8px; font-size: 1.22rem; line-height: 1.3; }
    .card p { margin: 0; color: var(--muted); line-height: 1.7; }
    .thumb {
      aspect-ratio: 16 / 10; overflow: hidden; background: #0d1118;
    }
    .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .card:hover .thumb img { transform: scale(1.04); }
    .metrics {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px;
    }
    .metric {
      padding: 18px; border-radius: 18px; border: 1px solid var(--stroke);
      background: rgba(255,255,255,.03);
    }
    .metric b { display: block; font-size: 1.8rem; margin-bottom: 8px; }
    .metric span { color: var(--muted); line-height: 1.5; }
    .services-grid {
      display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px;
    }
    .service-list { display: grid; gap: 18px; }
    .service-item {
      display: grid; grid-template-columns: 140px 1fr; gap: 18px; align-items: center;
      padding: 18px; border-radius: 22px; border: 1px solid var(--stroke);
      background: rgba(255,255,255,.03);
    }
    .service-item .mini {
      border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
    }
    .service-item .mini img { width: 100%; height: 100%; object-fit: cover; }
    .list-checks { display: grid; gap: 12px; margin-top: 14px; }
    .list-checks div {
      padding: 14px 16px; border-radius: 16px; border: 1px solid var(--stroke);
      background: rgba(255,255,255,.03);
    }
    .pricing {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }
    .pricing > * { min-width: 0; }
    .table-wrap {
      border: 1px solid var(--stroke); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    }
    .price-grid-wrap {
      overflow: hidden;
    }
    .price-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
    }
    .price-grid table {
      height: 100%;
      background: transparent;
    }
    .price-grid table:first-child {
      border-right: 1px solid var(--stroke);
    }
    .price-grid tbody tr:hover td {
      background: rgba(255,255,255,.035);
      transition: background .2s ease;
    }
    table { width: 100%; border-collapse: collapse; }
    th, td { padding: 16px 18px; text-align: left; vertical-align: top; }
    thead th {
      font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #c8d2de;
      background: rgba(255,255,255,.03);
      border-bottom: 1px solid var(--stroke);
    }
    tbody tr:not(:last-child) td { border-bottom: 1px solid var(--stroke); }
    tbody td:last-child { color: #fff; font-weight: 700; white-space: nowrap; }
    .muted { color: var(--muted); }
    .calc {
      margin-top: 18px;
      border: 1px solid var(--stroke);
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(79,124,255,.08), rgba(255,255,255,.02));
      box-shadow: var(--shadow);
    }
    .calc-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    }
    .calc-form, .calc-result { padding: 26px; }
    .calc-result { border-left: 1px solid var(--stroke); background: rgba(255,255,255,.02); }
    .field { margin-bottom: 16px; }
    label {
      display: block; margin-bottom: 8px; font-size: .95rem; line-height: 1.4; color: #d7dfea; font-weight: 600;
    }
    input, select {
      width: 100%; padding: 14px 14px;
      border-radius: 14px; border: 1px solid var(--stroke);
      background: rgba(8,10,15,.65); color: white;
      outline: none;
    }
    .inline-2 {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .result-number {
      font-size: clamp(2.2rem, 4vw, 3.6rem); letter-spacing: -.03em; margin: 6px 0 10px;
    }
    .result-pairs {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin: 8px 0 14px;
    }
    .result-card {
      padding: 16px 18px;
      border: 1px solid var(--stroke);
      border-radius: 18px;
      background: rgba(255,255,255,.03);
    }
    .result-label {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .result-card .result-number {
      margin: 8px 0 0;
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    }
    .result-number-nds { color: #ffd8d5; }
    .breakdown {
      display: grid; gap: 10px; margin-top: 16px;
    }
    .row {
      display: flex; justify-content: space-between; gap: 10px;
      border-bottom: 1px dashed rgba(255,255,255,.10); padding-bottom: 10px;
    }
    .gallery {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    }
    .gallery .card .thumb { aspect-ratio: 16/11; }
    .base-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
    }
    .address-box {
      padding: 26px; border: 1px solid var(--stroke); border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
      box-shadow: var(--shadow);
    }
    .address-box h3 { margin-top: 0; }
    .map-shell {
      width: 100%;
      padding: 0 16px;
      box-sizing: border-box;
    }
    .map-wrap {
      border: 1px solid var(--stroke);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: rgba(255,255,255,.03);
    }
    .map-wrap iframe {
      display: block;
      width: 100%;
      height: 460px;
      border: 0;
    }
    .small { font-size: .95rem; line-height: 1.6; color: var(--muted); }
    .accent { color: #fff; }
    .site-footer {
      flex-shrink: 0;
      margin-top: auto;
      padding: 18px 0;
      background: rgba(10, 12, 17, .92);
      border-top: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
    }
    .site-footer__text {
      margin: 0;
      text-align: center;
      color: rgba(237,241,247,.92);
      font-size: .98rem;
      line-height: 1.5;
    }
    @media (max-width: 1120px) {
      .hero-grid, .services-grid, .pricing { grid-template-columns: 1fr; }
      .cards-3, .gallery, .metrics, .base-grid, .hero-points, .calc-grid { grid-template-columns: 1fr 1fr; }
      .calc-result { border-left: 0; border-top: 1px solid var(--stroke); }
    }
    @media (max-width: 760px) {
      .nav { position: static; }
      .nav-inner { flex-direction: column; align-items: stretch; gap: 10px; padding: 8px 0 10px; }
      .brand { gap: 10px; }
      .brand img { width: 42px; height: 42px; }
      .brand-title { font-size: .96rem; }
      .brand-sub { font-size: .78rem; line-height: 1.3; }
      .nav-contacts {
        grid-template-columns: 1fr;
        grid-template-areas:
          "phone"
          "email"
          "messengers";
        justify-items: center;
        margin-left: 0;
        background: #fff;
        border: 1px solid rgba(15,23,42,.08);
        border-radius: 8px;
        padding: 10px 12px;
        row-gap: 4px;
      }
      .nav-phone { text-align: center; font-size: 1rem; line-height: 1.22; }
      .nav-contacts > .nav-phone:last-of-type { font-size: .82rem; }
      .nav-messengers { justify-content: center; justify-self: center; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
      .messenger-link { width: 36px; height: 36px; }
      .floating-call {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
      }
      .nav-cta { width: 100%; flex-direction: column; gap: 8px; }
      .btn { width: 100%; }
      .cards-3, .cards-2, .gallery, .metrics, .base-grid, .hero-points, .calc-grid, .inline-2 { grid-template-columns: 1fr; }
      .service-item { grid-template-columns: 1fr; }
      .map-shell { padding: 0 16px; }
      .map-wrap { border-radius: 18px; }
      .map-wrap iframe { height: 320px; }
      .result-card {
        padding: 14px 16px;
        border-radius: 14px;
      }
      .result-card .result-number {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
        line-height: 1.08;
      }
      .hero {
        padding: 16px 0 22px;
      }
      .hero-grid {
        gap: 16px;
      }
      .hero-copy, .hero-media {
        border-radius: 20px;
      }
      .hero-copy {
        padding: 20px 18px;
      }
      .eyebrow {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 9px 12px;
        font-size: .8rem;
      }
      h1 {
        margin: 14px 0 12px;
        font-size: clamp(1.95rem, 8.8vw, 2.55rem);
        line-height: 1.08;
      }
      .lead {
        font-size: 1rem;
        line-height: 1.68;
      }
      .hero-points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px 0;
      }
      .point {
        padding: 14px;
        border-radius: 14px;
      }
      .point b {
        font-size: 1.2rem;
        margin-bottom: 4px;
      }
      .point span {
        font-size: .95rem;
        line-height: 1.5;
      }
      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .hero-actions .btn {
        width: 100%;
        min-height: 52px;
      }
      .hero-note {
        margin-top: 14px;
        font-size: .95rem;
        line-height: 1.65;
      }
      .hero-media img {
        min-height: 260px;
        max-height: 320px;
      }
      .media-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: .9rem;
      }
      th, td { padding: 14px 12px; }
      .table-wrap {
        overflow-x: auto;
        max-width: 100%;
      }
      .price-grid {
        grid-template-columns: 1fr;
      }
      .price-grid table:first-child {
        border-right: none;
        border-bottom: 1px solid var(--stroke);
      }
      .section-title {
        font-size: 1.7rem;
        line-height: 1.18;
      }
      .section-text,
      .small {
        font-size: .98rem;
        line-height: 1.68;
      }
      .site-footer {
        padding: 16px 0;
      }
      .site-footer__text {
        font-size: .94rem;
      }
    }
  

.hero-media-relative { position: relative; }
.margin-top-10 { margin-top: 10px; }
.calc-title { margin-top: 0; font-size: 1.6rem; }
.margin-top-22 { margin-top: 22px; }
.address-box-spaced { margin-top: 18px; }
.address-highlight { margin: 0 0 10px; color: #fff; }
.address-note { margin: 0; }
.feature-title { margin-top: 0; }
