/* ===========================
   SHL Global — Schnell Heavy Logistics
   Brand colors derived from PRESENTATION SHL.pdf
   =========================== */

:root {
  --shl-red:        #A91D2F;
  --shl-red-bright: #D62828;
  --shl-red-deep:   #8B1626;
  --shl-navy:       #1A2845;
  --shl-navy-soft:  #2A3855;
  --shl-bg:         #FFFFFF;
  --shl-bg-alt:     #F5F5F7;
  --shl-line:       #E5E5E8;
  --shl-text:       #1A1A1A;
  --shl-text-soft:  #555;
  --shl-text-mute:  #888;

  --max:    1280px;
  --pad:    clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --ease:   cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--shl-text);
  background: var(--shl-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--shl-red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--shl-red-bright); }

h1,h2,h3,h4 { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: var(--shl-text); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

.accent { color: var(--shl-red); }

/* container */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--shl-line);
  transition: transform .3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--shl-text);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--shl-red);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--shl-red); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--shl-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}
.lang-toggle button {
  background: none;
  border: none;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  color: var(--shl-text-soft);
  transition: all .2s var(--ease);
}
.lang-toggle button.active {
  background: var(--shl-red);
  color: white;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--shl-text);
  margin: 5px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 1.5rem var(--pad);
    gap: 1rem;
    transform: translateY(-200%);
    transition: transform .3s var(--ease);
    border-bottom: 1px solid var(--shl-line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-burger { display: block; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--shl-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/photos/hero.jpg') 62% 45% / cover no-repeat;
  z-index: 0;
  filter: contrast(1.1) saturate(1.05) brightness(.75);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(5,10,25,.80) 0%, rgba(5,10,25,.65) 40%, rgba(5,10,25,.35) 70%, rgba(5,10,25,.10) 100%);
  z-index: 1;
}

/* Diagonal red accent — signature element from brochure */
.diagonal-accent {
  position: absolute;
  width: 240px;
  height: 100%;
  background: linear-gradient(135deg, var(--shl-red) 0%, var(--shl-red-deep) 100%);
  clip-path: polygon(60% 0, 100% 0, 40% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}
.hero .diagonal-accent { left: 38%; top: 0; opacity: .85; }

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  margin-bottom: 1.5rem;
  color: white;
}
.hero h1 .since {
  display: block;
  font-size: .35em;
  font-weight: 600;
  letter-spacing: .3em;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
}
.hero h1 .year {
  color: white;
  font-size: 1.4em;
}
.hero h1 .accent {
  color: var(--shl-red);
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 28px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  border: 2px solid var(--shl-red);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-primary {
  background: var(--shl-red);
  color: white;
}
.btn-primary:hover {
  background: var(--shl-red-deep);
  border-color: var(--shl-red-deep);
  color: white;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
  background: white;
  color: var(--shl-navy);
  border-color: white;
}

.hero-side-text {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  color: rgba(255,255,255,.06);
  letter-spacing: -.04em;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .hero { min-height: 90vh; padding-top: 100px; padding-bottom: 3rem; }
  .hero-bg::before { background-position: center; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(5,10,25,.75) 0%, rgba(5,10,25,.60) 100%); }
  .hero .diagonal-accent { display: none; }
  .hero-side-text { display: none; }
}

/* ===========================
   SECTION COMMON
   =========================== */
section.sec {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.sec-alt { background: var(--shl-bg-alt); }
.sec-dark {
  background: linear-gradient(135deg, var(--shl-red) 0%, var(--shl-red-deep) 100%);
  color: white;
}
.sec-dark h2, .sec-dark h3, .sec-dark h4 { color: white; }
.sec-dark p { color: rgba(255,255,255,.92); }

.sec-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--shl-red);
  margin-bottom: 1rem;
}
.sec-dark .sec-eyebrow { color: rgba(255,255,255,.85); }

.sec h2 { margin-bottom: 1.5rem; }
.sec-intro {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--shl-text-soft);
  margin-bottom: 3rem;
}
.sec-dark .sec-intro { color: rgba(255,255,255,.92); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.flip > :first-child { order: 2; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: initial; }
}

/* image with diagonal cut — brochure signature */
.cut-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.cut-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cut-img.right {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

/* ===========================
   HERO — WHO WE ARE (new main hero)
   =========================== */
.sec-new-hero {
  padding: 0;
}
.sec-new-hero > .wrap {
  padding-top: 0;
  padding-bottom: clamp(3rem, 5vw, 5rem);
}
.about-img-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 580px;
  max-height: 900px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right 8%;
  display: block;
}
/* Gradient: deep left (text legibility) → transparent right (SHL logo visible) */
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(12,20,38,.92) 0%,
      rgba(12,20,38,.80) 25%,
      rgba(12,20,38,.42) 50%,
      rgba(12,20,38,.08) 68%,
      transparent 82%);
  z-index: 1;
}
.about-img-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(1.5rem, 5vw, 4rem) 3rem;
  max-width: 600px;
}
.about-eyebrow {
  color: rgba(255,255,255,.65) !important;
  margin-bottom: .75rem;
}
.about-img-text h1 {
  color: white;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.15;
  margin-bottom: .9rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.about-img-text h1 .accent { color: var(--shl-red); }
.about-img-text p {
  color: rgba(255,255,255,.75);
  font-size: clamp(.88rem, 1vw, 1rem);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 1.1rem;
}
.about-img-text strong { color: white; font-weight: 700; }
.about-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Service badges */
.svc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .65rem;
}
.svc-badge {
  display: inline-block;
  padding: .22rem .65rem;
  background: rgba(169,29,47,.22);
  border: 1px solid rgba(169,29,47,.45);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}

/* Corridors block — minimalist */
.hero-corridors {
  margin-bottom: 1.25rem;
}
.corridors-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: .5rem;
}
.corridors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .75rem;
}
.cg-item {
  font-size: .76rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-left: 2px solid rgba(169,29,47,.7);
  padding-left: .55rem;
  line-height: 1.6;
  letter-spacing: .01em;
}
.rarr {
  display: inline-block;
  color: var(--shl-red);
  font-weight: 700;
  font-size: .8rem;
  animation: nudge .9s ease-in-out infinite alternate;
}
@keyframes nudge {
  from { transform: translateX(0);   opacity: .6; }
  to   { transform: translateX(2px); opacity: 1;  }
}

/* Hero staggered entrance animations */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ha { animation: heroSlideUp .55s ease forwards; opacity: 0; }
.svc-badges.ha        { animation-delay: .05s; }
.about-eyebrow.ha     { animation-delay: .15s; }
.about-img-text h1.ha { animation-delay: .27s; }
.about-img-text p.ha  { animation-delay: .40s; }
.hero-corridors.ha    { animation-delay: .52s; }
.about-cta.ha         { animation-delay: .65s; }
/* cg-item individual stagger */
.cc1 { animation: heroSlideUp .45s ease .56s forwards; opacity: 0; }
.cc2 { animation: heroSlideUp .45s ease .64s forwards; opacity: 0; }
.cc3 { animation: heroSlideUp .45s ease .72s forwards; opacity: 0; }
.cc4 { animation: heroSlideUp .45s ease .80s forwards; opacity: 0; }

@media (max-width: 700px) {
  .about-img-wrap { height: 100svh; min-height: 560px; }
  .about-img-wrap::before {
    background: linear-gradient(175deg,
      rgba(12,20,38,.82) 0%,
      rgba(12,20,38,.65) 55%,
      rgba(12,20,38,.22) 100%);
  }
  .about-img-text {
    max-width: 100%;
    justify-content: flex-end;
    padding-bottom: 3rem;
  }
  .about-img-text p { max-width: 100%; }
}

/* ===========================
   INTERMODAL — PREMIUM DARK
   =========================== */
section.sec-intermodal {
  background: var(--shl-navy);
  color: white;
  padding-top: 0;
}
.sec-intermodal > .wrap { padding-top: 3.5rem; }

/* Cinematic banner */
.intermodal-banner {
  position: relative;
  height: clamp(360px, 52vh, 560px);
  overflow: hidden;
}
.intermodal-banner__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.intermodal-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,40,69,.08) 0%,
      rgba(26,40,69,.50) 45%,
      rgba(26,40,69,.78) 72%,
      rgba(26,40,69,.68) 100%),
    linear-gradient(to right,
      rgba(26,40,69,.72) 0%,
      rgba(26,40,69,.20) 55%,
      transparent 100%);
}
.intermodal-banner__text {
  position: absolute;
  bottom: 2.75rem;
  left: 0; right: 0;
  z-index: 2;
}
.intermodal-banner__text .sec-eyebrow {
  color: rgba(255,255,255,.75);
}
.intermodal-banner__text h2 {
  color: white;
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: .9rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.intermodal-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem 1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(4px);
}
.intermodal-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Intro text on dark */
.sec-intermodal .sec-intro {
  color: rgba(255,255,255,.72);
  max-width: 780px;
}

/* Metrics bar */
.intermodal-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 2.5rem;
}
.imet {
  padding: 1.4rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.imet:last-child { border-right: none; }
.imet-num {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  color: white;
  letter-spacing: -.02em;
}
.imet-label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* Route visualization */
.intermodal-route {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.6rem 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  margin-bottom: 3.5rem;
}
.route-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  flex-shrink: 0;
  text-align: center;
}
.route-flag { font-size: 1.85rem; line-height: 1; }
.route-city {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: .02em;
}
.route-country {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.route-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.route-track-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--shl-red-deep), var(--shl-red), var(--shl-red-deep));
  position: relative;
}
.route-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--shl-red);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(169,29,47,.6);
}
.route-dot--left  { left:  -1px; }
.route-dot--right { right: -1px; }
.route-label {
  font-size: .67rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  white-space: nowrap;
}

/* Feature cards — dark variant */
.feat-grid--intermodal .feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-left: 2px solid rgba(169,29,47,.55);
}
.feat-grid--intermodal .feat:hover {
  background: rgba(255,255,255,.07);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.feat-grid--intermodal .feat .ico {
  background: rgba(169,29,47,.18);
  color: var(--shl-red);
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: .9rem;
}
.feat-grid--intermodal .feat .ico svg { width: 20px; height: 20px; }
.feat-grid--intermodal .feat h4 { color: white; }
.feat-grid--intermodal .feat p  { color: rgba(255,255,255,.62); }

/* Fleet split on dark */
.intermodal-fleet-split h3,
.intermodal-fleet-split h4 { color: white; }
.intermodal-fleet-split .bullet-list li { color: rgba(255,255,255,.78); }
.intermodal-fleet-split .bullet-list li::before { background: var(--shl-red); }
.intermodal-fleet-split p { color: rgba(255,255,255,.55) !important; }

/* Responsive */
@media (max-width: 900px) {
  .intermodal-metrics { grid-template-columns: repeat(2, 1fr); }
  .intermodal-route { flex-direction: column; gap: 1.25rem; padding: 1.5rem; }
  .route-track { width: 100%; flex-direction: row; gap: 1rem; }
  .route-track-line { flex: 1; }
  .route-label { white-space: normal; text-align: center; }
}
@media (max-width: 700px) {
  .intermodal-banner { height: clamp(260px, 48vw, 360px); }
  .intermodal-banner__text { bottom: 1.25rem; }
  .intermodal-banner__text h2 { font-size: 1.6rem; }
  .intermodal-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   STATS
   =========================== */
.stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #8B1221 0%, var(--shl-red) 40%, #7D0E1C 100%);
  border-radius: var(--radius);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  padding: 2.5rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  color: white;
}
/* Subtle dot grid pattern */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
/* Top-center glow accent */
.stats::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,255,255,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.stat {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  padding: 1.25rem 1.1rem 1rem;
  transition: background .2s;
}
.stat:hover { background: rgba(255,255,255,.12); }
.stat-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: .65rem;
  color: rgba(255,255,255,.92);
}
.stat-icon svg { width: 100%; height: 100%; }
.stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}
.stat-badge {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .1em;
  border: 1.5px solid rgba(255,255,255,.45);
  display: inline-block;
  padding: .2em .6em;
  border-radius: 4px;
  margin-bottom: .3rem;
  line-height: 1.4;
}
.stat-label {
  font-size: .78rem;
  opacity: .78;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); clip-path: none; padding: 2rem 1.5rem; gap: .75rem; }
}

/* ===========================
   FEATURE LIST / EQUIPMENT
   =========================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feat {
  background: white;
  border: 1px solid var(--shl-line);
  border-left: 3px solid var(--shl-red);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(169,29,47,.12);
}
.feat h4 { margin-bottom: .5rem; color: var(--shl-text); }
.feat p { color: var(--shl-text-soft); font-size: .95rem; }
.feat .ico {
  display: inline-flex;
  width: 44px; height: 44px;
  background: rgba(169,29,47,.08);
  color: var(--shl-red);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.feat .ico svg { width: 22px; height: 22px; }
}

.bullet-list {
  list-style: none;
  margin-top: 1rem;
}
.bullet-list li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  color: var(--shl-text-soft);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px; height: 8px;
  background: var(--shl-red);
  transform: rotate(45deg);
}
.sec-dark .bullet-list li { color: rgba(255,255,255,.92); }
.sec-dark .bullet-list li::before { background: white; }

/* ===========================
   HEAVY & OVERSIZED — CINEMATIC
   =========================== */
/* Ports: base layer */
.sec-ports { position: relative; }

.sec-heavy {
  background: var(--shl-navy);
  color: white;
  padding: 0;
}
.heavy-banner {
  position: relative;
  overflow: hidden;
}
/* Natural proportions — shows ENTIRE image, no crop */
.heavy-banner img {
  width: 100%;
  height: auto;
  display: block;
}
/* Gradient transition: black descends from top → opens to reveal photo → dark at bottom for text */
.heavy-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,6,12,1.00) 0%,
      rgba(4,6,12,.80)  19%,
      rgba(4,6,12,.45)  46%,
      rgba(4,6,12,.12)  81%,
      transparent       100%),
    linear-gradient(to top,
      rgba(12,20,38,.92) 0%,
      rgba(12,20,38,.60) 25%,
      rgba(12,20,38,.12) 52%,
      transparent        68%);
}
.heavy-banner__text {
  position: absolute;
  bottom: 2.75rem;
  left: 0; right: 0;
  z-index: 2;
}
.heavy-eyebrow {
  color: rgba(255,255,255,.65) !important;
  margin-bottom: .6rem;
}
.heavy-banner__text h2 {
  color: white;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.heavy-banner__text h2 .accent { color: var(--shl-red); }
.heavy-lead {
  color: rgba(255,255,255,.75);
  font-size: clamp(.9rem, 1vw, 1rem);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}
.heavy-lead strong { color: white; }

/* Content below on navy */
.heavy-content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.heavy-content h3 {
  color: white;
  margin-bottom: .5rem;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem 2.5rem;
  margin-top: 1.25rem;
}
.equip-grid li {
  list-style: none;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}

.heavy-network-stat {
  margin-top: 1.25rem;
  padding: .9rem 1.25rem;
  border-left: 3px solid var(--shl-red);
  background: rgba(4,6,12,.35);
  backdrop-filter: blur(6px);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 520px;
}
.heavy-network-stat p {
  color: rgba(255,255,255,.82);
  font-weight: 500;
  font-size: .92rem;
  margin: 0;
}
.heavy-network-stat strong { color: white; font-weight: 700; }

@media (max-width: 700px) {
  .heavy-banner { height: auto; min-height: clamp(320px, 70vw, 480px); }
  .heavy-banner img { height: clamp(320px, 70vw, 480px); object-fit: cover; object-position: center; }
  /* Lighter top gradient on mobile so eyebrow/heading aren't lost in darkness */
  .heavy-banner__overlay {
    background:
      linear-gradient(to bottom,
        rgba(4,6,12,.55) 0%,
        rgba(4,6,12,.35) 18%,
        rgba(4,6,12,.12) 40%,
        transparent      62%),
      linear-gradient(to top,
        rgba(12,20,38,.92) 0%,
        rgba(12,20,38,.60) 22%,
        rgba(12,20,38,.12) 48%,
        transparent        65%);
  }
  .heavy-banner__text { bottom: 1.5rem; }
  .equip-grid { grid-template-columns: 1fr; }
}

/* ===========================
   GENERAL CARGO — BANNER + LIGHT CONTENT
   =========================== */
.sec-general {
  background: var(--shl-bg-alt);
  padding: 0;
}

/* Full-width photo banner, fades DOWN to light background */
.general-banner {
  position: relative;
  overflow: hidden;
}
.general-banner img {
  width: 100%;
  height: auto;
  display: block;
}
/* Left: dark for text · Bottom: dissolves into light bg */
.general-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(12,20,38,.96) 0%,
      rgba(12,20,38,.90) 30%,
      rgba(12,20,38,.75) 52%,
      rgba(12,20,38,.45) 70%,
      rgba(12,20,38,.15) 85%,
      transparent 100%),
    linear-gradient(to top,
      rgba(240,240,244,1)   0%,
      rgba(240,240,244,.80) 7%,
      rgba(240,240,244,.30) 16%,
      transparent           28%);
}
.general-banner__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem,5vw,4rem);
  max-width: 600px;
}
.general-banner__text .sec-eyebrow { color: rgba(255,255,255,.65); }
.general-banner__text h2 {
  color: white;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: .75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.general-banner__text h2 .accent { color: var(--shl-red); }
.general-lead {
  color: rgba(255,255,255,.75);
  font-size: clamp(1.07rem, 1.24vw, 1.24rem);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 .85rem;
}
/* 3 reasons list on photo */
.general-reasons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin: 0;
}
.general-reasons li {
  color: rgba(255,255,255,.75);
  font-size: clamp(1.01rem, 1.17vw, 1.14rem);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.general-reasons li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--shl-red);
  font-size: .52rem;
  top: .32rem;
}
.general-reasons strong { color: white; font-weight: 600; }

/* Content on light background */
.general-content {
  padding-top: 3rem;
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

@media (max-width: 700px) {
  /* Mobile layout: photo on top (fixed height), text below on dark navy block.
     Avoids all overlay/clipping issues — text is always fully visible. */
  .general-banner {
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .general-banner img {
    position: static;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
  }
  /* Overlay becomes a thin dark gradient just over the photo */
  .general-banner__overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to bottom,
      rgba(12,20,38,.35) 0%,
      rgba(12,20,38,.10) 60%,
      transparent 100%);
  }
  /* Text goes below the photo in a solid dark navy block */
  .general-banner__text {
    position: static;
    inset: auto;
    max-width: 100%;
    background: linear-gradient(160deg, var(--shl-navy) 0%, #1e3058 100%);
    padding: 2rem 1.5rem 2.5rem;
    justify-content: flex-start;
    z-index: auto;
  }
  /* All text white on dark bg */
  .general-banner__text .sec-eyebrow { color: rgba(255,255,255,.65); }
  .general-banner__text h2 { color: white; }
  .general-lead { color: rgba(255,255,255,.80); }
  .general-reasons li { color: rgba(255,255,255,.80); }
}

/* ===========================
   HIGHLIGHTS GALLERY
   =========================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 3rem;
}
.gallery > * { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery > *:hover img { transform: scale(1.06); }
.g1 { grid-column: span 3; grid-row: span 2; }
.g2 { grid-column: span 3; grid-row: span 1; }
.g3 { grid-column: span 2; grid-row: span 1; }
.g4 { grid-column: span 2; grid-row: span 1; }
.g5 { grid-column: span 2; grid-row: span 1; }

@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g1, .g2, .g3, .g4, .g5 { grid-column: span 1; grid-row: span 1; }
  .g1 { grid-column: span 2; }
}

/* watermark text behind heading */
.wm-heading {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.wm-heading::before {
  content: attr(data-wm);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: rgba(169,29,47,.08);
  letter-spacing: -.04em;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.wm-heading h2 { position: relative; z-index: 1; }

/* ===========================
   MAP SECTION (focus regions)
   =========================== */
.map-card {
  background: white;
  border: 1px solid var(--shl-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.map-card img { width: 100%; height: auto; }

.region-tag {
  display: inline-block;
  background: rgba(26,40,69,.06);
  color: var(--shl-navy);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 600;
  margin: .25rem .25rem 0 0;
}

/* ===========================
   PORTS — STICKY SPLIT LAYOUT
   =========================== */
.sec-ports {
  display: grid;
  grid-template-columns: 50fr 50fr;
  min-height: 100vh;
  align-items: start;
}

/* Left: sticky photo */
.ports-img-panel {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
}
.ports-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 88% 20%;
  display: block;
}
.ports-img-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 65%, rgba(248,248,250,.10) 100%),
    linear-gradient(to top,
      rgba(4,6,12,1.00) 0%,
      rgba(4,6,12,.80)  4%,
      rgba(4,6,12,.45)  10%,
      rgba(4,6,12,.12)  17%,
      transparent       24%);
  pointer-events: none;
}
/* Content panel bottom → same black, short coverage */
.ports-content-panel {
  position: relative;
}
.ports-content-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(4,6,12,1.00) 0%,
    rgba(4,6,12,.80)  4%,
    rgba(4,6,12,.45)  10%,
    rgba(4,6,12,.12)  17%,
    transparent       24%);
  pointer-events: none;
  z-index: 5;
}

/* Right: content */
.ports-content-panel {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  background: var(--shl-bg);
  min-height: 100%;
}
.ports-content-panel .sec-eyebrow { display: block; }
.ports-content-panel h2 { margin-top: .25rem; }
.ports-content-panel .sec-intro { max-width: 100%; }

.ports-offices {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.ports-office {
  background: white;
  border-left: 3px solid var(--shl-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 3px 16px rgba(0,0,0,.05);
}
.ports-office-header { margin-bottom: .85rem; }
.ports-city {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--shl-text);
  letter-spacing: -.01em;
}
.ports-country {
  font-size: .72rem;
  color: var(--shl-text-mute);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .15rem;
}
.ports-office p {
  font-size: .9rem;
  color: var(--shl-text-soft);
  line-height: 1.65;
  margin-bottom: .85rem;
}
.ports-office .port-list { margin-top: .5rem; }

/* Services list with icons inside office card */
.ports-services-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--shl-line);
}
.psl-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  animation: fadeInUp .5s ease both;
}
.psl-item:nth-child(1) { animation-delay: .1s; }
.psl-item:nth-child(2) { animation-delay: .22s; }
.psl-item:nth-child(3) { animation-delay: .34s; }
.psl-item:nth-child(4) { animation-delay: .46s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.psl-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(169,29,47,.08);
  color: var(--shl-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.psl-icon svg { width: 17px; height: 17px; }
.psl-text {
  font-size: .85rem;
  color: var(--shl-text-soft);
  line-height: 1.55;
  padding-top: .35rem;
}
.psl-text strong { color: var(--shl-text); font-weight: 600; }

.ports-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--shl-line);
}
.ports-svc-block h3 { font-size: 1rem; margin-bottom: 1rem; }

@media (max-width: 1000px) {
  .sec-ports { grid-template-columns: 1fr; }
  .ports-img-panel {
    position: relative;
    top: 0;
    height: clamp(280px, 50vw, 440px);
  }
  .ports-content-panel { background: var(--shl-bg); }
  /* Hide the desktop transition gradient — not needed when layout stacks vertically */
  .ports-content-panel::after { display: none; }
  .ports-services { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .ports-services { grid-template-columns: 1fr; }
}

/* ===========================
   OFFICE / PORTS GRID (legacy)
   =========================== */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.office {
  background: white;
  border-top: 4px solid var(--shl-red);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.office h4 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: var(--shl-navy);
}
.office .city {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--shl-text);
  margin-bottom: .25rem;
}
.office .country {
  font-size: .85rem;
  color: var(--shl-text-mute);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.port-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.port-list li {
  background: rgba(169,29,47,.08);
  color: var(--shl-red);
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
}

/* ===========================
   CORE VALUES (red full-bleed)
   =========================== */
/* Values grid — 3 columns, last card spans 2 */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 2px solid rgba(169,29,47,.65);
  border-radius: 10px;
  padding: 1.5rem 1.4rem;
  transition: background .2s;
}
.value-card:hover { background: rgba(255,255,255,.11); }
.value-card--wide { grid-column: span 1; }
.value-ico {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
}
.value-ico svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.value-card h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .55rem;
  letter-spacing: .01em;
}
.value-card p {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}
.value-card p strong { color: white; font-weight: 600; }

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

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: white;
  border: 1px solid var(--shl-line);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-card h4 { color: var(--shl-red); margin-bottom: .75rem; font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-card .big { font-size: 1.25rem; font-weight: 700; }
.contact-card .big a { color: var(--shl-text); }
.contact-card .big a:hover { color: var(--shl-red); }

.lang-flags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.lang-flags span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 4px 10px;
  background: var(--shl-bg-alt);
  border: 1px solid var(--shl-line);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--shl-text-soft);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--shl-navy);
  color: rgba(255,255,255,.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-grid h5 { color: white; font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-grid a:hover { color: white; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 4px 0; }
.footer-logo img { height: 40px; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* lang switching */
[data-lang="en"] [lang="ro"],
[data-lang="ro"] [lang="en"] { display: none; }

/* ===========================
   FLEET CATALOG (technical drawings)
   =========================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) {
  .catalog-grid { grid-template-columns: 1fr; }
}
.catalog-card {
  background: white;
  border: 1px solid var(--shl-line);
  border-radius: var(--radius);
  padding: .75rem;
  cursor: zoom-in;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.catalog-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.catalog-card .label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--shl-red);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 2px;
}

/* Filter chips */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}
.filter-chip {
  background: white;
  border: 1px solid var(--shl-line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--shl-text-soft);
  transition: all .2s var(--ease);
}
.filter-chip:hover { border-color: var(--shl-red); color: var(--shl-red); }
.filter-chip.active {
  background: var(--shl-red);
  border-color: var(--shl-red);
  color: white;
}

/* Spec table */
.spec-table-wrap {
  background: white;
  border: 1px solid var(--shl-line);
  border-radius: var(--radius);
  overflow-x: auto;
  margin-top: 1rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.spec-table th,
.spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--shl-line);
  white-space: nowrap;
}
.spec-table th {
  background: var(--shl-bg-alt);
  color: var(--shl-text);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.spec-table tbody tr {
  transition: background .15s var(--ease);
}
.spec-table tbody tr:hover { background: rgba(169,29,47,.04); }
.spec-table .type-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.spec-table .type-badge.Lowbed     { background: #fdecee; color: #8B1626; }
.spec-table .type-badge.Modular    { background: #1A2845; color: white; }
.spec-table .type-badge.Extendable { background: #fef3c7; color: #92400e; }
.spec-table .type-badge.Platform   { background: #dbeafe; color: #1e40af; }
.spec-table tr.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
  cursor: zoom-out;
  animation: fadeIn .25s var(--ease);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* General-cargo table image */
.cargo-table-img {
  margin-top: 2.5rem;
  background: white;
  border: 1px solid var(--shl-line);
  border-radius: var(--radius);
  padding: .75rem;
  cursor: zoom-in;
  transition: box-shadow .3s var(--ease);
}
.cargo-table-img:hover { box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.cargo-table-img img { width: 100%; height: auto; display: block; }
