:root {
  --dark: #03101d;
  --body-bg: #06111d;
  --orange: #ff8a1f;
  --orange-soft: #f59a35;
  --white: #ffffff;
  --font-main: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
  background: var(--body-bg);
  color: var(--white);
  font-family: var(--font-main);
}

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-pan {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.025) translate(1%, -1%);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(255, 138, 31, 0.34);
  }

  50% {
    box-shadow: 0 16px 36px rgba(255, 138, 31, 0.48);
  }
}

.warehouse-hero {
  position: relative;
  width: 100%;
  height: clamp(454px, 44.34vw, 760px);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #101b26;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(4, 18, 33, 0.68) 0%,
      rgba(4, 18, 33, 0.46) 30%,
      rgba(4, 18, 33, 0.18) 58%,
      rgba(4, 18, 33, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 18, 33, 0.12) 0%,
      rgba(4, 18, 33, 0.04) 44%,
      rgba(4, 18, 33, 0.46) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 24px 44px 34px;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 42px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  gap: 28px;
  min-width: 0;
  margin-left: 36px;
}

.main-nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  width: 112px;
  height: 36px;
  background: var(--orange);
  box-shadow: 0 8px 22px rgba(255, 138, 31, 0.34);
  font-size: 11px;
}

.hero-content {
  margin-top: clamp(62px, 6.4vw, 92px);
  max-width: 520px;
}

.temperature-label {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.35px;
}

.hero-content h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 5.6vw, 82px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 7px 18px rgba(0, 0, 0, 0.34);
}

.hero-benefits {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: clamp(19px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.benefit-icon,
.download-icon,
.secondary-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.3;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.button-primary {
  width: 178px;
  height: 50px;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(255, 138, 31, 0.36);
  font-size: 14px;
}

.button-primary:hover,
.button-small:hover {
  box-shadow: 0 15px 30px rgba(255, 138, 31, 0.44);
}

.button-secondary {
  width: 220px;
  height: 50px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(6, 18, 30, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.download-icon,
.secondary-icon {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.feature-card {
  position: absolute;
  top: clamp(130px, 12.7vw, 150px);
  right: clamp(54px, 4.2vw, 70px);
  width: clamp(231px, 18vw, 250px);
  height: 282px;
  padding: 17px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 20, 31, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.feature-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 11px;
  align-items: flex-start;
}

.feature-item + .feature-item {
  margin-top: 10px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  margin-top: 1px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-item h2 {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.28px;
}

.feature-item p {
  margin: 3px 0 0;
  color: var(--white);
  font-size: 10.4px;
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 1120px) {
  .hero-inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .main-nav {
    gap: 13px;
    margin-left: 18px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .phone-link {
    font-size: 13px;
  }

  .feature-card {
    right: 54px;
    width: 231px;
  }
}

@media (max-width: 920px) {
  .hero-bg img {
    object-position: 64% 46%;
  }

  .hero-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 8px;
  }

  .hero-content {
    margin-top: 76px;
  }

  .feature-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 360px);
    margin-top: 44px;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 24px 22px 38px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }
}

.warehouse-about {
  width: 100%;
  background: #ffffff;
  color: #111827;
  font-family: "Inter", "Manrope", var(--font-main);
}

.warehouse-about,
.warehouse-about * {
  box-sizing: border-box;
}

.warehouse-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px 16px;
}

.warehouse-about__title {
  max-width: 470px;
  margin: 0 0 10px;
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.25px;
  text-transform: uppercase;
  white-space: nowrap;
}

.warehouse-about__description {
  max-width: 455px;
  margin: 0 0 18px;
  color: #1f2933;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.48;
}

.warehouse-about__description br {
  display: none;
}

.warehouse-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 18px;
  row-gap: 15px;
}

.warehouse-about__stat {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  min-width: 0;
}

.warehouse-about__icon {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  fill: none;
  stroke: #d9a24a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.warehouse-about__number {
  margin: 0 0 3px;
  color: #d9a24a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.25px;
  white-space: nowrap;
}

.warehouse-about__stat-text {
  margin: 0;
  color: #111827;
  font-size: 11.2px;
  font-weight: 500;
  line-height: 1.32;
}

.warehouse-about__gallery {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding-top: 0;
}

.warehouse-about__gallery-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 9px;
  align-items: stretch;
}

.warehouse-about__gallery picture {
  display: block;
  min-width: 0;
}

.warehouse-about__image {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 0;
}

.warehouse-about__image--main {
  height: 178px;
  border-radius: 8px;
}

.warehouse-about__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 7px;
}

.warehouse-about__image--thumb {
  height: 58px;
  border-radius: 8px;
}

.warehouse-about__video-side {
  display: block;
  width: 100%;
  height: 243px;
  border: 0;
  border-radius: 8px;
  background: #101b26;
  object-fit: cover;
}

@media (max-width: 900px) {
  .warehouse-about__container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
  }

  .warehouse-about__description {
    max-width: 620px;
  }

  .warehouse-about__title {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .warehouse-about__title {
    font-size: 23px;
    line-height: 1.08;
    white-space: normal;
  }

  .warehouse-about__description {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .warehouse-about__stats {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 22px;
  }

  .warehouse-about__number {
    font-size: 17px;
  }

  .warehouse-about__stat-text {
    font-size: 11.5px;
  }

  .warehouse-about__image--main {
    height: 195px;
  }

  .warehouse-about__gallery-main {
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .warehouse-about__image--thumb {
    height: 78px;
  }

  .warehouse-about__video-side {
    height: 280px;
  }
}

@media (max-width: 420px) {
  .warehouse-about__stats {
    grid-template-columns: 1fr;
  }
}

    .infrastructure-benefits {
      width: 100%;
      background: #111c27;
      color: #ffffff;
      font-family: "Inter", "Manrope", "Montserrat", Arial, sans-serif;
    }

    .infrastructure-benefits,
    .infrastructure-benefits * {
      box-sizing: border-box;
    }

    .infrastructure-benefits__container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 18px 32px 18px;
    }

    .infrastructure-benefits__title {
      margin: 0 0 18px;
      color: #ffffff;
      font-size: 19px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.2px;
      text-transform: uppercase;
    }

    .infrastructure-benefits__grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      align-items: start;
    }

    .infrastructure-benefits__item {
      position: relative;
      display: grid;
      grid-template-columns: 28px 1fr;
      column-gap: 10px;
      align-items: start;
      min-width: 0;
    }

    .infrastructure-benefits__item + .infrastructure-benefits__item::before {
      content: "";
      position: absolute;
      top: 0;
      left: -9px;
      width: 1px;
      height: 62px;
      background: rgba(255, 255, 255, 0.1);
    }

    .infrastructure-benefits__icon {
      width: 28px;
      height: 28px;
      color: #ff8a1f;
    }

    .infrastructure-benefits__icon svg {
      display: block;
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .infrastructure-benefits__content h3 {
      margin: 0 0 5px;
      color: #ffffff;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.25;
    }

    .infrastructure-benefits__content p {
      max-width: 145px;
      margin: 0;
      color: #e2e8f0;
      font-size: 10px;
      font-weight: 500;
      line-height: 1.45;
    }

    @media (max-width: 1000px) {
      .infrastructure-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
      }

      .infrastructure-benefits__item::before {
        display: none;
      }
    }

    @media (max-width: 700px) {
      .infrastructure-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .infrastructure-benefits__container {
        padding: 28px 18px;
      }

      .infrastructure-benefits__title {
        font-size: 18px;
      }

      .infrastructure-benefits__grid {
        grid-template-columns: 1fr;
      }

      .infrastructure-benefits__item {
        grid-template-columns: 32px 1fr;
      }

      .infrastructure-benefits__icon {
        width: 32px;
        height: 32px;
      }

      .infrastructure-benefits__content h3 {
        font-size: 13px;
      }

      .infrastructure-benefits__content p {
        max-width: none;
        font-size: 11px;
      }
    }

.services-section {
  width: 100%;
  scroll-margin-top: 24px;
  background: #fafafa;
  color: #111827;
  font-family: "Inter", "Manrope", var(--font-main);
}

.services-section,
.services-section * {
  box-sizing: border-box;
}

.services-section__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px 26px;
}

.services-section__title {
  margin: 0 0 16px;
  color: #111827;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.services-section__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.services-section__card {
  min-height: 176px;
  height: auto;
  padding: 18px 16px 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.services-section__card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 162, 74, 0.22);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.services-section__icon {
  width: 32px;
  height: 32px;
  color: #d9a24a;
}

.services-section__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-section__card-title {
  margin: 13px 0 9px;
  color: #111827;
  font-size: 13.4px;
  font-weight: 800;
  line-height: 1.34;
}

.services-section__card-text {
  margin: 0;
  color: #273241;
  font-size: 11.4px;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .services-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .services-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .services-section__container {
    padding: 24px 16px;
  }

  .services-section__title {
    font-size: 19px;
  }

  .services-section__grid {
    grid-template-columns: 1fr;
  }

  .services-section__card {
    min-height: 0;
    padding: 20px;
  }

  .services-section__icon {
    width: 34px;
    height: 34px;
  }
}

.warehouse-bottom {
  width: 100%;
  background: #f5f7fa;
  color: #111827;
  font-family: "Inter", "Manrope", var(--font-main);
}

.warehouse-bottom,
.warehouse-bottom * {
  box-sizing: border-box;
}

.warehouse-bottom__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px 12px;
}

.warehouse-bottom__title {
  margin: 0 0 20px;
  color: #111827;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.warehouse-bottom__audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.warehouse-bottom__audience-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 11px;
  align-items: center;
  min-width: 0;
}

.warehouse-bottom__audience-icon {
  width: 32px;
  height: 32px;
  color: #111827;
}

.warehouse-bottom__audience-icon svg,
.warehouse-bottom__benefit-icon svg,
.warehouse-bottom__phone-icon svg,
.warehouse-bottom__brand-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.warehouse-bottom__audience-icon svg {
  stroke-width: 1.9;
}

.warehouse-bottom__audience-text {
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
}

.warehouse-bottom__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  padding: 24px 32px;
  border-radius: 11px;
  background: #101b26;
  color: #ffffff;
  overflow: hidden;
}

.warehouse-bottom__cta-title {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.warehouse-bottom__cta-text {
  max-width: 470px;
  margin: 0 0 20px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.warehouse-bottom__benefits {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 32px;
  align-items: start;
}

.warehouse-bottom__benefit {
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 10px;
  align-items: center;
  color: #f8fafc;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
}

.warehouse-bottom__benefit-icon {
  width: 26px;
  height: 26px;
  color: #ff8a1f;
}

.warehouse-bottom__benefit-icon svg {
  stroke-width: 1.9;
}

.warehouse-bottom__cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.warehouse-bottom__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #ff8a1f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.warehouse-bottom__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 138, 31, 0.25);
}

.warehouse-bottom__button:active {
  transform: translateY(0);
}

.warehouse-bottom__phone {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 800;
}

.warehouse-bottom__phone-icon {
  width: 23px;
  height: 23px;
  color: #ff8a1f;
}

.warehouse-bottom__phone-icon svg {
  stroke-width: 2.2;
}

.warehouse-bottom__footer {
  display: grid;
  grid-template-columns: 170px minmax(290px, 1.5fr) 125px minmax(135px, 0.8fr) 160px;
  gap: 16px;
  align-items: center;
  padding: 0 6px;
  color: #374151;
}

.warehouse-bottom__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.warehouse-bottom__brand-icon {
  width: 38px;
  height: 38px;
  color: #d9a24a;
}

.warehouse-bottom__brand-icon svg {
  stroke-width: 1.7;
}

.warehouse-bottom__brand-name {
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.warehouse-bottom__brand-subtitle {
  margin-top: 4px;
  color: #111827;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.warehouse-bottom__footer-text {
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.warehouse-bottom__footer-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.warehouse-bottom__footer-phones a {
  color: inherit;
  text-decoration: none;
}

.warehouse-bottom__footer-phones a:hover {
  color: #ff8a1f;
}

.warehouse-bottom__footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: end;
  gap: 5px;
}

.warehouse-bottom__footer-links a {
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1000px) {
  .warehouse-bottom__audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .warehouse-bottom__cta {
    grid-template-columns: 1fr;
  }

  .warehouse-bottom__cta-actions {
    max-width: 280px;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .warehouse-bottom__audience-grid,
  .warehouse-bottom__benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .warehouse-bottom__footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .warehouse-bottom__footer-links {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .warehouse-bottom__container {
    padding: 24px 18px 16px;
  }

  .warehouse-bottom__audience-grid,
  .warehouse-bottom__benefits,
  .warehouse-bottom__footer {
    grid-template-columns: 1fr;
  }

  .warehouse-bottom__cta {
    padding: 24px 18px;
  }

  .warehouse-bottom__phone {
    font-size: 17px;
  }
}

.reveal-block {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .reveal-block {
    opacity: 0;
    transform: translateY(38px) scale(0.985);
    filter: blur(8px);
    transition:
      opacity 0.92s ease,
      transform 0.92s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.92s ease;
  }

  .reveal-block.reveal-left {
    transform: translateX(-42px) scale(0.985);
  }

  .reveal-block.reveal-right {
    transform: translateX(42px) scale(0.985);
  }

  .reveal-block.reveal-zoom {
    transform: translateY(28px) scale(0.955);
  }

  .reveal-block.is-visible,
  .reveal-block.reveal-left.is-visible,
  .reveal-block.reveal-right.is-visible,
  .reveal-block.reveal-zoom.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }

  .brand-icon {
    transition:
      transform 0.28s ease,
      filter 0.28s ease;
  }

  .brand:hover .brand-icon {
    transform: translateY(-2px) rotate(-3deg);
    filter: drop-shadow(0 8px 14px rgba(255, 138, 31, 0.28));
  }

  .main-nav a {
    position: relative;
    transition:
      color 0.22s ease,
      transform 0.22s ease;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    opacity: 0;
    transform: scaleX(0.35);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .main-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
  }

  .main-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .button-primary,
  .button-small {
    animation: glow-pulse 4.8s ease-in-out infinite;
  }

  .feature-card {
    transition:
      transform 0.32s ease,
      border-color 0.32s ease,
      background-color 0.32s ease,
      box-shadow 0.32s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(8, 20, 31, 0.66);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
  }

  .feature-item,
  .warehouse-about__stat,
  .infrastructure-benefits__item,
  .warehouse-bottom__audience-item,
  .warehouse-bottom__benefit {
    transition:
      transform 0.24s ease,
      opacity 0.24s ease;
  }

  .feature-icon,
  .warehouse-about__icon,
  .infrastructure-benefits__icon,
  .services-section__icon,
  .warehouse-bottom__audience-icon,
  .warehouse-bottom__benefit-icon {
    transition:
      transform 0.24s ease,
      filter 0.24s ease;
  }

  .feature-item:hover,
  .warehouse-about__stat:hover,
  .infrastructure-benefits__item:hover,
  .warehouse-bottom__audience-item:hover,
  .warehouse-bottom__benefit:hover {
    transform: translateY(-3px);
  }

  .feature-item:hover .feature-icon,
  .warehouse-about__stat:hover .warehouse-about__icon,
  .infrastructure-benefits__item:hover .infrastructure-benefits__icon,
  .services-section__card:hover .services-section__icon,
  .warehouse-bottom__audience-item:hover .warehouse-bottom__audience-icon,
  .warehouse-bottom__benefit:hover .warehouse-bottom__benefit-icon {
    transform: translateY(-2px) scale(1.07);
    filter: drop-shadow(0 8px 14px rgba(255, 138, 31, 0.2));
  }

  .warehouse-about__image {
    transition:
      transform 0.45s ease,
      filter 0.45s ease;
  }

  .warehouse-about__gallery:hover .warehouse-about__image--main {
    transform: scale(1.018);
    filter: saturate(1.06) contrast(1.03);
  }

  .warehouse-about__thumbs .warehouse-about__image:hover {
    transform: translateY(-3px) scale(1.025);
    filter: saturate(1.08);
  }

  .services-section__card {
    will-change: transform;
  }

  .warehouse-bottom__cta {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .warehouse-bottom__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-header,
  .temperature-label,
  .hero-content h1,
  .hero-benefits,
  .hero-buttons,
  .feature-card,
  .reveal-block {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .warehouse-hero {
    height: auto;
    min-height: clamp(680px, 178vw, 760px);
  }

  .hero-bg img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 72% 34%, rgba(4, 18, 33, 0) 0%, rgba(4, 18, 33, 0.16) 58%, rgba(4, 18, 33, 0.46) 100%),
      linear-gradient(180deg, rgba(3, 14, 26, 0.52) 0%, rgba(3, 14, 26, 0.10) 35%, rgba(3, 14, 26, 0.58) 100%),
      linear-gradient(90deg, rgba(3, 14, 26, 0.50) 0%, rgba(3, 14, 26, 0.16) 62%, rgba(3, 14, 26, 0.24) 100%);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: inherit;
    padding: 22px 20px 58px;
  }

  .hero-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    min-height: 0;
  }

  .brand {
    gap: 11px;
    width: 100%;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-title {
    font-size: 17px;
    letter-spacing: 0.1px;
  }

  .brand-subtitle {
    margin-top: 5px;
    font-size: 11px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    order: 2;
    width: 100%;
    gap: 10px;
    max-width: 100%;
  }

  .phone-link {
    width: fit-content;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(5, 19, 33, 0.42);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    font-size: 14px;
    backdrop-filter: blur(10px);
  }

  .phone-icon {
    width: 15px;
    height: 15px;
  }

  .button-small {
    display: none;
  }

  .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    min-width: 0;
    max-width: none;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 2px;
    padding: 3px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.96);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-shadow: none;
    backdrop-filter: blur(12px);
  }

  .main-nav a:first-child {
    border-color: rgba(255, 138, 31, 0.55);
    background: rgba(255, 138, 31, 0.16);
  }

  .hero-header,
  .hero-content,
  .warehouse-about__container,
  .infrastructure-benefits__container,
  .services-section__container,
  .warehouse-bottom__container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-top: clamp(36px, 11vw, 54px);
  }

  .temperature-label {
    margin-bottom: 12px;
    font-size: clamp(20px, 5.8vw, 24px);
    letter-spacing: -0.45px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(48px, 13.8vw, 56px);
    line-height: 0.94;
    letter-spacing: -1.9px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.44);
  }

  .hero-benefits {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-benefits li {
    gap: 11px;
    font-size: clamp(19px, 5.2vw, 22px);
    font-weight: 700;
    line-height: 1.14;
  }

  .benefit-icon {
    width: 24px;
    height: 24px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-top: 26px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    font-size: 15px;
  }

  .button-primary {
    box-shadow: 0 16px 34px rgba(255, 138, 31, 0.42);
  }

  .button-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(5, 19, 33, 0.42);
    backdrop-filter: blur(12px);
  }

  .feature-card {
    display: none;
  }

  .warehouse-about {
    position: relative;
    z-index: 4;
    margin-top: -28px;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -18px 48px rgba(3, 14, 26, 0.14);
  }

  .warehouse-about__container {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 20px 30px;
  }

  .warehouse-about__title {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(25px, 7vw, 29px);
    line-height: 1.04;
    letter-spacing: -0.55px;
    white-space: normal;
  }

  .warehouse-about__description {
    max-width: 100%;
    margin-bottom: 28px;
    color: #1f2937;
    font-size: clamp(16px, 4.3vw, 18px);
    line-height: 1.62;
  }

  .warehouse-about__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 22px;
  }

  .warehouse-about__stat {
    grid-template-columns: 27px 1fr;
    gap: 10px;
  }

  .warehouse-about__icon {
    width: 25px;
    height: 25px;
    margin-top: 0;
  }

  .warehouse-about__number {
    margin-bottom: 5px;
    font-size: 16px;
    white-space: normal;
  }

  .warehouse-about__stat-text {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .warehouse-about__gallery {
    max-width: none;
    margin-left: 0;
  }

  .warehouse-about__gallery-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .warehouse-about__image--main {
    height: clamp(210px, 56vw, 270px);
    border-radius: 18px;
  }

  .warehouse-about__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 9px;
  }

  .warehouse-about__image--thumb {
    height: clamp(76px, 21vw, 104px);
    border-radius: 14px;
  }

  .warehouse-about__video-side {
    width: min(100%, 300px);
    height: clamp(440px, 118vw, 520px);
    margin: 0 auto;
    border-radius: 18px;
  }

  .infrastructure-benefits__container,
  .services-section__container,
  .warehouse-bottom__container {
    padding-right: 22px;
    padding-left: 22px;
  }

  .infrastructure-benefits__container {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .infrastructure-benefits__title,
  .services-section__title,
  .warehouse-bottom__title {
    font-size: clamp(24px, 6.8vw, 29px);
    line-height: 1.06;
    letter-spacing: -0.55px;
  }

  .infrastructure-benefits__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .infrastructure-benefits__item {
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .infrastructure-benefits__item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .infrastructure-benefits__icon {
    width: 34px;
    height: 34px;
  }

  .infrastructure-benefits__content h3 {
    margin-bottom: 7px;
    font-size: 15px;
  }

  .infrastructure-benefits__content p {
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
  }

  .services-section {
    background: #f7f8fa;
  }

  .services-section__container {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .services-section__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-section__card {
    min-height: 0;
    padding: 24px 22px;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
  }

  .services-section__icon {
    width: 38px;
    height: 38px;
  }

  .services-section__card-title {
    margin-top: 17px;
    font-size: 17px;
  }

  .services-section__card-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .warehouse-bottom__container {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .warehouse-bottom__audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }

  .warehouse-bottom__audience-item {
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    align-items: center;
  }

  .warehouse-bottom__audience-icon {
    width: 34px;
    height: 34px;
  }

  .warehouse-bottom__audience-text {
    font-size: 15px;
    line-height: 1.3;
  }

  .warehouse-bottom__cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .warehouse-bottom__cta-title {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.08;
  }

  .warehouse-bottom__cta-text {
    max-width: none;
    font-size: 15px;
    line-height: 1.58;
  }

  .warehouse-bottom__benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .warehouse-bottom__benefit {
    grid-template-columns: 32px 1fr;
    font-size: 14px;
  }

  .warehouse-bottom__benefit-icon {
    width: 28px;
    height: 28px;
  }

  .warehouse-bottom__cta-actions {
    max-width: none;
    padding-left: 0;
    border-left: 0;
  }

  .warehouse-bottom__button {
    height: 56px;
    border-radius: 16px;
    font-size: 15px;
  }

  .warehouse-bottom__phone {
    justify-content: center;
    font-size: 20px;
  }

  .warehouse-bottom__footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 8px;
  }

  .warehouse-bottom__footer-links {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .hero-content h1 {
    font-size: clamp(44px, 12.7vw, 52px);
    letter-spacing: -1.5px;
  }

  .hero-benefits li {
    font-size: clamp(18px, 4.9vw, 20px);
  }

  .warehouse-about__title {
    font-size: clamp(23px, 6.5vw, 26px);
  }

  .warehouse-about__description {
    font-size: 15.5px;
  }

  .warehouse-about__stats {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .warehouse-about__stat {
    grid-template-columns: 30px 1fr;
  }

  .warehouse-about__number {
    font-size: 17px;
    white-space: nowrap;
  }
}
