:root {
      --bg: #f4f6fb;
      --surface: #ffffff;
      --surface-soft: #f8f9fc;
      --text: #1d2433;
      --muted: #5b6477;
      --primary: #294d9b;
      --primary-dark: #213d7b;
      --accent: #d9a761;
      --border: #e6e9f2;
      --ok: #1f7a4c;
      --shadow: 0 14px 30px rgba(26, 39, 68, 0.08);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-sm: 10px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Inter", Roboto, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .container {
      width: min(var(--container), calc(100%));
      margin-inline: auto;
    }

    .breadcrumbs {
      display: flex;
      justify-content: center;
      margin: 20px 0;
      margin-bottom: 16px;
    }

    .breadcrumbs ol {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .breadcrumbs li:not(:last-child)::after {
      margin-left: 8px;
    }

    .topbar {
      background: #0f1b33;
      color: #f5f7ff;
      font-size: 14px;
    }

    .topbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 0;
      flex-wrap: wrap;
    }

    .topbar__phones {
      display: flex;
      gap: 14px;
      font-weight: 600;
      flex-wrap: wrap;
      justify-content: space-around;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      font-size: 13px;
    }

    .header {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      top: 0;
      z-index: 20;
      backdrop-filter: blur(6px);
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand__logo {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, #5e7fca 100%);
      color: white;
      display: grid;
      place-items: center;
      font-weight: 700;
      box-shadow: var(--shadow);
    }

    .brand__title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .brand__subtitle {
      margin-top: 2px;
      color: var(--muted);
      font-size: 13px;
    }

    .nav {
      display: flex;
      gap: 18px;
      align-items: center;
      color: #33405d;
      font-weight: 500;
    }

    .btn {
      border: none;
      border-radius: 999px;
      padding: 12px 18px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn--primary {
      background: var(--primary);
      color: white;
      margin-top: 10px;
    }

    .btn--primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: var(--primary);
      color: white;
      margin-top: 10px;
    }

    .btn--outline:hover {
      transform: translateY(-1px);
    }

    .btn--ghost {
      background: #edf1fa;
      color: #22314f;
    }

    .btn--ghost:hover {
      background: #e2e8f7;
    }

    .hero {
      padding: 0;
    }

    .hero__card {
      background: radial-gradient(1200px 600px at 100% -20%, rgba(41, 77, 155, 0.17), transparent 60%), var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 38px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
      width: 100%;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(28px, 5vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.4px;
    }

    .hero p {
      font-size: 16px;
      color: #000000;
      max-width: 640px;
    }

    .hero__actions {
      margin-top: 20px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero__meta {
      margin-top: 20px;
      color: var(--muted);
      font-size: 14px;
    }

    .hero__panel {
      background: var(--surface-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 22px;
    }

    .hero__panel h3 {
      margin: 0;
      font-size: 20px;
    }

    .hero__panel-list {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      color: #000000;
    }

    .hero__panel-list li::before {
      content: "•";
      color: var(--primary);
      margin-right: 8px;
    }

    .section {
      padding: 30px 0;
    }

    .section__head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 12px;
      margin-bottom: 18px;
    }

    .section h2 {
      margin: 0;
      font-size: clamp(22px, 4vw, 32px);
    }

    .section p.lead {
      margin: 10px 0 0;
      color: var(--muted);
      max-width: 1200px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px;
      padding-right: 110px;
      min-height: 160px;
      box-shadow: 0 8px 20px rgba(20, 34, 63, 0.05);
      position: relative;
    }

    .card__icon {
      position: absolute;
      right: 0;
      top: 50%;
      width: 125px;
      height: 125px;
      object-fit: contain;
      transform: translateY(-50%);
    }

    .card .label,
    .card h3,
    .card p {
      position: relative;
      z-index: 1;
    }

    .card h3 {
      margin: 0;
      font-size: 19px;
    }

    .card p {
      margin: 10px 0 0;
      color: #000000;
      font-size: 15px;
    }

    .main-container {
      width: 100%;
      max-width: 12400px;
      margin-inline: auto;
      padding-inline: 20px;
      box-sizing: border-box;
    }

    .label {
      display: inline-flex;
      align-items: center;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      background: #eef2fe;
      color: #364f8f;
      margin-bottom: 12px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 16px;
    }

    .step__num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #edf2ff;
      color: var(--primary);
      font-weight: 700;
      display: grid;
      place-items: center;
      margin-bottom: 10px;
    }

    .promo {
      margin-top: 24px;
      background: linear-gradient(130deg, #243862 0%, #294d9b 75%);
      color: #f5f7ff;
      border-radius: var(--radius-lg);
      padding: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .promo p {
      margin: 8px 0 0;
      color: rgba(245, 247, 255, 0.88);
    }

    .contact {
      display: grid;
      grid-template-columns: 0.6fr 1.4fr;
      gap: 18px;
    }

    .contact__item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px;
    }

    .contact__item h3 {
      margin-top: 0;
    }

    .phone {
      font-size: 24px;
      font-weight: 700;
      color: #1f3568;
      margin: 8px 0;
    }

    .footer {
      margin-top: 34px;
      border-top: 1px solid var(--border);
      background: #f0f3fb;
    }

    .footer__inner {
      padding: 22px 0;
      color: #475471;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .page {
      padding: 2px 0 0;
    }

    .page__layout {
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .sidebar {
      width: 100%;
      display: grid;
      gap: 16px;
    }

    .page__main {
      min-width: 0;
    }

    .price-section {
      padding: 30px 0 0;
    }

    .price-table-wrap {
      background: var(--surface, #ffffff);
      border: 1px solid var(--border, #e6e9f2);
      border-radius: var(--radius-md, 14px);
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(20, 34, 63, 0.05);
    }

    .price-table {
      width: 100%;
      border-collapse: collapse;
    }

    .price-table th,
    .price-table td {
      padding: 16px 18px;
      text-align: left;
      border-bottom: 1px solid var(--border, #e6e9f2);
    }

    .price-table th {
      background: #f0f3fb;
      color: var(--text, #1d2433);
      font-weight: 700;
    }

    .price-table td {
      color: #000000;
    }

    .price-table tr:last-child td {
      border-bottom: none;
    }

    .price-table td:last-child {
      font-weight: 700;
      color: var(--primary, #294d9b);
      white-space: nowrap;
    }

    .products-section {
      padding: 30px 0;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .product-card {
      background: var(--surface, #ffffff);
      border: 1px solid var(--border, #e6e9f2);
      border-radius: var(--radius-md, 14px);
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(20, 34, 63, 0.05);
      transition: 0.2s ease;
    }

    a.btn.btn--primary {
      color: #fff;
    }

    a.btn.btn--primary:hover {
      color: #fff;
    }

    .product-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow, 0 14px 30px rgba(26, 39, 68, 0.08));
    }

    .product-card a {
      display: block;
      color: inherit;
      text-decoration: none;
    }

    .product-card a:hover {
      text-decoration: underline;
    }

    .product-card__image {
      width: 100%;
      aspect-ratio: 2 / 2.3;
      background: #f0f3fb;
      overflow: hidden;
    }

    .product-card__image img {
      aspect-ratio: 2 / 2.3;
      display: block;
      object-fit: cover;
    }

    .product-card__content {
      padding: 16px;
    }

    .product-card__content h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.25;
      color: var(--text, #1d2433);
    }

    .product-card__content p {
      margin: 10px 0 0;
      color: #000000;
      font-size: 14px;
    }

    .product-card__price {
      margin-top: 14px;
      font-weight: 700;
      color: var(--primary, #294d9b);
    }

    .products-text {
      margin-top: 20px;
      margin-bottom: 20px;
      background: var(--surface, #ffffff);
      border: 1px solid var(--border, #e6e9f2);
      border-radius: var(--radius-md, 14px);
      padding: 28px;
      box-shadow: 0 8px 20px rgba(20, 34, 63, 0.05);
    }

    .products-text h2 {
      margin: 0 0 14px;
      font-size: 26px;
      line-height: 1.25;
      color: var(--text, #1d2433);
    }

    .products-text img {
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .products-text a {
      color: #1a73e8;
      text-decoration: none;
      transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    }

    .products-text a:visited {
      color: #6c3483;
    }

    .products-text a:hover {
      color: #0b4d8c;
      text-decoration: underline;
    }

    .products-text a:active {
      color: #e67e22;
    }


    .products-text p {
      margin: 0 0 14px;
      color: #000000;
      font-size: 16px;
      line-height: 1.65;
    }

    .products-text p:last-of-type {
      margin-bottom: 0;
    }

    .products-text__actions {
      margin-top: 22px;
    }

    .products-text__actions a {
      color: #ffffff;
    }

    .products-text__actions a:hover {
      color: #ffffff;
    }

    .transport-row {
      display: flex;
      align-items: center;
      gap: 24px;
      margin: 20px 0;
    }

    .transport-row__table {
      flex: 1;
    }

    .transport-row__image {
      flex: 0 0 auto;
    }

    .transport-row__image img {
      width: 300px;
      height: auto;
      border-radius: var(--radius-md, 14px);
    }

    @media (max-width: 980px) {
      .hero__card {
        grid-template-columns: 1fr;
      }

      .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact {
        grid-template-columns: 1fr;
      }

      .nav {
        display: none;
      }

      .page__layout {
        grid-template-columns: 1fr;
      }

      .page__main {
        order: 1;
      }

      .sidebar {
        order: 2;
        display: none;
      }

      .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .main-container,
      .site-padding {
        padding-inline: 16px;
      }
    }

    @media (max-width: 620px) {
      .products-grid {
        grid-template-columns: 1fr;
      }

      .products-text {
        padding: 20px;
      }

      .products-text h2 {
        font-size: 22px;
      }

      .price-table th,
      .price-table td {
        padding: 12px;
        font-size: 14px;
      }

      .transport-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .transport-row__image img {
        width: 100%;
      }

      .hero__card {
        padding: 24px;
      }

      .grid {
        grid-template-columns: 1fr;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .topbar__inner {
        justify-content: center;
        text-align: center;
      }

      .header__inner {
        padding: 12px 0;
      }
    }

    @media (max-width: 480px) {
      .main-container,
      .site-padding {
        padding-inline: 12px;
      }
    }
