@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");
:root {
  --ink: #1f2328;
  --night: #090d11;
  --night-soft: #111820;
  --muted: #59636e;
  --line: #c7ccd1;
  --panel: #ffffff;
  --soft: #eceff1;
  --steel: #353b42;
  --concrete: #d7dadd;
  --accent: #ff6a2b;
  --accent-dark: #c74717;
  --brand-warm: #fff0e8;
  --shadow: 0 14px 34px rgba(31, 35, 40, 0.18);
  --site-width: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #f4f5f5;
  line-height: 1.55;
  opacity: 1;
  transition: opacity 0.24s ease;
}

body.is-page-entering,
body.is-page-leaving {
  opacity: 0;
}

body.is-page-ready {
  opacity: 1;
}

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

img,
iframe {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.98), rgba(16, 21, 27, 0.96)),
    var(--night);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.top-strip {
  position: relative;
  display: block;
  height: 3px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.98), rgba(16, 21, 27, 0.96)),
    var(--night);
}

.top-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top-strip::before {
  width: 42%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 106, 43, 0.18), var(--accent), rgba(255, 106, 43, 0.18), transparent);
  filter: drop-shadow(0 0 8px rgba(255, 106, 43, 0.9));
  animation: header-line-scan 3.4s linear infinite;
}

@keyframes header-line-scan {
  from {
    transform: translateX(-115%);
  }

  to {
    transform: translateX(255%);
  }
}

.top-strip div {
  display: none;
}

.top-strip span {
  display: none;
}

.top-strip a {
  display: none;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  grid-template-rows: 76px;
  grid-template-areas: "brand nav";
  align-items: center;
  gap: 18px;
  width: min(var(--site-width), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  grid-area: brand;
  justify-self: start;
  display: inline-grid;
  place-items: center;
  width: 230px;
  height: 62px;
  color: var(--ink);
  overflow: hidden;
}

.header-shell .brand {
  width: 230px;
  height: 62px;
  padding: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-header .brand img {
  width: 0;
  height: 0;
  opacity: 0;
}

.site-header .brand {
  background: url("assets/gwh-header-logo-final.png") left center / contain no-repeat;
}

.main-nav {
  grid-area: nav;
  justify-self: start;
  display: flex;
  gap: 8px;
  align-items: center;
  align-self: stretch;
  min-height: 76px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.64);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  overflow: hidden;
  padding: 0 8px;
  white-space: nowrap;
  transition: color 0.22s ease, text-shadow 0.22s ease, transform 0.22s ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 130%;
  height: 28px;
  border: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 106, 43, 0.24) 0%, rgba(255, 106, 43, 0.1) 36%, transparent 72%);
  filter: blur(12px);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.72);
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 10px rgba(255, 106, 43, 0.58);
  transform: translateX(-50%);
  transition: width 0.26s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 106, 43, 0.2);
  transform: translateY(-1px);
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.main-nav a.is-active::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  width: calc(100% - 18px);
}

.main-nav a.is-active {
  color: #fff;
}

.header-cta {
  grid-area: cta;
  justify-self: end;
  align-self: center;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border: 2px solid var(--accent);
  color: #fff;
  background: rgba(255, 106, 43, 0.12);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
}

.portal-hero {
  min-height: 620px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.98) 0%, rgba(8, 11, 15, 0.92) 34%, rgba(8, 11, 15, 0.44) 57%, rgba(8, 11, 15, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 106, 43, 0.24), rgba(9, 13, 17, 0.16) 44%, rgba(9, 13, 17, 0.72)),
    url("assets/gfdxbttt6.jpg") right center/cover;
}

.hero-media::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 106, 43, 0.16) 45%, rgba(255, 255, 255, 0.09) 50%, transparent 60%);
  opacity: 0.72;
  transform: translateX(-36%);
  animation: warehouseSheen 8s ease-in-out infinite;
}

.hero-media::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 106, 43, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(9, 13, 17, 0.74), transparent 64%);
}

@keyframes warehouseSheen {
  0%, 16% {
    transform: translateX(-42%);
    opacity: 0;
  }

  42% {
    opacity: 0.78;
  }

  78%, 100% {
    transform: translateX(38%);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 56px;
  color: #fff;
}

.hero-content h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
}

.hero-actions,
.section-head.inline,
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(47, 51, 56, 0.38);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

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

.section {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 12px;
}

.portal-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 32, 44, 0.05);
}

.portal-card.main-card {
  grid-row: span 2;
  min-height: 452px;
  background:
    linear-gradient(180deg, rgba(47, 51, 56, 0.14), rgba(47, 51, 56, 0.86)),
    url("assets/Aassdadad1e1.jpg") center/cover;
  color: #fff;
}

.portal-card.main-card p,
.portal-card.main-card h2 {
  color: #fff;
}

.portal-card h2 {
  margin: 0 0 12px;
}

.portal-card p {
  margin: 0;
}

.home-summary {
  border-top: 1px solid var(--line);
}

.section.tinted {
  width: 100%;
  padding-left: max(16px, calc((100% - var(--site-width)) / 2));
  padding-right: max(16px, calc((100% - var(--site-width)) / 2));
  background: var(--soft);
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2,
.cta-band h2,
.page-hero h1,
.split h2 {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

p {
  color: var(--muted);
}

.feature-grid,
.warehouse-grid,
.terms-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.feature-card,
.warehouse-card,
.terms-grid article,
.audience-list article,
.contact-card,
.request-form,
.stats article,
.benefit-grid article,
.info-stack article,
.proof-strip article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.feature-card {
  min-height: 190px;
  padding: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.proof-strip article {
  min-height: 136px;
  padding: 24px;
  background: #fff;
}

.proof-strip strong {
  display: block;
  color: var(--accent-dark);
  font-size: 28px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.feature-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 900;
}

.warehouse-card {
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.warehouse-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--soft);
}

.warehouse-card-body {
  display: grid;
  grid-template-rows: minmax(48px, auto) 1fr auto auto auto;
  gap: 12px;
  padding: 18px;
  height: 100%;
}

.warehouse-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.12;
}

.warehouse-specs {
  display: grid;
  align-content: start;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 108px;
}

.warehouse-specs li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.warehouse-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.warehouse-price {
  display: block;
  color: var(--accent-dark);
  font-size: 18px;
  line-height: 1.15;
}

.warehouse-actions {
  display: grid;
  margin-top: auto;
}

.warehouse-actions .btn {
  min-height: 42px;
  padding: 0 12px;
  font-size: 12px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.object-address {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.object-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.object-specs div {
  min-height: 70px;
  padding: 10px;
  background: #f4f5f5;
  border: 1px solid var(--line);
}

.object-specs dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.object-specs dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: #fff;
  border-top: 2px solid var(--ink);
}

.spec-table th,
.spec-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.spec-table th {
  width: 36%;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--muted);
  font-weight: 700;
}

.compact-table {
  margin: 14px 0 8px;
}

.compact-table th,
.compact-table td {
  padding: 9px 0;
  font-size: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(240, 90, 40, 0.32);
  color: var(--accent-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.industrial-map {
  align-items: stretch;
}

.infrastructure-hero .compact-tags {
  margin-top: 24px;
}

.infra-number-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.infra-number-grid article {
  min-height: 150px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 107, 43, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 107, 43, 0.09), rgba(255, 255, 255, 0) 54%),
    #fff;
  box-shadow: 0 14px 34px rgba(17, 32, 44, 0.07);
}

.infra-number-grid strong {
  display: block;
  color: var(--accent-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.infra-number-grid span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
}

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

.infra-spec-grid article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 32, 44, 0.06);
}

.infra-spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.infra-spec-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

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

.transport-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 32, 44, 0.06);
}

.transport-grid strong,
.transport-grid p {
  margin: 0;
}

.transport-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.transport-grid p {
  margin-top: 14px;
  color: var(--muted);
}

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

.infra-gallery figure {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 32, 44, 0.12);
}

.infra-gallery img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.infra-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 22, 0.04), rgba(11, 16, 22, 0.72));
}

.infra-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
  color: #fff;
}

.infra-gallery figcaption strong,
.infra-gallery figcaption span {
  display: block;
}

.infra-gallery figcaption strong {
  font-size: 20px;
}

.infra-gallery figcaption span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.infra-gallery figure:hover img {
  transform: scale(1.04);
}

.infra-security-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.infra-security-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 32, 44, 0.06);
}

.infra-security-grid h3,
.infra-security-grid p {
  margin: 0;
}

.infra-security-grid h3 {
  color: var(--ink);
  font-size: 18px;
}

.infra-security-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.location-points,
.tenant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.location-points span,
.tenant-grid span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.muted-section {
  border-top: 1px solid var(--line);
}

.dark-actions .btn.secondary {
  background: var(--ink);
  border-color: rgba(47, 51, 56, 0.18);
  color: #fff;
}

.info-stack article {
  padding: 20px;
}

.legal-page {
  display: grid;
  gap: 22px;
  max-width: 920px;
}

.legal-page article {
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 32, 44, 0.06);
}

.legal-page h2,
.legal-page p,
.legal-page ul {
  margin: 0;
}

.legal-page h2 {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page p {
  margin-top: 14px;
}

.legal-page ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 20px;
}

.legal-page a {
  color: var(--accent-dark);
  font-weight: 900;
}

.legal-date,
.legal-note {
  padding: 16px 18px;
  border: 1px solid rgba(255, 106, 43, 0.26);
  background: var(--brand-warm);
  color: var(--ink);
  font-weight: 900;
}

.audience-hero .audience-hero-metrics {
  margin-top: 28px;
}

.audience-hero-metrics,
.task-grid,
.industry-grid,
.solution-grid,
.fact-grid,
.case-grid {
  display: grid;
  gap: 14px;
}

.audience-hero-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-hero-metrics article {
  padding: 20px;
  border: 1px solid rgba(255, 106, 43, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.audience-hero-metrics strong,
.audience-hero-metrics span {
  display: block;
}

.audience-hero-metrics strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
}

.audience-hero-metrics span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

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

.task-grid article,
.industry-grid article,
.solution-card,
.case-grid article {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 32, 44, 0.06);
}

.task-grid article {
  min-height: 238px;
  padding: 26px;
}

.task-grid span,
.solution-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  background: var(--brand-warm);
  color: var(--accent-dark);
  font-weight: 900;
}

.task-grid h3,
.task-grid p,
.industry-grid h3,
.industry-grid p,
.solution-card h3,
.solution-card p,
.case-grid h3,
.case-grid p {
  margin: 0;
}

.task-grid h3,
.industry-grid h3,
.solution-card h3,
.case-grid h3 {
  color: var(--ink);
}

.task-grid p,
.industry-grid p,
.solution-card p,
.case-grid p {
  margin-top: 12px;
  color: var(--muted);
}

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

.industry-grid article {
  min-height: 180px;
  padding: 24px;
}

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

.solution-card {
  display: block;
  min-height: 240px;
  padding: 28px;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  border-color: rgba(255, 106, 43, 0.5);
  box-shadow: 0 18px 40px rgba(17, 32, 44, 0.12);
  transform: translateY(-4px);
}

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

.fact-grid span {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.fact-grid span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--accent);
  flex: 0 0 auto;
}

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

.case-grid article {
  overflow: hidden;
}

.case-grid img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
}

.case-grid article > div {
  padding: 24px;
}

.terms-hero .terms-hero-metrics {
  margin-top: 28px;
}

.terms-hero-metrics,
.terms-card-grid,
.included-grid,
.terms-process {
  display: grid;
  gap: 14px;
}

.terms-hero-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.terms-hero-metrics article {
  padding: 20px;
  border: 1px solid rgba(255, 106, 43, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.terms-hero-metrics strong,
.terms-hero-metrics span {
  display: block;
}

.terms-hero-metrics strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
}

.terms-hero-metrics span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.terms-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.terms-card-grid article,
.included-grid article,
.document-block,
.terms-process li {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 32, 44, 0.06);
}

.terms-card-grid article {
  min-height: 178px;
  padding: 24px;
}

.terms-card-grid h3,
.terms-card-grid p,
.included-grid h3,
.included-grid ul,
.document-block h3,
.document-block p,
.document-block ul,
.terms-process h3,
.terms-process p {
  margin: 0;
}

.terms-card-grid h3,
.included-grid h3,
.document-block h3,
.terms-process h3 {
  color: var(--ink);
}

.terms-card-grid p,
.document-block p,
.terms-process p {
  margin-top: 12px;
  color: var(--muted);
}

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

.included-grid article {
  padding: 28px;
}

.included-grid ul,
.document-block ul {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.included-grid li,
.document-block li {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.included-grid li::before,
.document-block li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--accent);
  flex: 0 0 auto;
}

.terms-process {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.terms-process li {
  min-height: 240px;
  padding: 24px;
}

.terms-process span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  background: var(--brand-warm);
  color: var(--accent-dark);
  font-weight: 900;
}

.document-block {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
  padding: 30px;
}

.document-block ul {
  margin-top: 0;
}

.terms-faq {
  display: grid;
  gap: 12px;
}

.info-stack p,
.benefit-grid p {
  margin-bottom: 0;
}

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

.benefit-grid article {
  min-height: 190px;
  padding: 24px;
}

.benefit-grid h3 {
  color: var(--accent-dark);
}

.service-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-pricing article {
  min-height: 240px;
  display: grid;
  align-content: end;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 32, 44, 0.05);
}

.service-pricing article:first-child {
  grid-row: span 2;
  min-height: 498px;
  background:
    linear-gradient(180deg, rgba(47, 51, 56, 0.18), rgba(47, 51, 56, 0.88)),
    url("assets/adczxc13dasdczxc.jpg") center/cover;
  color: #fff;
}

.service-pricing article:first-child p,
.service-pricing article:first-child h2 {
  color: #fff;
}

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

.segment-grid a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 14px;
}
.audience-solutions {
  align-items: start;
}

.audience-solutions .segment-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 16, 20, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.audience-solutions .segment-card.is-open {
  grid-column: 1 / -1;
  border-color: rgba(255, 106, 43, 0.42);
  box-shadow: 0 24px 58px rgba(12, 16, 20, 0.1);
}

.segment-trigger {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.segment-trigger span,
.segment-trigger small {
  grid-column: 1;
}

.segment-trigger span {
  font-weight: 900;
  font-size: 17px;
}

.segment-trigger small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.segment-trigger::after {
  content: "+";
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 43, 0.45);
  color: var(--accent-dark);
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.segment-card.is-open .segment-trigger::after {
  content: "−";
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.segment-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 20px 22px;
  animation: accordionReveal 0.26s ease both;
}

.segment-panel > div {
  padding: 18px;
  border: 1px solid var(--line);
  background: #f7f8f9;
}

.segment-panel h3 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.segment-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.segment-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.segment-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

@keyframes accordionReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 28px;
  align-items: end;
  overflow: hidden;
  padding: 88px max(16px, calc((100% - var(--site-width)) / 2)) 54px;
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.98) 0%, rgba(9, 13, 17, 0.86) 48%, rgba(9, 13, 17, 0.24) 100%),
    url("assets/adczxc13dasdczxc.jpg") right center/cover;
  color: #fff;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 106, 43, 0.12) 48%, transparent 62%);
  animation: warehouseSheen 8s ease-in-out infinite;
}

.service-hero-content,
.service-hero-stats {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.service-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.service-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 106, 43, 0.4);
  background: rgba(9, 13, 17, 0.36);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.service-hero-stats {
  display: grid;
  gap: 12px;
}

.service-hero-stats article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 13, 17, 0.56);
  backdrop-filter: blur(8px);
}

.service-hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.service-hero-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.services-premium .section-head {
  margin-bottom: 40px;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 252px;
  display: grid;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 245, 245, 0.98));
  box-shadow: 0 12px 30px rgba(17, 32, 44, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 43, 0.54);
  box-shadow: 0 18px 42px rgba(17, 32, 44, 0.16);
}

.service-card.featured {
  grid-row: span 2;
  min-height: 520px;
  align-content: end;
  padding-right: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 13, 17, 0.98), rgba(16, 21, 27, 0.94));
}

.service-card.featured::before,
.service-card.featured::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-card.featured::before {
  inset: 0;
  background:
    url("assets/Aassdadad1e1.jpg") center/cover no-repeat;
  opacity: 1;
}

.service-card.featured::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 17, 0.08) 0%, rgba(9, 13, 17, 0.34) 42%, rgba(9, 13, 17, 0.86) 100%);
}

.service-card.featured > * {
  position: relative;
  z-index: 1;
}

.service-card span {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 106, 43, 0.42);
  color: var(--accent-dark);
  background: var(--brand-warm);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card.featured span {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.service-card h2,
.service-card h3,
.service-card p {
  margin: 0;
}

.service-card h2 {
  max-width: 520px;
  color: inherit;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.12;
}

.service-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}

.service-card.featured p,
.service-card.featured .text-link {
  color: rgba(255, 255, 255, 0.82);
}

.service-proof .proof-strip article {
  border-left: 3px solid var(--accent);
}

.service-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.service-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-objects .btn {
  margin-top: 12px;
}

.service-final-cta {
  align-items: end;
}

.marketplace-grid,
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.marketplace-grid span,
.check-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.check-list span {
  border-left: 3px solid var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 20px;
  border-top: 3px solid var(--accent);
  background: var(--brand-warm);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.cta-band {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 20px auto 62px;
  padding: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 0;
}

.cta-band p,
.cta-band h2 {
  color: #fff;
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  padding: 56px max(16px, calc((100% - var(--site-width)) / 2));
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.98), rgba(16, 21, 27, 0.96)),
    var(--night);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--night), var(--accent), var(--night));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.95fr;
  gap: 24px;
}

.footer-grid.pro-footer {
  align-items: start;
}

.footer-brand {
  justify-self: start;
  grid-column: auto;
  color: #fff;
  width: 220px;
  height: 92px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  font-size: 17px;
  color: #fff;
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.footer-contact,
.contact-card,
.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-lead {
  margin-top: 18px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span,
.footer-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-button {
  justify-content: center;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.is-floating-actions-visible .floating-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-action {
  width: 58px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 106, 43, 0.7);
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.98), rgba(16, 21, 27, 0.96)),
    var(--night);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  animation: floatingPulse 2.8s ease-in-out infinite;
}

.floating-action svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.floating-action:hover svg {
  transform: translateY(-2px) scale(1.06);
}

.floating-action:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@keyframes floatingPulse {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), 0 0 0 0 rgba(255, 106, 43, 0);
  }

  50% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26), 0 0 0 7px rgba(255, 106, 43, 0.12);
  }
}

.crm-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.crm-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.crm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 17, 0.64);
}

.crm-panel {
  position: relative;
  width: min(720px, calc(100vw - 24px));
  height: calc(100vh - 24px);
  margin: 12px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  transform: translateX(24px);
  transition: transform 0.22s ease;
}

.crm-modal.is-open .crm-panel {
  transform: translateX(0);
}

.crm-panel-head {
  padding: 28px 28px 8px;
}

.crm-panel-head h2 {
  margin: 0 0 8px;
}

.crm-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 56px);
  z-index: 1;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--night);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.crm-request-form {
  margin: 0;
  padding: 20px 28px 28px;
  border: 0;
  box-shadow: none;
}

.crm-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.is-crm-modal-open {
  overflow: hidden;
}

.page-hero {
  position: relative;
  overflow: hidden;
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 42px;
}

.page-hero.compact {
  width: 100%;
  min-height: 420px;
  display: grid;
  align-content: end;
  padding-left: max(16px, calc((100% - var(--site-width)) / 2));
  padding-right: max(16px, calc((100% - var(--site-width)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.98) 0%, rgba(9, 13, 17, 0.88) 34%, rgba(9, 13, 17, 0.44) 60%, rgba(9, 13, 17, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 106, 43, 0.2), rgba(9, 13, 17, 0.08) 46%, rgba(9, 13, 17, 0.78)),
    url("assets/gfdxbttt6.jpg") right center/cover;
}

.page-hero.compact > * {
  position: relative;
  z-index: 1;
}

.page-hero.compact h1 {
  max-width: 720px;
  color: #fff;
}

.page-hero.compact p {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero p {
  max-width: 720px;
  font-size: 16px;
}

.warehouse-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 24px;
  align-items: end;
}

.warehouse-detail-hero img,
.gallery img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.warehouse-detail-hero img {
  aspect-ratio: 4 / 3;
}

.spec-grid,
.gallery,
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.spec-grid article {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.spec-grid strong,
.stats strong {
  display: block;
  color: var(--accent-dark);
  font-size: 22px;
}

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

.gallery img {
  aspect-ratio: 4 / 3;
}

.industrial-photo-band {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  margin: 24px 0;
  overflow: hidden;
  background: var(--ink);
}

.industrial-photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}

.industrial-photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 35, 40, 0.05), rgba(31, 35, 40, 0.78));
}

.industrial-photo-band > div {
  position: relative;
  z-index: 1;
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 46px;
  color: #fff;
}

.industrial-photo-band h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
}

.tariff-table th {
  width: 48%;
}

.map-box {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--night);
}

.map-box iframe {
  width: 100%;
  height: 520px;
  min-height: 100%;
  display: block;
  border: 0;
}

.map-screenshot {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  background: var(--night);
}

.map-fallback {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(9, 13, 17, 0.92), rgba(9, 13, 17, 0.56)),
    radial-gradient(circle at 72% 28%, rgba(255, 106, 43, 0.28), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    var(--night);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  color: #fff;
}

.map-fallback h2 {
  margin: 0 0 10px;
  color: #fff;
}

.map-fallback p {
  max-width: 520px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}

.map-fallback span {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 106, 43, 0.46);
  color: #fff;
  font-weight: 900;
}

.map-pin {
  position: absolute;
  top: 34%;
  right: 25%;
  width: 34px;
  height: 34px;
  border: 8px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.42));
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}

.map-open-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--accent-dark);
  font-weight: 900;
}

.audience-list,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-list article,
.terms-grid article,
.contact-card,
.request-form {
  padding: 24px;
}

.contact-hero {
  min-height: 430px;
}

.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-hero-points span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card-rich {
  display: grid;
  align-content: start;
  gap: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card-rich h2,
.contact-card-rich p {
  margin: 0;
}

.contact-lines {
  display: grid;
  gap: 12px;
}

.contact-lines article {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-lines span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-lines a,
.contact-lines p {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-map-card {
  display: grid;
  gap: 12px;
}

.contact-map-card .map-box {
  min-height: 460px;
}

.contact-map-card .map-box iframe {
  height: 460px;
}

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

.map-facts span {
  padding: 13px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.contact-form-section {
  max-width: 760px;
}

.compact-request-form {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.extra-requirements {
  border: 1px solid var(--line);
  background: var(--soft);
}

.extra-requirements summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.extra-requirements-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 16px 16px;
}

.price-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: var(--brand-warm);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-faq {
  max-width: 880px;
}

.about-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(47, 51, 56, 0.86), rgba(47, 51, 56, 0.34)),
    url("assets/gfdxbttt6.jpg") center/cover;
  width: 100%;
  padding-left: max(16px, calc((100% - var(--site-width)) / 2));
  padding-right: max(16px, calc((100% - var(--site-width)) / 2));
}

.about-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.company-hero h1 {
  max-width: 980px;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  padding: 0;
}

.company-facts article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px 18px;
  background: #fff;
}

.company-facts strong {
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 0.95;
  letter-spacing: 0;
}

.company-facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-client-section {
  align-items: center;
}

.company-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.company-checklist span {
  position: relative;
  padding: 13px 14px 13px 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.company-checklist span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.company-photo {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.company-timeline article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 32, 44, 0.07);
}

.company-timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.company-timeline span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.company-timeline h3,
.company-timeline p {
  margin: 0;
}

.company-timeline p {
  margin-top: 10px;
  color: var(--muted);
}

.company-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.company-gallery figure {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  margin: 0;
  background: var(--night);
}

.company-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.company-gallery figure:hover img {
  transform: scale(1.04);
}

.company-gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  background: rgba(8, 13, 18, 0.84);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stats article {
  min-height: 128px;
  padding: 24px;
}

.stats span {
  color: var(--muted);
}

.image-panel {
  min-height: 420px;
  border-radius: 0;
  background: url("assets/adczxc13dasdczxc.jpg") center/cover;
  box-shadow: var(--shadow);
}

.request-form {
  display: grid;
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.request-form .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.request-form .privacy-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--accent);
}

.request-form .privacy-consent a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-form .privacy-consent.is-locked {
  opacity: 0.72;
  cursor: not-allowed;
}

.request-form .privacy-consent.is-locked input {
  cursor: not-allowed;
}

.request-form .privacy-consent.is-unlocked {
  border-color: rgba(255, 106, 43, 0.45);
  background: rgba(255, 106, 43, 0.08);
}

.privacy-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.privacy-hint.success {
  color: var(--accent-dark);
}

.finance-calculator {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.finance-calculator[hidden] {
  display: none;
}

.calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.calculator-head h3 {
  margin-bottom: 0;
}

.calculator-head [data-calc-total] {
  color: var(--accent-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

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

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

.calculator-result article {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.calculator-result span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-result strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 15px;
}

.calculator-note {
  margin: 0;
  font-size: 12px;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-note.success {
  color: var(--accent-dark);
  font-weight: 800;
}

.objects-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 96px max(16px, calc((100% - var(--site-width)) / 2)) 58px;
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.98) 0%, rgba(9, 13, 17, 0.9) 42%, rgba(9, 13, 17, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 106, 43, 0.2), rgba(9, 13, 17, 0.06) 48%, rgba(9, 13, 17, 0.78)),
    url("assets/gfdxbttt6.jpg") right center/cover;
  color: #fff;
}

.objects-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 106, 43, 0.12) 48%, transparent 62%);
  animation: warehouseSheen 8s ease-in-out infinite;
}

.objects-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.objects-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
}

.object-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.object-metrics span {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(9, 13, 17, 0.58);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.object-metrics strong {
  display: block;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.compact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.compact-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 106, 43, 0.38);
  background: rgba(9, 13, 17, 0.44);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.objects-benefits article,
.use-grid article {
  position: relative;
  overflow: hidden;
}

.objects-benefits article::before,
.use-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.object-list {
  display: grid;
  gap: 18px;
}

.object-entry {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 32, 44, 0.08);
}

.object-entry img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.object-entry-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 32px;
}

.object-status {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: #e9f8ef;
  color: #18723f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.object-entry h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.object-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.object-facts div {
  min-height: 70px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f7f8f8;
}

.object-facts dt,
.object-facts dd {
  margin: 0;
}

.object-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.object-facts dd {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 900;
}

.object-rent-price {
  display: block;
  color: var(--accent-dark);
  font-size: 22px;
  line-height: 1.2;
}

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

.location-list li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}

.location-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

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

.use-grid article {
  min-height: 190px;
  padding: 24px 24px 24px 28px;
  border: 1px solid var(--line);
  background: #fff;
}

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

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

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

.gallery-large img {
  min-height: 250px;
}

.rent-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-hero .service-hero-stats article {
  background: rgba(9, 13, 17, 0.68);
}

.tech-stats article {
  border-top: 3px solid var(--accent);
}

.tech-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 32, 44, 0.08);
}

.tech-spec-table th,
.tech-spec-table td {
  padding: 15px 18px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.tech-spec-table th {
  width: 46%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-spec-table td {
  color: var(--ink);
  font-weight: 900;
}

.technical-cards article {
  border-left: 3px solid var(--accent);
}

.complex-plan {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: repeat(4, minmax(82px, auto));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 106, 43, 0.24);
  background:
    linear-gradient(135deg, rgba(9, 13, 17, 0.98), rgba(17, 24, 32, 0.96)),
    var(--night);
  color: #fff;
  box-shadow: 0 16px 40px rgba(17, 32, 44, 0.18);
}

.cargo-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.cargo-flow article {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.cargo-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.cargo-flow span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.cargo-flow h3,
.cargo-flow p {
  margin: 0;
}

.cargo-flow h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cargo-flow p {
  color: var(--muted);
}

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

.engineering-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}

.engineering-grid span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--accent);
  flex: 0 0 auto;
}

.object-tech-grid,
.security-grid,
.caption-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.object-tech-grid article,
.security-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 32, 44, 0.06);
}

.object-tech-grid h3,
.object-tech-grid p,
.security-grid h3,
.security-grid p {
  margin: 0;
}

.object-tech-grid strong {
  display: block;
  margin: 16px 0;
  color: var(--accent-dark);
  font-size: 28px;
}

.object-tech-grid p,
.security-grid p {
  color: var(--muted);
}

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

.caption-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.caption-gallery img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.caption-gallery figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 900;
}

.start-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 68px;
    grid-template-areas: "brand . toggle";
    min-height: 68px;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }

  .nav-toggle {
    display: block;
    grid-area: toggle;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
  }

  .nav-toggle::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, transparent, rgba(255, 106, 43, 0.28), transparent);
    opacity: 0;
    transform: translateX(-80%);
    transition: opacity 0.22s ease, transform 0.36s ease;
  }

  .nav-toggle:hover,
  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(255, 106, 43, 0.72);
    background: rgba(255, 106, 43, 0.1);
    box-shadow: 0 0 22px rgba(255, 106, 43, 0.16);
  }

  .nav-toggle:hover::before,
  .nav-toggle[aria-expanded="true"]::before {
    opacity: 1;
    transform: translateX(80%);
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    min-height: auto;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 106, 43, 0.18), transparent 34%),
      radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
      linear-gradient(145deg, rgba(18, 25, 32, 0.98), rgba(6, 10, 14, 0.98));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 106, 43, 0.26);
    box-shadow:
      0 22px 44px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    animation: mobile-nav-panel 0.22s ease both;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 52px;
    padding: 0 16px;
    justify-content: flex-start;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
  }

  .main-nav a::before {
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    height: auto;
    border: 0;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 18px rgba(255, 106, 43, 0.72);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.22s ease, transform 0.34s ease;
  }

  .main-nav a:hover::before,
  .main-nav a:focus-visible::before,
  .main-nav a.is-active::before {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a::after {
    left: 16px;
    right: auto;
    bottom: 9px;
    width: 28px;
    height: 2px;
    border: 0;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(255, 106, 43, 0.72);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, width 0.22s ease;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-active::after {
    width: 48px;
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    color: #fff;
    border-color: rgba(255, 106, 43, 0.44);
    background:
      linear-gradient(90deg, rgba(255, 106, 43, 0.16), rgba(255, 106, 43, 0.025)),
      rgba(255, 255, 255, 0.045);
    transform: translateX(3px);
  }

  .header-cta {
    grid-area: cta;
    align-self: center;
    min-width: 78px;
    padding: 0 12px;
  }

  .hero {
    min-height: 720px;
  }

  .feature-grid,
  .warehouse-grid,
  .terms-grid,
  .benefit-grid,
  .service-pricing,
  .steps,
  .spec-grid,
  .stats,
  .company-facts,
  .company-timeline,
  .company-gallery,
  .proof-strip,
  .calculator-result,
  .marketplace-grid,
  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .warehouse-detail-hero,
  .split,
  .contact-layout,
  .footer-grid,
  .trust-section,

  .portal-grid,
  .service-hero,
  .service-showcase,
  .service-flow {
    grid-template-columns: 1fr;
  }

  .portal-card.main-card {
    grid-row: auto;
    min-height: 320px;
  }

  .service-pricing article:first-child {
    grid-row: auto;
    min-height: 300px;
  }

  .service-card.featured {
    grid-row: auto;
    min-height: 360px;
    padding-top: 170px;
    padding-right: 26px;
  }

  .service-card.featured::before {
    inset: 0;
    height: auto;
    background-size: cover;
  }

  .service-card.featured::after {
    background:
      linear-gradient(180deg, rgba(9, 13, 17, 0.08) 0%, rgba(9, 13, 17, 0.42) 44%, rgba(9, 13, 17, 0.9) 100%);
  }

  .service-card h2 {
    font-size: clamp(28px, 6vw, 38px);
  }

  .top-strip {
    display: none;
  }
}

@keyframes mobile-nav-panel {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@media (max-width: 640px) {
  .header-shell {
    width: min(100% - 20px, var(--site-width));
    min-height: 64px;
  }

  .brand {
    width: 164px;
    height: 48px;
  }

  .header-shell .brand {
    width: 170px;
    height: 44px;
    padding: 0;
  }

  .main-nav {
    top: 64px;
  }

  .header-cta {
    min-height: 44px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding-bottom: 38px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .section,
  .page-hero {
    width: calc(100% - 24px);
    padding: 52px 0;
  }

  .section.tinted {
    padding: 52px 12px;
  }

  .feature-grid,
  .warehouse-grid,
  .terms-grid,
  .benefit-grid,
  .steps,
  .spec-grid,
  .gallery,
  .audience-list,
  .contact-layout,
  .segment-grid,
  .stats,
  .company-facts,
  .company-checklist,
  .company-timeline,
  .company-gallery,
  .proof-strip,
  .calculator-grid,
  .calculator-result,
  .marketplace-grid,
  .check-list,
  .service-steps {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 760px;
  }

  .calculator-head {
    display: grid;
  }

  .calculator-head [data-calc-total] {
    white-space: normal;
  }

  .object-specs {
    grid-template-columns: 1fr;
  }

  .warehouse-actions {
    grid-template-columns: 1fr;
  }
.cta-band {
    width: calc(100% - 24px);
    padding: 24px;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-action {
    width: 52px;
    min-height: 50px;
    font-size: 11px;
  }

  .crm-panel {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px;
  }

  .crm-panel-head,
  .crm-request-form {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 980px) {
  .object-entry {
    grid-template-columns: 1fr;
  }

  .object-metrics,
  .use-grid,
  .gallery-large,
  .rent-steps,
  .cargo-flow,
  .engineering-grid,
  .object-tech-grid,
  .security-grid,
  .caption-gallery,
  .start-steps,
  .company-facts,
  .company-timeline,
  .company-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .object-entry img {
    min-height: 300px;
  }

  .cargo-flow article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .objects-hero {
    min-height: 720px;
    padding-bottom: 42px;
  }

  .object-metrics,
  .object-facts,
  .use-grid,
  .gallery-large,
  .rent-steps,
  .cargo-flow,
  .engineering-grid,
  .object-tech-grid,
  .security-grid,
  .caption-gallery,
  .start-steps,
  .company-facts,
  .company-checklist,
  .company-timeline,
  .company-gallery,
  .complex-plan {
    grid-template-columns: 1fr;
  }

  .object-entry-body {
    padding: 22px;
  }

  .object-entry img {
    min-height: 240px;
  }
}

@media (max-width: 980px) {
  .infra-number-grid,
  .transport-grid,
  .infra-security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infra-spec-grid,
  .infra-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.audience-hero-metrics,
  .task-grid,
  .industry-grid,
  .solution-grid,
  .fact-grid,
  .case-grid,
  .terms-hero-metrics,
  .terms-card-grid,
  .terms-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .infra-number-grid,
  .infra-spec-grid,
  .transport-grid,
  .infra-gallery,
  .infra-security-grid {
    grid-template-columns: 1fr;
  }

  .infra-gallery figure,
  .infra-gallery img {
    min-height: 280px;
  }
.audience-hero-metrics,
  .task-grid,
  .industry-grid,
  .solution-grid,
  .fact-grid,
  .case-grid,
  .terms-hero-metrics,
  .terms-card-grid,
  .included-grid,
  .terms-process {
    grid-template-columns: 1fr;
  }

  .task-grid article,
  .industry-grid article,
  .solution-card,
  .terms-card-grid article,
  .terms-process li {
    min-height: 0;
  }
}
/* Warehouse detail pages use a clean hero without the shared dark overlay. */
.warehouse-detail-hero {
  background: #fff;
  color: var(--ink);
}

.warehouse-detail-hero::before,
.warehouse-detail-hero::after {
  content: none;
  display: none;
}

.warehouse-detail-hero h1 {
  color: var(--ink);
}

.warehouse-detail-hero p {
  color: var(--muted);
}

/* Hide modal eyebrow label so old CRM wording cannot appear. */
.crm-panel-head > .eyebrow {
  display: none !important;
}
/* Compact contact map facts: prevent grid stretch from creating empty space. */
.contact-map-layout {
  align-items: start;
}

.contact-map-card {
  align-self: start;
  align-content: start;
  grid-template-rows: auto auto;
}

.contact-map-card .map-box {
  min-height: 380px;
}

.contact-map-card .map-box iframe {
  height: 380px;
}

.map-facts {
  align-items: start;
}

.map-facts span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
}
/* Equal compact size for contact map fact cards. */
.map-facts {
  grid-auto-rows: 72px;
}

.map-facts span {
  width: 100%;
  height: 72px;
  min-height: 72px;
  padding: 10px 12px;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .audience-solutions .segment-card.is-open {
    grid-column: auto;
  }

  .segment-trigger {
    min-height: 78px;
    padding: 16px;
  }

  .segment-panel {
    grid-template-columns: 1fr;
    padding: 0 16px 18px;
  }
}
.business-word-grid {
  align-items: stretch;
}

.business-word-grid .segment-word {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.business-word-grid .segment-word::after {
  content: "→";
  color: var(--accent-dark);
  font-size: 18px;
  transform: translateX(0);
  transition: transform 0.22s ease;
}

.business-word-grid .segment-word:hover,
.business-word-grid .segment-word:focus-visible {
  border-color: rgba(255, 106, 43, 0.55);
  color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(12, 16, 20, 0.08);
  outline: none;
}

.business-word-grid .segment-word:hover::after,
.business-word-grid .segment-word:focus-visible::after {
  transform: translateX(4px);
}

.business-solution-modal[aria-hidden="true"] {
  display: none;
}

.business-solution-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.business-solution-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 13, 0.68);
  backdrop-filter: blur(6px);
}

.business-solution-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(255, 106, 43, 0.32);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  animation: modalSlideIn 0.24s ease both;
}

.business-solution-panel h2 {
  margin: 0 42px 10px 0;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0;
}

.business-solution-panel > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.business-solution-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--night);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.business-solution-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.business-solution-columns article {
  padding: 20px;
  border: 1px solid var(--line);
  background: #f7f8f9;
}

.business-solution-columns h3 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.business-solution-columns ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-solution-columns li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.business-solution-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .business-solution-modal {
    padding: 14px;
  }

  .business-solution-panel {
    padding: 24px 18px;
  }

  .business-solution-columns {
    grid-template-columns: 1fr;
  }
}
/* GWH unified typography: Helvetica for text/UI, Oswald for headings. */
:root {
  --font-ui: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Oswald", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --text-size: 15px;
  --h1-size: 56px;
  --h2-size: 38px;
  --h3-size: 22px;
  --compact-heading-size: 18px;
}

body,
button,
input,
select,
textarea,
.btn,
.main-nav,
.site-footer,
.request-form,
.contact-card,
.warehouse-card,
.service-card,
.segment-word,
.business-solution-panel {
  font-family: var(--font-ui);
}

body {
  font-size: var(--text-size);
}

h1,
h2,
h3,
.hero-content h1,
.page-hero h1,
.service-hero h1,
.company-hero h1,
.objects-hero h1,
.warehouse-detail-hero h1,
.portal-card h2,
.portal-card.main-card h2,
.section-head h2,
.cta-band h2,
.split h2,
.service-card h2,
.service-card h3,
.contact-card-rich h2,
.crm-panel-head h2,
.calculator-head h3,
.business-solution-panel h2,
.business-solution-columns h3,
.warehouse-card h3,
.object-entry h3,
.use-grid h3,
.cargo-flow h3,
.object-tech-grid h3,
.security-grid h3,
.infra-security-grid h3,
.legal-page h2,
.task-grid h3,
.industry-grid h3,
.solution-card h3,
.case-grid h3,
.terms-card-grid h3,
.included-grid h3,
.document-block h3,
.terms-process h3,
.benefit-grid h3,
.site-footer h2,
.company-timeline h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-content h1,
.page-hero h1,
.service-hero h1,
.company-hero h1,
.objects-hero h1,
.warehouse-detail-hero h1,
.business-solution-panel h2 {
  font-size: var(--h1-size);
}

h2,
.portal-card h2,
.portal-card.main-card h2,
.section-head h2,
.cta-band h2,
.split h2,
.service-card h2,
.contact-card-rich h2,
.legal-page h2,
.industrial-photo-band h2,
.map-fallback h2,
.crm-panel-head h2 {
  font-size: var(--h2-size);
}

h3,
.warehouse-card h3,
.object-entry h3,
.use-grid h3,
.cargo-flow h3,
.object-tech-grid h3,
.security-grid h3,
.infra-security-grid h3,
.task-grid h3,
.industry-grid h3,
.solution-card h3,
.case-grid h3,
.terms-card-grid h3,
.included-grid h3,
.document-block h3,
.terms-process h3,
.benefit-grid h3,
.service-card h3,
.company-timeline h3,
.calculator-head h3 {
  font-size: var(--h3-size);
}

.eyebrow,
.badge,
.tag,
.stat-label,
.segment-word,
.main-nav a,
.footer-button,
.calculator-result span,
.contact-lines span,
.business-solution-columns h3,
.segment-panel h3 {
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
}

@media (max-width: 760px) {
  :root {
    --text-size: 14px;
    --h1-size: 36px;
    --h2-size: 30px;
    --h3-size: 20px;
  }

  .main-nav a {
    font-size: 14px;
  }
}
/* GWH typography and hero stability fix. */
:root {
  --text-size: 15px;
  --h1-size: 46px;
  --h2-size: 34px;
  --h3-size: 21px;
  --hero-min-height: 560px;
}

html,
body,
body *:not(svg):not(path) {
  font-family: var(--font-ui);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-content h1,
.page-hero h1,
.service-hero h1,
.company-hero h1,
.objects-hero h1,
.warehouse-detail-hero h1,
.portal-card h2,
.section-head h2,
.cta-band h2,
.split h2,
.service-card h2,
.service-card h3,
.contact-card-rich h2,
.crm-panel-head h2,
.business-solution-panel h2,
.warehouse-card h3,
.object-entry h3,
.company-timeline h3,
.company-facts strong {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-content h1,
.page-hero h1,
.service-hero h1,
.company-hero h1,
.objects-hero h1,
.warehouse-detail-hero h1,
.business-solution-panel h2 {
  font-size: var(--h1-size);
  max-width: 920px;
}

.section-head h2,
.cta-band h2,
.split h2,
.service-card h2,
.contact-card-rich h2,
.crm-panel-head h2,
.legal-page h2,
.industrial-photo-band h2,
.map-fallback h2 {
  font-size: var(--h2-size);
}

h3,
.warehouse-card h3,
.service-card h3,
.object-entry h3,
.use-grid h3,
.cargo-flow h3,
.object-tech-grid h3,
.security-grid h3,
.infra-security-grid h3,
.task-grid h3,
.industry-grid h3,
.solution-card h3,
.case-grid h3,
.terms-card-grid h3,
.included-grid h3,
.document-block h3,
.terms-process h3,
.benefit-grid h3,
.company-timeline h3,
.calculator-head h3 {
  font-size: var(--h3-size);
}

.page-hero,
.contact-hero,
.about-hero,
.company-hero,
.service-hero,
.objects-hero,
.warehouse-detail-hero {
  min-height: var(--hero-min-height);
  display: grid;
  align-items: end;
  padding-top: 86px;
  padding-bottom: 58px;
}

.page-hero > *,
.contact-hero > *,
.about-hero > *,
.company-hero > *,
.service-hero > *,
.objects-hero > *,
.warehouse-detail-hero > * {
  position: relative;
  z-index: 1;
}

.about-hero,
.company-hero {
  background:
    linear-gradient(90deg, rgba(7, 10, 13, 0.96) 0%, rgba(7, 10, 13, 0.82) 48%, rgba(7, 10, 13, 0.46) 100%),
    url("assets/gfdxbttt6.jpg") center/cover;
}

.about-hero h1,
.about-hero p,
.company-hero h1,
.company-hero p {
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.company-hero > div {
  max-width: 960px;
}

.company-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.company-facts strong {
  font-size: 34px;
}

.company-facts article {
  min-height: 138px;
}

@media (max-width: 760px) {
  :root {
    --text-size: 14px;
    --h1-size: 34px;
    --h2-size: 28px;
    --h3-size: 19px;
    --hero-min-height: 460px;
  }

  .page-hero,
  .contact-hero,
  .about-hero,
  .company-hero,
  .service-hero,
  .objects-hero,
  .warehouse-detail-hero {
    padding-top: 58px;
    padding-bottom: 40px;
  }

  .company-facts strong {
    font-size: 30px;
  }
}
/* Align company facts values and labels on one visual line. */
.company-facts article {
  min-height: 150px;
  grid-template-rows: 58px 48px;
  align-content: center;
  align-items: start;
  gap: 10px;
}

.company-facts strong {
  min-height: 58px;
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  font-size: 34px;
  line-height: 1;
}

.company-facts span {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .company-facts article {
    grid-template-rows: auto auto;
    min-height: 120px;
  }

  .company-facts strong {
    min-height: auto;
    font-size: 30px;
  }

  .company-facts span {
    min-height: auto;
  }
}

.lead-measure-field {
  display: grid;
  gap: 10px;
}

.lead-measure-title {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead-measure-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lead-measure-toggle label {
  position: relative;
  min-height: 44px;
  margin: 0;
}

.lead-measure-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.lead-measure-toggle span {
  display: grid;
  place-items: center;
  height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lead-measure-toggle input:checked + span {
  border-color: var(--accent);
  background: rgba(255, 106, 43, 0.1);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 106, 43, 0.18) inset;
}

.lead-measure-toggle span:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 43, 0.42);
}

.lead-measure-input {
  margin: 0;
}

.request-form input::placeholder,
.crm-request-form input::placeholder,
.compact-request-form input::placeholder {
  color: rgba(31, 35, 40, 0.38);
}

.request-form input.is-invalid {
  border-color: #d64a21;
  box-shadow: 0 0 0 1px rgba(214, 74, 33, 0.16);
}
/* Unified first-screen height across main content pages. */
.page-hero.compact,
.contact-hero,
.service-hero,
.audience-hero,
.terms-hero,
.infrastructure-hero {
  width: 100%;
  min-height: 660px;
  display: grid;
  align-content: end;
  align-items: end;
  padding-top: 96px;
  padding-bottom: 58px;
  padding-left: max(16px, calc((100% - var(--site-width)) / 2));
  padding-right: max(16px, calc((100% - var(--site-width)) / 2));
}

.service-hero {
  grid-template-columns: minmax(0, 1fr);
}

.service-hero-content,
.page-hero.compact > *,
.contact-hero > *,
.audience-hero > *,
.terms-hero > *,
.infrastructure-hero > * {
  width: min(var(--site-width), 100%);
  max-width: var(--site-width);
}

@media (max-width: 760px) {
  .page-hero.compact,
  .contact-hero,
  .service-hero,
  .audience-hero,
  .terms-hero,
  .infrastructure-hero {
    min-height: var(--hero-min-height);
    padding-top: 58px;
    padding-bottom: 40px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
