/* ============================================================
   ANISKO HEALTHCARE PVT LTD — ULTRA PREMIUM CSS v2.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Root Tokens ─────────────────────────────────────────── */
:root {
  --blue:          #0B5CAD;
  --blue-dark:     #083e7a;
  --blue-mid:      #1669c1;
  --blue-light:    #2a7fde;
  --green:         #22A55A;
  --green-dark:    #178044;
  --green-glow:    #2ecc71;
  --green-tint:    #EEF9F1;
  --white:         #FFFFFF;
  --navy:          #0F2D52;
  --navy-deep:     #071828;
  --bg-soft:       #F7FAFC;
  --bg-grey:       #EEF2F7;
  --text-dark:     #0d1b2a;
  --text-mid:      #3d5168;
  --text-light:    #7a92a9;
  --border:        #d4e2f0;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg,rgba(7,24,40,0.88) 0%,rgba(11,92,173,0.75) 60%,rgba(15,45,82,0.92) 100%);
  --grad-primary: linear-gradient(135deg,#0B5CAD 0%,#0F2D52 100%);
  --grad-blue:    linear-gradient(135deg,#1669c1 0%,#0B5CAD 100%);
  --grad-green:   linear-gradient(135deg,#22A55A 0%,#178044 100%);
  --grad-card:    linear-gradient(145deg,#ffffff 0%,#f3f8fd 100%);
  --grad-glass:   linear-gradient(135deg,rgba(255,255,255,0.12) 0%,rgba(255,255,255,0.05) 100%);

  /* Shadows */
  --sh-card:  0 8px 32px rgba(11,92,173,0.10);
  --sh-hover: 0 24px 64px rgba(11,92,173,0.22);
  --sh-glow:  0 0 40px rgba(34,165,90,0.35);
  --sh-btn:   0 8px 28px rgba(11,92,173,0.35);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --ease: cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --t: all 0.35s var(--ease);

  --font-h: 'Poppins', sans-serif;
  --font-b: 'Inter', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue),var(--green)); border-radius: 3px; }

/* ============================================================
   LOADING SCREEN — v2
   ============================================================ */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
#loading-screen::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(11,92,173,0.4) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 100%, rgba(34,165,90,0.25) 0%, transparent 70%);
}
#loading-screen.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { position: relative; z-index: 1; text-align: center; }

.loader-icon-ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  border-top-color: var(--green);
  border-right-color: var(--blue);
  animation: ringSpinA 1.4s linear infinite;
  margin: 0 auto 8px;
  position: relative;
}
.loader-icon-ring::after {
  content: '';
  position: absolute; inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.05);
  border-bottom-color: rgba(34,165,90,0.5);
  animation: ringSpinB 1.8s linear infinite reverse;
}
.loader-icon-ring i {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 1.8rem; color: white;
}
@keyframes ringSpinA { to { transform: rotate(360deg); } }
@keyframes ringSpinB { to { transform: rotate(360deg); } }

.loader-brand {
  font-family: var(--font-h);
  font-size: 1.5rem; font-weight: 800; color: white;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 4px; margin-top: 20px;
}
.loader-brand span { color: var(--green); }
.loader-tag {
  font-family: var(--font-b);
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 36px;
}
.loader-track {
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--blue));
  background-size: 200% 100%;
  border-radius: 2px;
  animation: loadFill 2.2s ease forwards, shimmerLoad 1.5s linear 0.3s infinite;
}
.loader-pct {
  font-family: var(--font-h);
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5);
  margin-top: 12px; letter-spacing: 1px;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }
@keyframes shimmerLoad {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 0;
  transition: var(--t);
}
#navbar.scrolled {
  background: rgba(7,24,40,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 40px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  position: relative; width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: white;
  box-shadow: 0 4px 16px rgba(34,165,90,0.4);
}
.nav-logo-mark::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
}
.nav-logo-name {
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 800; color: white;
  letter-spacing: 0.5px; line-height: 1.2;
}
.nav-logo-sub {
  font-family: var(--font-b);
  font-size: 0.6rem; color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-b); font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px; border-radius: 8px;
  transition: var(--t); position: relative; letter-spacing: 0.2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--green); border-radius: 2px;
  transition: var(--t);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-links a:hover::after { left: 14px; right: 14px; }

.nav-cta {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 700;
  color: white !important;
  background: linear-gradient(135deg, var(--green) 0%, #15934e 100%) !important;
  padding: 10px 24px !important; border-radius: 50px !important;
  box-shadow: 0 4px 20px rgba(34,165,90,0.4) !important;
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  transition: var(--t) !important; position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 10px 32px rgba(34,165,90,0.5) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.nav-hamburger span {
  width: 26px; height: 2px; background: white;
  border-radius: 2px; transition: var(--t); display: block;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile */
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,24,40,0.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85); font-family: var(--font-b);
  font-size: 1.1rem; font-weight: 500; padding: 14px 40px;
  border-radius: var(--r-md); transition: var(--t); letter-spacing: 0.3px;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-mobile .nav-cta {
  margin-top: 12px; background: linear-gradient(135deg,var(--green),#15934e) !important;
}
.nav-mobile-close {
  position: absolute; top: 20px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--t);
}
.nav-mobile-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   HERO SECTION — ULTRA PREMIUM v2
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Canvas layer for advanced particles */
#hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../hero_pharma_bg_1785325625312.jpg');
  background-size: cover; background-position: center 30%;
  transform-origin: center; will-change: transform;
  animation: heroParallaxIn 1.8s var(--ease-out) both;
}
@keyframes heroParallaxIn {
  from { transform: scale(1.08); filter: brightness(0.6); }
  to   { transform: scale(1);    filter: brightness(1); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(7,24,40,0.90) 0%,
    rgba(11,60,120,0.78) 40%,
    rgba(15,45,82,0.88) 70%,
    rgba(7,24,40,0.95) 100%
  );
}

/* Moving gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 2; filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(11,92,173,0.35) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,165,90,0.25) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  animation: orbFloat2 10s ease-in-out infinite 2s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,120,220,0.2) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat1 8s ease-in-out infinite 4s;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-40px) scale(1.05); }
  66%      { transform: translate(-20px,20px) scale(0.96); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-30px,-25px); }
}

/* Grid mesh overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

/* Main layout */
.hero-content {
  position: relative; z-index: 10;
  max-width: 1320px; margin: 0 auto; padding: 130px 28px 100px;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 64px; align-items: center; width: 100%;
}

/* Left ─────────────────────────────────────────────────────── */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,165,90,0.5);
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(34,165,90,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(34,165,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,165,90,0); }
}
.hero-eyebrow-text {
  font-family: var(--font-b); font-size: 0.78rem; font-weight: 700;
  color: var(--green); letter-spacing: 2.5px; text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; color: white; line-height: 1.1;
  margin-bottom: 10px; letter-spacing: -1px;
}
.hero-title-gradient {
  background: linear-gradient(135deg, #7ee8a2 0%, #3dd68c 40%, #22A55A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter line */
.hero-typewriter-wrap {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  min-height: 2.2rem;
  display: flex; align-items: center; gap: 0;
}
.hero-typewriter-prefix { color: rgba(255,255,255,0.5); margin-right: 8px; font-weight: 300; }
.hero-typewriter { color: #93c5fd; font-weight: 500; }
.hero-cursor {
  display: inline-block; width: 2px; height: 1.2em;
  background: var(--green); margin-left: 3px;
  animation: cursorBlink 0.9s step-end infinite;
  vertical-align: middle;
}
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc {
  font-family: var(--font-b); font-size: 0.98rem; font-weight: 400;
  color: rgba(255,255,255,0.72); line-height: 1.85;
  margin-bottom: 36px; max-width: 540px;
  border-left: 2px solid rgba(34,165,90,0.5);
  padding-left: 18px;
}

/* Buttons */
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }

.btn-hero-primary {
  font-family: var(--font-h); font-size: 0.92rem; font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #22A55A 0%, #178044 100%);
  padding: 15px 34px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(34,165,90,0.45);
  transition: var(--t);
  display: inline-flex; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.55s ease;
}
.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(34,165,90,0.55);
}
.btn-hero-primary i { font-size: 0.9rem; }

.btn-hero-outline {
  font-family: var(--font-h); font-size: 0.92rem; font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 15px 34px; border-radius: 50px;
  backdrop-filter: blur(12px);
  transition: var(--t);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}
.btn-hero-outline i { font-size: 0.9rem; }

/* Stats row */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.hero-stat {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 20px 14px; text-align: center;
  transition: var(--t); cursor: default;
  position: relative; overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.hero-stat:hover::before { transform: scaleX(1); }
.hero-stat:hover { background: rgba(255,255,255,0.10); transform: translateY(-5px); border-color: rgba(255,255,255,0.18); }

.hero-stat-num {
  font-family: var(--font-h); font-size: 2.1rem; font-weight: 800;
  color: white; line-height: 1; margin-bottom: 5px;
}
.hero-stat-num .suf { color: var(--green); }
.hero-stat-lbl {
  font-family: var(--font-b); font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0.8px; text-transform: uppercase;
}

/* Trust badges row */
.hero-trust {
  display: flex; align-items: center; gap: 20px; margin-top: 18px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.hero-trust-item i { color: var(--green); font-size: 0.8rem; }
.hero-trust-divider {
  width: 1px; height: 16px; background: rgba(255,255,255,0.15);
}

/* Right — Image showcase ─────────────────────────────────── */
.hero-right {
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}

/* Floating label pill */
.hero-float-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,165,90,0.15);
  border: 1px solid rgba(34,165,90,0.35);
  backdrop-filter: blur(12px);
  padding: 8px 16px; border-radius: 50px;
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 700;
  color: #7ee8a2; letter-spacing: 1px; text-transform: uppercase;
  width: fit-content; margin-bottom: 4px;
}
.hero-float-label i { font-size: 0.7rem; }

.hero-main-card {
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative; overflow: hidden;
}
.hero-main-card::before {
  content: '';
  position: absolute; top: -1px; left: -1px; right: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.hero-main-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: var(--r-xl);
  background: radial-gradient(ellipse at 80% 20%, rgba(11,92,173,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pharma-image {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--r-lg); margin-bottom: 22px;
  filter: saturate(1.1) brightness(1.05);
  transition: transform 0.6s ease;
}
.hero-main-card:hover .hero-pharma-image { transform: scale(1.03); }

.hero-card-title {
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  color: white; margin-bottom: 8px;
}
.hero-card-desc {
  font-family: var(--font-b); font-size: 0.82rem; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin-bottom: 20px;
}

/* Pill tags */
.hero-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  font-family: var(--font-b); font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 13px; border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--t);
}
.hero-pill:hover { background: rgba(34,165,90,0.2); border-color: rgba(34,165,90,0.4); color: #7ee8a2; }

/* Small stat cards row */
.hero-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.hero-mini-stat {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md); padding: 18px 16px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--t);
}
.hero-mini-stat:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }
.hero-mini-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.hero-mini-stat:nth-child(1) .hero-mini-stat-icon { background: rgba(34,165,90,0.2); color: #7ee8a2; }
.hero-mini-stat:nth-child(2) .hero-mini-stat-icon { background: rgba(11,92,173,0.2); color: #93c5fd; }
.hero-mini-stat-val {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; color: white; line-height: 1;
}
.hero-mini-stat-val .s { color: var(--green); }
.hero-mini-stat-lbl {
  font-family: var(--font-b); font-size: 0.7rem; color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Floating notification badge */
.hero-notif {
  position: absolute; top: -16px; right: -12px; z-index: 20;
  background: white; border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 10px;
  animation: notifFloat 4s ease-in-out infinite;
}
@keyframes notifFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-notif-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,165,90,0.2);
  flex-shrink: 0;
}
.hero-notif-text { line-height: 1.2; }
.hero-notif-text strong {
  font-family: var(--font-h); font-size: 0.78rem; font-weight: 700;
  color: var(--navy); display: block;
}
.hero-notif-text span {
  font-family: var(--font-b); font-size: 0.68rem; color: var(--text-light);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-family: var(--font-b); font-size: 0.68rem; color: rgba(255,255,255,0.45);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
}
.scroll-mouse-dot {
  width: 3px; height: 7px; background: white; border-radius: 3px;
  animation: mouseDrop 2s ease-in-out infinite;
}
@keyframes mouseDrop {
  0%,100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(12px); opacity: 0.2; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 100px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); background: var(--green-tint);
  padding: 7px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-tag i { font-size: 0.65rem; }

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.22; margin-bottom: 14px; letter-spacing: -0.4px;
}
.section-title .hi { color: var(--blue); }

.section-sub {
  font-family: var(--font-b); font-size: 0.98rem;
  color: var(--text-mid); line-height: 1.85; max-width: 620px;
}
.tc { text-align: center; }
.tc .section-sub { margin: 0 auto; }

.divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px; margin: 14px 0 22px;
}
.tc .divider { margin: 14px auto 22px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--bg-soft); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-hover);
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img-main { transform: scale(1.01); }

.about-img-badge {
  position: absolute; bottom: -28px; right: -24px;
  background: var(--grad-primary); border-radius: var(--r-lg);
  padding: 22px 28px; color: white; text-align: center;
  box-shadow: var(--sh-hover);
}
.about-badge-num {
  font-family: var(--font-h); font-size: 2.6rem; font-weight: 800;
  color: white; line-height: 1;
}
.about-badge-num span { color: var(--green); }
.about-badge-lbl {
  font-family: var(--font-b); font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 4px;
}

.about-img-float {
  position: absolute; top: 28px; right: -18px;
  background: white; border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--sh-card);
  display: flex; align-items: center; gap: 10px;
  animation: notifFloat 5s ease-in-out infinite;
}
.about-img-float i { font-size: 1.4rem; color: var(--green); }
.about-img-float strong { font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; color: var(--navy); display: block; }
.about-img-float span { font-family: var(--font-b); font-size: 0.7rem; color: var(--text-light); }

.about-expertise {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 26px 0;
}
.about-exp-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-b); font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid); padding: 10px 14px;
  background: white; border-radius: var(--r-sm);
  border-left: 3px solid var(--green); transition: var(--t);
}
.about-exp-item:hover { background: var(--green-tint); color: var(--navy); transform: translateX(4px); }
.about-exp-item i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }

.about-quote {
  margin-top: 28px;
  background: var(--grad-primary); border-radius: var(--r-md);
  padding: 24px 28px; position: relative; overflow: hidden;
}
.about-quote::before {
  content: '"';
  position: absolute; top: -12px; left: 14px;
  font-size: 9rem; color: rgba(255,255,255,0.06);
  font-family: Georgia, serif; line-height: 1;
}
.about-quote p {
  font-family: var(--font-b); font-size: 0.95rem; font-weight: 500; font-style: italic;
  color: rgba(255,255,255,0.90); line-height: 1.8; position: relative; z-index: 1;
}

/* ============================================================
   MISSION / VISION / VALUES
   ============================================================ */
#mission-vision { background: var(--white); }

.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.mvv-card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 38px 30px; text-align: center;
  position: relative; overflow: hidden; transition: var(--t);
}
.mvv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.mvv-card.mission::before { background: var(--grad-green); }
.mvv-card.vision::before  { background: var(--grad-primary); }
.mvv-card.vals::before    { background: linear-gradient(90deg,#f59e0b,#ef4444); }
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--sh-hover); border-color: transparent; }

.mvv-icon {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 22px;
}
.mvv-card.mission .mvv-icon { background: var(--green-tint); color: var(--green); }
.mvv-card.vision  .mvv-icon { background: rgba(11,92,173,0.1); color: var(--blue); }
.mvv-card.vals    .mvv-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }

.mvv-title { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.mvv-text  { font-family: var(--font-b); font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.value-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 26px 18px; text-align: center; transition: var(--t); cursor: default;
}
.value-card:hover { background: var(--grad-primary); border-color: transparent; transform: translateY(-6px); box-shadow: var(--sh-hover); }
.value-card:hover .value-icon { background: rgba(255,255,255,0.15); color: white; }
.value-card:hover .value-name, .value-card:hover .value-desc { color: white; }
.value-card:hover .value-desc { color: rgba(255,255,255,0.75); }
.value-icon { width: 52px; height: 52px; background: var(--green-tint); color: var(--green); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin: 0 auto 14px; transition: var(--t); }
.value-name { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; transition: var(--t); }
.value-desc { font-family: var(--font-b); font-size: 0.75rem; color: var(--text-light); transition: var(--t); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-choose { background: var(--bg-soft); }

.why-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 56px; }
.why-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 18px; text-align: center;
  transition: var(--t); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-green); transform: scaleX(0); transition: var(--t);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { transform: translateY(-7px); box-shadow: var(--sh-hover); border-color: transparent; }
.why-card:hover .why-icon { background: var(--blue); color: white; }
.why-icon { width: 62px; height: 62px; background: rgba(11,92,173,0.07); color: var(--blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; margin: 0 auto 16px; transition: var(--t); }
.why-title { font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* ============================================================
   PRODUCTS
   ============================================================ */
#products { background: var(--white); }

.product-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 38px 0 44px; justify-content: center; }
.product-tab {
  font-family: var(--font-b); font-size: 0.83rem; font-weight: 600;
  color: var(--text-mid); background: var(--bg-grey);
  border: 1.5px solid var(--border); padding: 9px 22px; border-radius: 50px; transition: var(--t); cursor: pointer;
}
.product-tab:hover, .product-tab.active {
  background: var(--blue); color: white; border-color: var(--blue);
  box-shadow: 0 4px 18px rgba(11,92,173,0.3);
}

.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; transition: var(--t); position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--sh-hover); border-color: transparent; }
.product-card-image-wrap { overflow: hidden; position: relative; }
.product-card-img { width: 100%; height: 195px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: white; font-family: var(--font-b);
  font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px;
}
.product-card-body { padding: 20px 22px; }
.product-card-title { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.product-card-desc { font-family: var(--font-b); font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.product-card-link {
  font-family: var(--font-h); font-size: 0.8rem; font-weight: 600;
  color: var(--blue); display: inline-flex; align-items: center; gap: 6px; transition: var(--t);
}
.product-card-link i { transition: transform 0.3s ease; }
.product-card:hover .product-card-link i { transform: translateX(4px); }

/* ============================================================
   THERAPEUTIC SEGMENTS
   ============================================================ */
#therapeutics { background: var(--bg-soft); }

.ther-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 56px; }
.ther-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 34px 22px; text-align: center; transition: var(--t); cursor: default;
}
.ther-card:hover {
  background: var(--grad-primary); border-color: transparent;
  transform: translateY(-8px); box-shadow: var(--sh-hover);
}
.ther-card:hover .ther-icon, .ther-card:hover .ther-title, .ther-card:hover .ther-sub { color: white; }
.ther-card:hover .ther-icon { background: rgba(255,255,255,0.15) !important; color: white !important; }
.ther-icon {
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 18px; transition: var(--t);
}
.ther-title { font-family: var(--font-h); font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; transition: var(--t); }
.ther-sub   { font-family: var(--font-b); font-size: 0.78rem; color: var(--text-light); transition: var(--t); }

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
#global-presence { background: var(--navy-deep); overflow: hidden; position: relative; }
#global-presence::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(11,92,173,0.35) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 100%, rgba(34,165,90,0.2) 0%, transparent 70%);
  pointer-events: none;
}
#global-presence .section-tag  { background: rgba(34,165,90,0.15); color: #7ee8a2; border: 1px solid rgba(34,165,90,0.3); }
#global-presence .section-title { color: white; }
#global-presence .section-sub  { color: rgba(255,255,255,0.65); }
#global-presence .divider { background: linear-gradient(90deg,var(--green),#178044); }

.world-map-container { position: relative; width: 100%; max-width: 960px; margin: 0 auto 48px; }
#world-map-svg { width: 100%; height: auto; filter: drop-shadow(0 0 40px rgba(11,92,173,0.4)); }
#world-map-svg .land { fill: rgba(255,255,255,0.10); stroke: rgba(255,255,255,0.18); stroke-width: 0.5; }

.export-countries { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 36px; }
.export-country {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md); padding: 16px 10px; text-align: center; transition: var(--t); cursor: default;
}
.export-country:hover { background: rgba(34,165,90,0.14); border-color: rgba(34,165,90,0.38); transform: translateY(-4px); }
.export-country .flag { font-size: 1.6rem; margin-bottom: 7px; display: block; }
.export-country .cname { font-family: var(--font-b); font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); }

/* ============================================================
   QUALITY ASSURANCE
   ============================================================ */
#quality { background: var(--bg-soft); }

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 56px; }
.quality-img { width: 100%; border-radius: var(--r-xl); object-fit: cover; height: 460px; box-shadow: var(--sh-hover); }

.q-timeline { position: relative; }
.q-timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--blue), var(--green));
}
.q-item { display: flex; gap: 22px; margin-bottom: 24px; position: relative; }
.q-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: white; flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(11,92,173,0.3); transition: var(--t);
}
.q-item:hover .q-dot { background: var(--grad-green); transform: scale(1.1); }
.q-content {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px 18px; flex: 1; transition: var(--t);
}
.q-item:hover .q-content { border-color: var(--green); box-shadow: var(--sh-card); }
.q-content h4 { font-family: var(--font-h); font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.q-content p  { font-family: var(--font-b); font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* 8-Step QA Process Grid Rules */
.qa-grid-8 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px;
}
.qa-card-8 {
  background: white; border: 1.5px solid var(--border); border-top: 4px solid var(--blue);
  border-radius: var(--r-xl); padding: 26px 20px; transition: var(--t);
  box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.qa-card-8:hover {
  border-top-color: var(--green); border-color: rgba(34,165,90,0.3);
  transform: translateY(-8px); box-shadow: var(--sh-hover);
}
.qa-card-8-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.qa-card-8-num {
  font-family: var(--font-h); font-size: 0.76rem; font-weight: 800;
  color: white; background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  padding: 4px 12px; border-radius: 50px; box-shadow: 0 4px 12px rgba(11,92,173,0.2);
}
.qa-card-8-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(11,92,173,0.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; transition: var(--t);
}
.qa-card-8:hover .qa-card-8-icon {
  background: var(--green-tint); color: var(--green); transform: scale(1.08);
}
.qa-card-8-title {
  font-family: var(--font-h); font-size: 1.02rem; font-weight: 800; color: var(--navy);
  margin-bottom: 8px; line-height: 1.35;
}
.qa-card-8-desc {
  font-family: var(--font-b); font-size: 0.84rem; color: var(--text-mid); line-height: 1.65;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
/* ============================================================
   CERTIFICATIONS — ULTRA HIGH VISIBILITY & EXECUTIVE CARDS
   ============================================================ */
#certifications {
  background: var(--bg-soft);
  padding: 90px 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.cert-card {
  background: #ffffff;
  border: 1.5px solid rgba(44, 116, 179, 0.18);
  border-radius: var(--r-xl);
  padding: 34px 22px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0.85;
}
.cert-card:hover {
  border-color: var(--green);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(23, 154, 70, 0.18);
}
.cert-icon {
  width: 68px;
  height: 68px;
  background: rgba(44, 116, 179, 0.08);
  color: var(--blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(44, 116, 179, 0.15);
}
.cert-card:hover .cert-icon {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  transform: scale(1.08);
}
.cert-name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.cert-full {
  font-family: var(--font-b);
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.cert-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 0.76rem;
  font-weight: 700;
  color: #179A46;
  background: rgba(23, 154, 70, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(23, 154, 70, 0.25);
}

/* Cert Detail Grid */
.cert-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.cert-detail-card {
  background: #ffffff; border: 1.5px solid rgba(44, 116, 179, 0.15); border-radius: var(--r-xl);
  padding: 34px 30px; display: flex; gap: 22px; align-items: flex-start;
  transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.04); position: relative; overflow: hidden;
}
.cert-detail-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(44,116,179,0.15); border-color: var(--blue); }
.cert-detail-icon {
  width: 60px; height: 60px; min-width: 60px; border-radius: 16px;
  background: rgba(44, 116, 179, 0.08); color: var(--blue); display: flex;
  align-items: center; justify-content: center; font-size: 1.55rem; transition: all 0.3s ease;
}
.cert-detail-card:hover .cert-detail-icon { background: var(--blue); color: white; }
.cert-detail-name { font-family: var(--font-h); font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.cert-detail-full { font-family: var(--font-b); font-size: 0.8rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.cert-detail-text { font-family: var(--font-b); font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   GLOBAL REACH — HIGH CONTRAST & VISIBILITY DESIGN SYSTEM
   ============================================================ */
.global-reach-section {
  position: relative; padding: 100px 0;
  background: #04101e;
  overflow: hidden;
}
.global-reach-section::before {
  content: ''; position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 90% 60% at 50% 30%, rgba(23,154,70,0.2) 0%, transparent 75%),
    url('world_map_bg_1785586859506.jpg') center center / cover no-repeat;
  opacity: 0.45; pointer-events: none;
}
.global-reach-section .container {
  position: relative; z-index: 2;
}

/* Regional Grid */
.global-reach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px;
}

.global-region-card {
  background: rgba(7, 24, 44, 0.92);
  border: 1.5px solid rgba(126, 232, 162, 0.35);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 34px 26px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.global-region-card:hover {
  transform: translateY(-8px);
  border-color: #7ee8a2;
  box-shadow: 0 28px 60px rgba(23, 154, 70, 0.35);
}

.global-region-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.global-region-icon { font-size: 2.4rem; line-height: 1; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.global-region-title { font-family: var(--font-h); font-size: 1.25rem; font-weight: 800; color: #ffffff; }
.global-region-sub { font-family: var(--font-b); font-size: 0.82rem; color: #7ee8a2; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }

/* Country Flag Image & Chips Grid */
.country-chips-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 6px;
}
.country-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.country-chip:hover {
  background: rgba(23, 154, 70, 0.28);
  border-color: #7ee8a2;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.country-flag-img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.country-chip:hover .country-flag-img {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(126,232,162,0.8);
}
.country-chip-name {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}
.country-chip-tag {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  font-weight: 700;
}

/* Primary Focus Highlight Badge */
.country-chip.primary-focus {
  background: rgba(255, 218, 106, 0.15);
  border-color: rgba(255, 218, 106, 0.5);
}
.country-chip.primary-focus:hover {
  background: rgba(255, 218, 106, 0.3);
  border-color: #ffda6a;
}
.country-chip.primary-focus .country-chip-name { color: #ffda6a; }

/* Interactive World Map Radar Hub Layout */
.map-graphic-wrap {
  position: relative; width: 100%; max-width: 1180px; margin: 0 auto 56px;
  background: rgba(7, 24, 44, 0.92); border: 1.5px solid rgba(126, 232, 162, 0.35);
  backdrop-filter: blur(20px); border-radius: var(--r-xl); padding: 36px 32px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.2); overflow: hidden;
}

@media (max-width: 1024px) {
  .global-reach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .global-reach-grid { grid-template-columns: 1fr; }
  .country-chips-grid { grid-template-columns: 1fr; }
}

/* Land & Continent Styling */
.map-land {
  fill: url(#landGradient); stroke: rgba(34,165,90,0.3); stroke-width: 1.2;
  transition: fill 0.3s ease, stroke 0.3s ease; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.map-land:hover {
  fill: url(#landGradientHover); stroke: rgba(126,232,162,0.6);
}

/* Animations */
@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.95; }
  50% { transform: scale(2.4); opacity: 0.35; }
  100% { transform: scale(4.0); opacity: 0; }
}
@keyframes dashRoute {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}

.map-route-line {
  stroke: #7ee8a2; stroke-width: 2.2; stroke-dasharray: 6 6; fill: none;
  animation: dashRoute 3.5s linear infinite; opacity: 0.85; filter: drop-shadow(0 0 6px rgba(126,232,162,0.5));
}
.map-route-line.primary {
  stroke: #ffda6a; stroke-width: 2.8; animation-duration: 2.6s;
  filter: drop-shadow(0 0 8px rgba(255,218,106,0.7));
}

.map-pulse-circle {
  animation: mapPulse 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  transform-box: fill-box; transform-origin: center;
}

/* Marker Groups — Smooth, Rock-Solid Hover Effect */
.map-marker-group {
  cursor: pointer;
}
.map-marker-group circle,
.map-marker-group rect,
.map-marker-group text {
  transition: all 0.25s ease-out;
}
.map-marker-group:hover .map-tag-bg {
  stroke-width: 2px !important;
  stroke: #7ee8a2 !important;
  filter: drop-shadow(0 0 14px rgba(126,232,162,0.95)) !important;
}
.map-marker-group:hover .map-tag-bg.primary {
  stroke: #ffda6a !important;
  filter: drop-shadow(0 0 14px rgba(255,218,106,0.95)) !important;
}
.map-marker-group:hover .map-tag-bg.hq {
  stroke: #60a5fa !important;
  filter: drop-shadow(0 0 14px rgba(96,165,250,0.95)) !important;
}
.map-marker-group:hover circle:last-of-type {
  r: 9px;
  stroke-width: 2.5px;
}

/* Tooltip Tag Styling */
.map-tag-group text {
  font-family: var(--font-h); font-size: 11.5px; font-weight: 800; fill: #ffffff;
}
.map-tag-bg {
  fill: rgba(7,24,40,0.94); stroke: rgba(255,255,255,0.25); stroke-width: 1.2; rx: 7; ry: 7;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6));
}
.map-tag-bg.primary {
  stroke: #ffda6a; fill: rgba(36,28,8,0.96); stroke-width: 1.5;
}
.map-tag-bg.hq {
  stroke: #3b82f6; fill: rgba(7,22,44,0.96); stroke-width: 1.5;
}

.target-region-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; position: relative; z-index: 2;
}
.target-region-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); border-radius: var(--r-xl); padding: 26px 22px;
  transition: var(--t); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
}
.target-region-card:hover {
  transform: translateY(-8px); border-color: #7ee8a2; background: rgba(255,255,255,0.08); box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.target-region-badge {
  font-family: var(--font-b); font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: #7ee8a2; background: rgba(34,165,90,0.18); border: 1px solid rgba(34,165,90,0.35);
  padding: 4px 12px; border-radius: 50px; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px;
}
.target-region-badge.primary-focus {
  color: #ffda6a; background: rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.4);
}
.target-region-title {
  font-family: var(--font-h); font-size: 1.12rem; font-weight: 800; color: white; margin-bottom: 8px;
}
.target-region-countries {
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.95); margin-bottom: 10px; line-height: 1.5;
}
.target-region-desc {
  font-family: var(--font-b); font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.6;
}

@media (max-width: 1024px) {
  .target-region-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .target-region-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   EXPORT PROCESS — REVAMPED HIGH-VISIBILITY DESIGN
   ============================================================ */
#export-process {
  position: relative;
  padding: 95px 0;
  background: #04101e;
  overflow: hidden;
}
#export-process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(23, 154, 70, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.process-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.process-card-item {
  background: rgba(8, 26, 48, 0.92);
  border: 1.5px solid rgba(126, 232, 162, 0.28);
  border-radius: var(--r-xl);
  padding: 30px 24px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.process-card-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #7ee8a2);
  opacity: 0.8;
}
.process-card-item:hover {
  transform: translateY(-8px);
  border-color: #7ee8a2;
  box-shadow: 0 24px 50px rgba(23, 154, 70, 0.3);
  background: rgba(12, 34, 60, 0.96);
}

.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.process-card-num {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #179a46 0%, #22a55a 100%);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(23, 154, 70, 0.3);
}
.process-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(126, 232, 162, 0.12);
  color: #7ee8a2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(126, 232, 162, 0.25);
}
.process-card-item:hover .process-card-icon {
  background: #7ee8a2;
  color: #04101e;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(126, 232, 162, 0.5);
}

.process-card-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.process-card-desc {
  font-family: var(--font-b);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .process-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .process-grid-4 { grid-template-columns: 1fr; }
}

.process-steps {
  display: grid; grid-template-columns: repeat(8,1fr); gap: 0;
  margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 35px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 6px; }
.p-step-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.35rem; color: rgba(255,255,255,0.65);
  transition: var(--t); backdrop-filter: blur(8px);
  flex-direction: column;
}
.p-step-circle .step-num {
  font-family: var(--font-b); font-size: 0.62rem; font-weight: 700;
  color: var(--green); display: block; margin-top: 1px;
}
.process-step:hover .p-step-circle {
  background: var(--green); border-color: var(--green);
  color: white; transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(34,165,90,0.45);
}
.process-step:hover .step-num { color: white; }
.p-step-lbl {
  font-family: var(--font-h); font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   INDUSTRIES SERVED
   ============================================================ */
#industries { background: var(--bg-soft); }

.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 56px; }
.ind-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 34px 22px; text-align: center; transition: var(--t);
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); border-color: var(--green); }
.ind-card:hover .ind-icon { background: var(--green); color: white; }
.ind-icon {
  width: 66px; height: 66px; background: var(--green-tint); color: var(--green);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 18px; transition: var(--t);
}
.ind-title { font-family: var(--font-h); font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.ind-desc  { font-family: var(--font-b); font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--white); overflow: hidden; }

.testi-wrap { position: relative; margin-top: 56px; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.testi-slide { min-width: 100%; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 30px; position: relative; transition: var(--t);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); border-color: var(--blue); }
.testi-q { position: absolute; top: 18px; right: 22px; font-size: 4.5rem; color: var(--border); font-family: Georgia, serif; line-height: 1; }
.testi-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 0.82rem; margin-bottom: 14px; }
.testi-text {
  font-family: var(--font-b); font-size: 0.875rem; font-style: italic;
  color: var(--text-mid); line-height: 1.8; margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: white; flex-shrink: 0;
}
.testi-name { font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testi-role { font-family: var(--font-b); font-size: 0.74rem; color: var(--text-light); }

.testi-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-grey); border: 1.5px solid var(--border);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--t); cursor: pointer;
}
.testi-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: var(--t);
}
.testi-dot.active { background: var(--blue); width: 26px; border-radius: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--bg-soft); }

.faq-wrap { max-width: 780px; margin: 56px auto 0; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; transition: var(--t);
}
.faq-item:hover { border-color: var(--blue); }
.faq-item.open  { border-color: var(--blue); box-shadow: var(--sh-card); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 14px;
}
.faq-q-txt { font-family: var(--font-h); font-size: 0.93rem; font-weight: 600; color: var(--navy); }
.faq-ico {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-grey); display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--blue); flex-shrink: 0; transition: var(--t);
}
.faq-item.open .faq-ico { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-txt {
  padding: 0 24px 20px; font-family: var(--font-b); font-size: 0.88rem;
  color: var(--text-mid); line-height: 1.8;
  border-top: 1px solid var(--border); padding-top: 14px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 56px; align-items: start; margin-top: 56px; }

.contact-info {
  background: var(--grad-primary); border-radius: var(--r-xl); padding: 42px 34px; height: 100%;
  position: relative; overflow: hidden;
}
.contact-info::before {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.contact-company { font-family: var(--font-h); font-size: 1.25rem; font-weight: 800; color: white; margin-bottom: 6px; }
.contact-tag-line { font-family: var(--font-b); font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 34px; font-style: italic; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-row-ico { width: 42px; height: 42px; background: rgba(255,255,255,0.12); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: #7ee8a2; flex-shrink: 0; }
.contact-row-lbl { font-family: var(--font-b); font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 3px; }
.contact-row-val { font-family: var(--font-b); font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.88); line-height: 1.5; }
.contact-row-val a { color: rgba(255,255,255,0.88); transition: var(--t); }
.contact-row-val a:hover { color: #7ee8a2; }
.contact-hours {
  background: rgba(255,255,255,0.07); border-radius: var(--r-md);
  padding: 18px 20px; margin-top: 20px; display: flex; align-items: center; gap: 14px;
}
.contact-hours i { font-size: 1.1rem; color: var(--green); }
.contact-hours strong { font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; color: white; display: block; }
.contact-hours span { font-family: var(--font-b); font-size: 0.77rem; color: rgba(255,255,255,0.6); }

.contact-form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 42px 38px; box-shadow: var(--sh-card);
}
.form-card-title { font-family: var(--font-h); font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-card-sub { font-family: var(--font-b); font-size: 0.85rem; color: var(--text-light); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-lbl { font-family: var(--font-b); font-size: 0.8rem; font-weight: 600; color: var(--text-mid); display: block; margin-bottom: 7px; }
.form-inp, .form-sel, .form-txt {
  width: 100%; font-family: var(--font-b); font-size: 0.88rem; color: var(--text-dark);
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 15px; transition: var(--t); outline: none;
}
.form-inp:focus, .form-sel:focus, .form-txt:focus {
  border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(11,92,173,0.1);
}
.form-txt { resize: vertical; min-height: 98px; }
.form-sel { cursor: pointer; }
.form-submit {
  font-family: var(--font-h); font-size: 0.93rem; font-weight: 700; color: white;
  background: var(--grad-primary); padding: 14px 36px; border-radius: 50px;
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px; transition: var(--t); position: relative; overflow: hidden;
}
.form-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.55s ease;
}
.form-submit:hover::before { left: 100%; }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(11,92,173,0.45); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success-ico {
  width: 70px; height: 70px; background: var(--green-tint); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: var(--green); margin: 0 auto 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); }

.footer-top { padding: 76px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-mark {
  width: 42px; height: 42px; background: linear-gradient(135deg,var(--blue),var(--green));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: white;
}
.footer-brand-name { font-family: var(--font-h); font-size: 0.98rem; font-weight: 800; color: white; }
.footer-brand-sub  { font-family: var(--font-b); font-size: 0.6rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-brand-desc { font-family: var(--font-b); font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--t);
}
.footer-social a:hover { background: var(--green); color: white; transform: translateY(-3px); }

.footer-col-title {
  font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; color: white;
  margin-bottom: 18px; padding-bottom: 10px; position: relative;
}
.footer-col-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; background: var(--green); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-family: var(--font-b); font-size: 0.82rem; color: rgba(255,255,255,0.55);
  transition: var(--t); display: flex; align-items: center; gap: 8px;
}
.footer-links a i { font-size: 0.58rem; color: var(--green); }
.footer-links a:hover { color: var(--green); transform: translateX(4px); }

.footer-nl-txt { font-family: var(--font-b); font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.nl-form { display: flex; }
.nl-input {
  flex: 1; font-family: var(--font-b); font-size: 0.83rem; color: white;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-sm) 0 0 var(--r-sm); padding: 10px 15px; outline: none; transition: var(--t);
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: var(--green); background: rgba(255,255,255,0.10); }
.nl-btn {
  font-family: var(--font-h); font-size: 0.8rem; font-weight: 700; color: white;
  background: var(--grad-green); padding: 10px 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0; cursor: pointer; transition: var(--t); white-space: nowrap;
}
.nl-btn:hover { opacity: 0.9; }

.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-family: var(--font-b); font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-copy span { color: var(--green); font-weight: 600; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-family: var(--font-b); font-size: 0.77rem; color: rgba(255,255,255,0.4); transition: var(--t); }
.footer-legal a:hover { color: var(--green); }

/* Back to Top removed */

/* ============================================================
   AOS & ANIMATION UTILITIES
   ============================================================ */
[data-aos="fade-up"]     { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
[data-aos="fade-right"]  { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
[data-aos="fade-left"]   { opacity: 0; transform: translateX(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
[data-aos="zoom-in"]     { opacity: 0; transform: scale(0.88); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-aos].aos-animate   { opacity: 1 !important; transform: none !important; }
[data-aos-delay="100"]  { transition-delay: 0.10s !important; }
[data-aos-delay="150"]  { transition-delay: 0.15s !important; }
[data-aos-delay="200"]  { transition-delay: 0.20s !important; }
[data-aos-delay="250"]  { transition-delay: 0.25s !important; }
[data-aos-delay="300"]  { transition-delay: 0.30s !important; }
[data-aos-delay="350"]  { transition-delay: 0.35s !important; }
[data-aos-delay="400"]  { transition-delay: 0.40s !important; }
[data-aos-delay="450"]  { transition-delay: 0.45s !important; }
[data-aos-delay="500"]  { transition-delay: 0.50s !important; }
[data-aos-delay="600"]  { transition-delay: 0.60s !important; }
[data-aos-delay="700"]  { transition-delay: 0.70s !important; }
[data-aos-delay="800"]  { transition-delay: 0.80s !important; }

@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

/* ============================================================
   RESPONSIVE — TABLET ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 44px; }
  .hero-right { max-width: 520px; margin: 0 auto; }
  .hero-notif { top: -12px; right: 0; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-main { height: 360px; }
  .about-img-badge { bottom: -16px; right: -8px; }
  .about-expertise { grid-template-columns: 1fr 1fr; }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(4,1fr); }
  .why-grid { grid-template-columns: repeat(3,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .ther-grid { grid-template-columns: repeat(2,1fr); }
  .cert-grid { grid-template-columns: repeat(4,1fr); }
  .quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .quality-img { height: 320px; }
  .export-countries { grid-template-columns: repeat(4,1fr); }
  .process-steps { grid-template-columns: repeat(4,1fr); gap: 20px; }
  .process-steps::before { display: none; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .testi-slide { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* MOBILE ≤ 768px */
@media (max-width: 768px) {
  section { padding: 68px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hero-trust { gap: 12px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .ther-grid { grid-template-columns: repeat(2,1fr); }
  .cert-grid { grid-template-columns: repeat(3,1fr); }
  .export-countries { grid-template-columns: repeat(3,1fr); }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .testi-slide { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-float { display: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .hero-notif { display: none; }
}

/* SMALL ≤ 480px */
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2,1fr); }
  .export-countries { grid-template-columns: repeat(2,1fr); }
  .ind-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ther-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGE HERO BANNER
   ============================================================ */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--navy-deep);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
  transition: transform 0.6s ease;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,rgba(7,24,40,0.95) 0%,rgba(11,60,120,0.85) 50%,rgba(7,24,40,0.97) 100%);
}
.page-hero-orb-1 {
  position: absolute; z-index: 1;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle,rgba(11,92,173,0.3) 0%,transparent 70%);
  top: -150px; right: -80px; filter: blur(60px);
  animation: orbFloat1 10s ease-in-out infinite;
}
.page-hero-orb-2 {
  position: absolute; z-index: 1;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle,rgba(34,165,90,0.2) 0%,transparent 70%);
  bottom: -80px; left: 10%; filter: blur(50px);
  animation: orbFloat2 8s ease-in-out infinite 2s;
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%,black 20%,transparent 75%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
  text-align: center;
}

/* 2-Column Inner Page Hero Layout with Hero Card Image */
.page-hero-2col {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 48px; align-items: center; text-align: left;
}
.page-hero-right { position: relative; }
.page-hero-img-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.18); box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.page-hero-img {
  width: 100%; height: 340px; object-fit: cover; transition: transform 0.6s ease; display: block;
}
.page-hero-img-card:hover .page-hero-img { transform: scale(1.06); }
.page-hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(7,24,40,0.88); backdrop-filter: blur(12px);
  color: white; padding: 10px 18px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25); font-family: var(--font-b);
  font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.page-hero-img-badge i { color: var(--green); }

@media (max-width: 992px) {
  .page-hero-2col { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .page-hero-right { max-width: 500px; margin: 0 auto; width: 100%; }
}
/* Breadcrumb */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--t); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--green); font-weight: 600; }

/* Page title block */
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); background: rgba(34,165,90,0.12);
  border: 1px solid rgba(34,165,90,0.3);
  padding: 7px 18px; border-radius: 50px; margin-bottom: 18px;
}
.page-hero-tag i { font-size: 0.65rem; }

.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem,4.5vw,3.6rem);
  font-weight: 800; color: white;
  line-height: 1.15; letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.page-hero-title .hi {
  background: linear-gradient(135deg,#7ee8a2 0%,#22A55A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-desc {
  font-family: var(--font-b); font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,0.65); line-height: 1.8;
  max-width: 620px; margin: 0 auto 32px;
}
/* Decorative line */
.page-hero-line {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 8px;
}
.page-hero-line-bar {
  width: 60px; height: 3px;
  background: linear-gradient(90deg,var(--blue),var(--green));
  border-radius: 2px;
}
.page-hero-line-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,165,90,0.25);
}

/* Stats bar inside page hero */
.page-hero-stats {
  display: inline-flex; gap: 40px; flex-wrap: wrap; justify-content: center;
  margin-top: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  padding: 20px 40px; border-radius: var(--r-xl);
}
.ph-stat { text-align: center; }
.ph-stat-num {
  font-family: var(--font-h); font-size: 1.8rem; font-weight: 800; color: white; line-height: 1;
}
.ph-stat-num .s { color: var(--green); }
.ph-stat-lbl {
  font-family: var(--font-b); font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}

/* ============================================================
   CTA STRIP BANNER
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg,#0B5CAD 0%,#071828 50%,#0B5CAD 100%);
  background-size: 200% 100%;
  animation: ctaShimmer 6s linear infinite;
  padding: 60px 0;
  position: relative; overflow: hidden;
}
@keyframes ctaShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,rgba(34,165,90,0.15) 0%,transparent 70%);
}
.cta-strip-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  text-align: center;
}
.cta-strip-text { flex: 1; }
.cta-strip-title {
  font-family: var(--font-h); font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800; color: white; margin-bottom: 8px;
}
.cta-strip-sub {
  font-family: var(--font-b); font-size: 0.95rem; color: rgba(255,255,255,0.72);
}
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-btn-white {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 700;
  color: var(--navy); background: white;
  padding: 14px 32px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--t); position: relative; overflow: hidden;
}
.cta-btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
.cta-btn-green {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 700;
  color: white;
  background: var(--grad-green);
  padding: 14px 32px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--t); box-shadow: 0 6px 24px rgba(34,165,90,0.4);
}
.cta-btn-green:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34,165,90,0.55); }

/* ============================================================
   ACTIVE NAV LINK (per page)
   ============================================================ */
.nav-links a.nav-active { color: white !important; }
.nav-links a.nav-active::after { left: 14px !important; right: 14px !important; }

/* ============================================================
   INNER PAGE — SECTION FIRST (no top section padding needed)
   ============================================================ */
.inner-first { padding-top: 80px; }

/* ============================================================
   ABOUT PAGE — Extra
   ============================================================ */
.about-milestones {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px;
}
.milestone-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 20px; text-align: center; transition: var(--t);
}
.milestone-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); border-color: var(--blue); }
.milestone-num {
  font-family: var(--font-h); font-size: 2.4rem; font-weight: 800;
  color: var(--blue); line-height: 1; margin-bottom: 6px;
}
.milestone-num span { color: var(--green); }
.milestone-label { font-family: var(--font-b); font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.milestone-desc  { font-family: var(--font-b); font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   PRODUCTS PAGE — Category intro cards
   ============================================================ */
.cat-intro-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 56px;
}
.cat-intro-card {
  background: var(--grad-primary); border-radius: var(--r-xl);
  padding: 32px 26px; color: white; position: relative; overflow: hidden;
  transition: var(--t);
}
.cat-intro-card::before {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cat-intro-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); }
.cat-intro-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.cat-intro-title { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cat-intro-text  { font-family: var(--font-b); font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.cat-intro-count { font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; color: #7ee8a2; margin-top: 12px; display: block; }

/* ============================================================
   GLOBAL PRESENCE — Region cards
   ============================================================ */
.region-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px;
}
.region-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 28px 20px; text-align: center; transition: var(--t);
}
.region-card:hover { background: rgba(34,165,90,0.12); border-color: rgba(34,165,90,0.35); transform: translateY(-6px); }
.region-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.region-name { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 6px; }
.region-count { font-family: var(--font-b); font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   WHY CHOOSE PAGE — Benefit detail cards
   ============================================================ */
.benefit-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px;
}
.benefit-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 28px;
  display: flex; gap: 22px; transition: var(--t);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); border-color: var(--green); }
.benefit-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; flex-shrink: 0; transition: var(--t);
}
.benefit-card:hover .benefit-icon { background: var(--green); color: white; }
.benefit-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-text  { font-family: var(--font-b); font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   CERTIFICATIONS PAGE — Cert detail
   ============================================================ */
.cert-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px;
}
.cert-detail-card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 30px;
  display: flex; gap: 24px; transition: var(--t); align-items: flex-start;
}
.cert-detail-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); border-color: var(--blue); }
.cert-detail-icon {
  width: 70px; height: 70px; border-radius: var(--r-md);
  background: rgba(11,92,173,0.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0; transition: var(--t);
}
.cert-detail-card:hover .cert-detail-icon { background: var(--blue); color: white; }
.cert-detail-name { font-family: var(--font-h); font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.cert-detail-full { font-family: var(--font-b); font-size: 0.78rem; font-weight: 600; color: var(--blue); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.cert-detail-text { font-family: var(--font-b); font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   CONTACT PAGE — Map placeholder
   ============================================================ */
.contact-map-strip {
  background: var(--bg-soft); border-radius: var(--r-xl);
  padding: 32px; margin-top: 56px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.contact-map-ico { font-size: 2.5rem; }
.contact-map-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-map-addr { font-family: var(--font-b); font-size: 0.88rem; color: var(--text-mid); }

/* ============================================================
   TIGHT-FIT LOGO BADGE (No Excess Left/Right White Space)
   ============================================================ */
.nav-logo-img {
  height: 60px !important;
  width: auto !important;
  background: white !important;
  padding: 4px 4px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
  display: block !important;
  border: none !important;
  transition: transform 0.3s ease !important;
}
.nav-logo-img:hover {
  transform: translateY(-2px) !important;
}

.footer-logo-img {
  height: 68px !important;
  width: auto !important;
  background: white !important;
  padding: 5px 5px !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2) !important;
  display: block !important;
  border: none !important;
}

/* ============================================================
   AUTOMATIC DEVICE RESOLUTION RESPONSIVE ENGINE (4K to Mobile)
   ============================================================ */
/* 1. Ultra Wide Screens / 4K / 2K Monitors (> 1440px) */
@media (min-width: 1441px) {
  .container { max-width: 1320px; }
  .hero-title { font-size: 3.6rem; }
  .section-title { font-size: 2.6rem; }
}

/* 2. Standard Laptops & Desktops (1025px - 1440px) */
@media (max-width: 1440px) {
  .container { max-width: 1140px; }
}

/* 3. Tablets & iPad Pro Landscape (992px - 1024px) */
@media (max-width: 1024px) {
  .container { max-width: 960px; padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-btns { justify-content: center; }
  .page-hero-2col { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .page-hero-img-card { max-width: 600px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ther-grid { grid-template-columns: repeat(2, 1fr); }
  .qa-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-milestones { grid-template-columns: repeat(2,1fr); }
  .cat-intro-grid { grid-template-columns: 1fr 1fr; }
  .region-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .cert-detail-grid { grid-template-columns: 1fr; }
  .target-region-grid { grid-template-columns: repeat(2,1fr); }
}

/* 4. Tablets Portrait & Large Mobile Screens (768px - 991px) */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2.1rem; }
  .page-hero { padding: 130px 0 60px; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .map-graphic-header { flex-direction: column; align-items: flex-start; }
}

/* 5. Mobile Landscape & Standard Phones (576px - 767px) */
@media (max-width: 767px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 18px; }
  .hero-title { font-size: 2.0rem; line-height: 1.25; }
  .section-title { font-size: 1.75rem; }
  .section-sub { font-size: 0.9rem; }
  .products-grid { grid-template-columns: 1fr; }
  .ther-grid { grid-template-columns: 1fr; }
  .qa-grid-8 { grid-template-columns: 1fr; }
  .target-region-grid { grid-template-columns: 1fr; }
  .about-milestones { grid-template-columns: 1fr 1fr; }
  .page-hero-title { font-size: 1.8rem; }
  .page-hero-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cta-strip-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-strip-btns { flex-direction: column; width: 100%; }
  .cta-strip-btns a { width: 100%; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* 6. Small Mobile Phones (< 575px) */
@media (max-width: 575px) {
  .hero-title { font-size: 1.75rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; text-align: center; }
  .page-hero-title { font-size: 1.55rem; }
  .page-hero-stats { grid-template-columns: 1fr; }
  .about-milestones { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .map-graphic-wrap { padding: 22px 14px; border-radius: var(--r-lg); }
  .nav-logo-img { width: 44px !important; height: 44px !important; }
  .footer-logo-img { width: 50px !important; height: 50px !important; }
}

