@font-face {
  font-family: "FindSansPro";
  src: url("font/FindSansPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FindSansPro";
  src: url("font/FindSansPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FindSansPro";
  src: url("font/FindSansPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FindSansPro";
  src: url("font/FindSansPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "FindSansPro", Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}
:root {
      --bg: #f4f5f7;
      --surface: #ffffff;
      --surface-soft: #f0f2f5;
      --text: #111111;
      --muted: #666b74;
      --line: #e5e7eb;
      --accent: #e30613;
      --accent-dark: #be0410;
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
      --container: 1240px;
    }

    html.no-scroll,
    body.no-scroll {
      overflow: hidden;
    }

    .tariffs-loading,
    .tariffs-empty {
      min-height: 180px;
      display: grid;
      place-items: center;
      padding: 24px;
      text-align: center;
      color: var(--muted);
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(240,242,245,.9));
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
    }

    .tariff-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      margin-bottom: 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .02em;
      background: rgba(227, 6, 19, .12);
      color: var(--accent);
    }

    .tariff-kind {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .tariff-old-price {
      display: inline-flex;
      margin-top: 4px;
      margin-bottom: 10px;
      color: var(--muted);
      text-decoration: line-through;
      font-size: 14px;
    }

    .tariff-conditions {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 1200;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, visibility .25s ease;
    }

    .modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 17, 17, .5);
      backdrop-filter: blur(8px);
    }

    .modal-card {
      position: relative;
      width: min(560px, 100%);
      padding: 28px;
      border-radius: 24px;
      background: var(--surface);
      box-shadow: var(--shadow);
      z-index: 1;
      max-height: min(92vh, 720px);
      overflow: auto;
      transform: translateY(14px) scale(.98);
      transition: transform .25s ease;
    }

    .modal.open .modal-card {
      transform: translateY(0) scale(1);
    }

    .modal-card h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 4vw, 36px);
    }

    .modal-card p {
      margin: 0 0 18px;
      color: var(--muted);
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 50%;
      background: var(--surface-soft);
      cursor: pointer;
    }

    .application-form {
      display: grid;
      gap: 14px;
    }

    .personal-data-consent {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13px;
      line-height: 1.45;
      color: var(--muted);
    }

    .personal-data-consent input {
      flex: 0 0 auto;
      width: 16px;
      height: 16px;
      margin: 2px 0 0;
      accent-color: var(--accent);
    }

    .personal-data-consent a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .personal-data-consent a:hover {
      color: var(--accent);
    }

    .address-check-form .personal-data-consent {
      grid-column: 1 / -1;
      align-self: start;
    }

    .application-form .input[readonly] {
      color: var(--text);
      background: var(--surface-soft);
      cursor: default;
    }

    .form-message {
      min-height: 18px;
      font-size: 14px;
      line-height: 1.35;
      color: var(--muted);
    }

    .form-message:empty {
      display: none;
    }

    .form-message--error {
      color: #b42318;
    }

    .application-success {
      display: grid;
      gap: 14px;
    }

    .application-success[hidden] {
      display: none;
    }

    .application-success h3 {
      margin: 0;
      font-size: 24px;
    }

    .application-success p {
      margin: 0;
    }

    .application-success-copy {
      display: grid;
      gap: 10px;
    }

    .success-phone-link {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: nowrap;
    }

    .max-messenger-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      color: var(--text);
      font-weight: 700;
      text-decoration: none;
    }

    .max-messenger-link img {
      display: block;
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
    }

    .modal-messenger-link {
      display: flex;
      margin: 16px auto 0;
      padding: 9px 12px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface-soft);
    }

    .modal-messenger-link:hover,
    .modal-messenger-link:focus-visible {
      color: var(--accent);
      border-color: var(--accent);
    }

    [data-success-modal] .modal-card {
      padding-top: 76px;
    }

    [data-success-modal] .application-success h3 {
      padding-right: 56px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "FindSansPro", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.45;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(227, 6, 19, .34);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .section {
      padding: 34px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: end;
      margin-bottom: 24px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .section-head p {
      margin: 0;
      max-width: 560px;
      color: var(--muted);
      font-size: 17px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(10px);
      background: rgba(244, 245, 247, 0.88);
      border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    }

    .topbar-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-size: 18px;
      flex-shrink: 0;
    }

    .brand img {
      width: 44px;
      height: 44px;
      object-fit: contain;
      flex: 0 0 44px;
    }

    .brand-badge {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--accent);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      box-shadow: var(--shadow);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #2d3138;
      font-size: 15px;
    }

    .nav a:hover {
      color: var(--accent);
    }

    .nav-business {
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 10px 22px rgba(227, 6, 19, 0.18);
    }

    .nav-business:hover {
      color: #fff;
      background: var(--accent-dark);
    }

    .city-dropdown {
      position: relative;
    }

    .city-button {
      min-height: 42px;
      padding: 0 40px 0 16px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--text);
      cursor: pointer;
      font-weight: 700;
      position: relative;
      transition: .2s ease;
      white-space: nowrap;
    }

    .city-button::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 50%;
      width: 8px;
      height: 8px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-65%) rotate(45deg);
    }

    .city-button:hover,
    .city-button:focus,
    .city-dropdown.open .city-button {
      border-color: #cfd5dd;
      box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
      outline: none;
    }

    .city-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      z-index: 30;
      min-width: 230px;
      display: none;
      gap: 4px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .city-dropdown.open .city-menu {
      display: grid;
    }

    .city-menu button {
      min-height: 36px;
      padding: 0 12px;
      border: 0;
      border-radius: 10px;
      background: transparent;
      color: #2d3138;
      cursor: pointer;
      text-align: left;
      white-space: nowrap;
    }

    .city-menu button:hover,
    .city-menu button:focus {
      background: #fff1f2;
      color: var(--accent);
      outline: none;
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .topbar-actions .btn {
      width: auto;
      white-space: nowrap;
    }

    .phone-link {
      white-space: nowrap;
      font-weight: 700;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: .25s ease;
      font-weight: 700;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 10px 25px rgba(227, 6, 19, 0.22);
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: #fff;
      border-color: var(--line);
      color: var(--text);
      width: 100%;
    }

    .btn-secondary:hover {
      border-color: #cfd5dd;
      transform: translateY(-1px);
    }

    .hero {
      padding: 22px 0 24px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 20px;
    }

    .hero-card,
    .hero-side {
      background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
      border-radius: 36px;
      padding: 38px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(229, 231, 235, 0.75);
      position: relative;
      overflow: hidden;
    }
    .hero-card{
      padding: 0px;
    }

    .hero-card {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
      gap: 28px;
      align-items: stretch;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      overflow: visible;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      top: -22px;
      bottom: -24px;
      left: 50%;
      width: 100vw;
      transform: translateX(-50%);
      background:
        linear-gradient(135deg, rgba(227, 6, 19, 0.055) 0 12%, transparent 12% 100%),
        linear-gradient(315deg, transparent 0 74%, rgba(46, 52, 59, 0.045) 74% 86%, transparent 86% 100%),
        linear-gradient(180deg, #fbfcfd 0%, #eef2f5 100%);
      z-index: 0;
      pointer-events: none;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      right: 6%;
      top: 34px;
      width: 210px;
      height: 42px;
      background: rgba(227, 6, 19, 0.07);
      transform: rotate(-8deg);
      z-index: 0;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      min-width: 0;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(36px, 6vw, 68px);
      line-height: 0.96;
      letter-spacing: -0.05em;
      max-width: 760px;
    }

    .hero-lead {
      margin: 22px 0 0;
      font-size: 18px;
      color: var(--muted);
      max-width: 620px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-slider {
      position: relative;
      z-index: 1;
      min-height: 460px;
      border-radius: 28px;
      overflow: hidden;
      background: #17181c;
      border: 1px solid rgba(23, 24, 28, 0.12);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.45s ease;
      pointer-events: none;
    }

    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-slide h2 {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 2;
      margin: 0;
      padding: 24px 24px 56px;
      color: #fff;
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.02;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .hero-slide img,
    .hero-slide-placeholder {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slide-placeholder {
      background:
        radial-gradient(circle at 75% 24%, rgba(255, 255, 255, 0.18) 0 12%, transparent 13%),
        linear-gradient(135deg, #2a2d34 0%, #17181c 50%, #5a1118 100%);
    }

    .hero-slider-controls {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      z-index: 3;
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .hero-slider-dot {
      width: 34px;
      height: 4px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.45);
      cursor: pointer;
    }

    .hero-slider-dot.active {
      background: #fff;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 32px;
    }

    .stat {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 18px;
    }

    .stat strong {
      display: block;
      font-size: 30px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat span {
      color: var(--muted);
      font-size: 14px;
    }

    .address-check-section {
      padding-top: 10px;
    }

    .address-check {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
      column-gap: 24px;
      row-gap: 14px;
      align-items: center;
      padding: 22px 0 22px 24px;
      border-radius: 32px;
      background:
        linear-gradient(135deg, #ffffff 0%, #f3f5f8 62%, #fff0f1 100%);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .address-check::before {
      content: "";
      position: absolute;
      inset: auto -80px -150px auto;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(227, 6, 19, 0.16) 0%, rgba(227, 6, 19, 0) 68%);
      pointer-events: none;
    }

    .address-check-heading {
      position: relative;
      z-index: 1;
    }

    .address-check h2 {
      margin: 0;
      max-width: 780px;
      font-size: clamp(28px, 3.2vw, 36px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      text-wrap: balance;
    }

    .partners-section {
      padding-top: 10px;
      padding-bottom: 22px;
    }

    .partners-block {
      display: flex;
      align-items: center;
      gap: 20px;
      min-width: 0;
      padding: 20px 24px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
    }

    .partners-block h2 {
      margin: 0;
      font-size: 22px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .partners-logos {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 1 1 auto;
      gap: 22px;
      min-width: 0;
      width: 100%;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: thin;
    }

    .partners-logos img {
      flex: 0 0 auto;
      width: auto;
      height: 38px;
      max-width: 150px;
      object-fit: contain;
    }

    .address-check-form {
      display: grid;
      grid-template-columns: minmax(150px, 1fr) minmax(170px, 1fr) minmax(220px, 1.25fr) auto;
      gap: 12px;
      align-items: end;
      grid-column: 1 / -1;
      padding-right: 24px;
      position: relative;
      z-index: 1;
    }

    .address-check-form .btn {
      min-width: 150px;
      min-height: 50px;
    }

    .address-check-form .input {
      min-height: 50px;
    }

    .address-check-visual {
      grid-column: 2;
      position: relative;
      z-index: 1;
      
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .address-check-visual img {
      width: min(100%, 240px);
      max-height: 210px;
      object-fit: contain;
      filter: drop-shadow(0 18px 26px rgba(17, 17, 17, 0.14));
    }

    /* На широких экранах иллюстрация не должна задавать высоту строки с заголовком. */
    @media (min-width: 1101px) {
      .address-check-heading {
        grid-column: 1 / -1;
        padding-right: 264px;
      }

      .address-check-visual {
        position: absolute;
        top: 22px;
        right: 24px;
        width: 240px;
        height: 160px;
      }

      .address-check-visual img {
        width: 100%;
        height: 100%;
        max-height: none;
      }
    }

    @media (max-width: 1100px) {
      .address-check-visual {
        display: none;
      }
    }

    .hero-side {
      display: flex;
      flex-direction: column;
      gap: 16px;
      justify-content: space-between;
      background: linear-gradient(180deg, #17181c 0%, #24272e 100%);
      color: #fff;
    }

    .mini-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 18px;
    }

    .mini-card h3,
    .mini-card p {
      margin: 0;
    }

    .mini-card p {
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
    }

    .hero-side h2 {
      margin: 0;
      font-size: 32px;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .hero-side-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .hero-side-list li {
      padding-left: 28px;
      position: relative;
      color: rgba(255,255,255,0.82);
    }

    .hero-side-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      position: absolute;
      left: 0;
      top: 7px;
    }

    .solutions-grid,
    .steps-grid,
    .benefits-grid,
    .tariffs-grid,
    .faq-grid {
      display: grid;
      gap: 18px;
    }

    .solutions-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 24px;
      box-shadow: var(--shadow);
      min-width: 0;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .card:hover {
        transform: translateY(-4px);
        border-color: #d6dae1;
        box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
      }
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: #fff1f2;
      color: var(--accent);
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 18px;
    }

    .solutions-grid .icon {
      margin: 0 auto 18px;
    }

    .solutions-grid .icon img {
      width: 30px;
      height: 30px;
      display: block;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .benefits-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .benefit {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: #fff;
      border-radius: 28px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      min-width: 0;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .benefit:hover {
      transform: translateY(-5px);
      border-color: #d6dae1;
      box-shadow: 0 20px 52px rgba(17, 17, 17, 0.12);
    }

    .benefit-visual {
      position: relative;
      aspect-ratio: 12 / 7;
      overflow: hidden;
      background: #dfefff;
    }

    .benefit-mark {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 1;
      display: grid;
      place-items: center;
      min-width: 42px;
      height: 30px;
      padding: 0 10px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      box-shadow: 0 6px 18px rgba(44, 93, 142, 0.14);
      color: #20242a;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: .04em;
    }

    .benefit-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .benefit:hover .benefit-visual img {
      transform: scale(1.035);
    }

    .benefit-content {
      min-width: 0;
      padding: 24px 26px 28px;
    }

    .benefit h3 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1.15;
    }

    .benefit p {
      margin: 0;
      color: var(--muted);
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .case-card.card {
      display: flex;
      flex-direction: column;
      min-width: 0;
      overflow: hidden;
      padding: 0;
      border-radius: 28px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .case-card:hover {
      transform: translateY(-5px);
      border-color: #d6dae1;
      box-shadow: 0 20px 52px rgba(17, 17, 17, 0.12);
    }

    .case-visual {
      aspect-ratio: 12 / 7;
      overflow: hidden;
      background: #dfefff;
    }

    .case-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .case-card:hover .case-visual img {
      transform: scale(1.035);
    }

    .case-content {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 22px 22px 24px;
    }

    .case-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.15;
    }

    .case-card p {
      margin: 0;
      color: var(--muted);
    }

    .case-points {
      display: grid;
      gap: 9px;
      margin: 20px 0 0;
      padding: 18px 0 0;
      border-top: 1px solid var(--line);
      list-style: none;
    }

    .case-points li {
      position: relative;
      padding-left: 18px;
      color: #3a4048;
      font-size: 14px;
    }

    .case-points li::before {
      content: "";
      position: absolute;
      top: 7px;
      left: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .tariffs-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .tariffs-more {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    .tariffs-more .btn {
      width: auto;
    }

    .tariff-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .tariff-tab {
      min-height: 46px;
      padding: 11px 24px;
      border: 1px solid #e3d5e6;
      border-radius: 999px;
      background: var(--surface);
      color: var(--text);
      font: inherit;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 22px rgba(112, 24, 101, 0.07);
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .tariff-tab:hover {
      transform: translateY(-2px);
      border-color: var(--accent);
    }

    .tariff-tab.active {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
      box-shadow: 0 10px 24px rgba(240, 18, 39, 0.2);
    }

    .tariff-tab:focus-visible {
      outline: 3px solid rgba(240, 18, 39, 0.25);
      outline-offset: 3px;
    }

    .tariff-panel[hidden] {
      display: none;
    }

    .tariff {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .tariff-top {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .tariff-price {
      font-size: 38px;
      line-height: 1;
      letter-spacing: -0.04em;
      margin: 18px 0 6px;
      font-weight: 800;
    }

    .tariff-price span {
      font-size: 16px;
      color: var(--muted);
      font-weight: 500;
    }

    .tariff-provider {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin: 0 0 14px;
      color: #202733;
      font-size: 15px;
      line-height: 1.35;
      font-weight: 700;
    }

    .tariff-provider span {
      flex: 0 0 auto;
      color: var(--muted);
      font-weight: 500;
    }

    .tariff-provider strong {
      min-width: 0;
      text-align: right;
    }

    .tariff ul {
      list-style: none;
      padding: 0;
      margin: 18px 0 24px;
      display: grid;
      gap: 10px;
      color: #3a4048;
    }

    .tariff ul li {
      position: relative;
      padding-left: 22px;
    }

    .tariff ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    .tariff .btn {
      margin-top: auto;
      width: 100%;
    }

    .question-cta-section {
      padding-top: 10px;
    }

    .question-cta {
      position: relative;
      min-height: 280px;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
      align-items: center;
      border-radius: 32px;
      padding: 44px 48px;
      background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.42), transparent 30%),
        linear-gradient(135deg, #5fa9ef 0%, #98c9f6 58%, #dfe5ff 100%);
      border: 1px solid rgba(255, 255, 255, 0.55);
      box-shadow: 0 18px 45px rgba(48, 112, 179, 0.18);
    }

    .question-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(72, 151, 230, 0.92) 0%, rgba(103, 174, 237, 0.74) 38%, rgba(255, 255, 255, 0) 70%);
      z-index: 1;
      pointer-events: none;
    }

    .question-cta-content {
      position: relative;
      z-index: 2;
      max-width: 560px;
      color: #fff;
    }

    .question-cta h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .question-cta p {
      margin: 16px 0 0;
      max-width: 470px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 18px;
    }

    .question-cta .btn {
      width: auto;
      margin-top: 72px;
      min-width: 240px;
      border-color: rgba(255, 255, 255, 0.16);
    }

    .question-cta-visual {
      position: absolute;
      inset: 0 0 0 auto;
      z-index: 0;
      width: 68%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
      pointer-events: none;
    }

    .question-cta-visual img {
      width: 100%;
      height: 112%;
      object-fit: contain;
      object-position: right center;
    }

    .steps-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .step-number {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: #111;
      color: #fff;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      font-weight: 800;
      font-size: 18px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field,
    .field-full {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    .field span,
    .field-full span {
      font-size: 14px;
      color: #434851;
      font-weight: 600;
    }

    .input,
    .select,
    .textarea {
      min-height: 56px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: #f8f9fb;
      padding: 0 16px;
      outline: none;
      transition: .2s ease;
    }

    .textarea {
      min-height: 120px;
      padding: 14px 16px;
      resize: vertical;
    }

    .input:focus,
    .select:focus,
    .textarea:focus {
      border-color: rgba(227, 6, 19, 0.45);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.08);
    }

    .checkbox {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--muted);
      margin-top: 12px;
    }

    .checkbox input {
      margin-top: 4px;
      accent-color: var(--accent);
    }

    .form-note,
    .result {
      font-size: 14px;
      color: var(--muted);
      margin-top: 12px;
    }

    .result {
      color: #0a7a33;
      font-weight: 600;
      display: none;
    }

    .faq-grid {
      grid-template-columns: 1fr;
    }

    .faq-item {
      border-radius: 24px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: 0;
      text-align: left;
      padding: 22px 24px;
      font-size: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
    }

    .faq-answer {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
      color: var(--muted);
    }

    .faq-item.active .faq-answer {
      padding: 0 24px 22px;
      max-height: 220px;
    }

    .faq-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #f5f6f8;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-size: 20px;
    }

    .blog-preview-section {
      padding-top: 18px;
    }

    .blog-preview-section .section-head {
      display: block;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .blog-card {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: var(--surface);
      box-shadow: var(--shadow);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      border-color: #d6dae1;
      box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
    }

    .blog-card-image {
      display: block;
      aspect-ratio: 12 / 7;
      overflow: hidden;
      background: #e9edf2;
    }

    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* В PNG-обложках есть светлая рамка по краям. Небольшое базовое
         увеличение убирает её, не меняя размеры самой карточки. */
      transform: scale(1.08);
      transform-origin: center;
      transition: transform .35s ease;
    }

    .blog-card:hover .blog-card-image img {
      /* Продолжаем увеличение от уже заполненного состояния — без рывка. */
      transform: scale(1.12);
    }

    .blog-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 12px;
      padding: 22px;
    }

    .blog-card-meta {
      align-self: flex-start;
      padding: 7px 11px;
      border-radius: 999px;
      background: #fff1f2;
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
    }

    .blog-card-title {
      display: block;
      color: var(--text);
      font-size: 22px;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .blog-card-excerpt {
      display: block;
      color: var(--muted);
      font-size: 16px;
    }

    .blog-card-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      margin-top: auto;
      color: #80858d;
      font-size: 14px;
    }

    .blog-card-link {
      display: inline-flex;
      margin-top: 2px;
      color: var(--accent);
      font-weight: 700;
    }

    .blog-more {
      display: flex;
      justify-content: center;
      margin-top: 24px;
    }

    .blog-more .btn {
      width: auto;
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .breadcrumbs a {
      color: #343941;
      font-weight: 600;
    }

    .breadcrumbs a:hover {
      color: var(--accent);
    }

    .blog-page-hero,
    .article-hero {
      padding: 34px 0 22px;
    }

    .blog-page-intro,
    .article-head {
      max-width: 860px;
    }

    .blog-page-intro h1,
    .article-head h1 {
      margin: 0;
      font-size: clamp(36px, 6vw, 64px);
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    .blog-page-intro p,
    .article-lead {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 19px;
      max-width: 760px;
    }

    .blog-page-list {
      padding-top: 18px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      margin-top: 18px;
      color: #737982;
      font-size: 15px;
    }

    .article-category {
      color: var(--accent);
      font-weight: 700;
    }

    .article-cover {
      margin-top: 24px;
      overflow: hidden;
      border-radius: 28px;
      background: #e9edf2;
      box-shadow: var(--shadow);
    }

    .article-cover img {
      width: 100%;
      aspect-ratio: 16 / 7;
      object-fit: cover;
    }

    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 820px);
      justify-content: center;
    }

    .article-content {
      color: #303640;
      font-size: 18px;
    }

    .article-content h2,
    .article-content h3 {
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.12;
    }

    .article-content h2 {
      margin: 34px 0 12px;
      font-size: 32px;
    }

    .article-content h3 {
      margin: 24px 0 10px;
      font-size: 23px;
    }

    .article-content p {
      margin: 0 0 16px;
    }

    .article-content ul,
    .article-content ol {
      margin: 0 0 18px;
      padding-left: 22px;
    }

    .article-content li + li {
      margin-top: 8px;
    }

    .article-cta {
      margin-top: 36px;
      padding: 30px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.38), transparent 32%),
        linear-gradient(135deg, #17181c 0%, #2a2d34 58%, #5a1118 100%);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .article-cta h2 {
      margin: 0;
      color: #fff;
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.05;
    }

    .article-cta p {
      margin: 12px 0 0;
      max-width: 640px;
      color: rgba(255, 255, 255, 0.82);
    }

    .article-cta .btn {
      width: auto;
      margin-top: 22px;
    }

    .related-section {
      padding-top: 18px;
    }

    .footer {
      padding: 24px 0 42px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: flex-start;
      gap: 20px;
      align-items: flex-start;
      flex-wrap: wrap;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }

    .footer-brand {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      gap: 9px;
      color: var(--text);
      font-weight: 800;
      text-decoration: none;
    }

    .footer-brand img {
      width: 32px;
      height: 32px;
    }

    .footer-legal {
      flex: 1 1 560px;
      line-height: 1.5;
    }

    .footer-legal p {
      margin: 0;
    }

    .footer-legal p + p {
      margin-top: 8px;
    }

    .footer-legal a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .footer-messenger-link {
      flex: 0 0 auto;
      align-self: center;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s ease, transform .55s ease;
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      .topbar-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px 0;
      }

      .brand {
        grid-column: 1 / -1;
      }

      .nav,
      .topbar-actions {
        display: contents;
      }

      .nav > *,
      .topbar-actions > * {
        width: 100%;
        min-width: 0;
        min-height: 40px;
        font-size: 13px;
      }

      .nav-business,
      .city-button,
      .topbar-actions .btn,
      .phone-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
      }

      .city-dropdown,
      .city-button {
        width: 100%;
      }

      .city-menu {
        width: 100%;
        min-width: 0;
        max-height: 260px;
        overflow: auto;
      }

      .hero-grid,
      .address-check {
        grid-template-columns: 1fr;
      }

      .address-check-form {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 24px;
      }

      .address-check-form .field-address {
        grid-column: 1 / -1;
      }

      .address-check-form .btn {
        grid-column: 1 / -1;
        width: 100%;
      }

      .address-check-visual {
        grid-column: auto;
        grid-row: auto;
      }

      .address-check-visual {
        min-height: 150px;
      }

      .hero-card {
        grid-template-columns: 1fr;
      }

      .hero-slider {
        min-height: 380px;
      }

      .solutions-grid,
      .steps-grid,
      .benefits-grid,
      .cases-grid,
      .tariffs-grid,
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .question-cta {
        min-height: 260px;
        padding: 34px;
      }

      .question-cta .btn {
        margin-top: 42px;
      }

      .question-cta-visual {
        width: 62%;
      }
    }

    @media (min-width: 761px) and (max-width: 1023px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .topbar-inner {
        gap: 16px;
      }

      .section {
        padding: 30px 0;
      }

      .hero h1 {
        font-size: 54px;
      }

      .tariffs-grid,
      .solutions-grid,
      .steps-grid,
      .benefits-grid,
      .cases-grid,
      .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) and (max-width: 1439px) {
      .container {
        width: min(100% - 48px, var(--container));
      }

      .topbar-inner {
        gap: 16px;
      }

      .nav {
        gap: 16px;
      }

      .hero h1 {
        font-size: clamp(52px, 5vw, 64px);
      }

      .solutions-grid,
      .steps-grid,
      .benefits-grid,
      .cases-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (min-width: 1440px) {
      .section {
        padding: 42px 0;
      }

      .hero-slider {
        min-height: 500px;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 20px, var(--container));
      }

      .section {
        padding: 26px 0;
      }

      .hero-card,
      .hero-side,
      .address-check {
        padding: 24px;
      }

      .card {
        padding: 20px;
        border-radius: 22px;
      }

      .hero-stats,
      .solutions-grid,
      .steps-grid,
      .benefits-grid,
      .cases-grid,
      .tariffs-grid,
      .blog-grid,
      .address-check-form,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .tariff-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .tariff-tab {
        padding-inline: 12px;
        min-height: 48px;
      }

      .address-check {
        gap: 14px;
        padding: 18px;
      }

      .address-check-form {
        padding-right: 0;
      }

      .address-check h2 {
        font-size: 28px;
      }

      .partners-block {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 18px;
      }

      .question-cta {
        display: block;
        min-height: 0;
        padding: 24px;
        border-radius: 24px;
      }

      .question-cta::before {
        background: linear-gradient(180deg, rgba(72, 151, 230, 0.9) 0%, rgba(103, 174, 237, 0.64) 48%, rgba(255, 255, 255, 0) 100%);
      }

      .question-cta h2 {
        font-size: 30px;
      }

      .question-cta p {
        font-size: 16px;
      }

      .question-cta .btn {
        width: 100%;
        min-width: 0;
        margin-top: 24px;
      }

      .question-cta-visual {
        position: relative;
        inset: auto;
        width: calc(100% + 48px);
        height: 230px;
        margin: 20px -24px -24px;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
      }

      .question-cta-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
      }

      .address-check-visual {
        min-height: 130px;
        justify-content: center;
      }

      .address-check-visual img {
        max-height: 160px;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .topbar-inner {
        min-height: 68px;
      }

      .brand img {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
      }

      .topbar-actions .btn {
        padding: 0 10px;
        min-height: 40px;
      }

      .phone-link {
        display: inline-flex;
      }

      .hero h1 {
        font-size: 40px;
        letter-spacing: -0.035em;
      }

      .hero-slider {
        min-height: 320px;
        border-radius: 20px;
      }

      .hero-slide h2 {
        padding: 20px 20px 48px;
        font-size: 28px;
      }

      .faq-question {
        font-size: 18px;
        padding: 18px 18px;
      }

      .blog-card {
        border-radius: 22px;
      }

      .blog-card-body {
        padding: 18px;
      }

      .blog-card-title {
        font-size: 20px;
      }

      .blog-more .btn,
      .tariffs-more .btn,
      .article-cta .btn {
        width: 100%;
      }

      .blog-page-hero,
      .article-hero {
        padding-top: 24px;
      }

      .blog-page-intro h1,
      .article-head h1 {
        font-size: 38px;
      }

      .article-lead,
      .blog-page-intro p,
      .article-content {
        font-size: 16px;
      }

      .article-cover {
        border-radius: 22px;
      }

      .article-cover img {
        aspect-ratio: 4 / 3;
      }

      .article-content h2 {
        font-size: 26px;
      }

      .article-content h3 {
        font-size: 21px;
      }

      .article-cta {
        padding: 22px;
        border-radius: 22px;
      }

      .faq-item.active .faq-answer {
        padding: 0 18px 18px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-legal {
        flex-basis: auto;
      }
    }

    @media (max-width: 479px) {
      .container {
        width: min(100% - 16px, var(--container));
      }

      .topbar-inner {
        min-height: 64px;
        gap: 8px;
      }

      .topbar-actions {
        gap: 8px;
      }

      .topbar-actions .btn {
        min-height: 38px;
        padding: 0 8px;
        font-size: 12px;
      }

      .nav > *,
      .topbar-actions > * {
        min-height: 38px;
        font-size: 12px;
      }

      .hero {
        padding-top: 14px;
      }

      .hero-card,
      .hero-side,
      .address-check {
        padding: 18px;
      }

      .hero h1 {
        font-size: 34px;
        line-height: 1;
      }

      .hero-lead,
      .question-cta p {
        font-size: 16px;
      }

      .hero-slider {
        min-height: 280px;
      }

      .hero-slide h2 {
        font-size: 24px;
      }

      .section-head h2,
      .address-check h2 {
        font-size: 26px;
      }

      .tariff-price {
        font-size: 32px;
      }

      .modal {
        padding: 10px;
        align-items: flex-end;
      }

      .modal-card {
        padding: 22px 18px;
        border-radius: 22px;
        max-height: 90vh;
      }

      .input,
      .select,
      .textarea,
      .btn {
        min-height: 52px;
      }

      .faq-question {
        align-items: flex-start;
      }
    }

    @media (max-width: 374px) {
      .container {
        width: min(100% - 12px, var(--container));
      }

      .topbar-actions .btn {
        display: none;
      }

      .hero h1 {
        font-size: 30px;
      }

      .hero-slider {
        min-height: 250px;
      }

      .hero-slide h2 {
        font-size: 22px;
        padding: 16px 16px 44px;
      }

      .card,
      .blog-card-body,
      .case-content,
      .benefit-content {
        padding: 18px;
      }

      .tariff-tabs {
        grid-template-columns: 1fr;
      }

      .partners-logos img {
        height: 32px;
        max-width: 130px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
