/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Onest', -apple-system, system-ui, sans-serif;
  background: #f0f0f0;
  color: #1c2330;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ─── TOKENS ────────────────────────────────────────────── */
:root {
  --bg: #f0f0f0;
  --dark: #1a273f;
  --navy: #1c2330;
  --accent: #f95838;
  --border: #c8c8c8;
  --text-muted: rgba(28,35,48,0.5);
  --white: #ffffff;
  --f5: #f5f5f5;
  --pad: clamp(60px, 8vw, 120px);
  --max: 1760px;
  --radius: 6px;
}

/* ─── SIDEBAR PAGE LINE ─────────────────────────────────── */
.page-line {
  display: none;
}

/* ─── SECTION LABEL ─────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  margin-left: -32px;
}
.section-label__dot {
  width: 14px; height: 14px;
  border-radius: 2px;
  background: var(--border);
  flex-shrink: 0;
}
.section-label__text {
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-label--light .section-label__text { color: var(--border); }
.section-label--light .section-label__dot { background: var(--border); }

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 77px;
  display: flex;
  align-items: center;
  gap: 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 77px; right: 77px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(26,39,63,0.94);
  backdrop-filter: blur(16px);
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 60px; width: auto; }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
  margin-right: 60px;
}
.nav__links a {
  font-size: 18px;
  font-weight: 400;
  color: white;
  letter-spacing: -0.03em;
  opacity: 0.9;
  transition: opacity 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.75);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.28s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 32px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: white;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: rgba(255,255,255,0.25); }
.nav__cta-arrow {
  width: 18px; height: 18px;
  opacity: 0.85;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 6; /* covers fixed journey/page lines (z-index 5) — line invisible in hero */
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #1a273f;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08) translateY(0px);
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(81deg, rgba(24,34,51,0.56) 27%, rgba(68,102,165,0) 93%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 77px 80px 112px;
}
.hero__heading {
  font-size: clamp(52px, 6.5vw, 102px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  text-transform: uppercase;
  max-width: 1420px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero__heading.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about {
  background: var(--bg);
  padding: 160px 80px 160px 112px;
}
.about__brow {
  margin-bottom: 24px;
}
.about__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 80px;
}
.about__logo {
  width: 100%;
}
.about__logo img { width: 100%; height: auto; }
.about__text {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: var(--navy);
}

/* ─── INFRASTRUCTURE ─────────────────────────────────────── */
.infrastructure {
  background: var(--bg);
  padding: 60px 80px 60px 112px;
  position: relative;
  overflow: visible;
}
.infrastructure__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
.infrastructure__heading {
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.infrastructure__desc {
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: var(--navy);
  align-self: end;
}
.warehouse-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 600px;
  position: relative;
}
.warehouse-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.warehouse-scene {
  position: relative;
  aspect-ratio: 1008 / 840;
  overflow: visible;
}
.warehouse-body {
  position: absolute;
  /* Background starts at ~10% from container top (Figma: 84.5px / 840px) */
  top: 10.1%;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.warehouse-body img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: top center;
}
.warehouse-roof {
  position: absolute;
  /* Figma: roof center at 50%-112px of 840px container → top ≈ 22% */
  top: 22%;
  left: 3.66%;
  right: 10.22%;
  height: 29.3%;
  z-index: 2;
  will-change: transform;
}
.warehouse-roof img {
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
  object-position: top left;
}

/* Feature Cards */
.infra-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 140px;
  opacity: 0;
  transition: box-shadow 0.55s ease, transform 0.55s ease;
}
.infra-card:hover {
  box-shadow: 0 10px 36px rgba(28,35,48,0.11);
  transform: translateY(-5px) !important;
}
.infra-card.visible {
  opacity: 1;
  transform: translateX(0) !important;
}
.warehouse-cards--left .infra-card { transform: translateX(-30px); }
.warehouse-cards--right .infra-card { transform: translateX(30px); }
.warehouse-cards--left { padding-left: 0; }
/* Package icon (3rd card) is natively upside-down — flip vertically */
.warehouse-cards--left .infra-card:nth-child(3) .infra-card__icon img {
  transform: scaleY(-1);
}
.infra-card__icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.infra-card__icon img { width: 100%; height: 100%; object-fit: contain; }

/* ─── GLOBAL JOURNEY LINE ───────────────────────────────── */
/* Fixed to viewport, grows as user scrolls through all sections */
.journey-line {
  position: fixed;
  left: 87px;
  top: 80px;
  width: 1px;
  height: calc(100vh - 80px);
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.journey-line__fill {
  position: absolute;
  inset: 0;
  background: var(--border);
  transform: scaleY(0);
  transform-origin: top center;
}
@media (max-width: 900px) {
  .journey-line { display: none; }
}
/* Section-label dot sits above the line */
.infrastructure > .section-label {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.infra-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}
.infra-card__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ─── DARK SECTIONS ─────────────────────────────────────── */
.dark-bg {
  background: var(--dark);
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq {
  padding: var(--pad) 80px var(--pad) 112px;
}
/* Row 1: heading (left) | description (right) */
.faq__header {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
/* Row 2: tabs+contact (left) | accordion (right) */
.faq__body {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 60px;
  align-items: start;
}
.faq__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__heading {
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--f5);
}
.faq__desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.faq__tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__tab {
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--f5);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
  background: rgba(255,255,255,0.08);
}
.faq__tab.active, .faq__tab:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.faq__contact {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.faq__contact-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--f5);
  margin-bottom: 12px;
}
.faq__contact-text {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.faq__contact-link { color: white; font-weight: 600; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  transition: background 0.2s;
}
.faq__item.open { background: rgba(255,255,255,0.14); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  cursor: pointer;
  gap: 20px;
}
.faq__question-text {
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 700;
  color: var(--f5);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.faq__toggle {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.faq__toggle::before, .faq__toggle::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 2px;
}
.faq__toggle::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq__toggle::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: transform 0.3s ease, opacity 0.3s ease; }
.faq__item.open .faq__toggle::after { transform: rotate(90deg); opacity: 0; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__answer-inner {
  padding: 0 32px 22px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* ─── NEWS ──────────────────────────────────────────────── */
.news {
  padding: var(--pad) 80px var(--pad) 112px;
}
.news__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.news__heading {
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--f5);
}
.news__desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* ─── NEWS GRID ─────────────────────────────────────────── */
.news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 100px;
  gap: 16px;
  min-height: 860px;
}

/* Col 1 spans all 3 rows */
.news-card--large {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: block;
}
/* Col 2, row 1 */
.news-card--text {
  grid-column: 2;
  grid-row: 1;
}
/* Col 2, rows 2–3 */
.news-card--photo {
  grid-column: 2;
  grid-row: 2 / span 2;
}
/* Col 3, rows 1–2 — ticker spans both */
.news-card--ticker {
  grid-column: 3;
  grid-row: 1 / span 2;
}
/* Col 3, row 3 — short CTA */
.news-card--cta {
  grid-column: 3;
  grid-row: 3;
}

/* Base card */
.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* Photo wrap — shared for large, photo, ticker cards */
.news-card__photo-wrap {
  position: relative;
  overflow: hidden;
}
.news-card--large .news-card__photo-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.news-card--photo .news-card__photo-wrap {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
}
.news-card__photo-wrap img,
.news-card__photo-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,25,0.85) 40%, rgba(10,15,25,0.2) 100%);
  pointer-events: none;
}

/* Large card — label at top, body overlaid at bottom */
.news-card--large > .news-card__label {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
}
.news-card--large .news-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card__label {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}
.news-card__date {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.news-card__title {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  color: var(--f5);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.news-card__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.news-card__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  color: var(--f5);
  letter-spacing: -0.02em;
  transition: gap 0.2s;
  margin-top: auto;
}
.news-card__link:hover { gap: 16px; }
.news-card__link-arrow { width: 20px; height: 20px; opacity: 0.85; }

/* Text card (middle top) */
.news-card--text {
  background: rgba(255,255,255,0.1);
}
.news-card__body--text {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card--text .news-card__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-card__text-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Photo card (middle bottom) */
.news-card--photo {
  min-height: 200px;
}
.news-card__photo-caption {
  position: absolute;
  inset: 0;
  padding: 24px;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news-card__photo-caption .news-card__text--small {
  position: absolute;
  bottom: 20px;
  left: 24px; right: 24px;
}
.news-card__title--sm {
  font-size: clamp(18px, 1.5vw, 22px);
}
.news-card__text--small {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-top: 6px;
}

/* ─── TICKER CARD ────────────────────────────────────────── */
.news-card--ticker {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-card--ticker .news-card__photo-wrap {
  position: absolute;
  inset: 0;
}
.news-card__overlay--ticker {
  background: linear-gradient(
    to bottom,
    rgba(10,15,25,0.55) 0%,
    rgba(10,15,25,0.05) 45%,
    rgba(10,15,25,0.75) 100%
  );
}
.news-card__ticker-top {
  position: relative;
  z-index: 2;
  padding: 28px 28px 0;
}
.news-card__ticker-bottom {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* News ticker (inside card) */
.news-ticker {
  overflow: hidden;
  cursor: default;
}
.news-ticker__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
  padding: 0 0 0 16px;
}
.news-ticker__track:hover { animation-play-state: paused; }
.news-ticker__track--reverse {
  animation-name: marqueeScrollReverse;
  animation-duration: 24s;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* E-commerce box icon: flip vertically + make white */
.tag-pill--ecommerce .tag-pill__icon img {
  filter: brightness(0) invert(1);
  transform: scaleY(-1);
}

/* Tag pills (shared: in ticker card) */
.tag-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  color: var(--f5);
  letter-spacing: -0.02em;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: background 0.2s;
}
.tag-pill:hover { background: rgba(255,255,255,0.25); }
.tag-pill__icon {
  width: 22px; height: 22px;
  opacity: 0.9;
  flex-shrink: 0;
}
.tag-pill__icon img { width: 100%; height: 100%; object-fit: contain; }

/* CTA card */
.news-card--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  gap: 16px;
}
.news-card--cta:hover { background: rgba(255,255,255,0.16); }
.news-cta__text {
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 700;
  color: var(--f5);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.news-cta__arrow {
  width: clamp(32px, 3vw, 52px);
  height: clamp(32px, 3vw, 52px);
  flex-shrink: 0;
  color: var(--f5);
  opacity: 0.85;
}

/* ─── CONTACTS ──────────────────────────────────────────── */
.contacts {
  background: var(--bg);
  padding: var(--pad) 80px var(--pad) 112px;
}
.contacts__heading {
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 60px;
  padding-left: 25px;
}
.contacts__layout {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}
.contacts__globe-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}
.contacts__globe-wrap::before,
.contacts__globe-wrap::after { display: none; }
#map { width: 100%; height: 100%; }
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.contact-block__label {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-block__value {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ─── FORM ──────────────────────────────────────────────── */
.contact-form-section {
  background: var(--bg);
  padding: var(--pad) 80px var(--pad) 112px;
}
.form__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.form__body {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: clamp(40px, 4vw, 80px);
  align-items: center;
}
.form__heading {
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 700px;
  flex-shrink: 0;
}
.form__desc {
  font-size: clamp(16px, 1.2vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 560px;
}
.form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.form__input {
  width: 100%;
  padding: 18px 22px;
  border: 1px solid #dcdcdc;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 300;
  font-family: inherit;
  color: var(--navy);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: -0.02em;
  -webkit-appearance: none;
}
.form__input::placeholder { color: var(--text-muted); }
.form__input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,35,48,0.08); }
.form__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 20px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.form__submit:hover { background: #e04f30; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,88,56,0.4); }
.form__submit:active { transform: scale(0.98); }
.form__legal {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 16px;
}
.form__right {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}
.form__right img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── FOOTER DOTS ────────────────────────────────────────── */
.footer-dots {
  position: relative;
  height: 100px;
  overflow: hidden;
}
.footer-dots__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 200%;
  height: 70px;
  opacity: 0.6;
  transform: translateY(-50%);
  background-image:
    radial-gradient(circle, rgb(255 255 255 / 0.55) 1.5px, transparent 2px),
    radial-gradient(circle, rgb(255 255 255 / 0.35) 1px,   transparent 1.5px),
    radial-gradient(circle, rgb(255 255 255 / 0.45) 1.2px, transparent 1.8px);
  background-position: 0 8px, 24px 22px, 48px 14px;
  background-size: 72px 38px, 110px 44px, 160px 52px;
  animation: footerDotsMove 18s linear infinite;
}
@keyframes footerDotsMove {
  from { transform: translate3d(0,    -50%, 0); }
  to   { transform: translate3d(-50%, -50%, 0); }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: white;
  overflow: hidden;
  position: relative;
  z-index: 10; /* paints above the fixed journey/page lines */
}
.site-footer__inner {
  padding: clamp(48px, 5vw, 80px) clamp(48px, 5vw, 80px) 0 112px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 80px);
}
.site-footer__tagline {
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: white;
  max-width: 680px;
}
.site-footer__navs {
  display: flex;
  gap: clamp(28px, 5vw, 80px);
  align-items: flex-start;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 18px);
}
.site-footer__nav a {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 180ms ease;
  display: block;
  white-space: nowrap;
}
.site-footer__nav a:hover { color: white; }
.site-footer__nav--wide a { white-space: normal; }

/* Footer logo row */
.site-footer__logo-row {
  padding: clamp(32px, 4vw, 60px) 0 clamp(16px, 2vw, 28px);
  display: flex;
  justify-content: flex-start;
}
.site-footer__logo-img {
  width: min(907px, 80vw);
  height: auto;
  display: block;
}

/* Copyright */
.site-footer__copy {
  text-align: right;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.02em;
  padding-bottom: clamp(24px, 3vw, 48px);
  padding-right: clamp(0px, 1vw, 20px);
}

/* ─── MAPLIBRE OVERRIDES ─────────────────────────────────── */
.maplibregl-canvas { border-radius: 0; }
.maplibregl-ctrl-attrib { display: none; }
.maplibregl-ctrl-bottom-right { display: none; }
.maplibregl-marker { cursor: pointer; }

/* ─── SCROLL REVEAL UTILITY ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal--right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal--left.visible,
.reveal--right.visible {
  opacity: 1;
  transform: none;
}

/* Contact block hover accent */
.contact-block {
  padding-left: 20px;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.contact-block:hover { border-color: var(--accent); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .warehouse-layout { grid-template-columns: 1fr 1.8fr 1fr; gap: 20px; }
  .faq { grid-template-columns: 260px 1fr; }
  .news__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; min-height: auto; }
  .news-card--large { grid-column: 1; grid-row: 1 / span 2; }
  .news-card--text { grid-column: 2; grid-row: 1; }
  .news-card--photo { grid-column: 2; grid-row: 2; }
  .news-card--ticker { grid-column: 1; grid-row: 3; }
  .news-card--cta { grid-column: 2; grid-row: 3; }
  .site-footer__navs { gap: 28px; }
  .contacts__layout { gap: clamp(40px, 5vw, 80px); }
  .form__body { grid-template-columns: 420px 1fr; }
}

@media (max-width: 980px) {
  .nav { padding: 16px 32px; }
  .nav::after { left: 32px; right: 32px; }
  .nav__links { display: none; }
  .about__body { grid-template-columns: 1fr; }
  .infrastructure__header { grid-template-columns: 1fr; }
  .warehouse-layout { grid-template-columns: 1fr; }
  .warehouse-cards { flex-direction: row; flex-wrap: wrap; }
  .infra-card { flex: 1 1 200px; }
  .faq { grid-template-columns: 1fr; }
  .faq__left { position: static; }
  .contacts__layout { grid-template-columns: 1fr; gap: 40px; }
  .contacts__globe-wrap { max-width: 480px; }
  .form__header { flex-direction: column; gap: 20px; }
  .form__body { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__navs { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 640px) {
  :root { --pad: 48px; }
  .nav { padding: 14px 24px; }
  .hero__content { padding: 0 24px 48px; }
  .about, .infrastructure, .contacts, .contact-form-section, .faq, .news { padding-left: 24px; padding-right: 24px; }
  .news__grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .news-card--large, .news-card--text, .news-card--photo, .news-card--ticker, .news-card--cta { grid-column: 1; grid-row: auto; }
  .news-card--large { min-height: 400px; }
  .page-line { display: none; }
  .site-footer__navs { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .infra-card { opacity: 1 !important; transform: none !important; }
}

/* ─── INFRA CARD — clickable ────────────────────────────── */
.infra-card[data-popup] {
  cursor: pointer;
  position: relative;
}
.infra-card[data-popup]::after {
  content: '';
  position: absolute;
  bottom: 18px;
  right: 20px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 9H14.25M14.25 9L9.75 4.5M14.25 9L9.75 13.5' stroke='%23c8c8c8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: background-image 0.2s, transform 0.2s;
}
.infra-card[data-popup]:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 9H14.25M14.25 9L9.75 4.5M14.25 9L9.75 13.5' stroke='%23f95838' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: translateX(3px);
}

/* ─── POPUP ──────────────────────────────────────────────── */
body.popup-open { overflow: hidden; }

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 39, 63, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: #fff;
  border-radius: 12px;
  width: clamp(320px, 78vw, 1260px);
  max-height: 84vh;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(26,39,63,0.28);
  transform: scale(0.93) translateY(24px);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1), opacity 0.38s ease;
}
.popup-overlay.is-open .popup {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
  flex-shrink: 0;
}
.popup__close:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: rotate(90deg);
}

.popup__img-wrap {
  flex: 0 0 50%;
  background: #fff;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 300px;
}
.popup__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  display: block;
}

.popup__content {
  flex: 1;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 52px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.popup__content::-webkit-scrollbar { width: 4px; }
.popup__content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.popup__title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.22;
  margin: 0;
}
.popup__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.popup__features-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 6px 0 0;
}
.popup__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  border-top: 1px solid var(--border);
}
.popup__feature {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.popup__feature-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.popup__feature-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .popup { flex-direction: column; max-height: 90vh; width: 94vw; }
  .popup__img-wrap { flex: 0 0 220px; min-height: 220px; border-right: none; border-bottom: 1px solid var(--border); }
  .popup__features { grid-template-columns: 1fr; }
  .popup__close { top: 12px; right: 12px; }
}

/* ─── PRELOADER ──────────────────────────────────────────── */
body.pl-active { overflow: hidden; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  pointer-events: none;
}

#pl-squares {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, clamp(50px, 5.21vw, 100px));
  grid-template-rows: repeat(2, clamp(50px, 5.21vw, 100px));
  gap: clamp(12px, 1.25vw, 24px);
}

.pl-sq {
  background: #fff;
  will-change: transform;
}

#pl-icon-white,
#pl-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(100px, 15.2vw, 292px);
  height: auto;
  opacity: 0;
  will-change: transform, opacity;
  user-select: none;
}

#pl-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(175px, 33.44vw, 642px);
  height: auto;
  opacity: 0;
  will-change: transform, opacity;
  user-select: none;
}

/* ─── COOKIE BANNER ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8888;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.cookie-banner__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.cookie-banner__text a { color: var(--accent); }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__accept {
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.cookie-banner__accept:hover { opacity: 0.88; }
.cookie-banner__decline {
  padding: 10px 20px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  font-size: 14px;
  transition: background 0.2s;
}
.cookie-banner__decline:hover { background: rgba(255,255,255,0.13); }

/* ─── FORM VALIDATION STATES ────────────────────────────── */
.form__field-wrap { position: relative; }
.form__error {
  font-size: 12px;
  font-weight: 500;
  color: #e53935;
  margin-top: 6px;
  display: none;
  padding-left: 2px;
}
.form__input.is-error { border-color: #e53935 !important; background: rgba(229,57,53,0.04); }
.form__input.is-error:focus { box-shadow: 0 0 0 3px rgba(229,57,53,0.12); }
.form__input.is-success { border-color: #43a047; }

/* ─── SUCCESS POPUP ─────────────────────────────────────── */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(26,39,63,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.success-overlay.is-open { opacity: 1; pointer-events: all; }
.success-popup {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  max-width: 460px;
  width: 90vw;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.success-overlay.is-open .success-popup { transform: scale(1) translateY(0); }
.success-popup__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.success-popup__close:hover { background: rgba(0,0,0,0.06); color: var(--dark); }
.success-popup__icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(67,160,71,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.success-popup__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.success-popup__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.success-popup__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.success-popup__btn:hover { opacity: 0.82; }

/* ─── ARTICLE PAGE ───────────────────────────────────────── */
.article-hero {
  position: relative;
  height: clamp(440px, 60vh, 680px);
  overflow: hidden;
}
.article-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,39,63,0.45) 0%, rgba(26,39,63,0.88) 100%);
}
.article-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 60px;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
}
.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.article-hero__back:hover { color: rgba(255,255,255,0.9); }
.article-hero__back svg { width: 16px; height: 16px; }
.article-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.article-hero__label::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.article-hero__heading {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 840px;
  margin-bottom: 22px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.article-hero__meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 48px) 80px;
}
.article-body__lead {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 52px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 300;
}
.article-body h2 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin: 56px 0 20px;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
}
.article-body figure { margin: 52px 0; }
.article-body figure img,
.article-body figure video {
  width: 100%; border-radius: 10px; display: block;
}
.article-body figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.article-body ul, .article-body ol {
  margin: 0 0 28px 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 300;
}
.article-body li { margin-bottom: 6px; }
.article-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 52px 0;
}
.article-fact { background: var(--bg); padding: 32px 24px; }
.article-fact__num {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.article-fact__num em { color: var(--accent); font-style: normal; }
.article-fact__label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.article-related {
  background: var(--dark);
  padding: 72px var(--pad);
}
.article-related__inner { max-width: calc(var(--max) + var(--pad) * 2); margin: 0 auto; }
.article-related__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.article-related__heading {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
}
.article-related__all {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  transition: color 0.2s;
}
.article-related__all:hover { color: white; }
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.article-rel-card {
  display: block;
  background: rgba(255,255,255,0.04);
  padding: 28px 24px 32px;
  transition: background 0.22s;
  text-decoration: none;
}
.article-rel-card:hover { background: rgba(255,255,255,0.09); }
.article-rel-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.article-rel-card__title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin-bottom: 20px;
}
.article-rel-card__date { font-size: 12px; color: rgba(255,255,255,0.35); }
@media (max-width: 900px) {
  .article-facts { grid-template-columns: repeat(2, 1fr); }
  .article-related__grid { grid-template-columns: 1fr; }
  .article-hero__content { padding: 0 24px 48px; }
}
@media (max-width: 600px) {
  .article-facts { grid-template-columns: 1fr; }
  .article-body { padding: 48px 20px 60px; }
}

/* ─── NEWS LISTING PAGE ─────────────────────────────────── */
.news-page-hero {
  background: var(--dark);
  padding: clamp(100px, 12vw, 160px) var(--pad) clamp(52px, 5vw, 72px);
  position: relative;
}
.news-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--pad); right: var(--pad);
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.news-page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.news-page-hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.news-page-hero__heading {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.06em;
  line-height: 0.92;
}
.news-page-hero__heading span { color: var(--accent); }
.news-page-hero__count {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.news-page-body {
  padding: 56px var(--pad) 80px;
}
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.news-list-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.news-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.13);
  z-index: 2;
}
.news-list-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark);
  flex-shrink: 0;
}
.news-list-card__media img,
.news-list-card__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-list-card:hover .news-list-card__media img,
.news-list-card:hover .news-list-card__media video { transform: scale(1.04); }
.news-list-card__body {
  padding: 28px 24px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-list-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.news-list-card__title {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.news-list-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
  font-weight: 300;
}
.news-list-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.news-list-card__date { font-size: 13px; color: var(--text-muted); }
.news-list-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-list-card__link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.news-list-card:hover .news-list-card__link svg { transform: translate(2px,-2px); }
@media (max-width: 1100px) { .news-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .news-page-grid { grid-template-columns: 1fr; }
  .news-page-hero { padding: 96px 20px 48px; }
  .news-page-body { padding: 40px 20px 60px; }
}
