:root {
  --color-navy: #1e3661;
  --color-navy-dark: #152847;
  --color-orange: #e29f61;
  --color-orange-dark: #cf8848;
  --color-grey: #45515b;
  --color-grey-muted: #6a747d;
  --color-bg: #f4f6f8;
  --color-bg-alt: #e9edf2;
  --color-surface: #ffffff;
  --color-dark: #1e3661;
  --color-dark-soft: #45515b;
  --color-primary: #1e3661;
  --color-primary-light: #2a4a7a;
  --color-accent: #e29f61;
  --color-accent-light: #eeb37d;
  --color-text: #45515b;
  --color-text-muted: #6a747d;
  --color-border: rgba(30, 54, 97, 0.12);
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: var(--font-sans);
  --font-display: var(--font-sans);
  --font-ui: var(--font-sans);
  --shadow-sm: 0 4px 20px rgba(30, 54, 97, 0.08);
  --shadow-md: 0 12px 40px rgba(30, 54, 97, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1160px;
  --header-h: 76px;
  --section-py: 3.25rem;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-reveal: 0.9s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(30, 54, 97, 0.06), transparent 55%),
    var(--color-bg);
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2 {
  font-family: var(--font-ui);
  line-height: 1.14;
  color: var(--color-navy);
  margin: 0 0 0.85rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-ui);
  line-height: 1.25;
  color: var(--color-navy);
  margin: 0 0 0.75rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 3.35rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

h3 {
  font-size: 1.02rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--color-navy);
  color: #e8edf3;
}

.section--dark h2 {
  color: #fff;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section__tag--light {
  color: var(--color-accent-light);
}

.section__intro {
  max-width: 600px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(15, 28, 50, 0.42);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    height 0.45s var(--ease-premium),
    background 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
}

.header.is-scrolled {
  height: 68px;
  background: rgba(15, 28, 50, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(8, 16, 32, 0.35);
}

.header.is-scrolled .logo__img {
  height: 38px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  display: block;
  height: 42px;
  width: auto;
  transition: height 0.45s var(--ease-premium), transform 0.45s var(--ease-premium), filter 0.45s var(--ease-premium);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

.header:not(.is-scrolled) .logo:hover .logo__img {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 20px rgba(226, 159, 97, 0.35));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color 0.25s var(--ease-premium);
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-premium);
}

.nav__links a:not(.nav__cta):hover::after,
.nav__links a:not(.nav__cta):focus-visible::after {
  transform: scaleX(1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__links a:hover {
  color: #fff;
}

.nav__cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--color-navy);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  background: var(--color-orange) !important;
  color: var(--color-navy) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(82vh, 720px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  overflow: hidden;
  contain: paint;
  background: var(--color-navy);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__photo {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  will-change: transform;
  animation: heroKenBurns 18s var(--ease-out-expo) infinite alternate;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.06) translateY(0);
  }
  to {
    transform: scale(1.14) translateY(-1.5%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(21, 40, 71, 0.92) 0%, rgba(30, 54, 97, 0.78) 45%, rgba(30, 54, 97, 0.55) 100%),
    radial-gradient(circle at 85% 15%, rgba(226, 159, 97, 0.18), transparent 42%);
  transition: opacity 0.3s linear;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__logo {
  display: block;
  width: min(100%, clamp(220px, 42vw, 360px));
  height: auto;
  margin-bottom: 1.35rem;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
}

.hero__scroll {
  display: inline-flex;
  margin-top: 2.5rem;
  padding: 0.5rem;
}

.hero__scroll-line {
  display: block;
  width: 2px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--color-orange), transparent);
  animation: scrollPulse 2s var(--ease-premium) infinite;
}

@keyframes scrollPulse {
  0% {
    opacity: 0.3;
    transform: scaleY(0.55) translateY(-8px);
  }
  50% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
  100% {
    opacity: 0.3;
    transform: scaleY(0.55) translateY(8px);
  }
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(226, 159, 97, 0.18);
  color: var(--color-accent-light);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero__lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero__badges li {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-premium),
    background 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium),
    color 0.35s var(--ease-premium);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-premium);
}

.btn:hover::after {
  transform: translateX(120%);
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-navy);
  box-shadow: 0 8px 24px rgba(226, 159, 97, 0.35);
}

.btn--primary:hover {
  background: var(--color-accent-light);
  box-shadow: 0 12px 32px rgba(226, 159, 97, 0.42);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--full {
  width: 100%;
}

/* Concept keywords */
.concept {
  padding: 1.5rem 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.concept__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.concept__core {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(226, 159, 97, 0.55);
  background: rgba(226, 159, 97, 0.08);
  box-shadow: 0 0 0 0 rgba(226, 159, 97, 0.35);
  animation: corePulse 3s var(--ease-premium) infinite;
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(226, 159, 97, 0.28);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(226, 159, 97, 0);
  }
}

.concept__core span {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.concept__word {
  font-family: var(--font-ui);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--color-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat {
  transition: transform 0.5s var(--ease-premium);
}

.stat.is-visible {
  animation: statPop 0.7s var(--ease-out-expo) both;
}

@keyframes statPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logistics band */
.logistics-band {
  overflow: hidden;
  background: linear-gradient(90deg, var(--color-navy-dark), var(--color-navy));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logistics-band__track {
  display: flex;
  width: max-content;
  animation: truckMarquee 28s linear infinite;
}

.logistics-band__row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logistics-band__sep {
  display: block;
  width: 12px;
  height: 20px;
  flex-shrink: 0;
  background: url("/logo-bolt.svg") center / contain no-repeat;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(226, 159, 97, 0.45));
}

.logistics-band__row > span:not(.logistics-band__sep) {
  color: var(--color-accent-light);
}

@keyframes truckMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Stats bar */
.stats-bar {
  background: var(--color-grey);
  color: #fff;
  padding: 1.75rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat__value,
.stat__suffix {
  font-family: var(--font-ui);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--color-orange);
}

.stat__suffix {
  margin-left: -0.15em;
}

.stat__label {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.65);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.about__text p {
  color: var(--color-text-muted);
}

.about__visual {
  display: grid;
  gap: 1rem;
}

.photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition:
    box-shadow 0.5s var(--ease-premium),
    transform 0.5s var(--ease-premium);
}

.photo-card--zoom {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.photo-card--zoom:hover {
  box-shadow: 0 24px 56px rgba(30, 54, 97, 0.18);
}

.photo-card--zoom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 54, 97, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-premium);
  pointer-events: none;
}

.photo-card--zoom:hover::after {
  opacity: 1;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.photo-card--zoom:hover img {
  transform: scale(1.08);
}

.photo-card--main img {
  min-height: 200px;
  max-height: 260px;
}

.photo-grid {
  display: grid;
  gap: 1rem;
}

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

.photo-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-grey);
  background: var(--color-surface);
}

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.5s var(--ease-premium),
    box-shadow 0.5s var(--ease-premium);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-card--featured .photo-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
}

.product-card .photo-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  flex: 1;
  min-height: 0;
}

.product-card .photo-card img {
  min-height: 0;
  max-height: 180px;
}

.product-card--featured .photo-card img {
  max-height: 200px;
}

.product-card__body {
  padding: 1.15rem;
}

.product-card__body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.product-card__body p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Timeline vertical */
.timeline-head {
  max-width: 680px;
  margin-bottom: 2rem;
}

.timeline-v {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0.5rem 0 1rem;
}

.timeline-v__track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline-v__line {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(30, 54, 97, 0.12);
}

.timeline-v__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-orange), var(--color-navy));
  box-shadow: 0 0 16px rgba(226, 159, 97, 0.45);
  transition: height 0.15s linear;
}

.timeline-v__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

.timeline-v__item--last {
  margin-bottom: 0;
}

.timeline-v__item--left .timeline-v__card {
  grid-column: 1;
  grid-row: 1;
}

.timeline-v__item--left .timeline-v__marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline-v__item--right .timeline-v__marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline-v__item--right .timeline-v__card {
  grid-column: 3;
  grid-row: 1;
}

.timeline-v__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 2;
}

.timeline-v__dot {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 3px solid var(--color-orange);
  box-shadow: 0 0 0 4px var(--color-bg-alt);
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}

.timeline-v__item.is-visible .timeline-v__dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px var(--color-bg-alt), 0 0 0 8px rgba(226, 159, 97, 0.25);
}

.timeline-v__dot--active {
  width: 22px;
  height: 22px;
  background: var(--color-navy);
  border-color: var(--color-orange);
}

.timeline-v__dot--future {
  border-style: dashed;
  background: var(--color-bg-alt);
}

.timeline-v__dot--bolt {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: var(--color-navy);
  box-shadow: 0 8px 24px rgba(30, 54, 97, 0.22);
}

.timeline-v__dot--bolt img {
  width: 14px;
  height: auto;
}

.timeline-v__year {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey-muted);
  white-space: nowrap;
}

.timeline-v__card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.5s var(--ease-premium),
    box-shadow 0.5s var(--ease-premium);
}

.timeline-v__item--left .timeline-v__card {
  text-align: right;
}

.timeline-v__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-v__card--highlight {
  background: linear-gradient(155deg, var(--color-navy), var(--color-primary-light));
  border: none;
  color: #fff;
}

.timeline-v__card--highlight h3,
.timeline-v__card--highlight .timeline-v__date,
.timeline-v__card--highlight p {
  color: #fff;
}

.timeline-v__card--highlight .timeline-v__stats li {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.timeline-v__card--highlight .timeline-v__stats strong {
  color: var(--color-accent-light);
}

.timeline-v__card--future {
  border-style: dashed;
  border-color: rgba(30, 54, 97, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.timeline-v__card--quote {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 1rem 0;
}

.timeline-v__card--quote p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-navy);
}

.timeline-v__date {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.timeline-v__card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.timeline-v__card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.timeline-v__card--highlight p {
  color: rgba(255, 255, 255, 0.88);
}

.timeline-v__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-v__item--left .timeline-v__stats {
  justify-content: flex-end;
}

.timeline-v__stats li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--color-bg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-grey);
}

.timeline-v__stats strong {
  color: var(--color-navy);
  font-weight: 700;
}

.timeline-v__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-v__item--left .timeline-v__tags {
  justify-content: flex-end;
}

.timeline-v__tags li {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-navy);
  background: rgba(30, 54, 97, 0.04);
}

@media (max-width: 768px) {
  .timeline-v__track {
    left: 20px;
    transform: none;
  }

  .timeline-v__item,
  .timeline-v__item--left,
  .timeline-v__item--right {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 1rem;
    padding-left: 0.25rem;
  }

  .timeline-v__marker {
    grid-column: 1 !important;
    grid-row: 1;
    align-items: flex-start;
    padding-top: 1.4rem;
  }

  .timeline-v__card {
    grid-column: 2 !important;
    grid-row: 1;
    text-align: left !important;
  }

  .timeline-v__item--left .timeline-v__stats,
  .timeline-v__item--left .timeline-v__tags {
    justify-content: flex-start;
  }

  .timeline-v__year {
    display: none;
  }
}

/* MVV */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mvv--nested {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.mvv__block {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}

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

.values-list {
  display: grid;
  gap: 0.5rem;
}

.values-list li {
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: var(--color-bg);
  font-weight: 600;
  color: var(--color-dark);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.feature {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.45s var(--ease-premium),
    transform 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(226, 159, 97, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.feature h3 {
  color: var(--color-orange);
  margin-bottom: 0.65rem;
}

.feature p {
  margin: 0;
  color: rgba(232, 237, 243, 0.78);
  font-size: 0.95rem;
}

/* Structure */
.structure {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.structure__intro p {
  color: var(--color-text-muted);
}

.structure__assets {
  margin-top: 1.5rem;
}

.structure__assets li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.structure__assets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}

.structure__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.structure__metrics--inline {
  margin-top: 2rem;
}

.structure__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.structure__gallery .photo-card--tall {
  grid-row: span 2;
}

.structure__gallery .photo-card--tall img {
  height: 100%;
  min-height: 240px;
  max-height: 300px;
}

.structure__gallery .photo-card:not(.photo-card--tall) img {
  min-height: 140px;
  max-height: 160px;
}

.metric-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}

.metric-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 48px rgba(30, 54, 97, 0.14);
}

.metric-card__value,
.metric-card__suffix {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--color-primary);
}

.metric-card__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Commitment */
.commitment__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.commitment__inner h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.65rem;
}

.commitment__inner p {
  color: var(--color-text-muted);
}

.commitment__quote {
  margin: 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--color-surface);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info p {
  color: var(--color-text-muted);
}

.contact__details {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.contact__details dt {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.contact__details dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-grey);
}

.contact__details a {
  color: var(--color-navy);
  transition: color 0.2s;
}

.contact__details a:hover {
  color: var(--color-orange-dark);
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-navy);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: var(--color-navy);
  color: #fff;
}

.contact__form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact__form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-dark);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(30, 54, 97, 0.12);
}

.contact__note {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-navy);
  font-weight: 600;
}

/* Footer */
.footer {
  padding: 1.75rem 0;
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo--footer .logo__img {
  height: 48px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.footer__copy {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
}

/* Animations */
.reveal {
  opacity: 0;
  transition:
    opacity var(--duration-reveal) var(--ease-out-expo),
    transform var(--duration-reveal) var(--ease-out-expo),
    filter var(--duration-reveal) var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal--up {
  transform: translateY(48px);
}

.reveal--down {
  transform: translateY(-48px);
}

.reveal--left {
  transform: translateX(-56px);
}

.reveal--right {
  transform: translateX(56px);
}

.reveal--scale {
  transform: scale(0.88);
}

.reveal--fade {
  transform: none;
  filter: blur(8px);
}

.reveal--fade.is-visible {
  filter: blur(0);
}

.section.reveal.is-visible,
.stats-bar.reveal.is-visible,
.logistics-band.reveal.is-visible {
  animation: none;
}

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

  .reveal,
  .hero__photo,
  .logistics-band__track,
  .logistics-band__row .logistics-band__sep,
  .concept__core,
  .hero__scroll-line,
  .btn::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }
  .about,
  .timeline-v,
  .mvv,
  .features,
  .products,
  .product-card--featured,
  .structure,
  .structure__gallery,
  .commitment__inner,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .product-card--featured {
    display: flex;
    flex-direction: column;
  }

  .structure__gallery .photo-card--tall {
    grid-row: auto;
  }

  .structure__gallery .photo-card--tall img {
    min-height: 200px;
    max-height: 240px;
  }

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

@media (max-width: 720px) {
  :root {
    --section-py: 2.75rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(15, 28, 50, 0.96);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 48px rgba(8, 16, 32, 0.4);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links li a {
    display: block;
    padding: 0.85rem 0.5rem;
  }

  .nav__links .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .nav__toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
