/* ============================================
   Kanishka Ventures LLC - Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #0f2557;
  --navy-mid: #1a3a7a;
  --navy-light: #2a52a8;
  --accent: #1e4fc2;
  --accent-hover: #1640a0;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray-50: #f4f6fb;
  --gray-100: #eaedf5;
  --gray-200: #d2d8e8;
  --gray-400: #8f9bbf;
  --gray-600: #4a5578;
  --gray-800: #1e2540;
  --text: #1e2540;
  --text-muted: #5a6380;
  --shadow-sm: 0 2px 8px rgba(15,37,87,0.08);
  --shadow-md: 0 6px 24px rgba(15,37,87,0.12);
  --shadow-lg: 0 16px 48px rgba(15,37,87,0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1140px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.logo-tag {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.2px;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  background: white;
  border-top: 1px solid var(--gray-100);
  gap: 4px;
}
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--navy); }
.mobile-nav.open { display: flex; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: white; font-size: 1.15rem; }
.footer-brand .logo-tag { color: var(--gold); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: white;
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: white;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,79,194,0.3);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--off-white);
  transform: translateY(-2px);
  color: var(--navy);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  background: var(--navy);
  padding: 120px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,79,194,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner .container { position: relative; }
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-bg { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: rgba(30,79,194,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at 60% 40%, rgba(30,79,194,0.07) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-blob-2 {
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 40% 60%, rgba(201,168,76,0.06) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,79,194,0.08);
  color: var(--accent);
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-content h1 span {
  color: var(--accent);
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-trust-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: -8px;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  position: relative;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(30,79,194,0.15), rgba(201,168,76,0.1));
  z-index: -1;
}
.hcm-logo {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hcm-logo svg { width: 26px; height: 26px; }
.hcm-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.hcm-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hcm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hcm-stat {
  background: var(--off-white);
  padding: 14px;
  border-radius: 8px;
}
.hcm-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.hcm-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hfc-1 { top: -20px; right: -30px; }
.hfc-2 { bottom: -20px; left: -30px; }
.hfc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hfc-icon.green { background: rgba(37,211,102,0.12); }
.hfc-icon.gold { background: rgba(201,168,76,0.12); }
.hfc-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.hfc-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  width: 52px; height: 52px;
  background: rgba(30,79,194,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.trust-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   ABOUT PREVIEW / ABOUT SECTIONS
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.about-content .section-label { text-align: left; }
.about-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-points { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.about-point-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(30,79,194,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
}
.about-visual {
  position: relative;
}
.about-main-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-card-header {
  background: var(--navy);
  padding: 32px;
}
.about-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.about-card-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.about-card-body { padding: 28px 32px; }
.about-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.about-stat-row:last-child { border-bottom: none; }
.asr-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.asr-value { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.about-float {
  position: absolute;
  top: -24px; right: -24px;
  background: var(--gold);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.af-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.af-text { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(30,79,194,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: white;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Services page grid (6 items) */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card-lg {
  display: flex;
  gap: 24px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.scl-icon {
  width: 52px; height: 52px;
  background: rgba(30,79,194,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-card-lg:hover .scl-icon {
  background: var(--navy);
  color: white;
}
.scl-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.scl-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(30,79,194,0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.why-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-text p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.quote-mark {
  font-family: 'Lora', serif;
  font-size: 4rem;
  color: rgba(30,79,194,0.1);
  line-height: 0.6;
  margin-bottom: 16px;
  font-style: italic;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.av-blue { background: var(--navy); }
.av-teal { background: #0e8a7a; }
.av-indigo { background: #5e35b1; }
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(30,79,194,0.6) 0%, transparent 70%);
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: white;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: var(--navy);
}

/* ============================================
   PROCESS (Services page)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(15,37,87,0.25);
}
.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.mv-card.mission { background: var(--navy); }
.mv-card.vision { background: var(--off-white); border: 1px solid var(--gray-100); }
.mv-card::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  opacity: 0.07;
}
.mv-card.mission::before { background: white; }
.mv-card.vision::before { background: var(--navy); }
.mv-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.mv-card.mission .mv-label { color: rgba(255,255,255,0.5); }
.mv-card.vision .mv-label { color: var(--accent); }
.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.mv-card.mission h3 { color: white; }
.mv-card.vision h3 { color: var(--navy); }
.mv-card p {
  font-size: 0.92rem;
  line-height: 1.75;
}
.mv-card.mission p { color: rgba(255,255,255,0.7); }
.mv-card.vision p { color: var(--text-muted); }

/* Founder */
.founder-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: center;
}
.founder-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  text-align: center;
}
.founder-img {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-img-placeholder {
  width: 100%;
  aspect-ratio: 4/4.5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-img-placeholder svg { width: 96px; height: 96px; color: rgba(255,255,255,0.3); }
.founder-card-info { padding: 24px; }
.founder-card-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-card-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.founder-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.founder-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.founder-tag {
  background: rgba(30,79,194,0.08);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.value-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.vi-1 { background: rgba(30,79,194,0.08); }
.vi-2 { background: rgba(201,168,76,0.12); }
.vi-3 { background: rgba(14,138,122,0.1); }
.vi-4 { background: rgba(94,53,177,0.1); }
.value-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: white;
}
.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.contact-info-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-info strong {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cd-info span {
  font-size: 0.92rem;
  color: white;
  font-weight: 600;
}
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--off-white);
  outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: white;
}
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; }
.form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}
.form-success {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #1a7a3f;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 20px;
  display: none;
  align-items: center;
  gap: 10px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 10px 0 16px;
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-meta {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.legal-meta strong { color: var(--navy); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .about-preview { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-section { grid-template-columns: 260px 1fr; gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-6 { grid-template-columns: 1fr; }
  .service-card-lg { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: block; }
  .why-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-card { max-width: 320px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hfc-1, .hfc-2 { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hcm-stats { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  .about-float {
    top: 12px;
    right: 12px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .af-num {
    font-size: 1.4rem;
  }

  .af-text {
    font-size: 0.7rem;
  }

  .about-card-header {
    padding: 22px;
  }

  .about-card-body {
    padding: 20px 22px;
  }
}

@media (max-width: 480px) {
  .about-stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .asr-label {
    font-size: 0.8rem;
  }

  .asr-value {
    font-size: 0.9rem;
    word-break: break-word;
  }
}

.founder-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .founder-section {
    gap: 40px;
  }

  .founder-card-info {
    padding: 18px;
  }

  .founder-card-info h3 {
    font-size: 1rem;
  }

  .founder-card-info span {
    font-size: 0.78rem;
  }

  .founder-content h2 {
    font-size: 1.6rem;
  }

  .founder-content p {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .founder-tags {
    gap: 8px;
  }

  .founder-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    padding: 110px 0 55px;
  }

  .page-banner p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 28px 18px;
  }

  .value-card h3 {
    font-size: 0.9rem;
  }

  .value-card p {
    font-size: 0.8rem;
  }
}


.cd-info span {
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .contact-layout {
    gap: 40px;
  }

  .contact-info-card {
    padding: 40px 32px;
  }

  .contact-form-card {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .contact-info-card {
    padding: 34px 24px;
  }

  .contact-form-card {
    padding: 34px 24px;
  }

  .contact-detail {
    gap: 14px;
    margin-bottom: 22px;
  }

  .cd-icon {
    width: 40px;
    height: 40px;
  }

  .cd-info strong {
    font-size: 0.78rem;
  }

  .cd-info span {
    font-size: 0.88rem;
  }
}

/* Small screen fixes */
@media (max-width: 480px) {
  .contact-info-card {
    padding: 28px 18px;
  }

  .contact-form-card {
    padding: 28px 18px;
  }

  .contact-info-card h3,
  .contact-form-card h3 {
    font-size: 1.15rem;
  }

  .contact-info-card > p,
  .contact-form-card > p {
    font-size: 0.85rem;
  }

  .contact-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cd-icon {
    width: 44px;
    height: 44px;
  }

  .contact-info-card a {
    width: 100%;
    justify-content: center;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.88rem;
    padding: 11px 14px;
  }

  .btn {
    padding: 13px 20px;
    font-size: 0.88rem;
  }
}
/* ============================================
   HERO SUBTITLE
   ============================================ */
.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: -4px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 80px;   /* apni requirement ke hisaab se change karo */
  width: auto;
}







.wcu-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 80px;
    }
    .wcu-intro-content .section-label { text-align: left; display: inline-block; }
    .wcu-intro-content h2 {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.5px;
      margin-bottom: 20px;
      line-height: 1.25;
    }
    .wcu-intro-content p {
      font-size: 0.97rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .wcu-checklist {
      margin: 28px 0 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .wcu-check-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.93rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .wcu-check-icon {
      width: 22px; height: 22px;
      background: rgba(30,79,194,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--accent);
    }

    /* STATS CARD (right of intro) */
    .wcu-stats-card {
      background: white;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
    }
    .wcu-stats-header {
      background: var(--navy);
      padding: 32px;
    }
    .wcu-stats-header h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: white;
      margin-bottom: 6px;
    }
    .wcu-stats-header p {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.6);
    }
    .wcu-stats-body {
      padding: 28px 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .wcu-stat-box {
      background: var(--off-white);
      border-radius: var(--radius);
      padding: 20px 16px;
      text-align: center;
      border: 1px solid var(--gray-100);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .wcu-stat-box:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .wcu-stat-val {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.5px;
      line-height: 1;
      margin-bottom: 6px;
    }
    .wcu-stat-val span { color: var(--accent); }
    .wcu-stat-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .wcu-float-badge {
      position: absolute;
      top: -18px; right: -18px;
      background: var(--gold);
      color: white;
      padding: 18px 22px;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: var(--shadow-md);
    }
    .wcu-float-badge .af-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
    .wcu-float-badge .af-text { font-size: 0.72rem; font-weight: 600; opacity: 0.9; }

    /* THREE PILLARS */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .pillar-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
      overflow: hidden;
    }
    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--navy);
      border-radius: 0 0 4px 4px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }
    .pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .pillar-card:hover::before { transform: scaleX(1); }
    .pillar-icon {
      width: 60px; height: 60px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 1.6rem;
    }
    .pi-blue  { background: rgba(15,37,87,0.08); }
    .pi-gold  { background: rgba(201,168,76,0.12); }
    .pi-green { background: rgba(37,211,102,0.1); }
    .pillar-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 14px;
      letter-spacing: -0.2px;
    }
    .pillar-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .pillar-points {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .pillar-point {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      color: var(--gray-600);
      font-weight: 500;
    }
    .pillar-point svg { flex-shrink: 0; color: var(--accent); }

    /* PROCESS STRIP */
    .process-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .process-strip::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--gold));
      z-index: 0;
    }
    .ps-step {
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    .ps-num {
      width: 72px; height: 72px;
      background: var(--navy);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      font-weight: 800;
      margin: 0 auto 20px;
      border: 4px solid var(--off-white);
      box-shadow: var(--shadow-md);
      transition: background var(--transition), transform var(--transition);
    }
    .ps-step:hover .ps-num {
      background: var(--accent);
      transform: scale(1.08);
    }
    .ps-step h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .ps-step p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* GLOBAL CLIENTS BAND */
    .globe-band {
      background: var(--navy);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .globe-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(30,79,194,0.5) 0%, transparent 65%);
      pointer-events: none;
    }
    .globe-band .container { position: relative; }
    .globe-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 72px;
    }
    .globe-content .section-label {
      background: rgba(255,255,255,0.1);
      color: var(--gold);
      letter-spacing: 2px;
    }
    .globe-content h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: white;
      letter-spacing: -0.4px;
      margin-bottom: 18px;
      line-height: 1.25;
    }
    .globe-content p {
      font-size: 0.97rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.75;
      margin-bottom: 36px;
    }
    .globe-regions {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .globe-region {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 14px 18px;
      transition: background var(--transition);
    }
    .globe-region:hover { background: rgba(255,255,255,0.12); }
    .globe-region-flag { font-size: 1.5rem; flex-shrink: 0; }
    .globe-region-info strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 700;
      color: white;
    }
    .globe-region-info span {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
    }
    .globe-region-badge {
      margin-left: auto;
      background: rgba(201,168,76,0.2);
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
      letter-spacing: 0.5px;
    }
    /* Globe SVG visual */
    .globe-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .globe-svg-wrap {
      position: relative;
      width: 340px; height: 340px;
    }
    .globe-svg-wrap svg.globe-circle {
      width: 100%; height: 100%;
      opacity: 0.18;
    }
    .globe-dots {
      position: absolute;
      inset: 0;
    }
    .globe-dot {
      position: absolute;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(201,168,76,0.25);
      animation: glow 2.5s ease-in-out infinite;
    }
    .globe-dot:nth-child(2) { animation-delay: 0.5s; }
    .globe-dot:nth-child(3) { animation-delay: 1s; }
    .globe-dot:nth-child(4) { animation-delay: 1.5s; }
    .globe-dot:nth-child(5) { animation-delay: 2s; }
    @keyframes glow {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.5); }
    }
    .globe-center-card {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: var(--gold);
      color: white;
      padding: 20px 28px;
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: 0 12px 40px rgba(201,168,76,0.4);
    }
    .gcc-num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
    .gcc-text { font-size: 0.8rem; font-weight: 700; opacity: 0.9; letter-spacing: 0.5px; }

    /* DIFFERENTIATORS */
    .diff-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .diff-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 32px;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-sm);
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .diff-icon-wrap {
      width: 52px; height: 52px;
      background: rgba(15,37,87,0.07);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.4rem;
    }
    .diff-body h4 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .diff-body p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .wcu-intro { grid-template-columns: 1fr; gap: 48px; }
      .pillars-grid { grid-template-columns: 1fr 1fr; }
      .process-strip { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
      .process-strip::before { display: none; }
      .globe-inner { grid-template-columns: 1fr; gap: 48px; }
      .globe-visual { display: none; }
      .diff-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .pillars-grid { grid-template-columns: 1fr; }
      .process-strip { grid-template-columns: 1fr; }
      .diff-grid { grid-template-columns: 1fr; }
      .wcu-stats-body { grid-template-columns: 1fr 1fr; }
      .wcu-float-badge { top: 10px; right: 10px; }
    }
    @media (max-width: 480px) {
      .wcu-stats-body { grid-template-columns: 1fr; }
      .diff-card { flex-direction: column; }
    }