    :root {
      --bg: #f5f3ef;
      --surface: #ffffff;
      --surface-soft: #f8f5f2;
      --ink: #141414;
      --muted: #625d57;
      --line: rgba(20, 20, 20, 0.12);
      --line-strong: rgba(20, 20, 20, 0.22);
      --accent: #c7342f;
      --accent-dark: #ab2622;
      --accent-soft: rgba(199, 52, 47, 0.08);
      --dark: #131922;
      --radius: 20px;
      --shadow: 0 18px 40px rgba(20, 20, 20, 0.05);
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }

    body {
      font-family: "IBM Plex Sans", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top right, rgba(199, 52, 47, 0.08), transparent 28%),
        linear-gradient(180deg, #faf8f5 0%, var(--bg) 42%, #fbfaf8 100%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1160px, calc(100% - 48px));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      backdrop-filter: blur(14px);
      background: rgba(250, 248, 245, 0.86);
      border-bottom: 1px solid rgba(20, 20, 20, 0.06);
    }

    .site-header .container {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .logo-image {
      display: block;
      width: auto;
      height: 54px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .nav a {
      color: #39352f;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      transition: color 0.18s ease;
    }

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

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .header-phone {
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-toggle {
      min-height: 44px;
      min-width: 44px;
      padding: 0;
      border-radius: 12px;
      border: 1px solid var(--line);
      display: none;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease;
    }

    .nav-toggle:hover {
      border-color: var(--line-strong);
      background: rgba(255, 255, 255, 0.6);
    }

    .nav-toggle-box {
      position: relative;
      width: 22px;
      height: 14px;
      display: inline-block;
    }

    .nav-toggle-box span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      border-radius: 999px;
      background: currentColor;
      transition: top 0.25s ease 0.1s, transform 0.25s ease, opacity 0.18s ease;
    }

    .nav-toggle-box span:nth-child(1) { top: 0; }
    .nav-toggle-box span:nth-child(2) { top: calc(50% - 0.75px); }
    .nav-toggle-box span:nth-child(3) { top: calc(100% - 1.5px); }

    .nav-toggle[aria-expanded="true"] .nav-toggle-box span {
      transition: top 0.2s ease, transform 0.25s ease 0.18s, opacity 0.15s ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) {
      top: calc(50% - 0.75px);
      transform: rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) {
      top: calc(50% - 0.75px);
      transform: rotate(-45deg);
    }

    .mobile-menu {
      border-top: 1px solid rgba(20, 20, 20, 0.06);
      background: rgba(250, 248, 245, 0.96);
      backdrop-filter: blur(14px);
    }

    .mobile-menu[hidden] {
      display: none;
    }

    .mobile-menu .container {
      display: block;
      padding: 4px 0 22px;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
    }

    .mobile-nav a {
      display: flex;
      align-items: center;
      padding: 16px 4px;
      border-bottom: 1px solid rgba(20, 20, 20, 0.06);
      color: var(--ink);
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -0.01em;
      transition: color 0.18s ease;
    }

    .mobile-nav a:hover,
    .mobile-nav a:focus {
      color: var(--accent);
    }

    .mobile-cta {
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }

    .mobile-cta .btn {
      width: 100%;
    }

    .btn {
      min-height: 50px;
      padding: 0 22px;
      border-radius: 14px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 16px 32px rgba(199, 52, 47, 0.18);
    }

    .btn-primary:hover { background: var(--accent-dark); }

    .btn-secondary {
      background: transparent;
      color: var(--ink);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.72);
      border-color: var(--line-strong);
    }

    .hero {
      padding: 74px 0 60px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: 40px;
      align-items: start;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #6a645d;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 40px;
      height: 2px;
      background: var(--accent);
    }

    .hero-title {
      margin: 20px 0 18px;
      max-width: 560px;
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: clamp(38px, 4.4vw, 54px);
      line-height: 1.0;
      letter-spacing: -0.03em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .hero-title .accent {
      color: var(--accent);
    }

    .hero-sub {
      margin: 0;
      max-width: 560px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.72;
    }

    .hero-actions {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-stats {
      margin-top: 34px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      max-width: 720px;
    }

    .hero-stats strong {
      display: block;
      margin-bottom: 4px;
      color: var(--accent);
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: 26px;
      line-height: 1;
      font-weight: 700;
    }

    .hero-stats span {
      display: block;
      color: #4c4740;
      font-size: 14px;
      line-height: 1.7;
    }

    .hero-rail {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid rgba(20, 20, 20, 0.08);
      border-top: 4px solid var(--accent);
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .rail-kicker {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .rail-title {
      margin: 14px 0 12px;
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: 34px;
      line-height: 0.94;
      font-weight: 700;
      text-transform: uppercase;
    }

    .rail-text {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .rail-list {
      margin: 0 0 24px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .rail-list li {
      padding-top: 12px;
      border-top: 1px solid var(--line);
      color: #39352f;
      font-size: 14px;
      line-height: 1.7;
    }

    .rail-phone {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--ink);
      font-size: 22px;
      font-weight: 800;
    }

    .rail-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .rail-links a {
      min-height: 40px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid rgba(20, 20, 20, 0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      background: var(--surface-soft);
    }

    .social-row { display: inline-flex !important; flex-wrap: wrap; gap: 10px; align-items: center; padding: 0 !important; border: 0 !important; background: transparent !important; }
    a.social-icon { width: 44px !important; height: 44px !important; min-height: 44px !important; border-radius: 50% !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; color: #fff !important; transition: transform .15s ease, box-shadow .15s ease, filter .15s ease; flex-shrink: 0; overflow: hidden !important; padding: 0 !important; border: 0 !important; font-size: 0 !important; }
    a.social-icon:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(20,20,20,.18); filter: brightness(1.05); }
    a.social-icon svg { width: 22px !important; height: 22px !important; display: block !important; }
    a.social-icon img { width: 100% !important; height: 100% !important; display: block !important; object-fit: cover !important; border-radius: 0 !important; }
    a.social-icon--wa  { background: #25D366 !important; }
    a.social-icon--tg  { background: #229ED9 !important; }
    a.social-icon--vk  { background: #0077FF !important; }
    a.social-icon--max { background: transparent !important; padding: 0 !important; }
    .site-footer a.social-icon { box-shadow: 0 0 0 1px rgba(255,255,255,.08); }

    .brand-line {
      padding: 24px 0;
      border-top: 1px solid rgba(20, 20, 20, 0.08);
      border-bottom: 1px solid rgba(20, 20, 20, 0.08);
    }

    .brand-row {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
      justify-content: space-between;
    }

    .brand-label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand-items {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
      color: #403b34;
      font-size: 15px;
      font-weight: 700;
    }

    .brand-items span {
      position: relative;
      padding-right: 18px;
    }

    .brand-items span::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      width: 5px;
      height: 5px;
      margin-top: -2px;
      border-radius: 50%;
      background: rgba(199, 52, 47, 0.4);
    }

    .brand-items span:last-child {
      padding-right: 0;
    }

    .brand-items span:last-child::after {
      display: none;
    }

    .section {
      padding: 84px 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 40px;
    }

    .section-label {
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 16px 0 18px;
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: clamp(44px, 6vw, 74px);
      line-height: 0.94;
      letter-spacing: -0.04em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .section-text {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
    }

    .feature {
      padding-top: 18px;
      border-top: 2px solid rgba(199, 52, 47, 0.18);
    }

    .feature-no {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .feature h3 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1.15;
    }

    .feature p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .section-soft {
      background: linear-gradient(180deg, rgba(199, 52, 47, 0.04), rgba(199, 52, 47, 0.01));
      border-top: 1px solid rgba(20, 20, 20, 0.06);
      border-bottom: 1px solid rgba(20, 20, 20, 0.06);
    }

    .process {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
    }

    .step {
      padding: 24px;
      border-radius: 18px;
      border: 1px solid rgba(20, 20, 20, 0.08);
      background: rgba(255, 255, 255, 0.72);
    }

    .step-no {
      display: inline-block;
      margin-bottom: 16px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .step h3 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1.15;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.8;
    }

    .lead-wrap {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 24px;
      align-items: start;
    }

    .lead-panel {
      padding: 28px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, var(--accent), var(--accent-dark));
      color: #fff;
      box-shadow: 0 20px 44px rgba(199, 52, 47, 0.18);
    }

    .lead-panel h3 {
      margin: 0 0 16px;
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: clamp(40px, 5vw, 60px);
      line-height: 0.94;
      letter-spacing: -0.04em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .lead-panel p {
      margin: 0 0 24px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 16px;
      line-height: 1.8;
    }

    .lead-list {
      margin: 0 0 26px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .lead-list li {
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 15px;
      line-height: 1.75;
    }

    .lead-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .lead-links a {
      min-height: 40px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.08);
    }

    .form-wrap {
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid rgba(20, 20, 20, 0.08);
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .form-wrap h3 {
      margin: 0 0 22px;
      font-size: 30px;
      line-height: 1.1;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-grid .full {
      grid-column: 1 / -1;
    }

    label {
      display: block;
      margin-bottom: 8px;
      color: #6b655d;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .field {
      width: 100%;
      min-height: 54px;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid rgba(20, 20, 20, 0.12);
      background: #fff;
      color: var(--ink);
      font: inherit;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .field:focus {
      border-color: rgba(199, 52, 47, 0.4);
      box-shadow: 0 0 0 4px rgba(199, 52, 47, 0.08);
    }

    textarea.field {
      min-height: 124px;
      resize: vertical;
    }

    .form-actions {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .form-note {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.7;
    }

    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
      cursor: pointer;
    }
    .form-consent input[type="checkbox"] {
      flex: 0 0 auto;
      margin-top: 2px;
      width: 16px;
      height: 16px;
      accent-color: var(--accent);
    }
    .form-consent a {
      color: var(--ink);
      text-decoration: underline;
    }
    .form-consent a:hover { color: var(--accent); }

    .form-status {
      display: none;
      margin-top: 14px;
      padding: 14px 16px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.7;
    }

    .form-status.ok {
      display: block;
      background: rgba(33, 105, 67, 0.08);
      border: 1px solid rgba(33, 105, 67, 0.16);
      color: #30583a;
    }

    .form-status.err {
      display: block;
      background: rgba(199, 52, 47, 0.08);
      border: 1px solid rgba(199, 52, 47, 0.16);
      color: #7c2a26;
    }

    .form-status.info {
      display: block;
      background: rgba(20, 20, 20, 0.04);
      border: 1px solid var(--line);
      color: var(--muted);
    }

    .faq {
      display: grid;
      gap: 10px;
    }

    .faq-item {
      border-top: 1px solid var(--line-strong);
    }

    .faq-btn {
      width: 100%;
      padding: 22px 0;
      border: 0;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--ink);
      text-align: left;
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 20px;
      font-weight: 700;
      cursor: pointer;
    }

    .faq-btn span:last-child {
      color: var(--accent);
      font-size: 24px;
      font-weight: 400;
    }

    .faq-content {
      display: none;
      max-width: 760px;
      padding: 0 0 22px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .faq-item.open .faq-content {
      display: block;
    }

    .final-line {
      padding: 0 0 76px;
    }

    .final-box {
      padding-top: 20px;
      border-top: 2px solid rgba(199, 52, 47, 0.18);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .final-box h3 {
      margin: 0 0 10px;
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: clamp(38px, 5vw, 58px);
      line-height: 0.94;
      letter-spacing: -0.04em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .final-box p {
      margin: 0;
      max-width: 560px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    .site-footer {
      padding: 28px 0 38px;
      border-top: 1px solid rgba(20, 20, 20, 0.08);
      color: var(--muted);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 13px;
      line-height: 1.7;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .stat-card {
      padding: 26px 24px;
      border-radius: 18px;
      border: 1px solid rgba(20, 20, 20, 0.08);
      background: var(--surface);
      box-shadow: 0 14px 30px rgba(20, 20, 20, 0.04);
    }

    .stat-card strong {
      display: block;
      margin-bottom: 6px;
      color: var(--accent);
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: clamp(34px, 4vw, 46px);
      line-height: 0.94;
      letter-spacing: -0.02em;
      font-weight: 700;
    }

    .stat-card span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

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

    .service-card {
      padding: 28px 24px;
      border-radius: 18px;
      border: 1px solid rgba(20, 20, 20, 0.08);
      background: var(--surface);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .service-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(20, 20, 20, 0.06);
      border-color: rgba(199, 52, 47, 0.32);
    }

    .service-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--accent-soft);
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 22px;
      font-weight: 800;
    }

    .service-card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.25;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .mp-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .mp-card {
      border-radius: 20px;
      border: 1px solid rgba(20, 20, 20, 0.08);
      background: var(--surface);
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(20, 20, 20, 0.04);
      display: flex;
      flex-direction: column;
    }

    .mp-img {
      position: relative;
      aspect-ratio: 16/10;
      background-position: center;
      background-size: cover;
      background-color: #f0ebe5;
    }

    .mp-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(20, 20, 20, 0.18));
    }

    .mp-body {
      padding: 22px 24px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 10px;
    }

    .mp-body h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.15;
    }

    .mp-body p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      flex: 1;
    }

    .mp-link {
      margin-top: 6px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .fleet-card {
      border-radius: 20px;
      border: 1px solid rgba(20, 20, 20, 0.08);
      background: var(--surface);
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(20, 20, 20, 0.04);
    }

    .fleet-img {
      aspect-ratio: 16/10;
      background-position: center;
      background-size: cover;
      background-color: #f0ebe5;
    }

    .fleet-body {
      padding: 18px 22px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .fleet-body h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.2;
    }

    .fleet-tag {
      padding: 6px 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 12px;
      font-weight: 800;
    }

    .geo-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .geo-chip {
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(20, 20, 20, 0.1);
      background: var(--surface);
      color: #2f2b25;
      font-size: 14px;
      font-weight: 700;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .gallery-img {
      aspect-ratio: 4/3;
      background-position: center;
      background-size: cover;
      background-color: #ece6df;
      border-radius: 16px;
    }

    .gallery-img.tall {
      grid-row: span 2;
      aspect-ratio: 4/6;
    }

    .reviews-head {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
      margin-bottom: 28px;
    }

    .reviews-rating {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 14px;
      background: var(--surface);
      border: 1px solid var(--line);
    }

    .reviews-rating .stars {
      color: #f5a623;
      font-size: 18px;
      letter-spacing: 2px;
    }

    .reviews-rating .score {
      font-weight: 800;
      font-size: 18px;
    }

    .reviews-rating .count {
      color: var(--muted);
      font-size: 13px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
    }

    .review-card {
      padding: 26px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--surface);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .review-card .niche {
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .review-card .quote {
      margin: 0;
      color: var(--ink);
      font-size: 15px;
      line-height: 1.7;
    }

    .review-card .quote::before {
      content: "\201C";
      display: inline-block;
      color: var(--accent);
      font-family: "IBM Plex Sans Condensed", sans-serif;
      font-size: 36px;
      line-height: 0;
      vertical-align: -10px;
      margin-right: 6px;
    }

    .review-card .meta {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
    }

    .review-card .author {
      font-weight: 800;
      color: var(--ink);
    }

    .site-footer {
      padding: 56px 0 32px;
      border-top: 1px solid rgba(20, 20, 20, 0.08);
      background: var(--surface-soft);
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 36px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--line);
    }

    .footer-col h4 {
      margin: 0 0 16px;
      color: var(--ink);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .footer-col a {
      color: var(--muted);
      font-size: 14px;
      transition: color 0.18s ease;
    }

    .footer-col a:hover {
      color: var(--accent);
    }

    .footer-brand {
      display: grid;
      gap: 16px;
    }

    .footer-brand .logo-image {
      height: 48px;
    }

    .footer-tag {
      max-width: 320px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

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

    .footer-social a {
      min-height: 38px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: var(--surface);
      display: inline-flex;
      align-items: center;
      font-size: 13px;
      font-weight: 700;
      color: #39352f;
    }

    .footer-social a:hover {
      border-color: var(--line-strong);
      color: var(--accent);
    }

    .footer-contact {
      display: grid;
      gap: 8px;
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-contact strong {
      display: block;
      color: var(--ink);
      font-size: 18px;
      font-weight: 800;
    }

    .footer-bottom {
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 12px;
      line-height: 1.7;
      color: #8a857d;
    }

    .footer-bottom a {
      color: #8a857d;
    }

    .footer-bottom a:hover { color: var(--accent); }

    .reveal {
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    html.js .reveal {
      opacity: 0;
      transform: translateY(16px);
    }

    html.js .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

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

      .nav-toggle {
        display: inline-flex;
      }

      .hero-grid,
      .lead-wrap,
      .grid-3,
      .process,
      .services-grid,
      .mp-grid,
      .fleet-grid,
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 40px;
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
      }

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

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

      .gallery-img.tall {
        grid-row: auto;
        aspect-ratio: 4/3;
      }

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

    @media (max-width: 720px) {
      .container {
        width: min(1160px, calc(100% - 28px));
      }

      .site-header .container {
        min-height: 76px;
      }

      .logo-image {
        height: 44px;
      }

      .header-phone {
        display: none;
      }

      .header-actions {
        gap: 8px;
      }

      .header-actions .btn {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
      }

      .nav-toggle {
        min-height: 42px;
        min-width: 42px;
      }

      .hero {
        padding: 56px 0 52px;
      }

      .hero-title {
        max-width: 100%;
        font-size: clamp(34px, 10.5vw, 52px);
      }

      .hero-sub,
      .section-text,
      .final-box p {
        font-size: 16px;
      }

      .hero-actions .btn,
      .form-actions .btn {
        width: 100%;
      }

      .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 26px;
      }

      .section {
        padding: 68px 0;
      }

      .form-wrap,
      .lead-panel,
      .hero-rail {
        padding: 20px;
      }

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

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

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  
    /* SEO H2: sticky mobile CTA */
    .sticky-cta {
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      bottom: max(12px, env(safe-area-inset-bottom));
      z-index: 90;
      display: none;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      text-align: center;
      padding: 14px 22px;
      border-radius: 14px;
      box-shadow: 0 12px 32px rgba(199, 52, 47, 0.35), 0 2px 6px rgba(0,0,0,0.08);
      font-size: 16px;
      letter-spacing: 0.01em;
      text-decoration: none;
    }
    .sticky-cta:hover, .sticky-cta:focus { background: var(--accent-dark); color: #fff; }
    @media (max-width: 768px) {
      .sticky-cta { display: block; }
      body { padding-bottom: 84px; }
    }
  
/* === header social compact (header unify 2026-05-04) === */
.header-social { flex-wrap: nowrap !important; gap: 6px !important; }
.header-social a.social-icon { width: 32px !important; height: 32px !important; min-height: 32px !important; }
.header-social a.social-icon svg { width: 16px !important; height: 16px !important; }
.header-social a.social-icon img { width: 32px !important; height: 32px !important; }
@media (max-width: 1180px) { .header-social { display: none !important; } }

/* === header CTA: keep on one line (header unify 2026-05-04) === */
.site-header .header-actions .btn { white-space: nowrap !important; font-size: 13px !important; padding: 10px 18px !important; line-height: 1.2 !important; }

/* «Отслеживание» в шапке: на узких десктопах прячем, чтобы шапка не переполнялась */
@media (max-width: 1140px) {
  .nav a[href="/tracking/"] { display: none; }
}
