/* ═══════════════════════════════════════════════════════════
   QANAT GLOBAL SOLUTIONS — Mintlify-Inspired Redesign
   Theme: Clean White · Brand Green · Inter Typography
   Design: Mintlify Light System + Dark Orbit Fix
═══════════════════════════════════════════════════════════ */

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

:root {
  /* ── MINTLIFY CORE PALETTE ── */
  --brand:          #18E299;
  --brand-light:    #d4fae8;
  --brand-deep:     #0fa76e;
  --brand-glow:     rgba(24,226,153,0.15);
  --brand-glow-md:  rgba(24,226,153,0.25);

  /* ── NEUTRALS ── */
  --near-black:     #0d0d0d;
  --gray-900:       #0d0d0d;
  --gray-700:       #333333;
  --gray-500:       #666666;
  --gray-400:       #888888;
  --gray-200:       #e5e5e5;
  --gray-100:       #f5f5f5;
  --gray-50:        #fafafa;
  --white:          #ffffff;

  /* ── BORDERS ── */
  --border-subtle:  rgba(0,0,0,0.05);
  --border-medium:  rgba(0,0,0,0.08);
  --border-strong:  rgba(0,0,0,0.12);

  /* ── LEGACY COMPAT (used in inner pages) ── */
  --gold:           #18E299;
  --gold-light:     #0fa76e;
  --gold-bright:    #d4fae8;
  --gold-glow:      rgba(24,226,153,0.1);
  --teal:           #18E299;
  --cyan:           #0fa76e;
  --blue:           #18E299;
  --blue-glow:      rgba(24,226,153,0.1);
  --muted:          #888888;
  --muted-light:    #666666;
  --off-white:      #333333;
  --silver:         #555555;
  --navy-1:         #ffffff;
  --navy-2:         #fafafa;
  --navy-mid:       #f5f5f5;
  --glass-border-gold: rgba(0,0,0,0.08);
  --glass-border:   rgba(0,0,0,0.05);
  --bg-primary:     #ffffff;
  --bg-secondary:   #fafafa;
  --bg-card:        #ffffff;
  --border:         rgba(0,0,0,0.08);

  /* ── SHADOWS ── */
  --shadow-card:    rgba(0,0,0,0.03) 0px 2px 4px;
  --shadow-btn:     rgba(0,0,0,0.06) 0px 1px 2px;
  --shadow-md:      0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.08);

  /* ── LAYOUT ── */
  --radius:         16px;
  --radius-lg:      24px;
  --radius-sm:      12px;
  --radius-xs:      8px;
  --radius-pill:    9999px;
  --transition:     0.22s cubic-bezier(0.4,0,0.2,1);
  --blur:           blur(12px) saturate(1.4);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─────────────────────────────────────────
   ATMOSPHERIC HERO GRADIENT (Mintlify style)
───────────────────────────────────────── */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(24,226,153,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(24,226,153,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(15,167,110,0.04) 0%, transparent 60%),
    #ffffff;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.1;
  color: var(--near-black);
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -1.28px;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.8px;
}
h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.2px;
}
h4 {
  font-size: 0.81rem;
  font-weight: 500;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--gray-500);
}
p { color: var(--gray-500); line-height: 1.6; }

/* Label pill — Mintlify style */
.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--brand-deep);
  border: 1px solid rgba(24,226,153,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 20px;
  background: var(--brand-light);
}
.label-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-deep);
  flex-shrink: 0;
}

/* Old .label class — inner pages */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--brand-deep);
  border: 1px solid rgba(24,226,153,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 20px;
  background: var(--brand-light);
}
.label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-deep);
  flex-shrink: 0;
}

.accent { color: var(--brand-deep); }
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep), transparent);
  border-radius: 2px;
  margin: 18px 0;
}
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 12px; color: var(--near-black); }
.section-header p { max-width: 520px; font-size: 1rem; color: var(--gray-500); }

/* ─────────────────────────────────────────
   BUTTONS — Mintlify pill style
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Primary — near black pill (Mintlify default) */
.btn-gold, .btn-primary {
  background: var(--near-black);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}
.btn-gold:hover, .btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Brand green accent button */
.btn-brand {
  background: var(--brand);
  color: var(--near-black);
  box-shadow: var(--shadow-btn);
}
.btn-brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Ghost / outline pill */
.btn-outline {
  background: var(--white);
  border: 1px solid var(--border-medium);
  color: var(--near-black);
  box-shadow: var(--shadow-btn);
}
.btn-outline:hover {
  opacity: 0.9;
  border-color: var(--border-strong);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-white {
  background: var(--near-black);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--gray-700);
}
.btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--border-strong);
}

.btn-teal {
  background: var(--brand);
  color: var(--near-black);
  box-shadow: 0 4px 16px rgba(24,226,153,0.3);
}
.btn-teal:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─────────────────────────────────────────
   NAV — White sticky with backdrop blur
───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px) saturate(1.6);
  -webkit-backdrop-filter: blur(12px) saturate(1.6);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-wrap { display: flex; align-items: center; gap: 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--brand-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--brand);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
  background: var(--near-black);
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.88rem;
  box-shadow: var(--shadow-btn);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border-subtle);
  padding: 24px 28px;
  gap: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-mobile a {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--brand-deep); }
.nav-mobile a:last-child {
  color: var(--near-black);
  font-weight: 600;
}
.nav-mobile.open { display: flex; }

/* ─────────────────────────────────────────
   HERO — Mintlify atmospheric white
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 100px;
  background: #ffffff;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 72% 42%, rgba(24,226,153,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(24,226,153,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 45% 10%, rgba(15,167,110,0.04) 0%, transparent 65%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,226,153,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,226,153,0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 62% 75% at 75% 48%, black 20%, rgba(0,0,0,0.4) 55%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 62% 75% at 75% 48%, black 20%, rgba(0,0,0,0.4) 55%, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; max-width: 840px; }
.hero h1 { margin-bottom: 24px; color: var(--near-black); }
.hero h1 .gold {
  color: transparent;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 60%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero h1 .teal { color: var(--brand-deep); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  max-width: 560px;
  margin-bottom: 44px;
  color: var(--gray-500);
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 72px; }

/* Stats bar — white card Mintlify style */
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 680px;
}
.stat-item {
  flex: 1;
  padding: 20px 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--border-subtle);
}
.stat-divider { display: none; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--near-black);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-num span { color: var(--brand-deep); }
.stat-label { font-size: 0.72rem; color: var(--gray-400); margin-top: 5px; letter-spacing: 0.04em; }

/* ─────────────────────────────────────────
   HERO VIDEO
───────────────────────────────────────── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  opacity: 0.06;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.75) 0%,
    rgba(255,255,255,0.45) 45%,
    rgba(255,255,255,0.82) 100%
  );
}

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker-wrap {
  background: var(--gray-50);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: color 0.3s;
}
.ticker-item:hover { color: var(--brand-deep); }
.ticker-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─────────────────────────────────────────
   CARDS — Mintlify white + border
───────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  transition: left 0.5s ease, right 0.5s ease;
  opacity: 0;
}
.card:hover::before { left: 0; right: 0; opacity: 1; }

.card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  background: var(--brand-light);
  border: 1px solid rgba(24,226,153,0.25);
}
.card h3 { margin-bottom: 10px; color: var(--near-black); }
.card p { font-size: 0.9rem; color: var(--gray-500); }
.card.featured {
  background: var(--gray-50);
  border-color: var(--border-medium);
}

/* ─────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card.featured { grid-column: span 2; }

/* ─────────────────────────────────────────
   METRICS ROW
───────────────────────────────────────── */
.metrics-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.metric-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.6;
}
.metric-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}
.metric-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--near-black);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.metric-label { font-size: 0.78rem; color: var(--gray-400); letter-spacing: 0.04em; }

/* ─────────────────────────────────────────
   WHY SECTION
───────────────────────────────────────── */
.why-section {
  background: var(--gray-50);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-light);
  border: 1px solid rgba(24,226,153,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h3 { font-size: 0.95rem; color: var(--near-black); margin-bottom: 5px; }
.why-item p { font-size: 0.84rem; color: var(--gray-500); }

/* ─────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 7%; right: 7%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-subtle), var(--brand), var(--border-subtle));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.step-num.final {
  background: var(--near-black);
  color: #ffffff;
  border-color: var(--near-black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.step-label { font-size: 0.7rem; color: var(--gray-500); max-width: 80px; line-height: 1.4; }

/* ─────────────────────────────────────────
   INDUSTRY CARDS
───────────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.industry-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.industry-card:hover {
  border-color: rgba(24,226,153,0.3);
  background: var(--brand-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.industry-icon { font-size: 1.6rem; flex-shrink: 0; }
.industry-card h3 { font-size: 0.88rem; color: var(--near-black); margin-bottom: 2px; }
.industry-card p { font-size: 0.76rem; color: var(--gray-500); }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  background: var(--near-black);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,226,153,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,226,153,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { color: #ffffff; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24,226,153,0.06) 0%, transparent 70%), var(--white);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(24,226,153,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(24,226,153,0.04) 0%, transparent 100%);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 18px; color: var(--near-black); }
.page-hero p { font-size: 1.05rem; max-width: 600px; color: var(--gray-500); }

/* ─────────────────────────────────────────
   ABOUT PAGE — ORBIT ANIMATION (DARK & VISIBLE)
───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }

/* Main circle — dark with brand green */
.about-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,226,153,0.18) 0%, rgba(15,167,110,0.08) 60%, transparent 100%);
  border: 2px solid rgba(24,226,153,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 48px rgba(24,226,153,0.2),
    0 0 96px rgba(24,226,153,0.08),
    inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
}
.about-circle-inner { text-align: center; }
.about-circle-inner .big {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--near-black);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-circle-inner .small {
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}

/* Outer orbit ring — dark, clearly visible */
.about-orbit {
  position: absolute;
  width: 400px; height: 400px;
  border: 2px dashed rgba(24,226,153,0.6);
  border-radius: 50%;
  animation: spin 18s linear infinite;
  z-index: 1;
}

/* Orbit dot — bright glowing green */
.orbit-dot {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand);
  top: -8px; left: calc(50% - 8px);
  box-shadow:
    0 0 12px var(--brand),
    0 0 24px rgba(24,226,153,0.6),
    0 0 48px rgba(24,226,153,0.3);
  border: 2px solid rgba(255,255,255,0.8);
}

/* Second inner orbit ring for depth */
.about-orbit-inner {
  position: absolute;
  width: 340px; height: 340px;
  border: 1px solid rgba(24,226,153,0.2);
  border-radius: 50%;
  animation: spin 28s linear infinite reverse;
  z-index: 1;
}

@keyframes spin { to { transform: rotate(360deg); } }

.about-text h2 { margin-bottom: 20px; color: var(--near-black); }
.about-text p { margin-bottom: 16px; color: var(--gray-500); }
.values-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; }
.value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(24,226,153,0.5);
}
.value-item p { margin: 0; font-size: 0.94rem; color: var(--gray-700); }
.navy-mid { background: var(--gray-50); }

/* ─────────────────────────────────────────
   COMPLIANCE BADGES
───────────────────────────────────────── */
.badge {
  background: var(--brand-light);
  border: 1px solid rgba(24,226,153,0.3);
  border-radius: var(--radius-xs);
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brand-deep);
  letter-spacing: 0.04em;
}
.compliance-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; color: var(--near-black); }
.contact-info p { margin-bottom: 36px; font-size: 1rem; color: var(--gray-500); }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-light);
  border: 1px solid rgba(24,226,153,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail a { color: var(--gray-700); transition: color var(--transition); font-size: 0.92rem; }
.contact-detail a:hover { color: var(--brand-deep); }
.contact-detail small { font-size: 0.7rem; color: var(--gray-400); display: block; margin-bottom: 2px; }

/* Contact form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--near-black);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(24,226,153,0.12);
  background: var(--white);
}
.form-group select option { background: var(--white); color: var(--near-black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--brand-light);
  border: 1px solid rgba(24,226,153,0.3);
  border-radius: var(--radius-sm);
  padding: 18px;
  color: var(--brand-deep);
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 72px;
  background: var(--near-black);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), rgba(24,226,153,0.4), var(--brand), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer-tagline {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 10px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: rgba(24,226,153,0.4);
  color: var(--brand);
  background: rgba(24,226,153,0.08);
  transform: translateY(-2px);
}
.footer-col h4 {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--brand); }
.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.76rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ─────────────────────────────────────────
   VISUAL INTRO GRID (index.html)
───────────────────────────────────────── */
.visual-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vi-img-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 300px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-lg);
}
.vi-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.vi-img-main:hover img { transform: scale(1.04); }
.vi-img-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--near-black);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.vi-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vi-img-sm {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 140px;
  box-shadow: var(--shadow-card);
}
.vi-img-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vi-img-sm:hover img { transform: scale(1.07); }
.vi-img-sm span {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--near-black);
  backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────
   SERVICE SHOWCASE CARDS WITH IMAGES
───────────────────────────────────────── */
.service-showcase {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.svc-img-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.svc-img-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
}
.svc-img-wrap { position: relative; height: 190px; overflow: hidden; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-img-card:hover .svc-img-wrap img { transform: scale(1.07); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.svc-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
}
.svc-img-body { padding: 20px; }
.svc-img-body h3 { font-size: 1rem; color: var(--near-black); margin-bottom: 8px; }
.svc-img-body p { font-size: 0.84rem; color: var(--gray-500); }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-deep);
  font-family: 'Inter', sans-serif;
  transition: gap var(--transition), color var(--transition);
}
.svc-link:hover { gap: 8px; }

/* ─────────────────────────────────────────
   VIDEO SECTION
───────────────────────────────────────── */
.video-section {
  background: var(--gray-50);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.video-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; }
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  background: var(--white);
}
.video-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}
.video-thumb { position: relative; overflow: hidden; }
.main-video .video-thumb { height: 320px; }
.sm-video .video-thumb { height: 145px; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.video-card:hover .video-thumb img { transform: scale(1.03); }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--near-black);
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.play-btn:hover {
  transform: translate(-50%,-50%) scale(1.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.play-btn.sm { width: 40px; height: 40px; font-size: 0.85rem; }
.video-label {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--near-black);
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
}
.video-caption {
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  padding: 18px 20px;
}
.video-caption h3 { font-size: 0.95rem; color: var(--near-black); margin-bottom: 5px; }
.video-caption p { font-size: 0.8rem; color: var(--gray-500); }
.video-side { display: flex; flex-direction: column; gap: 18px; }

/* ─────────────────────────────────────────
   INDUSTRY IMAGE GRID
───────────────────────────────────────── */
.industry-img-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.ind-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.ind-img-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
}
.ind-img-wrap { position: relative; height: 170px; overflow: hidden; }
.ind-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ind-img-card:hover .ind-img-wrap img { transform: scale(1.07); }
.ind-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-size: 1.8rem;
}
.ind-img-body { padding: 16px 18px; }
.ind-img-body h3 { font-size: 0.92rem; color: var(--near-black); margin-bottom: 4px; }
.ind-img-body p { font-size: 0.78rem; color: var(--gray-500); }

/* ─────────────────────────────────────────
   GOLD CURSOR GLOW (green version)
───────────────────────────────────────── */
/* Cursor glow is handled in main.js — it uses gold color,
   we override it via a CSS variable approach in body */

/* ─────────────────────────────────────────
   INDUSTRIES PAGE - ind-grid
───────────────────────────────────────── */
.ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ─────────────────────────────────────────
   HERO ORBIT ANIMATION (index.html)
───────────────────────────────────────── */
.hero-orbit-wrap {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: 1;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-orbit-1 {
  width: 520px; height: 520px;
  border: 2px dashed rgba(24,226,153,0.55);
  animation: orbit-spin 16s linear infinite;
}
.hero-orbit-2 {
  width: 380px; height: 380px;
  border: 1.5px dashed rgba(24,226,153,0.35);
  animation: orbit-spin 24s linear infinite reverse;
}
.hero-orbit-3 {
  width: 250px; height: 250px;
  border: 1px solid rgba(24,226,153,0.18);
  animation: orbit-spin 36s linear infinite;
}
.hero-orbit-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  top: -7px; left: calc(50% - 7px);
  box-shadow:
    0 0 10px var(--brand),
    0 0 22px rgba(24,226,153,0.55),
    0 0 44px rgba(24,226,153,0.25);
  border: 2px solid rgba(255,255,255,0.7);
}
.hero-orbit-dot.dot-2 {
  width: 10px; height: 10px;
  top: -5px; left: calc(50% - 5px);
  background: var(--brand-deep);
  box-shadow: 0 0 8px var(--brand-deep), 0 0 18px rgba(15,167,110,0.5);
}
.hero-orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,226,153,0.22) 0%, rgba(24,226,153,0.06) 50%, transparent 100%);
  border: 2px solid rgba(24,226,153,0.45);
  box-shadow: 0 0 32px rgba(24,226,153,0.2), 0 0 64px rgba(24,226,153,0.08), inset 0 0 24px rgba(24,226,153,0.12);
  animation: orbit-pulse 3s ease-in-out infinite;
}
.hero-orbit-core-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,226,153,0.5) 0%, rgba(24,226,153,0.15) 70%, transparent 100%);
  border: 1.5px solid rgba(24,226,153,0.6);
  box-shadow: 0 0 16px rgba(24,226,153,0.4);
  animation: orbit-pulse 3s ease-in-out infinite reverse;
}
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-pulse {
  0%, 100% { box-shadow: 0 0 32px rgba(24,226,153,0.2), 0 0 64px rgba(24,226,153,0.08); }
  50%       { box-shadow: 0 0 48px rgba(24,226,153,0.4), 0 0 96px rgba(24,226,153,0.16); }
}
@media (max-width: 1024px) { .hero-orbit-wrap { display: none; } }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(4,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .metrics-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .visual-intro-grid { grid-template-columns: 1fr; }
  .vi-images { display: none; }
  .service-showcase { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-side { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .industry-img-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; padding: 36px 24px; }
  .cta-banner .cta-actions { width: 100%; }
  .hero-stats { gap: 0; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metrics-row { grid-template-columns: repeat(2,1fr); }
  .service-showcase { grid-template-columns: 1fr; }
  .industry-img-grid { grid-template-columns: 1fr 1fr; }
  .video-side { grid-template-columns: 1fr; }
  .hero-video-iframe { opacity: 0.04; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .industry-img-grid { grid-template-columns: 1fr; }
  .hero-stats { border-radius: var(--radius-sm); }
  .stat-item { padding: 14px 16px; }
  .stat-num { font-size: 1.7rem; }
}

/* ─────────────────────────────────────────
   HERO GLOBE — Dark, Vivid, Revolving
───────────────────────────────────────── */
.hero-globe-wrap {
  position: absolute;
  top: 50%; right: -5%;
  transform: translateY(-52%);
  width: 580px; height: 580px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.88;
}
.hero-globe-svg {
  width: 100%; height: 100%;
  overflow: visible;
}

/* Meridians rotate — the core globe spin */
.globe-meridians {
  transform-origin: 300px 300px;
  animation: globeSpin 22s linear infinite;
}

/* Orbit ring 1 rotates on its own axis */
.globe-orbit1 {
  transform-origin: 300px 300px;
  animation: orbitSpin1 14s linear infinite;
}
/* Orbit ring 2 counter-rotates */
.globe-orbit2 {
  transform-origin: 300px 300px;
  animation: orbitSpin2 20s linear infinite reverse;
}

/* Dot 1 — travels the outer orbit ellipse path */
.globe-dot1 {
  offset-path: ellipse(290px 78px at 300px 300px);
  animation: dotOrbit1 14s linear infinite;
  transform-origin: 300px 300px;
}
/* Dot 2 — travels the inner orbit ellipse path */
.globe-dot2 {
  offset-path: ellipse(318px 52px at 300px 300px);
  animation: dotOrbit2 20s linear infinite reverse;
  transform-origin: 300px 300px;
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbitSpin1 {
  from { transform: rotate(-18deg); }
  to   { transform: rotate(342deg); }
}
@keyframes orbitSpin2 {
  from { transform: rotate(12deg); }
  to   { transform: rotate(-348deg); }
}
@keyframes dotOrbit1 {
  from { transform: rotate(0deg) translateX(290px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(290px) rotate(-360deg); }
}
@keyframes dotOrbit2 {
  from { transform: rotate(0deg) translateX(318px) rotate(0deg); }
  to   { transform: rotate(-360deg) translateX(318px) rotate(360deg); }
}

/* Keep globe visible on mobile but smaller */
@media (max-width: 1024px) {
  .hero-globe-wrap {
    width: 420px; height: 420px;
    right: -15%;
    opacity: 0.60;
  }
}
@media (max-width: 768px) {
  .hero-globe-wrap {
    width: 300px; height: 300px;
    top: auto; bottom: -10%;
    right: -10%;
    transform: none;
    opacity: 0.35;
  }
}

/* ─────────────────────────────────────────
   HERO PARTICLE GLOBE CANVAS
───────────────────────────────────────── */
.hero-globe-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
/* ═══════════════════════════════════════════════════════════
   QGS ENHANCED — Animated Mint Background + Stronger Colors
   Added: floating orbs, particle canvas, shimmer lines,
          stronger typography, vivid section accents
═══════════════════════════════════════════════════════════ */

/* ── STRONGER TYPOGRAPHY OVERRIDES ── */
:root {
  --text-primary:   #0a0f1a;
  --text-secondary: #1e2a38;
  --text-body:      #3a4a5c;
  --text-muted:     #5a6b7e;
}

body { color: var(--text-body); }

h1, h2, h3, h4, h5 { color: var(--text-primary); }
h1 { color: #05101f; }
h2 { color: #0a1628; }
h3 { color: #101e30; }

p { color: var(--text-body); }
.hero-sub, .hero p { color: #3a4a5c !important; }
.section-header p { color: #3a4a5c !important; }
.card p { color: #3a4a5c; }
.why-item p { color: #3a4a5c; }
.metric-label { color: #4a5d70 !important; }
.stat-label { color: #4a5d70 !important; }
.step-label { color: #3a4a5c !important; }
.industry-card p { color: #3a4a5c; }
.hsg-label { color: #5a6b7e !important; }
.footer-brand p, .footer-brand .footer-tagline { color: rgba(255,255,255,0.7) !important; }
.nav-links a { color: #1e2a38 !important; }
.ticker-item { color: #3a4a5c !important; }
.about-text p { color: #3a4a5c !important; }
.value-item p { color: #2a3a4c !important; }
.page-hero p { color: #3a4a5c !important; }
.ind-img-body p { color: #3a4a5c; }

/* ── ANIMATED BACKGROUND CANVAS ── */
#qgs-bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}

/* ── FLOATING MINT ORBS ── */
.qgs-orb-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.qgs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbDrift linear infinite;
  will-change: transform;
}
.qgs-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(24,226,153,0.10) 0%, rgba(24,226,153,0.03) 55%, transparent 80%);
  top: -15%; left: -10%;
  animation-duration: 28s;
  animation-delay: 0s;
}
.qgs-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15,167,110,0.08) 0%, rgba(24,226,153,0.02) 55%, transparent 80%);
  top: 40%; right: -8%;
  animation-duration: 35s;
  animation-delay: -10s;
}
.qgs-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,210,200,0.07) 0%, rgba(24,226,153,0.02) 55%, transparent 80%);
  bottom: 10%; left: 25%;
  animation-duration: 42s;
  animation-delay: -20s;
}
.qgs-orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(24,226,153,0.06) 0%, transparent 70%);
  top: 20%; left: 55%;
  animation-duration: 22s;
  animation-delay: -7s;
}
@keyframes orbDrift {
  0%   { transform: translate(0px, 0px) scale(1); }
  25%  { transform: translate(30px, -40px) scale(1.06); }
  50%  { transform: translate(-20px, 30px) scale(0.95); }
  75%  { transform: translate(40px, 20px) scale(1.04); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* ── HERO SHIMMER LINES ── */
.qgs-shimmer-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.qgs-shimmer-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(24,226,153,0.0) 20%,
    rgba(24,226,153,0.45) 50%,
    rgba(24,226,153,0.0) 80%,
    transparent 100%
  );
  animation: shimmerSlide linear infinite;
  opacity: 0;
}
.qgs-shimmer-line:nth-child(1) { width: 60%; top: 22%; left: -60%; animation-duration: 5s; animation-delay: 0s; }
.qgs-shimmer-line:nth-child(2) { width: 45%; top: 55%; left: -45%; animation-duration: 7s; animation-delay: -2s; }
.qgs-shimmer-line:nth-child(3) { width: 50%; top: 75%; left: -50%; animation-duration: 6s; animation-delay: -4s; }
.qgs-shimmer-line:nth-child(4) { width: 35%; top: 38%; left: -35%; animation-duration: 8s; animation-delay: -1s; }
@keyframes shimmerSlide {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateX(260vw); opacity: 0; }
}

/* ── SECTION GLOW ACCENT BARS ── */
.section::before,
.section-sm::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 280px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24,226,153,0.25), transparent);
  pointer-events: none;
}
.section { position: relative; }
.section-sm { position: relative; }

/* ── ENHANCED CARD GLOW ON HOVER ── */
.card:hover {
  box-shadow: 0 8px 32px rgba(24,226,153,0.12), 0 2px 8px rgba(0,0,0,0.06) !important;
  border-color: rgba(24,226,153,0.2) !important;
}
.metric-card:hover {
  box-shadow: 0 6px 24px rgba(24,226,153,0.10), 0 2px 8px rgba(0,0,0,0.04) !important;
  border-color: rgba(24,226,153,0.15) !important;
}
.why-item:hover {
  box-shadow: 0 6px 24px rgba(24,226,153,0.10) !important;
  border-color: rgba(24,226,153,0.2) !important;
}

/* ── ENHANCED HERO ATMOSPHERE ── */
.hero-split::before {
  background:
    radial-gradient(ellipse 80% 100% at 80% 50%, rgba(24,226,153,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 55% 65% at 10% 85%, rgba(24,226,153,0.07) 0%, transparent 60%) !important;
}

/* ── ENHANCED PAGE HERO ── */
.page-hero {
  background: linear-gradient(180deg, rgba(24,226,153,0.07) 0%, transparent 80%), var(--white) !important;
}
.page-hero-bg {
  background:
    radial-gradient(ellipse 70% 80% at 80% 40%, rgba(24,226,153,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 60%, rgba(24,226,153,0.06) 0%, transparent 65%),
    linear-gradient(180deg, rgba(24,226,153,0.05) 0%, transparent 100%) !important;
}

/* ── ANIMATED GRID PULSE (hero) ── */
@keyframes gridPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1.0; }
}
.hero-grid { animation: gridPulse 6s ease-in-out infinite; }

/* ── PROCESS STEP GLOW ── */
.step-num.final {
  box-shadow: 0 0 0 4px rgba(24,226,153,0.15), 0 4px 16px rgba(0,0,0,0.15) !important;
}
.step-num:hover {
  border-color: rgba(24,226,153,0.5) !important;
  background: var(--brand-light) !important;
  color: var(--brand-deep) !important;
}

/* ── ENHANCED TICKER ── */
.ticker-item { color: #3a4a5c !important; }

/* ── BADGE TEXT DARKER ── */
.badge { color: #0a6e47 !important; }
.label-pill { color: #0a6e47 !important; }
.label { color: #0a6e47 !important; }

/* ── STAT NUMBERS STRONGER ── */
.stat-num { color: #05101f !important; }
.metric-num { color: #05101f !important; }
.hsg-num { color: #0a6e47 !important; }

/* ── NAV STRONGER ── */
.nav-links a { color: #1a2535 !important; }
.nav-links a:hover { color: #0a6e47 !important; }

/* ── FOOTER STRONGER ── */
.footer-col a, .footer-col p { color: rgba(255,255,255,0.72) !important; }
.footer-col h4 { color: rgba(255,255,255,0.45) !important; }

/* ── HERO PARTICLE TRAILS ── */
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.3); }
}
.qgs-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 6px rgba(24,226,153,0.7);
  animation: particleFloat linear infinite;
  pointer-events: none;
}

/* ── SECTION SEPARATOR GLOWS ── */
.why-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(24,226,153,0.04) 0%, transparent 70%),
    var(--gray-50) !important;
}

/* ── HERO STATS GRID HOVER ── */
.hsg-item:hover {
  box-shadow: 0 8px 28px rgba(24,226,153,0.16) !important;
  border-color: rgba(24,226,153,0.35) !important;
}

/* ── SCROLLBAR MINT ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f4f0; }
::-webkit-scrollbar-thumb { background: rgba(24,226,153,0.4); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(24,226,153,0.65); }

/* ── SELECTION COLOR ── */
::selection { background: rgba(24,226,153,0.22); color: #0a1628; }
