:root {
      --ink: #17212b;
      --muted: #64717f;
      --line: #dce4ea;
      --paper: #f7f9fb;
      --white: #ffffff;
      --brand: #f0b429;
      --brand-dark: #b97812;
      --accent: #176c7a;
      --deep: #243444;
      --ok: #1d8a5a;
      --shadow: 0 20px 60px rgba(23, 33, 43, .12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.5;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .metrika-pixel {
      position: absolute;
      left: -9999px;
    }

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

    .wrap {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      background: var(--deep);
      color: #dce8ef;
      font-size: 14px;
    }

    .topbar .wrap {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .topbar strong {
      color: var(--white);
      font-weight: 700;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, .94);
      border-bottom: 1px solid rgba(220, 228, 234, .9);
      backdrop-filter: blur(14px);
    }

    .header .wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      width: 240px;
      min-width: 180px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
      color: #344555;
      font-size: 15px;
      white-space: nowrap;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(23, 33, 43, .16);
    }

    .btn-primary {
      background: var(--brand);
      color: #1d2328;
    }

    .btn-dark {
      background: var(--deep);
      color: var(--white);
    }

    .btn-ghost {
      border-color: rgba(255, 255, 255, .5);
      color: var(--white);
    }

    .hero {
      position: relative;
      min-height: 650px;
      display: grid;
      align-items: stretch;
      color: var(--white);
      background: var(--deep);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(23, 33, 43, .94) 0%, rgba(23, 33, 43, .78) 45%, rgba(23, 33, 43, .18) 100%),
        url("../images/02-pic-8.jpg") center right / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 90px;
      background: linear-gradient(180deg, rgba(247, 249, 251, 0), var(--paper));
    }

    .warehouse-hero::before {
      background:
        linear-gradient(90deg, rgba(23, 33, 43, .94) 0%, rgba(23, 33, 43, .78) 45%, rgba(23, 33, 43, .18) 100%),
        url("../images/14-fd76c58e-650e-4feb-96bc-9ed17c54aa8d.jpeg") center right / cover no-repeat;
    }

    .hero .wrap {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 650px) 330px;
      align-items: center;
      gap: 54px;
      padding: 72px 0 110px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: #ffe4a3;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      background: var(--brand);
      border-radius: 2px;
    }

    h1 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(42px, 6vw, 76px);
      line-height: .98;
      letter-spacing: 0;
    }

    .lead {
      max-width: 610px;
      margin: 24px 0 0;
      color: #d8e2e8;
      font-size: 21px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 44px;
    }

    .fact {
      min-height: 116px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .18);
      background: rgba(255, 255, 255, .08);
      border-radius: 8px;
    }

    .fact strong {
      display: block;
      color: var(--white);
      font-size: 28px;
      line-height: 1;
    }

    .fact span {
      display: block;
      margin-top: 10px;
      color: #dce6ec;
      font-size: 14px;
    }

    .quick-card {
      align-self: end;
      padding: 26px;
      background: var(--white);
      color: var(--ink);
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .quick-card h2 {
      margin: 0 0 14px;
      font-size: 24px;
    }

    .quick-card p {
      margin: 0 0 20px;
      color: var(--muted);
    }

    .quick-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
      border-top: 1px solid var(--line);
      font-size: 15px;
    }

    .quick-row strong {
      text-align: right;
    }

    .section {
      padding: 86px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      max-width: 680px;
      margin: 0;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.06;
      letter-spacing: 0;
    }

    .section-head p {
      max-width: 420px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

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

    .service {
      min-height: 360px;
      display: grid;
      align-content: end;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background: var(--deep);
      box-shadow: 0 16px 40px rgba(23, 33, 43, .12);
    }

    .service img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .78;
      transition: transform .35s ease;
    }

    .service:hover img {
      transform: scale(1.04);
    }

    .service::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(23, 33, 43, .04), rgba(23, 33, 43, .86));
    }

    .service-content {
      position: relative;
      z-index: 1;
      padding: 24px;
      color: var(--white);
    }

    .service h3 {
      margin: 0 0 10px;
      font-size: 27px;
      line-height: 1.1;
    }

    .service p {
      margin: 0;
      color: #e5edf1;
      font-size: 15px;
    }

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

    .detail-card {
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 14px 34px rgba(23, 33, 43, .08);
    }

    .detail-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .detail-card h3 {
      margin: 22px 22px 8px;
      font-size: 24px;
      line-height: 1.15;
    }

    .detail-card p {
      margin: 0 22px 24px;
      color: var(--muted);
    }

    .strip {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
    }

    .benefit {
      min-height: 210px;
      padding: 28px;
      background: var(--white);
    }

    .benefit .num {
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      border-radius: 50%;
      background: #e9f2f4;
      color: var(--accent);
      font-weight: 800;
    }

    .benefit h3 {
      margin: 0 0 10px;
      font-size: 21px;
    }

    .benefit p {
      margin: 0;
      color: var(--muted);
    }

    .process {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
    }

    .process-media {
      min-height: 460px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--deep);
    }

    .process-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 18px;
      padding: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .step b {
      display: inline-flex;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      background: var(--brand);
      color: #1d2328;
      font-size: 18px;
    }

    .step h3 {
      margin: 0 0 6px;
      font-size: 20px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-auto-rows: 230px;
      gap: 12px;
    }

    .gallery figure {
      margin: 0;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background: #dde5ea;
    }

    .gallery figure:nth-child(1),
    .gallery figure:nth-child(6) {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery figcaption {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 9px 12px;
      border-radius: 6px;
      background: rgba(23, 33, 43, .78);
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
    }

    .cta {
      background: var(--deep);
      color: var(--white);
      overflow: hidden;
    }

    .cta .wrap {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 38px;
      align-items: center;
    }

    .cta h2 {
      margin: 0;
      font-size: clamp(34px, 4.5vw, 58px);
      line-height: 1.04;
    }

    .cta p {
      max-width: 620px;
      margin: 18px 0 28px;
      color: #d7e2e8;
      font-size: 18px;
    }

    .contact-panel {
      padding: 28px;
      background: var(--white);
      color: var(--ink);
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .contact-panel h3 {
      margin: 0 0 18px;
      font-size: 25px;
    }

    .contact-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 17px 0;
      border-top: 1px solid var(--line);
    }

    .contact-link span {
      color: var(--muted);
      font-size: 14px;
    }

    .contact-link strong {
      font-size: 18px;
      text-align: right;
    }

    .footer {
      padding: 28px 0;
      background: #17212b;
      color: #aebcc8;
      font-size: 14px;
    }

    .footer .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .footer img {
      width: 190px;
      padding: 8px 10px;
      background: var(--white);
      border-radius: 6px;
    }

    .footer a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .policy-page {
      padding: 70px 0 90px;
      background: var(--paper);
    }

    .policy {
      max-width: 920px;
      padding: 42px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .policy .eyebrow {
      color: var(--brand-dark);
    }

    .policy h1 {
      margin: 0 0 24px;
      color: var(--ink);
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.08;
    }

    .policy h2 {
      margin: 34px 0 12px;
      color: var(--deep);
      font-size: 24px;
      line-height: 1.2;
    }

    .policy p,
    .policy li {
      color: #344555;
      font-size: 17px;
    }

    .policy ul {
      margin: 10px 0 0;
      padding-left: 22px;
    }

    .policy li + li {
      margin-top: 8px;
    }

    .policy-list {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 1px;
      margin: 18px 0 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--line);
    }

    .policy-list dt,
    .policy-list dd {
      margin: 0;
      padding: 16px;
      background: var(--white);
      color: #344555;
      font-size: 16px;
    }

    .policy-list dt {
      color: var(--deep);
      font-weight: 700;
    }

    .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: 18px;
      z-index: 50;
      width: min(1120px, calc(100% - 32px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 18px 20px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 18px 50px rgba(23, 33, 43, .22);
      transform: translateX(-50%);
    }

    .cookie-banner[hidden] {
      display: none;
    }

    .cookie-banner p {
      margin: 0;
      color: #344555;
      font-size: 15px;
    }

    .cookie-banner a {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-banner .btn {
      min-width: 86px;
      flex: 0 0 auto;
    }

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

      .hero .wrap,
      .cta .wrap,
      .process {
        grid-template-columns: 1fr;
      }

      .quick-card {
        align-self: auto;
        max-width: 520px;
      }

      .services,
      .benefits,
      .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .topbar .wrap,
      .header .wrap,
      .section-head,
      .footer .wrap {
        align-items: flex-start;
        flex-direction: column;
      }

      .header .wrap {
        min-height: 104px;
        padding: 16px 0;
        gap: 14px;
      }

      .logo {
        width: 210px;
      }

      .hero {
        min-height: auto;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(23, 33, 43, .92) 0%, rgba(23, 33, 43, .8) 64%, rgba(23, 33, 43, .22) 100%),
          url("../images/02-pic-8.jpg") center top / cover no-repeat;
      }

      .warehouse-hero::before {
        background:
          linear-gradient(180deg, rgba(23, 33, 43, .92) 0%, rgba(23, 33, 43, .8) 64%, rgba(23, 33, 43, .22) 100%),
          url("../images/14-fd76c58e-650e-4feb-96bc-9ed17c54aa8d.jpeg") center top / cover no-repeat;
      }

      .hero .wrap {
        padding: 54px 0 82px;
      }

      .lead {
        font-size: 18px;
      }

      .hero-facts,
      .services,
      .benefits,
      .detail-grid,
      .gallery {
        grid-template-columns: 1fr;
      }

      .gallery {
        grid-auto-rows: 260px;
      }

      .gallery figure:nth-child(1),
      .gallery figure:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
      }

      .section {
        padding: 60px 0;
      }

      .service,
      .process-media {
        min-height: 330px;
      }

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

      .contact-link {
        align-items: flex-start;
        flex-direction: column;
      }

      .contact-link strong {
        text-align: left;
      }

      .policy {
        padding: 28px 20px;
      }

      .policy-list {
        grid-template-columns: 1fr;
      }

      .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        bottom: 12px;
      }

      .cookie-banner .btn {
        width: 100%;
      }
    }
