/* =========================================================
   MOSTAGRO Export System — Public Showcase
   Theme palette (from logo sketch):
     navy   #13325e   deep sky / emblem background
     blue   #1d4a85   lighter accent
     gold   #e8b339   sun / wheat / silo
     goldDk #b07f1f   shaded gold
     green  #6f9c3d   fields
     cream  #f7f3e8   soft background
     ink    #0f1e33   text
   ========================================================= */

:root {
  --navy: #13325e;
  --navy-deep: #0f2547;
  --navy-ink: #0a1a33;
  --blue: #1d4a85;
  --gold: #e8b339;
  --gold-soft: #f4c14a;
  --gold-dk: #b07f1f;
  --green: #6f9c3d;
  --green-dk: #5d8a31;
  --cream: #f7f3e8;
  --paper: #ffffff;
  --ink: #0f1e33;
  --muted: #5b6b82;
  --line: #e6e9ef;
  --up: #4ade80;
  --down: #f87171;
  --terminal-bg: #0a1628;
  --terminal-line: rgba(232, 179, 57, 0.15);
  --shadow-sm: 0 4px 14px rgba(15, 30, 51, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 30, 51, 0.12);
  --shadow-lg: 0 30px 70px rgba(15, 30, 51, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
img,
svg {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(232, 179, 57, 0.35);
}
.btn--primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 179, 57, 0.45);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(232, 179, 57, 0.4);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn--block {
  width: 100%;
}

/* Inline link (replaces overused CTA buttons) */
.link-inline {
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: all 0.2s var(--ease);
}
.link-inline:hover {
  color: var(--gold-dk);
  border-bottom-color: var(--gold-dk);
}
.link-inline--lg {
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 700;
}
a.link-inline {
  text-decoration: none;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 37, 71, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 179, 57, 0.15);
  transition: all 0.3s var(--ease);
}
.header.scrolled {
  background: rgba(15, 37, 71, 0.96);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__emblem {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.logo__emblem--sm {
  width: 42px;
  height: 42px;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.02em;
}
.logo__accent {
  color: var(--gold);
}
.logo__sub {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}
.nav__link:hover {
  color: #fff;
}
.nav__link.active {
  color: var(--gold);
}
.nav__cta {
  margin-left: 10px;
  padding: 11px 22px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(232, 179, 57, 0.32),
      transparent 45%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(111, 156, 61, 0.22),
      transparent 40%
    ),
    linear-gradient(160deg, #0f2547 0%, #13325e 45%, #0a1d3a 100%);
  z-index: -2;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 7px 16px;
  border: 1px solid rgba(232, 179, 57, 0.45);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 22px;
}
.hero__lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.badge {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Hero quote card */
.hero__card {
  perspective: 1000px;
}
.quote-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--gold);
}
.quote-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.quote-card__hint {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.quote-form .field {
  margin-bottom: 14px;
}
.quote-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: all 0.2s var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 179, 57, 0.18);
}
.field textarea {
  resize: vertical;
}
.quote-form__success,
.form__success {
  display: none;
  color: var(--green-dk);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  padding: 10px;
  background: rgba(111, 156, 61, 0.1);
  border-radius: 8px;
  text-align: center;
}
.quote-form__success.show,
.form__success.show {
  display: block;
}

/* Hero marquee */
.hero__marquee {
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid rgba(232, 179, 57, 0.2);
  border-bottom: 1px solid rgba(232, 179, 57, 0.2);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 0;
  margin-top: -1px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: translateY(-50%);
}
.stat {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  position: relative;
}
.stat + .stat {
  margin-left: -1px;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
}
.stat__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.stat__label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

/* ---------- Section heads ---------- */
section {
  padding: 100px 0;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section__eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin-bottom: 16px;
}
.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- About ---------- */
.about {
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-deep);
}
.about__art {
  width: 100%;
  height: auto;
}
.about__badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}
.about__badge strong {
  font-family: "Montserrat", sans-serif;
  color: var(--gold);
  font-size: 1.2rem;
}
.about__badge span {
  font-size: 13px;
  opacity: 0.85;
}
.about__content p {
  color: #3a4a60;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about__list {
  margin: 26px 0 30px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--ink);
}
.about__check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 156, 61, 0.18);
  color: var(--green-dk);
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
}
.about__line {
  margin-top: 28px;
  font-size: 15px;
  color: #3a4a60;
  line-height: 1.55;
  max-width: 480px;
}

/* ---------- Products ---------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
/* clickable overlay for the whole card */
.product__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius);
}
.product__cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold-dk);
  letter-spacing: 0.02em;
  pointer-events: none;
}
.product:hover .product__cta {
  color: var(--navy);
}
.product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product:hover::before {
  transform: scaleX(1);
}
.product__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(232, 179, 57, 0.15),
    rgba(232, 179, 57, 0.05)
  );
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 20px;
}
.product__icon svg {
  width: 100%;
  height: 100%;
}
.product h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.product p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.product ul li {
  padding: 5px 0;
  font-size: 13.5px;
  color: #3a4a60;
  position: relative;
  padding-left: 18px;
}
.product ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Markets (SEO country cards) ---------- */
.markets {
  background: #fff;
}
.markets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.market {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.market::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.market:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.market:hover::before {
  transform: scaleX(1);
}
.market__flag {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 14px;
}
.market h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.market p {
  color: #3a4a60;
  font-size: 14px;
  margin-bottom: 14px;
}
.market ul li {
  padding: 5px 0;
  font-size: 13.5px;
  color: #3a4a60;
  position: relative;
  padding-left: 18px;
}
.market ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- Logistics ---------- */
.logistics {
  background: linear-gradient(160deg, #0a1d3a, #13325e);
  color: #fff;
}
.logistics .section__title {
  color: #fff;
}
.logistics .section__eyebrow {
  color: var(--gold);
}
.logistics .section__sub {
  color: rgba(255, 255, 255, 0.75);
}
.logistics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
/* Trade corridors panel (replaces map) */
.corridors {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 179, 57, 0.25);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.corridors__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.corridors__title {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 179, 57, 0.25);
}
.corridors__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.corridors__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}
.corridors__list em {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  margin-left: 4px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.dot--gold {
  background: var(--gold);
}
.dot--green {
  background: var(--green);
}
.corridors__divider {
  width: 80px;
}
.corridors__divider svg {
  width: 100%;
  height: auto;
}
.logistics__info {
  display: grid;
  gap: 18px;
}
.logi-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
}
.logi-item:hover {
  background: rgba(232, 179, 57, 0.08);
  border-color: rgba(232, 179, 57, 0.35);
}
.logi-item__icon {
  font-size: 26px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 179, 57, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}
.logi-item h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.logi-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  margin: 0;
}

/* ---------- Process ---------- */
.process {
  background: var(--cream);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.process__grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 15%,
    var(--gold) 85%,
    transparent
  );
  z-index: 0;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border: 3px solid #fff;
  outline: 2px solid var(--gold);
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
  padding: 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 24px;
}
.cta-band h2 {
  color: var(--navy-deep);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 4px;
}
.cta-band p {
  color: rgba(15, 37, 71, 0.75);
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact__info > p {
  color: var(--muted);
  margin-bottom: 30px;
}
.contact__items {
  display: grid;
  gap: 18px;
}
.contact__item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact__label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact__item a:hover {
  color: var(--gold-dk);
}
.contact__form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact__form .field {
  margin-bottom: 16px;
}
.contact__form .row .field {
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 50px;
}
.footer .logo {
  margin-bottom: 18px;
}
.footer__tagline {
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__col a,
.footer__col span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 0;
}
.footer__col a:hover {
  color: var(--gold);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer__legal {
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   COUNTRY / MARKET PAGES
   ========================================================= */

/* Route diagram */
.route {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.route__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dk);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.route__list {
  display: grid;
  gap: 14px;
}
.route__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.route__item span:nth-child(1) {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  min-width: 150px;
}
.route__arrow {
  color: var(--gold-dk);
  font-weight: 800;
  text-align: center;
  font-size: 18px;
}
.route__item span:nth-child(3) {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

/* Market benefits grid */
.mben {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.mben__item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.mben__item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.mben__item p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}

@media (max-width: 540px) {
  .mben {
    grid-template-columns: 1fr;
  }
  .route__item {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 4px;
  }
  .route__item span:nth-child(3) {
    text-align: left;
  }
}

/* =========================================================
   PRODUCT PAGES
   ========================================================= */

/* Breadcrumb */
.breadcrumb {
  padding: 110px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li::after {
  content: "›";
  opacity: 0.5;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb li[aria-current] {
  color: #fff;
}

/* Product hero */
.phero {
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(232, 179, 57, 0.28),
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(111, 156, 61, 0.18),
      transparent 40%
    ),
    linear-gradient(160deg, #0f2547 0%, #13325e 50%, #0a1d3a 100%);
  color: #fff;
  padding: 30px 0 70px;
  position: relative;
  overflow: hidden;
}
.phero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.phero__eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 7px 16px;
  border: 1px solid rgba(232, 179, 57, 0.45);
  border-radius: 999px;
  margin-bottom: 22px;
}
.phero__title {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.phero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 540px;
}
.phero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.phero__points {
  display: grid;
  gap: 10px;
}
.phero__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.phero__points li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}

/* Quick-spec card on hero right */
.spec-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--gold);
}
.spec-card h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.spec-card__hint {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-table th,
.spec-table td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.spec-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 55%;
}
.spec-table td {
  font-weight: 700;
  color: var(--navy);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* Body sections */
.pbody {
  padding: 90px 0;
}
.pbody--alt {
  background: var(--cream);
}
.psection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.psection--single {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}
.psection h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}
.psection p {
  color: #3a4a60;
  margin-bottom: 14px;
}

/* Feature list (green ticks) */
.feat {
  margin: 22px 0 26px;
  display: grid;
  gap: 10px;
}
.feat li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}
.feat li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(111, 156, 61, 0.18);
  color: var(--green-dk);
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pack grid */
.pack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pack {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all 0.3s var(--ease);
}
.pack:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pack__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.pack h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.pack p {
  color: var(--muted);
  font-size: 13.5px;
}

/* Cert strip */
.cert-strip {
  background: var(--navy);
  color: #fff;
  padding: 36px 0;
}
.cert-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
}
.cert-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.cert-strip__item span {
  color: var(--gold);
  font-size: 18px;
}

/* Full spec table (page-level) */
.fullspec {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fullspec th,
.fullspec td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.fullspec thead th {
  background: var(--navy);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fullspec tbody th {
  color: var(--muted);
  font-weight: 600;
  width: 45%;
}
.fullspec tbody td {
  font-weight: 700;
  color: var(--navy);
}

/* CTA on product pages */
.pcta {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
  padding: 50px 0;
}
.pcta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.pcta h2 {
  color: var(--navy-deep);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 4px;
}
.pcta p {
  color: rgba(15, 37, 71, 0.78);
  font-weight: 500;
}

/* FAQ */
.faq {
  padding: 90px 0;
  background: var(--cream);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}
.faq__item summary {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  color: var(--gold-dk);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__item p {
  margin-top: 12px;
  color: #3a4a60;
  font-size: 15px;
}

/* Other products nav at bottom */
.pother {
  padding: 70px 0;
}
.pother__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pother__card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.25s var(--ease);
}
.pother__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.pother__card h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.pother__card span {
  color: var(--gold-dk);
  font-size: 13px;
  font-weight: 600;
}

/* Key facts panel (replaces decorative art) */
.keyfacts {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.keyfacts::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(232, 179, 57, 0.18),
    transparent 70%
  );
  border-radius: 50%;
}
.keyfacts__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  position: relative;
}
.keyfacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.keyfacts__item {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.keyfacts__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: #fff;
  line-height: 1.1;
}
.keyfacts__label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  line-height: 1.35;
}
.keyfacts__note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 179, 57, 0.25);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}
.keyfacts__note strong {
  color: var(--gold);
}

@media (max-width: 540px) {
  .keyfacts__grid {
    grid-template-columns: 1fr;
  }
  .keyfacts__num {
    font-size: 1.6rem;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__card {
    max-width: 520px;
  }
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .markets__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .step {
    padding: 22px 14px;
  }
  .about__grid,
  .logistics__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .corridors {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .corridors__divider {
    width: 100%;
    display: flex;
    justify-content: center;
    transform: rotate(90deg);
    margin: 4px 0;
  }
  .stats__grid {
    transform: translateY(-30%);
  }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: 78px;
    right: 0;
    width: 280px;
    height: calc(100vh - 78px);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav__link {
    width: 100%;
    padding: 12px 14px;
  }
  .nav__cta {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  .nav__toggle {
    display: flex;
  }

  section {
    padding: 70px 0;
  }
  .hero {
    padding: 130px 0 70px;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    transform: none;
    margin: -50px auto 0;
    max-width: 540px;
  }
  .stat + .stat {
    margin-left: 0;
  }
  .process__grid {
    grid-template-columns: 1fr 1fr;
  }
  .process__grid::before {
    display: none;
  }
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 18px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .products__grid,
  .process__grid {
    grid-template-columns: 1fr;
  }
  .markets__grid {
    grid-template-columns: 1fr;
  }
  .quote-card,
  .contact__form {
    padding: 24px;
  }
  .quote-form .row,
  .contact__form .row {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .logo__sub {
    display: none;
  }
  .stat__num {
    font-size: 1.9rem;
  }
}

/* =========================================================
   TRADING DESK — live price + shipment log terminal
   ========================================================= */
.terminal {
  background: var(--terminal-bg);
  border: 1px solid var(--terminal-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(232, 179, 57, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.5);
  font-family: var(--font-mono);
  color: #e8eef7;
}
.terminal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--terminal-line);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.terminal__status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.terminal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 8px var(--up);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Stock-clearance header */
.terminal__salehead {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--terminal-line);
}
.terminal__salehead-tag {
  display: inline-block;
  color: #0c1a2f;
  background: var(--gold);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.terminal__salehead-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.terminal__salehead-sub {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* Rotating price carousel (one card at a time) */
.terminal__carousel {
  padding: 28px 24px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s var(--ease);
}
.terminal__carousel.fade-out {
  opacity: 0;
}
.terminal__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.terminal__card-name {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.terminal__card-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}
.terminal__card-val {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.terminal__card-val small {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.terminal__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 0 24px 18px;
}
.terminal__dots .term-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.terminal__dots .term-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* 2026 pre-order strip */
.terminal__preorder {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: rgba(232, 179, 57, 0.08);
  border-top: 1px solid var(--terminal-line);
  border-bottom: 1px solid var(--terminal-line);
}
.terminal__preorder-year {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.terminal__preorder-txt {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* Featured price (hero of the terminal) */
.terminal__featured {
  padding: 28px 24px;
  border-bottom: 1px solid var(--terminal-line);
}
.terminal__featured-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.terminal__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.terminal__price {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.terminal__price-cur {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.terminal__delta {
  font-size: 0.85rem;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 500;
}
.terminal__delta--up {
  background: rgba(74, 222, 128, 0.12);
  color: var(--up);
}
.terminal__delta--down {
  background: rgba(248, 113, 113, 0.12);
  color: var(--down);
}
.terminal__featured-meta {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* Secondary prices strip */
.terminal__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--terminal-line);
}
.terminal__cell {
  padding: 16px 20px;
  border-right: 1px solid var(--terminal-line);
}
.terminal__cell:last-child {
  border-right: none;
}
.terminal__cell-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.terminal__cell-val {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

/* Shipment log */
.terminal__log-head {
  padding: 14px 20px 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.terminal__log {
  padding: 0 20px 18px;
}
.terminal__log-row {
  display: grid;
  grid-template-columns: 90px 1fr 70px 90px;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  font-size: 12.5px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.terminal__log-row:last-child {
  border-bottom: none;
}
.terminal__log-vessel {
  color: #fff;
  font-weight: 500;
}
.terminal__log-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}
.terminal__log-vol {
  color: var(--gold);
  font-weight: 500;
}
.terminal__log-route {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-align: right;
}

.terminal__foot {
  padding: 12px 20px;
  border-top: 1px solid var(--terminal-line);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.terminal__foot a {
  color: var(--gold);
  text-decoration: none;
}
.terminal__foot a:hover {
  text-decoration: underline;
}

@media (max-width: 540px) {
  .terminal__price {
    font-size: 2rem;
  }
  .terminal__strip {
    grid-template-columns: 1fr;
  }
  .terminal__cell {
    border-right: none;
    border-bottom: 1px solid var(--terminal-line);
  }
  .terminal__log-row {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .terminal__log-route {
    text-align: left;
  }
}

/* ============ EXPANDED PRICE PANEL (white cards) ============ */
.priceoverlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 26, 48, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.priceoverlay.open {
  display: flex;
}
.pricepanel {
  background: var(--cream);
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pricepanel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--navy);
  color: #fff;
}
.pricepanel__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.pricepanel__title span {
  color: var(--gold);
}
.pricepanel__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 8px;
}
.pricepanel__close:hover {
  opacity: 1;
}
.pricepanel__meta {
  padding: 14px 28px;
  background: rgba(232, 179, 57, 0.12);
  color: var(--gold-dk);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricepanel__note {
  grid-column: 1 / -1;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13.5px;
  line-height: 1.5;
}
.pricepanel__note strong {
  color: var(--gold);
}
.pricepanel__body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pricepanel__group h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dk);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.pricepanel__list {
  display: grid;
  gap: 10px;
}
.pricepanel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: all 0.2s var(--ease);
}
.pricepanel__row:hover {
  border-color: var(--gold);
  transform: translateX(3px);
}
.pricepanel__row-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
}
.pricepanel__row-name em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.pricepanel__row-price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  white-space: nowrap;
}
.pricepanel__row-price small {
  color: var(--muted);
  font-weight: 400;
  font-size: 11px;
}
.pricepanel__foot {
  padding: 18px 28px;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
}
.pricepanel__foot a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

@media (max-width: 820px) {
  .pricepanel__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .priceoverlay {
    padding: 16px 10px;
  }
  .pricepanel__body {
    padding: 18px;
  }
  .pricepanel__head {
    padding: 16px 18px;
  }
  .pricepanel__title {
    font-size: 1rem;
  }
}

/* ============ ROTATING TICKER (auto-cycling strip & freight) ============ */
.term-rotating {
  transition: opacity 0.45s var(--ease);
}
.term-rotating.fade-out {
  opacity: 0;
}
.term-dots {
  display: inline-flex;
  gap: 5px;
  margin-left: 10px;
  vertical-align: middle;
}
.term-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s var(--ease);
}
.term-dot.active {
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}
