/* ============================================================
   TruTecME — Production Stylesheet
   Light Theme | Professional | Cinematic Scroll Effects
   Fonts: Sora (display) + DM Sans (body) + JetBrains Mono
   Colors: Navy #1B2A6B | Gold #C8860A | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #1B2A6B;
  --navy-dark:   #101A45;
  --navy-mid:    #223580;
  --navy-light:  #2E4499;
  --gold:        #C8860A;
  --gold-light:  #E09A14;
  --gold-pale:   #F5C842;
  --gold-bg:     rgba(200,134,10,0.07);
  --navy-bg:     rgba(27,42,107,0.06);
  --white:       #FFFFFF;
  --off-white:   #F7F8FC;
  --gray-50:     #F4F5FA;
  --gray-100:    #ECEEF6;
  --gray-200:    #D8DCF0;
  --gray-300:    #B8BEDA;
  --gray-400:    #8890B5;
  --gray-500:    #5C6490;
  --gray-600:    #3E4672;
  --gray-700:    #272E55;
  --text:        #111827;
  --text-muted:  #4B5679;
  --text-light:  #8892B0;
  --border:      #E2E5F0;
  --border-soft: #ECEEF6;
  --shadow-xs:   0 1px 2px rgba(17,24,39,0.05);
  --shadow-sm:   0 2px 8px rgba(17,24,39,0.07);
  --shadow-md:   0 8px 24px rgba(17,24,39,0.10);
  --shadow-lg:   0 20px 48px rgba(17,24,39,0.12);
  --shadow-xl:   0 32px 64px rgba(17,24,39,0.14);
  --shadow-gold: 0 8px 32px rgba(200,134,10,0.22);
  --shadow-navy: 0 8px 32px rgba(27,42,107,0.25);
  --r-sm:        8px;
  --r-md:        12px;
  --r-lg:        16px;
  --r-xl:        24px;
  --r-2xl:       32px;
  --font:        'DM Sans', system-ui, sans-serif;
  --font-display:'Sora', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }

/* ── CURSOR ──────────────────────────────────────────────── */
#cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease),
              border-color .2s var(--ease), opacity .2s var(--ease);
  opacity: 0;
  will-change: transform;
}
#cursor-ring.visible { opacity: 1; }
#cursor-ring.hovered {
  width: 52px; height: 52px;
  border-color: var(--gold);
  background: rgba(200,134,10,0.05);
}
#cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  top: 0; left: 0;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity .2s;
}
#cursor-dot.visible { opacity: 1; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(2rem, calc(50% - 640px));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-color: var(--border-soft);
  box-shadow: 0 4px 24px rgba(17,24,39,0.06);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-center { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: .5rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link.active { font-weight: 600; }
.nav-link svg { width: 11px; height: 11px; flex-shrink: 0; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-section {
  padding: .6rem .85rem .25rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .55rem .85rem;
  font-size: .865rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color .15s, background .15s, padding-left .15s;
}
.nav-dropdown a:hover {
  color: var(--navy);
  background: var(--gray-50);
  padding-left: 1.1rem;
}
.nav-dropdown a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .15s;
}
.nav-dropdown a:hover::before { opacity: 1; }

.nav-right { display: flex; align-items: center; gap: .75rem; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .55rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: .855rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background .2s, box-shadow .2s, transform .2s;
  white-space: nowrap;
  font-family: var(--font-display);
}
.btn-nav:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow-navy);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 800;
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  padding: 1rem 1.5rem 2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .7rem 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-section {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 0 .25rem;
  font-family: var(--font-display);
}
.mobile-cta {
  display: block;
  margin-top: 1.5rem;
  padding: .85rem;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: var(--r-md);
  text-align: center;
  border-bottom: none !important;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-alt { background: var(--off-white); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .82rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27,42,107,0.28);
}
.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 6px 22px rgba(27,42,107,0.38);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 40px rgba(200,134,10,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-bg);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: .5rem 1.1rem; font-size: .82rem; border-radius: var(--r-sm); }
.btn-icon { width: 38px; height: 38px; padding: 0; justify-content: center; border-radius: 50%; }

/* ── TYPE ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--navy-dark);
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--navy-dark);
}
.h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -.015em;
}
.accent { color: var(--gold); }
.body-lg {
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--text-muted);
  font-weight: 400;
}
.body { font-size: .95rem; line-height: 1.72; color: var(--text-muted); }
.caption { font-size: .8rem; color: var(--text-light); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 70%);
}
.hero-radial {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(27,42,107,.07) 0%, transparent 65%);
  animation: slowFloat 12s ease-in-out infinite;
}
.hero-radial-2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,134,10,.05) 0%, transparent 65%);
  animation: slowFloat 15s ease-in-out infinite reverse;
}
@keyframes slowFloat {
  0%,100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.06) translate(20px,-20px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .4rem 1rem;
  background: var(--gold-bg);
  border: 1px solid rgba(200,134,10,.2);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.3; transform:scale(.6); }
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-number.gold { color: var(--gold); }
.stat-label { font-size: .78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* Globe Canvas */
.globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 40px rgba(27,42,107,0.18));
}
.globe-glow {
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(27,42,107,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#globeMount {
  border-radius: 50%;
  overflow: hidden;
}
#globeMount canvas { display:block; }
#globeCanvas {
  width: 100%;
  max-width: 520px;
  height: 500px;
  cursor: grab;
}
#globeCanvas:active { cursor: grabbing; }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: .9rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2.5rem;
  color: rgba(255,255,255,.7);
  font-size: .84rem;
  font-weight: 500;
  white-space: nowrap;
}
.ticker-dot { color: var(--gold); font-size: 1rem; line-height: 1; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SERVICES OVERVIEW ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--gray-200);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.si-navy { background: var(--navy-bg); }
.si-gold { background: var(--gold-bg); }
.si-teal { background: rgba(14,165,141,.08); }
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.service-card-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.25rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-display);
}
.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag {
  padding: .2rem .65rem;
  background: var(--navy-bg);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-size: .74rem;
  font-weight: 600;
  border-radius: 100px;
}
.tag-gold { background: var(--gold-bg); border-color: rgba(200,134,10,.2); color: var(--gold); }

/* ── PARTNERS ────────────────────────────────────────────── */
.partners-band {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.partners-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .9rem 1rem;
}
.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem .75rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  height: 76px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.partner-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  transform: translateY(-3px);
}
.partner-card svg { max-width: 100%; }
/* alias for index.html v2 */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  background: #fff;
  height: 70px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.partner-logo:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
  transform: translateY(-3px);
}
.partner-logo svg,.partner-logo img { max-width:100%; height:28px; width:auto; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all .3s var(--ease);
  position: relative;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(27,42,107,.05);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: .5rem;
}
.why-title { font-family: var(--font-display); font-size: .98rem; font-weight: 700; color: var(--navy-dark); margin-bottom: .6rem; }
.why-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(10% + 30px);
  right: calc(10% + 30px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--navy-light), var(--border), transparent);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all .3s var(--ease-spring);
  position: relative;
}
.process-circle::after {
  content: attr(data-n);
  position: absolute;
  bottom: -4px; right: -4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.process-step:hover .process-circle {
  border-color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(27,42,107,.06);
}
.process-step h4 { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--navy-dark); margin-bottom: .45rem; }
.process-step p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: all .3s var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 4.5rem;
  color: rgba(27,42,107,.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-quote { font-size: .9rem; color: var(--text-muted); line-height: 1.78; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg,#1B2A6B,#2E4499); }
.av2 { background: linear-gradient(135deg,#C8860A,#E09A14); }
.av3 { background: linear-gradient(135deg,#0C6E6E,#14A5A5); }
.av4 { background: linear-gradient(135deg,#6B21A8,#9333EA); }
.av5 { background: linear-gradient(135deg,#166534,#16A34A); }
.av6 { background: linear-gradient(135deg,#9D174D,#EC4899); }
.av7 { background: linear-gradient(135deg,#1E40AF,#3B82F6); }
.av8 { background: linear-gradient(135deg,#991B1B,#DC2626); }
.av9 { background: linear-gradient(135deg,#065F46,#10B981); }
.testi-name { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--navy-dark); }
.testi-role { font-size: .78rem; color: var(--text-light); }
.testi-company { font-size: .78rem; color: var(--gold); font-weight: 600; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1D3A8A 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.035) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-band .h2 { color: var(--white); }
.cta-band .body-lg { color: rgba(255,255,255,.72); max-width: 480px; }
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-checks { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.cta-check { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.65); font-size: .84rem; }
.cta-check-icon { color: var(--gold); flex-shrink: 0; }

/* ── CONTACT INFO ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .25s;
  margin-bottom: 1.2rem;
}
.contact-info-item:hover { box-shadow: var(--shadow-md); border-color: var(--navy); }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--navy-bg);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-info-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: .3rem; font-family: var(--font-display); }
.contact-info-value { font-weight: 600; color: var(--navy-dark); font-size: .93rem; }
.contact-info-value a { color: var(--gold); }
.contact-info-value a:hover { text-decoration: underline; }

/* ── FORM ────────────────────────────────────────────────── */
.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--navy-dark); margin-bottom: .4rem; }
.form-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-500);
  margin-bottom: .45rem;
  font-family: var(--font-display);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .82rem 1rem;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,42,107,.07);
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; }
.form-checkbox-row input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); cursor: pointer; }
.form-checkbox-label { font-size: .8rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-submit { width: 100%; padding: 1rem; font-size: .98rem; border-radius: var(--r-md); justify-content: center; }
.form-msg { display: none; margin-top: 1rem; padding: 1.2rem; border-radius: var(--r-md); font-size: .88rem; font-weight: 500; }
.form-msg.success { display: block; background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.form-msg.error { display: block; background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* ── MAP ─────────────────────────────────────────────────── */
.map-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 130px 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 100%, black 30%, transparent 80%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-size: .82rem; color: var(--text-light); }
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-300); }

/* ── INFRA TABS ──────────────────────────────────────────── */
.infra-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start; }
.infra-tabs { display: flex; flex-direction: column; gap: .4rem; position: sticky; top: 88px; }
.infra-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .9rem 1.1rem;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  transition: all .2s var(--ease);
  width: 100%;
}
.infra-tab:hover { background: var(--gray-50); border-color: var(--border); }
.infra-tab.active { background: var(--navy-bg); border-color: rgba(27,42,107,.18); }
.infra-tab-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.infra-tab.active .infra-tab-icon { background: rgba(27,42,107,.1); }
.infra-tab-title { font-family: var(--font-display); font-size: .87rem; font-weight: 600; color: var(--navy-dark); }
.infra-tab.active .infra-tab-title { color: var(--navy); font-weight: 700; }
.infra-tab-sub { font-size: .74rem; color: var(--text-light); }

.infra-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xs);
  min-height: 420px;
}
.infra-panel h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy-dark); margin-bottom: .75rem; letter-spacing: -.02em; }
.infra-intro { color: var(--text-muted); font-size: .95rem; line-height: 1.78; margin-bottom: 2rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.check-icon {
  width: 18px; height: 18px;
  background: var(--navy-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .65rem;
  color: var(--navy);
  font-weight: 800;
}
.vendor-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border-soft); }
.vchip {
  display: inline-flex;
  align-items: center;
  padding: .28rem .75rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600);
  font-family: var(--font-mono);
  transition: all .2s;
}
.vchip:hover { background: var(--navy-bg); border-color: rgba(27,42,107,.2); color: var(--navy); }

/* ── CYBER CARDS ─────────────────────────────────────────── */
.cyber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cyber-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all .3s var(--ease);
}
.cyber-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--navy); }
.cyber-card-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--navy-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--navy);
}
.cyber-card h3 { font-family: var(--font-display); font-size: .98rem; font-weight: 700; color: var(--navy-dark); margin-bottom: .75rem; }
.cyber-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 1rem; }
.feature-dots { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.feature-dots li { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--text-muted); }
.feature-dots li::before { content: '▸'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── COMPLIANCE TABLE ────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.data-table th { background: var(--gray-50); padding: .85rem 1.1rem; text-align: left; font-family: var(--font-display); font-weight: 700; color: var(--navy-dark); font-size: .82rem; border-bottom: 1px solid var(--border); }
.data-table td { padding: .85rem 1.1rem; color: var(--text-muted); border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }

/* ── DIGITAL CARDS ───────────────────────────────────────── */
.digital-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.digital-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  transition: all .3s var(--ease);
}
.digital-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.digital-card-top { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-soft); }
.digital-icon { width: 54px; height: 54px; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--navy-bg), var(--gold-bg)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.6rem; }
.digital-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; color: var(--navy-dark); margin-bottom: .3rem; letter-spacing: -.015em; }
.digital-tagline { font-size: .82rem; color: var(--gold); font-style: italic; font-weight: 600; }
.tech-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }
.tech-pill {
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--navy);
  background: var(--navy-bg);
  border: 1px solid rgba(27,42,107,.12);
  padding: .2rem .6rem;
  border-radius: 5px;
  font-weight: 500;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pillar-list { display: flex; flex-direction: column; gap: 1.1rem; }
.pillar-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .25s;
}
.pillar-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); border-color: var(--navy); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(200,134,10,.2);
  border-radius: 6px;
  padding: .22rem .55rem;
  flex-shrink: 0;
  margin-top: 3px;
  height: fit-content;
}
.pillar-item h4 { font-family: var(--font-display); font-size: .93rem; font-weight: 700; color: var(--navy-dark); margin-bottom: .3rem; }
.pillar-item p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* Compliance badges */
.comp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.comp-badge { padding: 1.2rem; background: var(--white); border: 2px solid var(--border); border-radius: var(--r-lg); text-align: center; transition: all .25s; }
.comp-badge:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.comp-badge-title { font-family: var(--font-display); font-weight: 800; color: var(--navy-dark); font-size: .92rem; margin-bottom: .3rem; }
.comp-badge-sub { font-size: .76rem; color: var(--text-light); }

/* Expertise tags */
.expertise-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2rem; margin-bottom: 1.2rem; }
.expertise-box h4 { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--navy-dark); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.expertise-box h4::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-up.in { opacity: 1; transform: none; }
.fade-in { opacity: 0; transition: opacity .7s var(--ease-out); }
.fade-in.in { opacity: 1; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #0D1428;
  color: rgba(255,255,255,.85);
  padding: 4.5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand p { color: rgba(255,255,255,.48); font-size: .875rem; line-height: 1.75; margin-top: .9rem; max-width: 270px; }
.footer-brand .logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); letter-spacing: -.02em; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-col h5 { font-family: var(--font-display); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a { color: rgba(255,255,255,.48); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.07); flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: rgba(255,255,255,.28); font-size: .8rem; }
.footer-tagline { color: var(--gold); font-size: .82rem; font-style: italic; font-weight: 600; font-family: var(--font-display); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .globe-wrap { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .infra-layout { grid-template-columns: 1fr; }
  .infra-tabs { flex-direction: row; flex-wrap: wrap; position: static; }
  .cyber-grid { grid-template-columns: repeat(2,1fr); }
  .digital-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  #cursor-ring, #cursor-dot { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .cyber-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 110px 0 60px; }
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .cta-checks { gap: 1rem; flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   NAV DROPDOWN FIX — JS-controlled with .dd-open class
   (replaces pure CSS :hover which loses focus on gap)
═══════════════════════════════════════════════════════════ */
.nav-item .nav-dropdown {
  top: calc(100% + 2px); /* reduced gap so mouse can reach it */
}
/* Override: use .dd-open class from JS instead of :hover */
.nav-item:hover .nav-dropdown { opacity: 0; pointer-events: none; }
.nav-item.dd-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge fills the gap so mouse doesn't lose the dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -14px; left: -10px; right: -10px;
  height: 14px;
  background: transparent;
}

/* ═══════════════════════════════════════════════════════════
   GLOBE — light sphere, no dark filter
═══════════════════════════════════════════════════════════ */
.globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
#globeCanvas {
  display: block;
  width: 100%;
  max-width: 520px;
  height: 520px;
  cursor: grab;
  border-radius: 50%;
  /* Soft purple shadow matching Cloudways globe */
  filter: drop-shadow(0 8px 40px rgba(120,100,220,0.22)) drop-shadow(0 2px 12px rgba(100,80,200,0.12));
}
#globeCanvas:active { cursor: grabbing; }
.globe-glow { display: none; }
.hero-visual::before { display: none; }

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/world_map_trutecme.png');
  background-size: 85%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
}
footer .container { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON — LEFT SIDE
═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;        /* LEFT side */
  right: auto;       /* override any right setting */
  z-index: 9000;
  display: flex;
  flex-direction: row-reverse; /* tooltip appears to the right of button */
  align-items: center;
  gap: 12px;
}
.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  border: 3px solid rgba(255,255,255,0.9);
  transition: transform .25s, box-shadow .25s;
  animation: waPulse 3s ease-in-out infinite;
  text-decoration: none;
  flex-shrink: 0;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.15);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.15); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 0 0 10px rgba(37,211,102,0.10); }
}
.whatsapp-btn svg { width: 30px; height: 30px; display: block; }
.whatsapp-tooltip {
  background: #1a1a2e;
  color: white;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   FAQ PAGE SECTION
═══════════════════════════════════════════════════════════ */
.faq-section-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.open { border-color: rgba(27,42,107,.22); box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 1.35rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}
.faq-item.open .faq-q { color: var(--navy); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  transition: transform .35s var(--ease-spring), background .2s;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--gold-bg); }
.faq-a p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.78;
}
.faq-category-title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin: 2rem 0 .75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-category-title::before, .faq-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════════
   HERO — entry animation for h1 words
═══════════════════════════════════════════════════════════ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: slideUp .8s var(--ease-out) both;
}
.hero-content > *:nth-child(1) { animation-delay: .0s; }
.hero-content > *:nth-child(2) { animation-delay: .12s; }
.hero-content > *:nth-child(3) { animation-delay: .22s; }
.hero-content > *:nth-child(4) { animation-delay: .32s; }
.hero-content > *:nth-child(5) { animation-delay: .42s; }



/* ═══════════════════════════════════════════════════════════
   HERO globe glowing background patch 
   (dark area behind globe looks intentional on light bg)
═══════════════════════════════════════════════════════════ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(12,24,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   LOTTIE-STYLE section divider animation dots
═══════════════════════════════════════════════════════════ */
.section-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: .5rem 0;
}
.section-divider span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.25;
  animation: divDot 1.8s ease-in-out infinite;
}
.section-divider span:nth-child(2) { animation-delay: .2s; }
.section-divider span:nth-child(3) { animation-delay: .4s; }
@keyframes divDot {
  0%,80%,100% { opacity:.18; transform:scale(1); }
  40%         { opacity:1;   transform:scale(1.4); }
}

/* ═══════════════════════════════════════════════════════════
   COUNTING NUMBER ANIMATION
═══════════════════════════════════════════════════════════ */
@keyframes countUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}
.stat-number { animation: countUp .8s var(--ease-out) .5s both; }

