/* ============================================
   PALOGIX INTERNATIONAL - STYLES
   Light Theme / Tosca-CHEP-iGPS Inspired
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-white: #ffffff;
  --bg-light: #f8f9fb;
  --bg-section: #f0f2f5;
  --navy: #1a2332;
  --navy-light: #2d3a4a;
  --text-body: #5a6577;
  --text-muted: #8a95a5;
  --orange: #f57c00;
  --orange-light: #fff3e0;
  --orange-dark: #e65100;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --border: #e4e8ed;
  --border-light: #f0f2f5;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'Space Mono', 'SF Mono', monospace;
  --container: 1200px;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

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

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

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label--white {
  color: rgba(255, 255, 255, 0.8);
}

.section__header {
  margin-bottom: 72px;
}

.section__header--center {
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-top: 8px;
}

.section__intro {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 640px;
  margin-top: 20px;
  line-height: 1.7;
}

.section__intro--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  min-width: 44px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 124, 0, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
}

.btn--white {
  background: #ffffff;
  color: var(--orange-dark);
}

.btn--white:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

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

/* ---------- FADE ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
  padding: 8px 0;
}

.nav__link:hover {
  color: var(--navy);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

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

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ---------- COUNTRY SELECTOR ---------- */
.country-selector {
  position: relative;
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

.country-btn:hover {
  border-color: var(--orange);
}

.country-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

.country-chevron {
  margin-left: 2px;
  transition: transform var(--transition);
}

.country-selector.open .country-chevron {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
  overflow: hidden;
}

.country-selector.open .country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--transition);
}

.country-option:hover {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.country-option img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.country-emoji {
  font-size: 1rem;
  line-height: 1;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 24px;
  color: var(--navy);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--orange);
}

.mobile-menu__cta {
  margin-top: 24px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 20s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 35, 50, 0.55) 0%,
    rgba(26, 35, 50, 0.40) 40%,
    rgba(26, 35, 50, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  padding-top: var(--nav-height);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 48px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__angle {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-section);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 3;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  padding: 48px 0;
  background: var(--bg-section);
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trust-bar__logos img {
  height: 44px;
  width: auto;
  opacity: 0.45;
  transition: opacity var(--transition);
  filter: grayscale(100%);
}

.trust-bar__logos img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* ---------- BENEFIT BLOCKS ---------- */
.benefits {
  background: var(--bg-white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.benefit-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.benefit-card__stat {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-card__headline {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit-card__desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: 12px;
}

.benefit-card__source {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--bg-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about__intro {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-top: 24px;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--border));
}

.timeline__item {
  position: relative;
  padding: 0 0 40px 24px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline__year {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.timeline__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline__content p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- ABOUT BENCHMARKS ---------- */
.about__benchmarks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benchmark-card {
  background: var(--orange-light);
  border: 1px solid rgba(245, 124, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.benchmark-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--orange-dark);
  letter-spacing: -0.02em;
}

.benchmark-card__label {
  font-size: 0.875rem;
  color: var(--navy-light);
  margin-top: 8px;
  line-height: 1.4;
}

.benchmark-card__source {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* ---------- PRODUCTS ---------- */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}

.product-row:last-child {
  margin-bottom: 0;
}

.product-row--reverse {
  direction: rtl;
}

.product-row--reverse > * {
  direction: ltr;
}

.product-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.product-row__desc {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
}

.spec-pill__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.spec-pill__value {
  font-size: 0.875rem;
  color: var(--navy-light);
  font-weight: 500;
}

/* ---------- PRODUCT GALLERY ---------- */
.product-gallery__main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-section);
  margin-bottom: 12px;
  aspect-ratio: 4/3;
}

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

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
}

.product-gallery__thumbs img {
  width: calc(33.333% - 6px);
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}

.product-gallery__thumbs img:hover,
.product-gallery__thumbs img.active {
  opacity: 1;
  border-color: var(--orange);
}

/* ---------- CONTAINER COMPARISON ---------- */
.comparison {
  background: var(--bg-white);
}

.compare-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.compare-selectors {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.compare-select {
  appearance: none;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235a6577' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.compare-select:focus {
  outline: none;
  border-color: var(--orange);
}

.compare-vs {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.compare-row:nth-child(even) {
  background: var(--bg-light);
}

.compare-row--header {
  background: var(--orange-light) !important;
}

.compare-cell {
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: var(--navy-light);
  border-bottom: 1px solid var(--border);
}

.compare-row:last-child .compare-cell {
  border-bottom: none;
}

.compare-cell--label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.compare-row--header .compare-cell {
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 0.875rem;
}

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.service-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img img {
  transform: scale(1.03);
}

.service-card__body {
  padding: 32px;
}

.service-card__stat-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card__desc {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- SUPPLY CHAIN JOURNEY ---------- */
.journey {
  background: var(--bg-white);
}

.journey__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 0;
}

.journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 120px;
  text-align: center;
}

.journey__step--highlight .journey__icon {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
}

.journey__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--bg-white);
  transition: all var(--transition);
}

.journey__step:hover .journey__icon {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(245, 124, 0, 0.15);
}

.journey__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.journey__connector {
  display: flex;
  align-items: center;
  padding-top: 20px;
  width: 48px;
}

.journey__line {
  flex: 1;
  height: 2px;
  background: var(--orange);
  opacity: 0.4;
}

.journey__arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--orange);
  opacity: 0.6;
}

.journey__connector--return .journey__line {
  background: var(--green);
}

.journey__connector--return .journey__arrow {
  border-left-color: var(--green);
}

/* ---------- SUSTAINABILITY CALCULATOR ---------- */
.calc-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.calc-input-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.calc-input-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  transition: border-color var(--transition);
  min-height: 44px;
}

.calc-input-group input:focus {
  outline: none;
  border-color: var(--orange);
}

.calc-input-group input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.calc-input-wrap {
  position: relative;
}

.calc-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 1.125rem;
}

.calc-input-wrap input {
  padding-left: 36px;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.calc-result-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.calc-result-item:hover {
  border-color: var(--orange);
}

.calc-result-item--green {
  border-color: rgba(46, 125, 50, 0.2);
  background: var(--green-light);
}

.calc-result-icon {
  color: var(--orange);
  margin-bottom: 12px;
}

.calc-result-item--green .calc-result-icon {
  color: var(--green);
}

.calc-result-icon svg {
  width: 28px;
  height: 28px;
}

.calc-result-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.calc-result-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-top: 6px;
}

.calc-result-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.calc-source {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.calc-source a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ---------- LOCATIONS ---------- */
.locations {
  background: var(--bg-white);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.location-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.location-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.location-card.highlight {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), 0 8px 24px rgba(245, 124, 0, 0.1);
}

.location-card--featured {
  grid-column: 1 / -1;
}

.location-card__header {
  padding: 24px 28px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-card__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.location-card__flag {
  width: 28px;
  height: auto;
  border-radius: 2px;
}

.location-card__emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.location-card__badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: auto;
}

.location-card__body {
  padding: 20px 28px 28px;
}

.depot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.depot {
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.depot__city {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.depot__address {
  display: block;
  color: var(--text-body);
  font-size: 0.8125rem;
}

.depot__phone {
  display: block;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: 4px;
  font-weight: 700;
}

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

.depot__status {
  display: inline-block;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
  padding: 2px 10px;
  background: var(--green-light);
  border-radius: 100px;
}

/* ---------- DEPOT FINDER ---------- */
.depot-finder {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.depot-finder__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.depot-input-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.depot-input {
  flex: 1;
  max-width: 280px;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  min-height: 44px;
  transition: border-color var(--transition);
}

.depot-input:focus {
  outline: none;
  border-color: var(--orange);
}

.depot-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9375rem;
}

.depot-results {
  margin-top: 24px;
  text-align: left;
}

.depot-result-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.depot-result-card {
  padding: 16px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.depot-result-card:first-child {
  border-color: var(--orange);
  background: var(--orange-light);
}

.depot-result-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.depot-result-info p {
  font-size: 0.8125rem;
  color: var(--text-body);
}

.depot-result-info a {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.depot-result-distance {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* ---------- SUPPLY CHAIN BANNER ---------- */
.supply-chain-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 96px 0;
}

.supply-chain-banner__inner {
  max-width: 720px;
}

.supply-chain-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 8px;
  margin-bottom: 20px;
}

.supply-chain-banner__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.supply-chain-banner__text strong {
  color: #ffffff;
}

.supply-chain-banner__features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.supply-chain-banner__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ---------- CONTACT ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235a6577' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__success {
  padding: 20px 24px;
  background: var(--green-light);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 500;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-info__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-info__text {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.contact-info__text a {
  color: var(--orange);
}

.contact-info__text a:hover {
  text-decoration: underline;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px 0 40px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

.footer__note {
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .journey__flow {
    gap: 8px;
  }

  .journey__step {
    width: 100px;
  }

  .journey__connector {
    width: 32px;
  }
}

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

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .product-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-row--reverse {
    direction: ltr;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .journey__flow {
    flex-wrap: wrap;
    gap: 4px;
  }

  .journey__step {
    width: 90px;
  }

  .journey__connector {
    width: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .section {
    padding: 80px 0;
  }

  .section__header {
    margin-bottom: 48px;
  }

  .nav__links,
  .nav__right {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

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

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero__angle {
    height: 48px;
  }

  /* Calculator */
  .calc-card {
    padding: 24px;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calc-results {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Comparison */
  .compare-card {
    padding: 24px;
  }

  .compare-selectors {
    flex-direction: column;
    gap: 12px;
  }

  .compare-select {
    min-width: 100%;
  }

  .compare-cell {
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  .compare-cell--label {
    font-size: 0.6875rem;
  }

  /* Depot Finder */
  .depot-finder {
    padding: 24px;
  }

  .depot-input-row {
    flex-direction: column;
  }

  .depot-input {
    max-width: 100%;
  }

  .depot-result-card {
    flex-direction: column;
    gap: 8px;
  }

  /* Journey */
  .journey__flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .journey__connector {
    width: 2px;
    height: 32px;
    flex-direction: column;
    padding-top: 0;
  }

  .journey__line {
    width: 2px;
    height: 100%;
  }

  .journey__arrow {
    border-top: 8px solid var(--orange);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: none;
  }

  .journey__connector--return .journey__arrow {
    border-top-color: var(--green);
    border-left-color: transparent;
  }

  /* Supply chain banner */
  .supply-chain-banner {
    padding: 64px 0;
  }

  /* Contact */
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: 2.25rem;
  }

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

  .benefit-card {
    padding: 28px 24px;
  }

  .benefit-card__stat {
    font-size: 2.25rem;
  }

  .trust-bar__logos {
    gap: 32px;
  }

  .trust-bar__logos img {
    height: 36px;
  }

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

  .supply-chain-banner__features {
    flex-direction: column;
  }
}