/* ============================================================
   PRIMO GOODS — style.css
   Mobile-first, dark premium design
   ============================================================ */

/* --- Google Fonts loaded in HTML head --- */

/* --- CSS Variables --- */
:root {
  --bg-primary:    #1a1a1a;
  --bg-secondary:  #111111;
  --bg-card:       #222222;
  --bg-card-alt:   #2a2a2a;
  --accent-red:    #B82200;
  --accent-orange: #C46830;
  --accent-amber:  #DC9600;
  --text-white:    #FFFFFF;
  --text-light:    #E0E0E0;
  --text-muted:    #888888;
  --border-subtle: rgba(255,255,255,0.07);
  --grad-accent:   linear-gradient(135deg, #B82200, #C46830, #DC9600);
  --grad-text:     linear-gradient(90deg, #B82200, #C46830, #DC9600, #C46830, #B82200);
  --font-heading:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow-card:   0 4px 32px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 40px rgba(204,34,0,0.15);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:         72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #8B3A00;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.section-title span {
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s linear infinite;
}

.gradient-divider {
  width: 60px;
  height: 3px;
  background: var(--grad-accent);
  border-radius: 2px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-accent);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(204,34,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,34,0,0.5);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: #000;
  font-weight: 700;
  border: 1.5px solid rgba(0,0,0,0.35);
}
/* Reserve CTA — warm amber, between primary (red) and outline */
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid var(--accent-amber);
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange));
  color: #fff;
  box-shadow: 0 6px 18px rgba(220,150,0,0.35);
}
.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(220,150,0,0.5);
  filter: brightness(1.05);
}
.btn-reserve[disabled] { pointer-events: none; }

.btn-outline:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(232,88,0,0.08);
  transform: translateY(-2px);
}

/* Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MAIN PAGE FULL-PAGE BACKGROUND
   ============================================================ */
.main-page-bg {
  position: fixed; inset: 0; z-index: -2;
  background-image: url('Trade page image-hd.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.08) saturate(0.85) blur(1px);
  image-rendering: -webkit-optimize-contrast;
}
.main-page-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.40);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0;
}

.nav.scrolled {
  background: rgba(17, 17, 17, 0.97);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(204,34,0,0.25));
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 1100;
}

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

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: #0e0e0e;
  border-left: 1px solid var(--border-subtle);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 100px 36px 40px;
  gap: 0;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--accent-orange); }
.nav-drawer a:last-child { border-bottom: none; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  background: transparent;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  animation: heroPulse 12s ease-in-out infinite;
}

/* Overlay layer */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-h) + 20px) 20px 60px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent-orange);
  opacity: 0.6;
}

.hero-logo {
  margin: 0 auto 28px;
  width: min(180px, 52vw);
}

.hero-logo img {
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(204,34,0,0.3));
}

.hero-headline {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 28px;
}
.hero-headline span {
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-sub {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: #b8b8b8;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bobDown 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--text-white);
  border-bottom: 2px solid var(--text-white);
  transform: rotate(45deg);
}

@keyframes bobDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.story-copy p {
  font-size: 1.05rem;
  color: #b8b8b8;
  line-height: 1.85;
  max-width: 560px;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-block:hover::after { transform: scaleX(1); }
.stat-block:hover { border-color: rgba(232,88,0,0.3); transform: translateY(-3px); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: rgba(255,255,255,0.22);
  padding: 100px 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,168,0,0.4), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .gradient-divider { margin: 0 auto 28px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Gradient-border card technique */
.service-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--grad-accent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.3s;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }

.service-card-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  position: absolute;
  top: 24px;
  right: 32px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(204,34,0,0.12);
  border: 1px solid rgba(204,34,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 16px;
}

.service-card p {
  color: #a0a0a0;
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.service-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-accent);
}

/* ============================================================
   FCL TICKER SECTION
   ============================================================ */
.loads-section {
  background: rgba(255,255,255,0.22);
  padding: 100px 0;
  position: relative;
}

.loads-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.loads-header {
  text-align: center;
  margin-bottom: 48px;
}

.loads-header .gradient-divider { margin: 0 auto 28px; }

.loads-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Ticker Bar */
.ticker-wrapper {
  background: rgba(220,220,220,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  padding: 12px 0;
  margin-bottom: 48px;
  position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(220,220,220,0.55), transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(220,220,220,0.55), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  border-right: 1px solid var(--border-subtle);
}

.ticker-item .ticker-product { color: var(--text-white); font-weight: 600; }
.ticker-item .ticker-price   { color: var(--accent-amber); font-weight: 700; }
.ticker-item .ticker-badge   { color: var(--accent-orange); }

.ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: blink 1.5s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Load Cards Grid */
.loads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.load-card {
  background: rgba(40,40,40,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.load-card:hover {
  border-color: rgba(204,34,0,0.3);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  z-index: 4;
}
/* click-locked focused state — lift into the middle of the viewport */
.load-card.focused {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  width: min(540px, 92vw) !important;
  max-height: 86vh !important;
  overflow-y: auto !important;
  transform: translate(-50%, -50%) scale(1) !important;
  border: 2px solid var(--accent-orange) !important;
  background: rgba(240,240,240,0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45) !important;
  z-index: 1000 !important;
  cursor: zoom-out;
  padding: 36px 32px !important;
}
/* darkening backdrop behind the focused card */
body.card-focused::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 999;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* dim / hide non-focused cards while one is focused */
.loads-grid.has-focus .load-card:not(.focused) {
  opacity: 0.3;
  filter: blur(2px);
  pointer-events: none;
}
.load-card { cursor: zoom-in; transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease; }

/* pause ticker when any card is focused (global flag on body) */
body.card-focused .ticker-track { animation-play-state: paused !important; }

.load-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.load-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-white);
  line-height: 1.3;
}

.load-brand {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.status-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-available  { background: rgba(0,200,83,0.12);  color: #00C853; border: 1px solid rgba(0,200,83,0.25); }
.status-reserved   { background: rgba(245,168,0,0.12); color: #F5A800; border: 1px solid rgba(245,168,0,0.25); }
.status-sold       { background: rgba(100,100,100,0.1); color: #777777; border: 1px solid rgba(100,100,100,0.2); }

.load-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-value {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.spec-value.highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.load-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.route-origin  { color: var(--text-white); font-weight: 600; }
.route-arrow   { color: var(--accent-red); font-size: 1rem; }
.route-dest    { color: var(--text-white); font-weight: 600; }
.route-incoterm {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  background: rgba(232,88,0,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.load-notes {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.load-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.load-id-tag {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.55);
  font-family: monospace;
}

/* ---- Load card text override: all writing black ---- */
.load-card {
  background: rgba(220,220,220,0.42) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}
.load-card .load-title,
.load-card .load-brand,
.load-card .spec-label,
.load-card .spec-value,
.load-card .spec-value.highlight,
.load-card .route-origin,
.load-card .route-dest,
.load-card .route-arrow,
.load-card .route-incoterm,
.load-card .load-notes {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
.load-card .load-route {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.10);
}
.load-card .route-incoterm {
  background: rgba(232,88,0,0.15);
}

/* ============================================================
   MARKETS
   ============================================================ */
.markets {
  background: rgba(255,255,255,0.22);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.markets::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,168,0,0.4), transparent);
}

.markets-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.markets-copy p {
  font-size: 1.05rem;
  color: #a8a8a8;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 0;
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.market-card:hover { border-color: rgba(204,34,0,0.25); transform: translateY(-3px); }
.market-card:hover::before { opacity: 1; }

.market-flag {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1;
}

.market-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.market-role {
  font-size: 0.78rem;
  color: var(--accent-orange);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.market-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(204,34,0,0.1);
  border: 1px solid rgba(204,34,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 1.6;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.92rem;
  color: var(--text-light);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  margin-top: 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  filter: brightness(1.08);
}

.btn-whatsapp svg {
  width: 20px; height: 20px;
  fill: #fff;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(220,220,220,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
/* form labels/heading readable on the translucent gray */
.contact-form-wrap h3,
.contact-form-wrap label {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
/* typed text + placeholders in form inputs — darker gray for visibility */
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group select,
.contact-form-wrap .form-group textarea {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  background: rgba(255,255,255,0.55) !important;
  border-color: rgba(0,0,0,0.18) !important;
}
.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder {
  color: #444 !important;
  -webkit-text-fill-color: #444 !important;
  opacity: 1;
}

/* Contact info labels (US ADDRESS / WHATSAPP / EMAIL) + values — full black */
.contact-detail-text strong,
.contact-detail-text span {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e53e3e !important;
  background: rgba(229,62,62,0.06) !important;
}

.form-group.has-error label {
  color: #e53e3e;
}

.form-group .field-error-msg {
  font-size: 0.72rem;
  color: #e53e3e;
  font-weight: 600;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 12px 16px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(232,88,0,0.05);
}

.form-group select { cursor: pointer; }

.form-group select option {
  background: var(--bg-card);
  color: var(--text-white);
}

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

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(255,255,255,0.35);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 4px rgba(204,34,0,0.2));
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 240px;
}

.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #777777;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-orange); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  margin-top: 48px;
  padding-top: 28px;
  text-align: center;
  font-size: 0.78rem;
  color: #555555;
  line-height: 1.7;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.modal-close {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.modal-close:hover {
  border-color: var(--accent-red);
  color: var(--text-white);
  background: rgba(204,34,0,0.1);
}

.modal-body { padding: 28px; }

.modal-form .form-row { margin-bottom: 16px; }
.modal-form .form-group { margin-bottom: 0; }

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-red);
  box-shadow: var(--shadow-card);
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left-color: #00C853; }

/* ============================================================
   RESPONSIVE — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta    { display: flex; }
  .hamburger  { display: none; }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .story-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .markets-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .loads-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0d0d; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-red); }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-header .gradient-divider { margin: 0 auto 28px; }

/* "Our Product Range" heading — larger + "Our" in black, gradient only on span */
.products-header .section-title {
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  color: #000;
  line-height: 1.1;
}
.products-header .section-title span {
  /* span keeps its existing gradient rule from .section-title span */
}

.products-header > p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

@media (min-width: 600px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 20px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--p-gradient, linear-gradient(135deg, rgba(232,88,0,0.07) 0%, transparent 65%));
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0.6;
}

.product-card:hover {
  border-color: rgba(232,88,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}

.product-card:hover::after { opacity: 1; }

.product-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  pointer-events: none;
}

.product-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.product-cat.poultry   { background: rgba(232,88,0,0.12);  color: var(--accent-orange); border: 1px solid rgba(232,88,0,0.2); }
.product-cat.pork      { background: rgba(204,34,0,0.1);   color: #ff7060; border: 1px solid rgba(204,34,0,0.2); }
.product-cat.seafood   { background: rgba(0,160,210,0.1);  color: #44ccee; border: 1px solid rgba(0,160,210,0.2); }
.product-cat.processed { background: rgba(245,168,0,0.1);  color: var(--accent-amber); border: 1px solid rgba(245,168,0,0.2); }

.product-name {
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.product-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.ptag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 7px;
  border-radius: 3px;
}

/* You name it CTA card */
.product-cta-card {
  background: linear-gradient(135deg, rgba(204,34,0,0.1) 0%, rgba(232,88,0,0.06) 50%, rgba(245,168,0,0.04) 100%);
  border: 1px solid rgba(204,34,0,0.18);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
}

.product-cta-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s linear infinite;
}

.product-cta-card p {
  color: #909090;
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 0.97rem;
  line-height: 1.75;
}

/* Market code badge (replaces flag/emoji) */
.market-code {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-orange);
  background: rgba(232,88,0,0.08);
  border: 1px solid rgba(232,88,0,0.18);
  padding: 4px 9px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* Nav logo size bump */
.nav-logo img { height: 50px !important; }

/* ============================================================
   PRODUCT CARDS — image overlay redesign
   ============================================================ */

/* Reset the old CSS-gradient card approach */
.product-card {
  background: #111 !important;
  padding: 0 !important;
  min-height: unset !important;
  display: block !important;
  justify-content: unset !important;
  aspect-ratio: 4 / 3;
  cursor: default;
}

/* Kill the old pseudo-element gradient overlay */
.product-card::after { display: none !important; }

/* The actual photo */
.product-card .product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
  filter: brightness(0.72) saturate(1.05);
}

.product-card:hover .product-img {
  transform: scale(1.065);
  filter: brightness(0.85) saturate(1.12);
}

.product-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(232, 88, 0, 0.45) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.65) !important;
}

/* Gradient overlay — text lives here */
.product-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 6, 0.97) 0%,
    rgba(6, 6, 6, 0.72) 45%,
    transparent 100%
  );
  padding: 38px 16px 16px;
  z-index: 2;
}

.product-overlay .product-cat {
  /* Badge now acts as the product heading — larger, no margin above, full label */
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 5px;
  margin-bottom: 8px;
  display: inline-block;
}
.product-overlay .product-tags { position: relative; z-index: 1; }

/* Remove the old faded number — not in new markup */
.product-card .product-num { display: none; }

/* ── Logo: make it visible on dark bg with correct size ─── */
.nav-logo img,
.hero-logo img,
.footer-brand img {
  /* PNG has white text + gradient flame — perfect on dark bg */
  /* Remove any brightness/invert that might hide white text */
  filter: drop-shadow(0 0 8px rgba(204, 34, 0, 0.3)) !important;
}

/* ============================================================
   LOGO — white-bg version on dark site
   Wraps logo in a clean white badge container
   ============================================================ */

/* Nav logo badge */
.nav-logo {
  background: rgba(255, 250, 244, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 6px 14px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  transition: box-shadow 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.nav-logo:hover {
  background: rgba(255, 250, 244, 0.75);
  box-shadow: 0 0 18px rgba(204, 34, 0, 0.20);
}
.nav-logo img {
  height: 38px !important;
  width: auto;
  display: block;
  filter: none !important;
}

/* Hero logo badge — frosted glass, blends with bg */
.hero-logo {
  display: inline-block;
  background: rgba(255, 250, 244, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 22px;
  border-radius: 9px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.10);
  margin: 0 auto 28px;
  width: auto;
  max-width: min(220px, 60vw);
}
.hero-logo img {
  height: auto;
  width: 100%;
  display: block;
  filter: none !important;
}

/* Footer logo badge */
.footer-brand img {
  height: auto !important;
  width: 160px;
  background: rgba(255, 250, 244, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 7px;
  display: block;
  filter: none !important;
  margin-bottom: 16px;
}

/* ── Beef category badge ── */
.product-cat.beef {
  background: rgba(204, 34, 0, 0.12);
  color: #ff6644;
  border: 1px solid rgba(204, 34, 0, 0.25);
}

/* ── 4-protein grid: always 2-col mobile, 4-col desktop ── */
.products-grid--four {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .products-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Stat block: allow text-only "Dozens" label ── */
.stat-number[data-count="0"] {
  font-size: 1.6rem;
}

/* ============================================================
   INDUSTRY NEWS SECTION
   ============================================================ */
.news-section {
  background: rgba(255,255,255,0.22);
  padding: 100px 0;
  position: relative;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,168,0,0.4), transparent);
}

.news-header {
  text-align: center;
  margin-bottom: 56px;
}

.news-header .gradient-divider { margin: 0 auto 28px; }

.news-header > p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.news-card:hover {
  border-color: rgba(232,88,0,0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
}

.news-card:hover::before { transform: scaleX(1); }

.news-card-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 10px;
}

.news-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.tag-market  { background: rgba(204,34,0,0.12);  color: var(--accent-orange); border: 1px solid rgba(204,34,0,0.2); }
.tag-logistics { background: rgba(0,160,210,0.1);  color: #44ccee; border: 1px solid rgba(0,160,210,0.2); }
.tag-supply  { background: rgba(245,168,0,0.1);  color: var(--accent-amber); border: 1px solid rgba(245,168,0,0.2); }

.news-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.news-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.news-excerpt {
  font-size: 0.87rem;
  color: #909090;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  gap: 8px;
}

.news-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-orange);
  transition: color 0.2s, letter-spacing 0.2s;
  white-space: nowrap;
}

.news-cta:hover {
  color: var(--accent-amber);
  letter-spacing: 0.02em;
}

/* ============================================================
   SOCIAL MEDIA — Footer
   ============================================================ */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 48px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 40px;
  color: #777777;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  background: transparent;
}

.social-link:hover {
  color: var(--text-white);
  border-color: var(--accent-orange);
  background: rgba(232,88,0,0.06);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 1.8;
}

/* LinkedIn uses fill not stroke */
.social-link:nth-child(2) svg,
.social-link:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

/* Instagram uses stroke */
.social-link:nth-child(1) svg {
  fill: none;
  stroke: currentColor;
}

/* ── Hero sub strong highlight ── */
.hero-sub strong {
  color: var(--text-white);
  font-weight: 700;
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s linear infinite;
}

/* ── Service badge row (Turnkey / Door-to-Port chips) ── */
.service-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.service-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(204,34,0,0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(204,34,0,0.22);
}

/* ============================================================
   GATEWAY CARDS — landing page service portals
   ============================================================ */
.gateway-grid {
  gap: 28px;
}

.gateway-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.gateway-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gateway-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.gateway-card:hover::before { opacity: 1; }

/* Warm variant (donation card) */
.gateway-card--warm::before {
  background: linear-gradient(135deg, #F5A800, #E85800, #CC2200);
}

.gateway-num {
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
}

.gateway-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(204,34,0,0.1);
  border: 1px solid rgba(204,34,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.gateway-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 1.5;
}

.gateway-icon--warm {
  background: rgba(245,168,0,0.08);
  border-color: rgba(245,168,0,0.2);
}

.gateway-icon--warm svg {
  stroke: var(--accent-amber);
  fill: rgba(245,168,0,0.12);
}

.gateway-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.gateway-pitch {
  font-size: 0.93rem;
  color: #909090;
  line-height: 1.78;
  margin-bottom: 24px;
  flex: 1;
}

.gateway-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.gchip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(204,34,0,0.08);
  color: var(--accent-orange);
  border: 1px solid rgba(204,34,0,0.18);
}

.gchip--warm {
  background: rgba(245,168,0,0.07);
  color: var(--accent-amber);
  border-color: rgba(245,168,0,0.2);
}

.gateway-btn {
  align-self: flex-start;
  margin-bottom: 14px;
}

.gateway-note {
  font-size: 0.74rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.gateway-note a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-decoration-color: rgba(232,88,0,0.35);
}

.gateway-note a:hover { color: var(--accent-amber); }

/* ============================================================
   LANDING PAGE — BRIGHT WHITE BODY COPY OVERRIDES
   Force the long-form text in Story / Products / Services /
   Markets / Footer to the same bright white as the contact
   intro paragraph. Hero copy intentionally left alone.
   ============================================================ */
.story-copy p,
.products-header p,
.product-cta-card h3,
.product-cta-card p,
.gateway-pitch,
.markets-copy p,
.market-card .market-name,
.market-card .market-role,
.market-card .market-desc,
.footer-tagline,
.hero-sub {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

/* Nav + footer navigation/connect/social/copyright in black + bold */
.nav-links a,
.footer-links h4,
.footer-links ul li a,
.footer-social .social-link,
.footer-social .social-link span,
.footer-bottom p,
.footer-bottom p a {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  font-weight: 700 !important;
}
.nav-links a:hover,
.footer-links ul li a:hover,
.footer-social .social-link:hover span {
  color: var(--accent-red) !important;
  -webkit-text-fill-color: var(--accent-red) !important;
}

/* ---- Hero headline: matches .section-title (Syne with gradient span) ---- */
.hero-headline {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(1.9rem, 4vw, 3rem) !important;
  line-height: 1.14 !important;
}

/* ---- Landing page: soft translucent gray card treatment
   for stat blocks, gateway cards, and market cards (matches
   the trade portal load card style) ---- */
.stat-block,
.gateway-card,
.market-card {
  background: rgba(220,220,220,0.42) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}

/* Force text inside these cards to black (override prior
   white-body-copy rules) */
.stat-block .stat-number,
.stat-block .stat-label,
.gateway-card h3,
.gateway-card .gateway-pitch,
.gateway-card .gateway-num,
.gateway-card .gchip,
.gateway-card .gateway-note,
.gateway-card .gateway-note a,
.market-card .market-code,
.market-card .market-name,
.market-card .market-role,
.market-card .market-desc {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
/* chip backgrounds sit better with darker translucent fill */
.gateway-card .gchip {
  background: rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.14) !important;
}

/* ---- Trade page: hero heading + ticker text in black ---- */
.trade-hero-copy h2,
.trade-hero-copy p {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
.ticker-item,
.ticker-item span,
.ticker-item .ticker-product {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}
/* keep the orange/amber accents on the ticker */
.ticker-item .ticker-price {
  color: var(--accent-amber) !important;
  -webkit-text-fill-color: var(--accent-amber) !important;
}
.ticker-item .ticker-badge {
  color: var(--accent-orange) !important;
  -webkit-text-fill-color: var(--accent-orange) !important;
}

/* ============================================================
   PRODUCTS GRID — LARGE VARIANT (revertable)
   Apply by adding `products-grid--large` alongside `products-grid`.
   Remove the modifier class to revert to default size instantly.
   ============================================================ */
.products-grid.products-grid--large {
  gap: 28px !important;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.products-grid.products-grid--large .product-card {
  aspect-ratio: 3 / 4 !important;
  border-radius: 16px !important;
}
.products-grid.products-grid--large .product-overlay {
  padding: 18px 20px !important;
}
.products-grid.products-grid--large .product-cat {
  font-size: 1.05rem !important;
  letter-spacing: 0.02em !important;
}
.products-grid.products-grid--large .ptag {
  font-size: 0.78rem !important;
  padding: 5px 10px !important;
}
@media (max-width: 900px) {
  .products-grid.products-grid--large { gap: 18px !important; }
  .products-grid.products-grid--large .product-card { aspect-ratio: 4 / 5 !important; }
}
