/* ============================================================
   GVK GLOBAL TRADING — PREMIUM STYLESHEET v2.0
   Theme: Clean White + Orange | Refined Corporate
   Fonts: Syne (Display) + Plus Jakarta Sans (Body)
============================================================ */

:root {
  --orange:       #f28c18;
  --orange-dark:  #d97a0e;
  --orange-deep:  #b86300;
  --orange-light: #fff7ed;
  --orange-mid:   #fde8c0;
  --orange-glow:  rgba(242,140,24,0.18);

  --white:        #ffffff;
  --off-white:    #f8f7f5;
  --light-grey:   #f0eeeb;
  --mid-grey:     #e2e0db;
  --border:       #ebe9e4;

  --text-dark:    #16130e;
  --text-body:    #4b4540;
  --text-muted:   #928d87;

  --shadow-xs:    0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.13);
  --shadow-orange:0 8px 28px rgba(242,140,24,0.30);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  --nav-h:        72px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; color: var(--orange); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================ LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 100px 0; }
.bg-light { background: var(--off-white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============================================================ TYPOGRAPHY */
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; color: var(--text-dark); line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 0.975rem; line-height: 1.7; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }
.section-label.light { color: rgba(255,255,255,0.65); }
.section-label.light::before { background: rgba(255,255,255,0.4); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-sub { color: var(--text-muted); font-size: 1.025rem; max-width: 520px; margin: 12px auto 0; }
.section-body { color: var(--text-body); margin-bottom: 14px; font-size: 1rem; line-height: 1.72; }

/* ============================================================ BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--orange-dark);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid white;
  transition: var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: var(--transition);
}
.btn-white-outline:hover { border-color: white; transform: translateY(-2px); }

/* ============================================================ NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  height: 64px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-text strong {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  display: block;
  line-height: 1.1;
}
.logo-text small {
  font-size: 0.67rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--orange); background: var(--orange-light); }
.nav-links > li > a svg { transition: transform 0.25s; }
.has-dropdown:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
/* Invisible bridge so mouse doesn't lose hover between link and dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--orange-light); color: var(--orange); }

/* CTA button in nav */
.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger:hover { background: var(--orange-light); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22,19,14,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.open { opacity: 1; }

/* ============================================================ HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: white;
  padding: calc(var(--nav-h) + 60px) 28px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #fde8c0 0%, transparent 70%);
  top: -120px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #fff0d8 0%, transparent 70%);
  bottom: 0; left: -80px;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226,224,219,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,224,219,0.4) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-dark);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.3);} }

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.06;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner {
  display: block;
  animation: lineUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.22s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.34s; }
.hero-title .line:nth-child(4) .line-inner { animation-delay: 0.46s; }
@keyframes lineUp { from{transform:translateY(105%);} to{transform:translateY(0);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px);} to{opacity:1;transform:translateY(0);} }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.55s ease both;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.65s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  animation: fadeUp 0.7s 0.75s ease both;
}
.stat-item {
  padding: 0 28px 0 0;
  display: flex;
  flex-direction: column;
}
.stat-item:first-child { padding-left: 0; }
.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.stat-val sup { font-size: 1rem; color: var(--orange); }
.stat-item small { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: var(--border); margin: 0 28px 0 0; }

/* Hero visual - globe */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.globe-wrap {
  position: relative;
  width: 420px; height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: spin linear infinite;
}
.globe-ring.r1 {
  width: 380px; height: 380px;
  border-color: rgba(242,140,24,0.15);
  animation-duration: 30s;
}
.globe-ring.r2 {
  width: 290px; height: 290px;
  border-color: rgba(242,140,24,0.25);
  border-style: dashed;
  animation-duration: 20s;
  animation-direction: reverse;
}
.globe-ring.r3 {
  width: 200px; height: 200px;
  border-color: rgba(242,140,24,0.35);
  animation-duration: 14s;
}
@keyframes spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

.globe-core {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #f5a623);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(242,140,24,0.1), 0 0 0 32px rgba(242,140,24,0.05);
}
.globe-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.globe-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
  letter-spacing: 0.05em;
}
.orbit-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,140,24,0.25);
}
.od1 { top: 20px; left: 50%; transform: translateX(-50%); animation: orbitY1 6s ease-in-out infinite; }
.od2 { bottom: 40px; right: 40px; animation: orbitY2 8s ease-in-out infinite 1s; }
.od3 { top: 50%; left: 20px; transform: translateY(-50%); animation: orbitY3 7s ease-in-out infinite 2s; }
@keyframes orbitY1 { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(-12px);} }
@keyframes orbitY2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
@keyframes orbitY3 { 0%,100%{transform:translateY(-50%);} 50%{transform:translateY(calc(-50% - 10px));} }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 1s 1s ease both;
}
.scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%{height:0;opacity:1} 100%{height:36px;opacity:0} }

/* ============================================================ TICKER */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: white;
  padding: 0 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-sep { color: rgba(255,255,255,0.55) !important; padding: 0 4px !important; }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ============================================================ ABOUT PREVIEW */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.about-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.about-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.about-card h4 { margin-bottom: 6px; font-size: 0.95rem; }
.about-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================ PRODUCTS PREVIEW */
.product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-mid); }
.product-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.paper-bg    { background: linear-gradient(135deg, #e8f4fd 0%, #ddeeff 100%); }
.solar-bg    { background: linear-gradient(135deg, #fff8e1 0%, #ffe0a0 100%); }
.consumer-bg { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%); }
.agro-bg     { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }
.product-card-number {
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.2);
  letter-spacing: 0.1em;
}
.product-card-icon { font-size: 3rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1)); }
.product-card-body { padding: 22px; flex: 1; }
.product-card-body h4 { font-size: 1rem; margin-bottom: 7px; }
.product-card-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.product-card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ptag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.product-card-arrow {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.product-card:hover .product-card-arrow { opacity: 1; transform: scale(1); }

/* ============================================================ WHY GVK */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: white;
  transition: var(--transition);
}
.why-item:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-mid);
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-item:hover .why-num { color: var(--orange); }
.why-text h4 { margin-bottom: 5px; font-size: 1rem; }
.why-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-stat-card {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}
.why-stat-card h2 { color: white; font-size: 3.2rem; line-height: 1; }
.why-stat-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 6px; }
.why-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-mini {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.why-mini strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.why-mini small { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================ GLOBAL PRESENCE */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.region-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.region-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.region-icon { font-size: 2rem; margin-bottom: 10px; }
.region-card h4 { margin-bottom: 4px; font-size: 0.95rem; }
.region-card p { font-size: 0.8rem; color: var(--text-muted); }

.global-map-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--text-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.map-stat:last-child { border-right: none; }
.map-stat strong {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.map-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ============================================================ TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card > p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-mid), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: white;
  flex-shrink: 0;
}
.testi-author strong { font-size: 0.88rem; display: block; margin-bottom: 2px; }
.testi-author small { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================ CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1a1208 0%, #2d1f0a 60%, #1a1208 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242,140,24,0.12);
  pointer-events: none;
}
.cta-bg-ring.r1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.cta-bg-ring.r2 { width: 400px; height: 400px; bottom: -150px; left: -80px; }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: white; margin-bottom: 14px; }
.cta-inner > p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ PAGE HERO */
.page-hero {
  background: var(--off-white);
  padding: calc(var(--nav-h) + 70px) 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { justify-content: center; }
.page-hero .section-label::before { display: none; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 16px; }
.page-hero > .container > p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 1rem; }

/* ============================================================ ABOUT PAGE */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-visual-inner {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.mission-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.mission-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.msm-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.msm-card strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.msm-card small { font-size: 0.75rem; color: var(--text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange-mid);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.value-card:hover .value-num { color: var(--orange); }
.value-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.62; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-mid), var(--orange));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: white;
}
.team-card h4 { margin-bottom: 4px; font-size: 0.95rem; }
.team-card p { font-size: 0.78rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.why-advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-adv-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-adv-item:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-sm); }
.why-adv-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-mid);
  line-height: 1;
  flex-shrink: 0;
}
.why-adv-text h4 { margin-bottom: 5px; font-size: 0.95rem; }
.why-adv-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================ PRODUCTS PAGE */
.products-subnav {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 200;
}
.products-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.products-subnav-inner::-webkit-scrollbar { display: none; }
.pnav-link {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 17px 22px;
  border-bottom: 2.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.pnav-link:hover, .pnav-link.active { color: var(--orange); border-bottom-color: var(--orange); }

.product-category { padding: 80px 0; border-bottom: 1px solid var(--border); }
.product-category:last-child { border-bottom: none; }
.category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.category-num {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 0.9;
  flex-shrink: 0;
  margin-top: -8px;
}
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sub-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sub-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height var(--transition);
  border-radius: 0 3px 3px 0;
}
.sub-card:hover::after { height: 100%; }
.sub-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); transform: translateX(3px); }
.sub-card-icon {
  width: 46px; height: 46px;
  background: var(--orange-light);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.25rem;
}
.sub-card h4 { margin-bottom: 7px; font-size: 0.97rem; }
.sub-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 13px; }
.sub-card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.sub-tag {
  font-size: 0.7rem;
  padding: 3px 9px;
  background: var(--orange-light);
  color: var(--orange-dark);
  border-radius: 50px;
  font-weight: 600;
}

/* Product detail enhancements */
.sub-card-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.sub-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.sub-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
}
.sub-card-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sub-card-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sub-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
}
.sub-spec strong {
  color: var(--text-dark);
  font-weight: 700;
}
.category-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.category-stat {
  text-align: center;
  padding: 16px;
}
.category-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.category-stat small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
@media (max-width: 768px) {
  .category-intro { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .category-intro { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
  .category-stat strong { font-size: 1.4rem; }
}

/* ============================================================ CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  position: sticky;
  top: calc(64px + 24px);
}
.contact-info-card h3 { color: white; margin-bottom: 6px; font-size: 1.45rem; }
.contact-info-card > p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(242,140,24,0.14);
  border: 1px solid rgba(242,140,24,0.28);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: white; font-size: 0.82rem; margin-bottom: 2px; font-family: 'Syne', sans-serif; }
.contact-detail span { font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.contact-sep { border: none; border-top: 1px solid rgba(255,255,255,0.09); margin: 24px 0; }
.contact-small-label { color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; display: block; }
.contact-social { display: flex; gap: 8px; }
.contact-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-weight: 700; font-size: 0.82rem;
  transition: var(--transition);
}
.contact-social a:hover { border-color: var(--orange); color: var(--orange); }
.contact-quicklinks { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.contact-quicklinks a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.contact-quicklinks a:hover { color: var(--orange); }

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  font-family: 'Syne', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,140,24,0.09);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23928d87' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success-icon { font-size: 3.5rem; margin-bottom: 14px; }
.form-success h4 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

.contact-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-benefit {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.contact-benefit:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-benefit-icon { font-size: 2.2rem; margin-bottom: 12px; }
.contact-benefit h4 { margin-bottom: 7px; font-size: 0.95rem; }
.contact-benefit p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================ FOOTER */
.footer {
  background: var(--text-dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo strong {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  display: block;
  line-height: 1.1;
}
.footer-logo small { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-brand > p { font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
.footer-social { display: flex; gap: 8px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-weight: 700; font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }
.footer-contact-list li { font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ============================================================ REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1100px) {
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-wrap { gap: 40px; }
  .globe-wrap { width: 340px; height: 340px; }
  .globe-ring.r1 { width: 300px; height: 300px; }
  .globe-ring.r2 { width: 230px; height: 230px; }
  .globe-ring.r3 { width: 160px; height: 160px; }
}

@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .stat-item { padding: 0 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-wrap { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Nav mobile */
  .btn-nav { display: none; }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1002;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: white;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    display: flex;
    animation: slideInMobile 0.3s ease;
  }
  @keyframes slideInMobile {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* Mobile nav header with close */
  .mobile-nav-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    list-style: none;
  }
  .mobile-nav-header .mobile-nav-title {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-nav-header .mobile-nav-title img {
    height: 32px;
    width: auto;
  }
  .mobile-nav-header .mobile-nav-title strong {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
  }
  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--off-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .mobile-nav-close:hover {
    background: var(--orange-light);
    border-color: var(--orange-mid);
  }
  .mobile-nav-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-body);
    stroke-width: 2;
    fill: none;
  }

  .nav-links > li > a {
    font-size: 1.1rem;
    padding: 16px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    justify-content: space-between;
  }
  .nav-links > li:last-child > a { border-bottom: none; }
  .has-dropdown > a svg { transition: transform 0.25s; }
  .has-dropdown.open > a svg { transform: rotate(180deg); }

  /* Mobile dropdown */
  .has-dropdown::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: 0;
    padding: 4px 0 8px 16px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 12px 16px; font-size: 0.92rem; }

  /* Mobile nav CTA */
  .mobile-nav-cta {
    display: block !important;
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid var(--border);
    list-style: none;
  }
  .mobile-nav-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--orange);
    color: white;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 50px;
    transition: var(--transition);
  }
  .mobile-nav-cta a:hover {
    background: var(--orange-dark);
  }

  /* Hide mobile-only elements on desktop */
  /* (they exist in HTML but only show in mobile nav) */

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .hero-title { font-size: 2.6rem; }
  .hero-cta { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; justify-content: center; }

  /* Grids */
  .product-cards { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .subcategory-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cards { grid-template-columns: 1fr; }
  .why-advantage-grid { grid-template-columns: 1fr; }
  .contact-benefits { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .global-map-bar { grid-template-columns: repeat(2, 1fr); }
  .map-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .map-stat:nth-child(2) { border-right: none; }
  .map-stat:last-child { border-bottom: none; }
  .category-header { flex-direction: column; }
  .category-num { font-size: 3rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .mission-stats-mini { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat-div { display: none; }
  .stat-item { padding: 10px 20px 10px 0; }
}

/* Hide mobile-only elements on desktop */
@media (min-width: 769px) {
  .mobile-nav-header,
  .mobile-nav-cta { display: none !important; }
}

/* Lock body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .section-pad { padding: 56px 0; }
  .globe-wrap { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .why-mini-stats { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
}


