/* ══════════════════════════════════════════════════════════════
   LEMAK TICARET — GLOBAL AGRICULTURAL COMMODITIES
   Executive Brand & Visual Design System
   Created by Anıl Mete
   Corporate Identity:
   • Forest Obsidian / Surface Dark: #0D110E / #131813 / #182018
   • Sovereign Emerald & Vivid Accents: #2D6828 / #3E8A37 / #56B04E
   • Subtle Maritime Slate: #153844 / #20596B
   • Warm Editorial Alabaster & Cream: #F8FAF6 / #F1F5ED / #FFFFFF
   • Micro Hairline Borders & Multi-layered Ambient Shadows
══════════════════════════════════════════════════════════════ */

:root {
  /* Color Tokens: Sovereign Commodity Palette */
  --c-obsidian:           #0B0E0C;
  --c-surface-dark:       #111612;
  --c-surface-elevated:   #171E18;
  --c-surface-card:       #1B241C;
  
  --c-forest-deep:        #1B3819;
  --c-emerald:            #2A6225;
  --c-accent-green:       #3A7E34;
  --c-accent-vivid:       #51A949;
  --c-accent-glow:        rgba(81, 169, 73, 0.28);
  
  --c-maritime-deep:      #0F252E;
  --c-maritime-blue:      #174454;
  --c-maritime-teal:      #1F6379;
  
  --c-white:              #FFFFFF;
  --c-warm-white:         #FAFBF8;
  --c-alabaster:          #F5F8F2;
  --c-cream-soft:         #EDF2E8;
  
  /* Text Colors */
  --c-text-headline:      #101511;
  --c-text-body:          #2A352B;
  --c-text-muted:         #576657;
  --c-text-light:         rgba(255, 255, 255, 0.95);
  --c-text-light-sub:     rgba(255, 255, 255, 0.78);
  --c-text-light-muted:   rgba(255, 255, 255, 0.52);

  /* Hairlines & Borders */
  --border-dark-subtle:   rgba(255, 255, 255, 0.08);
  --border-dark-accent:   rgba(81, 169, 73, 0.35);
  --border-light-subtle:  rgba(20, 30, 20, 0.08);
  --border-light-strong:  rgba(20, 30, 20, 0.14);

  /* Typography */
  --font-sans:            'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:           'Cormorant Garamond', Georgia, serif;
  
  /* Radii */
  --radius-xs:            4px;
  --radius-sm:            8px;
  --radius-md:            14px;
  --radius-lg:            20px;
  --radius-xl:            28px;
  --radius-pill:          100px;
  
  /* Transitions */
  --ease-spring:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:          cubic-bezier(0.25, 1, 0.5, 1);
  --ease-cinematic:       cubic-bezier(0.19, 1, 0.22, 1);

  /* Multi-layered Ambient Occlusion & VFX Glow Shadows */
  --shadow-sm:            0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md:            0 8px 24px -4px rgba(16, 26, 16, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-lg:            0 20px 48px -10px rgba(16, 26, 16, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-dark:          0 16px 40px -8px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-dark-hover:    0 24px 60px -12px rgba(0, 0, 0, 0.75), 0 0 25px rgba(81, 169, 73, 0.2);
  --shadow-ao-3d:         0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  --shadow-specular-glow: 0 0 35px rgba(81, 169, 73, 0.28), 0 20px 45px -10px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  background-color: var(--c-warm-white);
  color: var(--c-text-body);
  line-height: 1.68;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Typography Accents */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--c-accent-green);
  letter-spacing: 0.01em;
}

.serif-accent-light {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--c-accent-vivid);
  letter-spacing: 0.01em;
}

/* Section Background Themes */
.bg-warm-editorial {
  background-color: var(--c-warm-white);
  background-image: radial-gradient(circle at 100% 0%, rgba(81, 169, 73, 0.03) 0%, transparent 40%),
                    radial-gradient(circle at 0% 100%, rgba(23, 68, 84, 0.02) 0%, transparent 40%);
  color: var(--c-text-body);
}

.bg-forest-obsidian {
  background-color: var(--c-obsidian);
  background-image: radial-gradient(circle at 50% 0%, rgba(42, 98, 37, 0.15) 0%, transparent 60%),
                    linear-gradient(180deg, rgba(11, 14, 12, 0.98) 0%, rgba(17, 22, 18, 0.98) 100%);
  color: var(--c-white);
  position: relative;
}

.bg-forest-obsidian::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(81, 169, 73, 0.3) 50%, transparent 100%);
}

/* ─── EXECUTIVE SPLASH SCREEN ──────────────────────────────── */
.splash-curtain {
  position: fixed;
  inset: 0;
  background-color: #070A08;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.85, 0, 0.15, 1),
              opacity 0.7s ease;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
}

.splash-curtain.splash-dismissed {
  transform: translateY(-100%);
  pointer-events: none;
}

.splash-ambient-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 98, 37, 0.32) 0%, rgba(31, 99, 121, 0.14) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: splashAuraPulse 4s ease-in-out infinite alternate;
}

@keyframes splashAuraPulse {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

.splash-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.splash-mark {
  margin-bottom: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: splashLogoEntrance 0.85s var(--ease-spring) both;
}

.splash-logo-aura {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(81, 169, 73, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}

.splash-logo-img {
  height: 64px;
  width: auto;
  max-width: 86vw;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.65));
  position: relative;
  z-index: 2;
}

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

.splash-title-wrap {
  margin-bottom: 30px;
  animation: splashFadeUp 0.8s 0.18s ease both;
}

.splash-brand-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.splash-sub {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.splash-loader-deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: splashFadeUp 0.8s 0.3s ease both;
}

.splash-line-wrap {
  width: 160px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.splash-line {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-emerald), var(--c-accent-vivid));
  box-shadow: 0 0 10px rgba(81, 169, 73, 0.8);
  animation: splashLineFill 1.3s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes splashLineFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

.splash-telemetry {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.telemetry-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent-vivid);
  box-shadow: 0 0 6px var(--c-accent-vivid);
  animation: beaconPulse 1.5s infinite;
}

.splash-skip {
  position: absolute;
  bottom: 36px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
  z-index: 2;
}

.splash-curtain:hover .splash-skip {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── NAVBAR & HEADER ──────────────────────────────────────── */
#siteHeader {
  position: relative;
  z-index: 1050;
}

#mainNav {
  padding: 22px 0;
  min-height: 84px;
  background: transparent;
  transition: all 0.4s var(--ease-spring);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mainNav.navbar-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  min-height: 72px;
  border-bottom: 1px solid rgba(20, 30, 20, 0.08);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 42px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 38px;
  width: auto;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.logo-light {
  opacity: 1;
  transform: translateY(0);
}

.logo-dark {
  position: absolute;
  left: 0;
  top: 2px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}

#mainNav.navbar-scrolled .logo-light {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

#mainNav.navbar-scrolled .logo-dark {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-nav {
  white-space: nowrap;
}

.navbar-nav .nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}

#mainNav.navbar-scrolled .navbar-nav .nav-link {
  color: var(--c-text-headline) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
}

#mainNav.navbar-scrolled .navbar-nav .nav-link:hover,
#mainNav.navbar-scrolled .navbar-nav .nav-link.active {
  color: var(--c-accent-green) !important;
  background: rgba(42, 98, 37, 0.08);
}

/* Nav CTA Button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-accent-green) 100%);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  min-width: 155px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(42, 98, 37, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  animation: buttonLightSweep 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes buttonLightSweep {
  0%, 70% { left: -60%; }
  100% { left: 160%; }
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--c-forest-deep) 0%, var(--c-emerald) 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 24px rgba(42, 98, 37, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-nav-cta i {
  transition: transform 0.25s ease;
}

.btn-nav-cta:hover i {
  transform: translate(2px, -2px);
}

/* Language Switcher Capsule */
.lang-switch-box {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 4px 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#mainNav.navbar-scrolled .lang-switch-box {
  background: rgba(20, 30, 20, 0.05);
  border-color: rgba(20, 30, 20, 0.12);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 3px 8px;
  line-height: 1;
  transition: all 0.2s ease;
  border-radius: var(--radius-pill);
}

#mainNav.navbar-scrolled .lang-btn {
  color: var(--c-text-muted);
}

.lang-btn:hover {
  color: #ffffff;
}

#mainNav.navbar-scrolled .lang-btn:hover {
  color: var(--c-text-headline);
}

.lang-btn.active {
  color: #ffffff !important;
  background: var(--c-accent-green);
}

#mainNav.navbar-scrolled .lang-btn.active {
  color: #ffffff !important;
  background: var(--c-forest-deep);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  user-select: none;
}

#mainNav.navbar-scrolled .lang-divider {
  color: rgba(20, 30, 20, 0.2);
}

/* Mobile Toggler */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.custom-toggler:focus {
  box-shadow: none;
  outline: none;
}

.custom-toggler .bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#mainNav.navbar-scrolled .custom-toggler .bar {
  background-color: var(--c-text-headline);
}

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--c-obsidian);
  color: #ffffff;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: brightness(0.86) contrast(1.12) saturate(1.06);
  transform: scale(1.02);
  transition: transform 18s var(--ease-cinematic);
  will-change: transform;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.07);
}

.hero-volumetric-flare {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 75vw;
  height: 75vw;
  background: radial-gradient(circle at 65% 35%, rgba(255, 220, 150, 0.32) 0%, rgba(81, 169, 73, 0.2) 30%, transparent 68%);
  filter: blur(55px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  animation: volumetricGodRay 10s ease-in-out infinite alternate;
}

@keyframes volumetricGodRay {
  0%   { transform: scale(1) translate(0, 0) rotate(0deg); opacity: 0.7; }
  50%  { transform: scale(1.12) translate(-25px, 15px) rotate(2deg); opacity: 0.92; }
  100% { transform: scale(1.05) translate(15px, -10px) rotate(-1deg); opacity: 0.8; }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(33, 85, 30, 0.38) 0%, transparent 60%),
              linear-gradient(180deg, rgba(11, 14, 12, 0.72) 0%, rgba(14, 18, 14, 0.52) 40%, rgba(11, 14, 12, 0.98) 100%);
  backdrop-filter: blur(0.5px);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.particle-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe699 0%, rgba(81, 169, 73, 0.6) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(255, 230, 150, 0.65);
  animation: floatUpward linear infinite;
}

@keyframes floatUpward {
  0%   { transform: translateY(100vh) scale(0.6); opacity: 0; }
  12%  { opacity: 0.9; transform: translateY(85vh) scale(1); }
  85%  { opacity: 0.9; }
  100% { transform: translateY(-30px) scale(0.7); opacity: 0; }
}

.hero-container {
  z-index: 4;
  padding-top: 120px;
  padding-bottom: 90px;
  perspective: 1200px;
}

.hero-content-layer {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0.38, 0.9);
}

/* Hero Pill Badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent-vivid);
  box-shadow: 0 0 0 0 rgba(81, 169, 73, 0.7);
  animation: beaconWave 2.2s infinite;
}

@keyframes beaconWave {
  0%   { box-shadow: 0 0 0 0 rgba(81, 169, 73, 0.8); }
  70%  { box-shadow: 0 0 0 8px rgba(81, 169, 73, 0); }
  100% { box-shadow: 0 0 0 0 rgba(81, 169, 73, 0); }
}

.pill-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title {
  font-size: clamp(2.9rem, 6.2vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.76);
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-accent-green) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(42, 98, 37, 0.45);
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(25deg);
  animation: buttonLightSweep 4.5s 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--c-forest-deep) 0%, var(--c-emerald) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(42, 98, 37, 0.6);
}

.btn-hero-primary i {
  transition: transform 0.25s ease;
}

.btn-hero-primary:hover i {
  transform: translate(2px, 2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Metric Bar Dashboard */
.hero-metric-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 20px 32px;
  background: rgba(15, 20, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.metric-block {
  display: flex;
  flex-direction: column;
}

.metric-block .m-val {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.metric-block .m-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 6px;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* Scroll Trigger */
.scroll-trigger {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  transition: opacity 0.35s ease;
}

.scroll-trigger.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.st-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.st-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
  transform-origin: top;
  animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
  0%   { transform: scaleY(0); opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─── COMMON SECTION STYLES ────────────────────────────────── */
.section-block {
  padding: 130px 0;
  position: relative;
}

/* Editorial Section Kicker */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 98, 37, 0.08);
  border: 1px solid rgba(42, 98, 37, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-green);
  margin-bottom: 22px;
}

.section-kicker.kicker-light {
  background: rgba(81, 169, 73, 0.12);
  border-color: rgba(81, 169, 73, 0.28);
  color: var(--c-accent-vivid);
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.section-headline {
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--c-text-headline);
  margin-bottom: 24px;
}

.section-headline.headline-light {
  color: #ffffff;
}

.section-paragraph-lead {
  font-size: 1.16rem;
  line-height: 1.75;
  color: var(--c-emerald);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-paragraph {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 18px;
}

.section-sub-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
}

.text-muted-light {
  color: var(--c-text-light-sub);
}

/* ─── 3D PERSPECTIVE & SPECULAR TILT ENGINE ────────────────── */
.tilt-element {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0.38, 0.9), box-shadow 0.25s ease;
  will-change: transform;
  position: relative;
}

.tilt-element::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 280px at var(--glare-x, 50%) var(--glare-y, 50%), rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 75%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.tilt-element:hover::after {
  opacity: 1;
}

/* ─── ABOUT US: TRANSLUCENT GLASS COMMODITY DECK (GPU ACCELERATED) ─── */
.about-glass-deck {
  position: relative;
  padding: 10px 0;
}

.about-glass-deck::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(42, 98, 37, 0.12) 0%, rgba(81, 169, 73, 0.04) 50%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.glass-terminal-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(42, 98, 37, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px -10px rgba(26, 46, 30, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  contain: paint;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.glass-terminal-card:hover {
  transform: translateY(-4px) translate3d(0, 0, 0);
  box-shadow: 0 24px 55px -12px rgba(26, 46, 30, 0.2), 0 0 24px rgba(81, 169, 73, 0.15);
}

.gtc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid rgba(42, 98, 37, 0.1);
}

.gtc-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.live-pulse-beacon {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
}

.live-pulse-beacon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #22c55e;
  animation: beaconPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.gtc-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-forest-deep);
}

.gtc-location {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-accent-green {
  color: var(--c-accent-green);
}

.gtc-visual-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--c-obsidian);
  contain: paint;
}

.gtc-visual-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(81, 169, 73, 0.9) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
  animation: radarScanDown 5s ease-in-out infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

@keyframes radarScanDown {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translate3d(0, 380px, 0); opacity: 0; }
}

.gtc-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease-out;
  transform: translate3d(0, 0, 0);
}

.glass-terminal-card:hover .gtc-visual-img {
  transform: scale(1.03) translate3d(0, 0, 0);
}

.gtc-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 16, 0.15) 0%, rgba(15, 20, 16, 0.35) 40%, rgba(15, 20, 16, 0.75) 100%);
  pointer-events: none;
}

.gtc-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(12, 20, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, background-color 0.25s ease;
  z-index: 2;
  transform: translate3d(0, 0, 0);
}

.gtc-floating-badge:hover {
  transform: translateY(-2px) translate3d(0, 0, 0);
  background: rgba(12, 20, 14, 0.96);
  border-color: rgba(81, 169, 73, 0.5);
}

.gtc-badge-1 {
  top: 18px;
  left: 18px;
}

.gtc-badge-2 {
  bottom: 18px;
  right: 18px;
}

.gfb-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(81, 169, 73, 0.22);
  color: var(--c-accent-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid rgba(81, 169, 73, 0.35);
}

.gfb-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

.gfb-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.gtc-metrics-strip {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-top: 1px solid rgba(42, 98, 37, 0.12);
}

.gtc-metric-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  text-align: center;
}

.gmi-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-forest-mid);
}

.gmi-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-forest-deep);
}

.gtc-metric-div {
  width: 1px;
  height: 30px;
  background: rgba(42, 98, 37, 0.15);
  margin: 0 10px;
}

/* ─── ABOUT: EXECUTIVE NARRATIVE, PILLARS & FOOTPRINT ──────── */
.about-lead-box {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 246, 0.92) 100%);
  border: 1px solid rgba(42, 98, 37, 0.2);
  border-left: 4px solid var(--c-accent-green);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: 0 16px 36px -8px rgba(26, 46, 30, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  position: relative;
}

.alb-top-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(42, 98, 37, 0.08);
}

.alb-status-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-forest-deep);
  flex-grow: 1;
  margin-left: 8px;
}

.alb-status-badge {
  font-size: 0.62rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--c-accent-green);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.about-lead-text {
  font-size: 1.12rem;
  line-height: 1.74;
  color: var(--c-text-headline);
  font-weight: 600;
  margin-bottom: 0;
}

.about-lead-text strong {
  color: var(--c-forest-deep);
  font-weight: 800;
}

.about-lead-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(42, 98, 37, 0.2) 0%, transparent 80%);
  margin: 14px 0;
}

.about-secondary-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 0;
}

/* 3 Executive Strategic Pillar Cards with Live Gauges */
.about-pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-exec-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(42, 98, 37, 0.14);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 4px 18px rgba(16, 26, 16, 0.05);
  transition: all 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.pillar-exec-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3.5px;
  background: linear-gradient(to bottom, var(--c-accent-vivid), var(--c-accent-green));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pillar-exec-card:hover {
  transform: translateX(4px) translateY(-2px);
  border-color: rgba(42, 98, 37, 0.35);
  box-shadow: 0 16px 36px -6px rgba(42, 98, 37, 0.16);
}

.pillar-exec-card:hover::before {
  opacity: 1;
}

.pec-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(42, 98, 37, 0.12) 0%, rgba(81, 169, 73, 0.2) 100%);
  border: 1px solid rgba(81, 169, 73, 0.35);
  color: var(--c-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.pillar-exec-card:hover .pec-icon-box {
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-accent-green) 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 16px rgba(42, 98, 37, 0.35);
}

.pec-body {
  flex-grow: 1;
}

.pec-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.pec-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pec-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-accent-green);
  line-height: 1;
}

.pec-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--c-text-headline);
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.pec-tag {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-forest-deep);
  background: rgba(42, 98, 37, 0.08);
  border: 1px solid rgba(42, 98, 37, 0.14);
  padding: 2px 6px;
  border-radius: 4px;
}

.pec-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.48;
  margin-bottom: 8px;
}

/* Live Telemetry Meter */
.pec-telemetry-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 35, 20, 0.04);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(42, 98, 37, 0.08);
}

.ptb-fill {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: beaconPulse 1.6s infinite;
}

.ptb-origin {
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.ptb-freight {
  background: #0ea5e9;
  box-shadow: 0 0 6px #0ea5e9;
}

.ptb-finance {
  background: #eab308;
  box-shadow: 0 0 6px #eab308;
}

.ptb-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-forest-deep);
  letter-spacing: 0.02em;
}

/* Executive 8-Country Physical Footprint Console with Flow Tracer */
.about-footprint-deck {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 250, 246, 0.85) 100%);
  border: 1px solid rgba(42, 98, 37, 0.16);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.afd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(42, 98, 37, 0.08);
}

.afd-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-pulse-beacon-sm {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: beaconPulse 1.8s infinite;
}

.afd-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-forest-deep);
}

.afd-badge {
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--c-accent-green);
  background: rgba(42, 98, 37, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Corridor Flow Tracer */
.corridor-flow-tracer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(42, 98, 37, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  overflow: hidden;
}

.cft-node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cft-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-green);
  display: inline-block;
  box-shadow: 0 0 4px var(--c-accent-green);
}

.cft-dot-hub {
  background: #eab308;
  box-shadow: 0 0 6px #eab308;
}

.cft-text {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--c-text-headline);
  white-space: nowrap;
}

.cft-pipeline {
  flex-grow: 1;
  height: 2px;
  background: rgba(42, 98, 37, 0.15);
  position: relative;
  overflow: hidden;
  min-width: 20px;
}

.cft-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  animation: pipelineLaser 2.2s linear infinite;
}

@keyframes pipelineLaser {
  0%   { left: -40%; }
  100% { left: 140%; }
}

/* Provenance Market Pills */
.market-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(42, 98, 37, 0.14);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-body);
  transition: all 0.25s var(--ease-spring);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.pill-flag {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.market-pill.is-hq {
  border-color: rgba(42, 98, 37, 0.35);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5FAF3 100%);
}

.pill-iso {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-accent-green);
}

.pill-name {
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-tag-hq {
  font-size: 0.58rem;
  font-weight: 800;
  background: var(--c-accent-green);
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.pill-tag-origin {
  font-size: 0.58rem;
  font-weight: 700;
  background: rgba(42, 98, 37, 0.1);
  color: var(--c-forest-deep);
  padding: 1px 5px;
  border-radius: 6px;
}

.market-pill:hover,
.market-pill.is-highlighted {
  background: var(--c-forest-deep);
  color: #ffffff !important;
  border-color: var(--c-forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27, 56, 25, 0.3);
}

.market-pill:hover .pill-iso,
.market-pill.is-highlighted .pill-iso {
  color: var(--c-accent-vivid);
}

.market-pill:hover .pill-tag-origin,
.market-pill.is-highlighted .pill-tag-origin {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ─── OUR ACTIVITIES: EDITORIAL CARDS ───────────────────────── */
.activity-card-rich {
  background: linear-gradient(170deg, rgba(23, 30, 24, 0.94) 0%, rgba(17, 22, 18, 0.98) 100%);
  border: 1px solid rgba(81, 169, 73, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-spring);
  position: relative;
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.activity-card-rich:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(81, 169, 73, 0.55);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.85), 0 0 32px rgba(81, 169, 73, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.card-media-wrap {
  position: relative;
  height: 195px;
  overflow: hidden;
}

.card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-smooth);
}

.activity-card-rich:hover .card-bg-img {
  transform: scale(1.08);
}

.card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 22, 18, 0.25) 0%, rgba(17, 22, 18, 0.95) 100%);
}

.card-top-bar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.card-index {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(11, 14, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xs);
  padding: 2px 8px;
  backdrop-filter: blur(8px);
}

.card-category-badge {
  background: rgba(11, 14, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(8px);
}

.card-body-content {
  padding: 24px 26px 26px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-header-flex {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.card-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-accent-green) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.activity-card-rich:hover .card-icon-circle {
  background: linear-gradient(135deg, var(--c-accent-green) 0%, var(--c-accent-vivid) 100%);
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 6px 20px rgba(81, 169, 73, 0.4);
}

.card-title {
  font-size: 1.14rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--c-text-light-sub);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer-action {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-accent-vivid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s ease;
}

.activity-card-rich:hover .card-footer-action {
  color: #ffffff;
}

.card-footer-action i {
  transition: transform 0.25s ease;
}

.activity-card-rich:hover .card-footer-action i {
  transform: translate(2px, -2px);
}

/* Mission Feature Banner */
.mission-feature-banner {
  background: linear-gradient(135deg, rgba(42, 98, 37, 0.16) 0%, rgba(23, 68, 84, 0.16) 100%);
  border: 1px solid rgba(81, 169, 73, 0.3);
  border-radius: var(--radius-lg);
  padding: 42px 48px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.quote-mark-icon {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--c-accent-vivid);
  opacity: 0.65;
}

.mission-blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.52;
  color: #ffffff;
  margin: 0 0 12px;
}

.quote-attribution {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-vivid);
}

/* ─── GLOBAL PRESENCE: OPERATIONS DESK MAP & CARDS ─────────── */
.corridor-map-container {
  background: #ffffff;
  border: 1px solid var(--border-light-strong);
  border-radius: var(--radius-xl);
  padding: 26px 32px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Radar Status Header */
.map-status-header {
  border-bottom: 1px solid var(--border-light-subtle);
  padding-bottom: 14px;
}

.live-radar-ping {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-accent-vivid);
  display: inline-block;
  box-shadow: 0 0 0 rgba(81, 169, 73, 0.6);
  animation: beaconPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes beaconPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(81, 169, 73, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 9px rgba(81, 169, 73, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(81, 169, 73, 0);
  }
}

.msh-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-headline);
  font-weight: 800;
}

.msh-legend {
  font-size: 0.76rem;
  color: var(--c-text-muted);
  font-weight: 600;
}

.msh-legend-item {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--c-alabaster);
  border: 1px solid var(--border-light-subtle);
}

.leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.leg-hub {
  background: var(--c-emerald);
  box-shadow: 0 0 6px rgba(42, 98, 37, 0.6);
}

.leg-origin {
  background: var(--c-accent-vivid);
  box-shadow: 0 0 6px rgba(81, 169, 73, 0.5);
}

.leg-dest {
  background: var(--c-maritime-blue);
  box-shadow: 0 0 6px rgba(23, 68, 84, 0.5);
}

.trade-vector-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Animated Corridors */
.corridor-route {
  fill: none;
  stroke-width: 1.9;
  stroke-dasharray: 6 5;
  stroke-opacity: 0.72;
  transition: stroke-width 0.25s ease, stroke-opacity 0.25s ease;
}

.corridor-route.route-origin {
  animation: routeFlowReverse 2.8s linear infinite;
}

.corridor-route.route-dest {
  animation: routeFlow 3.2s linear infinite;
}

@keyframes routeFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -22; }
}

@keyframes routeFlowReverse {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: 22; }
}

/* Radar Sonar Wave Pulse from Istanbul */
.radar-sonar {
  fill: none;
  stroke: var(--c-accent-green);
  stroke-width: 1.5;
  animation: sonarPing 3.2s cubic-bezier(0.1, 0.5, 0.3, 1) infinite;
  pointer-events: none;
}

.radar-sonar-2 {
  animation-delay: 1.6s;
}

@keyframes sonarPing {
  0% {
    r: 6;
    opacity: 0.85;
    stroke-width: 2.2;
  }
  100% {
    r: 48;
    opacity: 0;
    stroke-width: 0.5;
  }
}

.hub-center-dot {
  fill: var(--c-accent-green);
  stroke: #ffffff;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.pulse-beacon-sm {
  animation: beaconPulse 1.8s infinite;
}

/* Map Landmasses */
.map-landmasses path {
  transition: fill 0.3s ease;
}

/* Map Nodes & Badges */
.map-node {
  stroke: #ffffff;
  stroke-width: 2;
  transition: transform 0.25s ease, r 0.25s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.node-origin {
  fill: var(--c-accent-vivid);
}

.node-dest {
  fill: var(--c-maritime-blue);
}

.node-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  user-select: none;
  transition: fill 0.2s ease;
}

.label-origin {
  fill: #22511E;
}

.label-dest {
  fill: #0F323D;
}

/* Country Badge Tags */
.country-badge-tag {
  cursor: pointer;
}

.country-badge-tag text,
.country-badge-tag use,
.istanbul-badge text,
.istanbul-badge use {
  pointer-events: none;
}

.country-badge-tag rect {
  transition: stroke 0.2s ease, stroke-width 0.2s ease, fill 0.2s ease;
}

.country-node-group {
  cursor: pointer;
}

.country-node-group:hover .map-node,
.country-node-group.is-highlighted .map-node {
  stroke-width: 3.5;
  stroke: #ffffff;
}

.country-node-group:hover .country-badge-tag rect,
.country-node-group.is-highlighted .country-badge-tag rect {
  stroke: var(--c-forest-deep);
  stroke-width: 2;
  fill: #EDF5EA;
}

.country-node-group:hover .node-label,
.country-node-group.is-highlighted .node-label {
  fill: var(--c-forest-deep);
  font-weight: 800;
}

/* Istanbul Badge */
.istanbul-badge {
  cursor: pointer;
}

.istanbul-badge rect {
  transition: stroke 0.2s ease, stroke-width 0.2s ease;
}

.country-node-group:hover .istanbul-badge rect,
.country-node-group.is-highlighted .istanbul-badge rect {
  stroke: var(--c-accent-vivid);
  stroke-width: 2;
}

/* Route Highlight */
.corridor-route.is-highlighted {
  stroke-width: 3.4 !important;
  stroke-opacity: 1 !important;
  stroke: var(--c-accent-green) !important;
}

.vessel-dot {
  pointer-events: none;
}

/* Executive Country Market Cards Grid */
.country-market-card {
  background: #ffffff;
  border: 1px solid var(--border-light-subtle);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  height: 100%;
  min-height: 160px;
  transition: all 0.3s var(--ease-spring);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.country-market-card.active-hq {
  border-color: rgba(42, 98, 37, 0.4);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F9F3 100%);
}

.country-market-card.is-highlighted,
.country-market-card:hover {
  background: var(--c-forest-deep);
  color: #ffffff;
  border-color: var(--c-forest-deep);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cm-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cm-iso-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--c-alabaster);
  color: var(--c-accent-green);
  border: 1px solid var(--border-light-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  transition: all 0.3s ease;
}

.country-market-card.is-highlighted .cm-iso-pill,
.country-market-card:hover .cm-iso-pill {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cm-type-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.hub-pill {
  background: rgba(42, 98, 37, 0.12);
  color: var(--c-accent-green);
}

.origin-pill {
  background: rgba(81, 169, 73, 0.12);
  color: #276922;
}

.dest-pill {
  background: rgba(23, 68, 84, 0.1);
  color: var(--c-maritime-blue);
}

.country-market-card.is-highlighted .cm-type-pill,
.country-market-card:hover .cm-type-pill {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cm-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-text-headline);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.country-market-card.is-highlighted .cm-name,
.country-market-card:hover .cm-name {
  color: #ffffff;
}

.cm-role {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.country-market-card.is-highlighted .cm-role,
.country-market-card:hover .cm-role {
  color: rgba(255, 255, 255, 0.82);
}

.cm-commodities-strip {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-accent-green);
  border-top: 1px solid var(--border-light-subtle);
  padding-top: 8px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.country-market-card.is-highlighted .cm-commodities-strip,
.country-market-card:hover .cm-commodities-strip {
  color: var(--c-accent-vivid);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ─── CAREER SECTION ───────────────────────────────────────── */
.career-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.career-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) contrast(1.15);
}

.career-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(42, 98, 37, 0.25) 0%, transparent 60%),
              linear-gradient(135deg, rgba(11, 14, 12, 0.96) 0%, rgba(17, 22, 18, 0.94) 100%);
}

.btn-career-apply {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-accent-green) 100%);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(42, 98, 37, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-career-apply:hover {
  background: linear-gradient(135deg, var(--c-forest-deep) 0%, var(--c-emerald) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(42, 98, 37, 0.55);
}

.career-values-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-value-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.c-value-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-dark-accent);
  transform: translateX(6px);
}

.cv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(81, 169, 73, 0.15);
  color: var(--c-accent-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(81, 169, 73, 0.25);
}

.cv-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.cv-text {
  font-size: 0.88rem;
  color: var(--c-text-light-sub);
  margin: 0;
  line-height: 1.6;
}

/* ─── CONTACT SECTION: NUROL TOWER EXECUTIVE DESK ─────────── */
.executive-contact-card {
  background: #ffffff;
  border: 1px solid var(--border-light-strong);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  height: 100%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-spring);
}

.executive-contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-emerald), var(--c-accent-vivid));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.executive-contact-card:hover {
  border-color: rgba(42, 98, 37, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.executive-contact-card:hover::after {
  transform: scaleX(1);
}

.ecc-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-md);
  background: rgba(42, 98, 37, 0.08);
  border: 1px solid rgba(42, 98, 37, 0.16);
  color: var(--c-accent-green);
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.executive-contact-card:hover .ecc-icon {
  background: linear-gradient(135deg, var(--c-emerald) 0%, var(--c-accent-green) 100%);
  color: #ffffff;
  transform: rotate(-6deg) scale(1.06);
}

.ecc-heading {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-headline);
  margin-bottom: 12px;
}

.ecc-detail {
  font-size: 0.94rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}

.ecc-link-prominent {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-accent-green);
  display: inline-block;
  margin-bottom: 16px;
  transition: color 0.25s ease;
}

.ecc-link-prominent:hover {
  color: var(--c-forest-deep);
}

.ecc-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  background: var(--c-alabaster);
  border: 1px solid var(--border-light-subtle);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* ─── CORPORATE FOOTER: EXECUTIVE MULTI-COLUMN ────────────── */
.site-corporate-footer {
  background: radial-gradient(circle at 50% 0%, #152418 0%, #0c130e 55%, #070a08 100%);
  padding: 90px 0 36px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-top-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(81, 169, 73, 0.5) 20%, rgba(34, 197, 94, 0.9) 50%, rgba(81, 169, 73, 0.5) 80%, transparent 100%);
  box-shadow: 0 0 16px rgba(81, 169, 73, 0.6);
}

.footer-brand-lockup {
  border-left: 3px solid var(--c-accent-vivid);
  padding-left: 20px;
  margin-bottom: 22px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
}

.footer-brand-tagline {
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}

.footer-company-desc {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px;
  margin-bottom: 18px;
}

.footer-hq-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(81, 169, 73, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.text-accent-light {
  color: var(--c-accent-vivid);
}

.footer-col-heading {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-vivid);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(81, 169, 73, 0.25);
  display: inline-block;
}

.footer-v-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-v-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-v-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-corridor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-corridor-list li {
  position: relative;
  padding-left: 14px;
}

.footer-corridor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent-vivid);
}

.fcl-region {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent-vivid);
  margin-bottom: 2px;
}

.fcb-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

.fcb-link-bold {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fcb-link-bold:hover {
  color: var(--c-accent-vivid);
}

.fcb-link-accent {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-accent-vivid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fcb-link-accent:hover {
  color: #ffffff;
}

.fcb-link-muted {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fcb-link-muted:hover {
  color: #ffffff;
}

.footer-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.03em;
}

.hours-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
  animation: beaconPulse 2s infinite;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-top-anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-top-anchor:hover {
  color: var(--c-accent-vivid);
}

/* ─── LANGUAGE SWITCH TRANSITION ───────────────────────────── */
[data-i18n] {
  transition: opacity 0.12s ease-in-out;
}

body.lang-switching [data-i18n] {
  opacity: 0.7;
}

/* ─── RESPONSIVE BREAKPOINTS ───────────────────────────────── */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .about-glass-deck {
    margin-bottom: 30px;
  }
  .gtc-visual-wrap {
    height: 340px;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  #navMenu {
    background: rgba(15, 20, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mainNav.navbar-scrolled #navMenu {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--border-light-strong);
  }
  #mainNav.navbar-scrolled #navMenu .nav-link {
    color: var(--c-text-headline) !important;
  }
}

@media (max-width: 767px) {
  .section-block {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-lead {
    font-size: 0.98rem;
  }
  .hero-button-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
    width: 100%;
  }
  .hero-metric-bar {
    gap: 16px;
    padding: 16px 20px;
    width: 100%;
  }
  .metric-divider {
    display: none;
  }
  .metric-block {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
  }
  .metric-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .gtc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .gtc-visual-wrap {
    height: 280px;
  }
  .gtc-floating-badge {
    padding: 8px 12px;
    gap: 8px;
  }
  .gfb-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .gfb-title {
    font-size: 0.74rem;
  }
  .gfb-sub {
    display: none;
  }
  .gtc-metrics-strip {
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }
  .gtc-metric-div {
    width: 100%;
    height: 1px;
    margin: 4px 0;
  }
  .mission-feature-banner {
    padding: 28px 24px;
  }
  .corridor-map-container {
    padding: 16px 12px;
  }
}

@media (max-width: 576px) {
  .country-market-card {
    padding: 14px 12px;
    min-height: 145px;
  }
  .cm-name {
    font-size: 0.94rem;
  }
  .cm-role {
    font-size: 0.68rem;
    margin-bottom: 8px;
    line-height: 1.35;
  }
  .cm-commodities-strip {
    font-size: 0.64rem;
    padding-top: 6px;
    line-height: 1.35;
  }
  .cm-iso-pill {
    font-size: 0.68rem;
    padding: 2px 6px;
  }
  .cm-type-pill {
    font-size: 0.60rem;
    padding: 2px 6px;
  }
  .market-pill {
    padding: 5px 8px;
    font-size: 0.72rem;
  }
  .pill-flag {
    width: 15px;
    height: 15px;
  }
}

/* Touch-device smooth scroll optimization */
@media (hover: none) and (pointer: coarse) {
  .tilt-element {
    transform: none !important;
  }
}
