
/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0B1C3D;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
:root {
  --navy:   #0B1C3D;
  --deep:   #0D2350;
  --mid:    #1A3A6B;
  --accent: #2563EB;
  --bright: #3B82F6;
  --gold:   #F59E0B;
  --nav-h:  72px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ═══════════════════════════════════════
   SHARED SECTION UTILITIES
═══════════════════════════════════════ */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-tag .tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.section-heading { font-family: 'Sora', sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }

.btn-solid-accent {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; background: var(--accent); color: #fff;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(37,99,235,0.35); cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.btn-solid-accent:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.45); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; background: transparent; color: #fff;
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color 0.25s, background 0.25s, transform 0.2s; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; background: transparent; color: var(--navy);
  font-size: 0.9rem; font-weight: 600; text-decoration: none; border: 1.5px solid var(--navy);
  transition: background 0.25s, color 0.25s, transform 0.2s; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-solid-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px; background: #fff; color: var(--navy);
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-solid-white:hover { background: #f0f4ff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.arr-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.2s; }
a:hover .arr-icon, button:hover .arr-icon { transform: translateX(3px); }

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.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; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
#navbar.scrolled {
  background: rgba(11,28,61,0.88); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px); box-shadow: 0 1px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.01em; color: #fff; text-decoration: none; white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 450; color: rgba(255,255,255,0.80);
  text-decoration: none; padding: 6px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
/* FIX 5: Active nav link state for scroll-spy */
.nav-links a.active {
  color: #fff; background: rgba(255,255,255,0.11);
}
.btn-nav {
  display: inline-flex; align-items: center; padding: 9px 20px; border-radius: 8px;
  background: #fff; color: var(--navy) !important; font-size: 0.875rem !important;
  font-weight: 600 !important; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.btn-nav:hover { background: #f0f4ff !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.22) !important; color: var(--navy) !important; }
.btn-nav.active { background: #f0f4ff !important; }
#hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  background: transparent; border: none; padding: 4px; border-radius: 6px;
  transition: background 0.2s;
}
#hamburger:hover { background: rgba(255,255,255,0.1); }
.bar {
  display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center;
}
#hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* FIX 6: Mobile menu outside-click overlay */
#menu-overlay {
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(0,0,0,0.35); z-index: 98;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#menu-overlay.open { opacity: 1; pointer-events: all; }
#mobile-menu {
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(11,28,61,0.97); backdrop-filter: blur(24px);
  z-index: 99; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu a {
  font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 600;
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 12px 28px; border-radius: 10px; transition: color 0.2s, background 0.2s;
}
#mobile-menu a:hover, #mobile-menu a.active { color: #fff; background: rgba(255,255,255,0.07); }
#mobile-menu .btn-mob-cta {
  margin-top: 24px; padding: 14px 40px; border-radius: 50px;
  background: var(--accent); color: #fff; font-size: 1rem; font-weight: 600;
}

/* ═══════════════════════════════════════
   TOAST NOTIFICATION
═══════════════════════════════════════ */
/* FIX 14: Coming-soon toast for placeholder links */
.toast {
  position: fixed; bottom: 96px; right: 28px; z-index: 400;
  background: rgba(7,14,31,0.96); color: #fff;
  padding: 11px 22px; border-radius: 50px;
  font-size: 0.84rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transform: translateY(12px); opacity: 0;
  transition: opacity 0.25s, transform 0.25s; pointer-events: none;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-icon { width: 16px; height: 16px; color: #60a5fa; flex-shrink: 0; }

/* ═══════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════ */
/* FIX 7: WhatsApp floating action button */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.wa-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-fab svg { color: #fff; }
.wa-fab-label {
  position: absolute; right: 66px;
  background: rgba(7,14,31,0.9); color: #fff;
  font-size: 0.75rem; font-weight: 600;
  padding: 6px 12px; border-radius: 50px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s; backdrop-filter: blur(8px);
}
.wa-fab:hover .wa-fab-label { opacity: 1; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80&fit=crop');
  background-size: cover; background-position: center 30%;
  transform: scale(1.04); transition: transform 8s ease-out;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg,rgba(11,28,61,0.97) 0%,rgba(13,35,80,0.93) 35%,rgba(18,46,95,0.82) 58%,rgba(26,58,107,0.55) 80%,rgba(26,58,107,0.30) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
  z-index: 2; opacity: 0.4; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  padding-top: calc(var(--nav-h) + 48px); padding-bottom: 80px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.025em;
  color: #fff; max-width: 700px; margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem); font-weight: 400; line-height: 1.65;
  color: rgba(255,255,255,0.70); max-width: 540px; margin-bottom: 40px; letter-spacing: 0.01em;
}
.cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 56px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 50px; background: #fff; color: var(--navy);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em; text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
.btn-primary:hover { background: #f0f4ff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.32); }
.btn-primary .btn-icon {
  color: #f0f4ff; display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: var(--navy);
  flex-shrink: 0; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover .btn-icon { transform: translateX(2px); background: var(--accent); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 50px; background: transparent; color: #fff;
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-secondary .ext-icon { width: 18px; height: 18px; opacity: 0.8; transition: opacity 0.2s, transform 0.2s; }
.btn-secondary:hover .ext-icon { opacity: 1; transform: translate(2px,-2px); }
.trust-bar { display: flex; align-items: center; gap: 16px; }
.avatar-stack { display: flex; align-items: center; }
/* FIX 9: Self-hosted initials avatars (no randomuser.me dependency) */
.avatar-init {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2.5px solid rgba(11,28,61,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.92); font-family: 'Sora', sans-serif;
  margin-left: -10px; flex-shrink: 0; transition: transform 0.2s;
}
.avatar-init:first-child { margin-left: 0; }
.avatar-init:hover { transform: scale(1.08) translateY(-2px); z-index: 10; }
.av1 { background: #1e40af; }
.av2 { background: #065f46; }
.av3 { background: #92400e; }
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.stars { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 0.9rem; }
.trust-label { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.3; }
.trust-label strong { font-weight: 600; color: rgba(255,255,255,0.88); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.72s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.anim-2 { animation: fadeUp 0.72s cubic-bezier(0.22,1,0.36,1) 0.30s both; }
.anim-3 { animation: fadeUp 0.72s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.anim-4 { animation: fadeUp 0.72s cubic-bezier(0.22,1,0.36,1) 0.60s both; }
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center;
  gap: 6px; opacity: 0.45; cursor: pointer; transition: opacity 0.2s;
}
.scroll-cue:hover { opacity: 0.75; }
.scroll-cue span { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; }
.scroll-line {
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 0.9; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════
   STATS / COUNTER SECTION
═══════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, #0a1628 0%, #0d2045 50%, #0f2655 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#stats::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 48px 24px; position: relative; text-align: center;
  transition: background 0.3s;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.3s, border-color 0.3s;
}
.stat-item:hover .stat-icon-wrap { background: rgba(37,99,235,0.25); border-color: rgba(37,99,235,0.5); }
.stat-icon-wrap svg { color: #60a5fa; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix {
  font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
#about { background: #ffffff; padding: 100px 0; color: var(--navy); }
.about-eyebrow { color: var(--accent); }
.about-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.1; color: var(--navy); max-width: 600px; margin-bottom: 28px;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text-col { display: flex; flex-direction: column; }
.about-body { font-size: 1rem; line-height: 1.8; color: #4b5563; margin-bottom: 20px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 36px; }
.about-pillar {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px; border-radius: 12px;
  background: #f8faff; border: 1px solid #e5edff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-pillar:hover { border-color: #bfccff; box-shadow: 0 4px 16px rgba(37,99,235,0.08); }
.pillar-icon {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(37,99,235,0.1);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { color: var(--accent); }
.pillar-text h4 { font-family: 'Sora', sans-serif; font-size: 0.825rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.pillar-text p { font-size: 0.78rem; color: #6b7280; line-height: 1.4; }
.about-img-col { position: relative; }
.about-img-main {
  width: 100%; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,28,61,0.14); aspect-ratio: 4/5; position: relative;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.03); }
.about-float-card {
  position: absolute; bottom: -24px; left: -28px;
  background: #fff; border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(11,28,61,0.14);
  display: flex; align-items: center; gap: 16px; min-width: 220px;
  border: 1px solid rgba(37,99,235,0.1); z-index: 2;
}
.float-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-card-icon svg { color: #fff; }
.float-card-text .fct-num { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.float-card-text .fct-label { font-size: 0.75rem; color: #6b7280; font-weight: 500; margin-top: 2px; }
.about-img-col::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 70%; height: 70%;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.02));
  border-radius: 20px; z-index: -1; border: 1px solid rgba(37,99,235,0.12);
}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
#services {
  background: linear-gradient(160deg, #091529 0%, #0d2045 40%, #0f2655 70%, #111c3a 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
#services::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.09) 0%, transparent 70%); pointer-events: none;
}
.services-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.services-eyebrow { color: #60a5fa; }
.services-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.025em; color: #fff; margin-bottom: 16px;
}
.services-sub { font-size: 1rem; color: rgba(255,255,255,0.58); line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px; display: flex; flex-direction: column;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.service-card:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(37,99,235,0.15);
}
.service-card:hover::after { opacity: 1; }
.service-num { font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 700; color: rgba(37,99,235,0.6); letter-spacing: 0.1em; margin-bottom: 20px; }
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: background 0.3s;
}
.service-card:hover .svc-icon-wrap { background: rgba(37,99,235,0.22); }
.svc-icon-wrap svg { color: #60a5fa; }
.svc-title { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.svc-desc { font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.7; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 0.85rem; font-weight: 600;
  color: #60a5fa; text-decoration: none; background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif; padding: 0;
  transition: gap 0.2s, color 0.2s;
}
.svc-link:hover { gap: 12px; color: #93c5fd; }
.services-cta { text-align: center; }

/* ═══════════════════════════════════════
   ACADEMY SECTION
═══════════════════════════════════════ */
#academy { background: #f8faff; padding: 100px 0; color: var(--navy); }
.academy-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 16px; flex-wrap: wrap; gap: 24px;
}
.academy-heading { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; color: var(--navy); }
.academy-sub { font-size: 1rem; color: #6b7280; max-width: 460px; margin-top: 8px; line-height: 1.6; }
.academy-eyebrow { color: var(--accent); }
/* FIX 13: Currency toggle for course prices */
.currency-row { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.currency-note { font-size: 0.75rem; color: #9ca3af; }
.currency-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 50px;
  border: 1.5px solid var(--accent); background: transparent; color: var(--accent);
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s, color 0.2s;
}
.currency-btn:hover { background: var(--accent); color: #fff; }
.courses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.course-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #e9eef8; box-shadow: 0 2px 16px rgba(11,28,61,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(11,28,61,0.12); border-color: #c7d7ff; }
.course-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.course-card:hover .course-img img { transform: scale(1.07); }
.course-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-new { background: rgba(37,99,235,0.9); color: #fff; }
.badge-pop { background: rgba(245,158,11,0.9); color: #fff; }
.badge-adv { background: rgba(16,185,129,0.9); color: #fff; }
.badge-pro { background: rgba(139,92,246,0.9); color: #fff; }
.course-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.course-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.course-title { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.course-meta { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: #9ca3af; margin-bottom: 14px; }
.course-meta span { display: flex; align-items: center; gap: 4px; }
.course-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid #f0f4ff; }
.course-price { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 800; color: var(--navy); }
/* FIX 15: Enrol Now links now pre-fill the contact form */
.course-enroll {
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; padding: 0;
  transition: gap 0.2s;
}
.course-enroll:hover { gap: 9px; }
.academy-cta { text-align: center; }

/* ═══════════════════════════════════════
   PROJECTS SECTION
═══════════════════════════════════════ */
#projects {
  background: linear-gradient(155deg, #071020 0%, #0b1c3d 35%, #0f2655 65%, #0a1935 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
#projects::after {
  content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.07) 0%, transparent 70%); pointer-events: none;
}
.projects-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.projects-eyebrow { color: #60a5fa; }
.projects-heading { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin-bottom: 16px; }
.projects-sub { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.project-card {
  border-radius: 20px; overflow: hidden; position: relative;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s; cursor: default;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.4); border-color: rgba(37,99,235,0.35); }
.project-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.project-card:hover .project-img img { transform: scale(1.08); }
.project-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(7,16,32,0.85) 100%); }
.project-sector { position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; background: rgba(37,99,235,0.75); color: #fff; backdrop-filter: blur(6px); }
.project-body { padding: 24px; }
.project-title { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.project-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 18px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tag { padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; background: rgba(37,99,235,0.12); color: #93c5fd; border: 1px solid rgba(37,99,235,0.25); }
.projects-cta { text-align: center; }

/* ═══════════════════════════════════════
   CLIENTS MARQUEE
═══════════════════════════════════════ */
#clients { background: #fff; padding: 64px 0; border-top: 1px solid #f0f4ff; border-bottom: 1px solid #f0f4ff; overflow: hidden; }
.clients-label { text-align: center; margin-bottom: 36px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9ca3af; }
.marquee-track { display: flex; overflow: hidden; user-select: none; position: relative; }
.marquee-track::before, .marquee-track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee-track::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.marquee-track::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.marquee-inner { display: flex; align-items: center; gap: 56px; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* FIX 12: Improved client logo treatment */
.client-logo {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  height: 40px; min-width: 120px; flex-shrink: 0;
  opacity: 0.38; transition: opacity 0.3s;
}
.client-logo:hover { opacity: 0.78; }
.client-logo-mark {
  width: 22px; height: 22px; border-radius: 5px;
  background: #374151; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.client-logo-mark svg { width: 12px; height: 12px; color: #fff; }
.client-logo-text {
  font-family: 'Sora', sans-serif; font-size: 0.875rem; font-weight: 700;
  color: #1f2937; letter-spacing: -0.02em; white-space: nowrap;
}

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════ */
#testimonials {
  background: linear-gradient(150deg, #091529 0%, #0d2045 50%, #0f2655 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
#testimonials::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(37,99,235,0.4), transparent);
}
.testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.testi-eyebrow { color: #60a5fa; }
.testi-heading { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin-bottom: 14px; }
.testi-sub { font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.65; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 32px; display: flex; flex-direction: column;
  transition: background 0.3s, border-color 0.3s, transform 0.3s; position: relative;
}
.testi-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(37,99,235,0.35); transform: translateY(-4px); }
.testi-quote-icon { font-size: 4rem; line-height: 1; color: rgba(37,99,235,0.3); font-family: Georgia, serif; margin-bottom: 12px; margin-top: -8px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-star { color: var(--gold); font-size: 0.85rem; }
.testi-star.empty { color: rgba(255,255,255,0.2); }
.testi-text { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.72); flex: 1; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
/* FIX 9: Initials avatars for testimonials */
.testi-avatar-init {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 700;
  border: 2px solid rgba(37,99,235,0.4);
}
.tavi1 { background: rgba(37,99,235,0.2); color: #93c5fd; }
.tavi2 { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.tavi3 { background: rgba(245,158,11,0.15); color: #fcd34d; }
.testi-name { font-family: 'Sora', sans-serif; font-size: 0.875rem; font-weight: 700; color: #fff; }
.testi-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
#contact { background: #fff; padding: 100px 0; color: var(--navy); position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0ff 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%); pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.contact-eyebrow { color: var(--accent); }
.contact-heading { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 20px; }
.contact-sub { font-size: 1rem; color: #6b7280; line-height: 1.75; margin-bottom: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(37,99,235,0.09);
  border: 1px solid rgba(37,99,235,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { color: var(--accent); }
.ci-label { font-size: 0.75rem; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.08em; }
.ci-value { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 16px 64px rgba(11,28,61,0.12); border: 1px solid #e5edff;
  transition: box-shadow 0.3s;
}
.form-heading { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: #374151; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px; border-radius: 10px; border: 1.5px solid #dde5f7;
  background: #f8faff; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  color: var(--navy); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-input::placeholder, .form-textarea::placeholder { color: #9ca3af; }
.form-submit {
  width: 100%; padding: 15px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: #fff; font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 24px rgba(37,99,235,0.3);
}
.form-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.4); }
.form-submit:disabled { opacity: 0.8; cursor: not-allowed; transform: none; }
/* FIX 17: Button spinner for async form submission */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: #070e1f; padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-brand-name { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.footer-social:hover { background: rgba(37,99,235,0.3); border-color: rgba(37,99,235,0.4); }
.footer-social svg { color: rgba(255,255,255,0.6); width: 16px; height: 16px; }
.footer-col-title { font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-links button {
  background: none; border: none; padding: 0; cursor: pointer;
  font-size: 0.875rem; color: rgba(255,255,255,0.45); font-family: 'DM Sans', sans-serif;
  text-align: left; transition: color 0.2s;
}
.footer-links button:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-float-card { left: -10px; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  #hamburger { display: flex; }
  .hero-headline { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .cta-group { flex-direction: column; align-items: flex-start; }
  /* FIX 8: Mobile CTAs no longer stretch icon to far right */
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-col { order: -1; display: flex; flex-direction: column; }
  /* FIX 11: Float card visible on mobile, displayed inline below image */
  .about-float-card {
    position: relative; bottom: auto; left: auto;
    width: 100%; min-width: unset; margin-top: 20px;
  }
  .about-img-col::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  #contact::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .academy-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .wa-fab { bottom: 20px; right: 20px; }
  .toast { right: 20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   SERVICE OVERVIEW + DETAIL PAGES
═══════════════════════════════════════ */
.page-shell { background: #fff; color: var(--navy); }
.page-hero {
  position: relative; min-height: 68vh; padding: calc(var(--nav-h) + 96px) 0 96px;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(145deg, #071020 0%, #0b1c3d 45%, #102a5e 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(59,130,246,0.22), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(245,158,11,0.14), transparent 30%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .55; pointer-events:none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { display:flex; flex-wrap:wrap; align-items:center; gap: 8px; margin-bottom: 26px; font-size: .78rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.86); text-decoration: none; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb-sep { opacity: .45; }
.page-kicker { display:inline-flex; align-items:center; gap:10px; color:#93c5fd; text-transform:uppercase; letter-spacing:.13em; font-size:.75rem; font-weight:700; margin-bottom: 18px; }
.page-kicker::before { content:''; width:7px; height:7px; border-radius:999px; background:#60a5fa; box-shadow:0 0 0 6px rgba(96,165,250,.13); }
.page-title { font-family:'Sora', sans-serif; font-size: clamp(2.35rem, 5vw, 4.4rem); line-height:1.05; letter-spacing:-.045em; color:#fff; max-width:880px; margin-bottom: 22px; }
.page-subtitle { max-width: 720px; color:rgba(255,255,255,.68); font-size: clamp(1rem, 1.5vw, 1.14rem); line-height:1.75; }
.page-hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:38px; }

.services-overview { background:#fff; padding: 96px 0; }
.service-index-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-index-card {
  position:relative; display:flex; flex-direction:column; min-height: 360px; padding:34px;
  border-radius:24px; background:#f8faff; border:1px solid #e5edff; overflow:hidden;
  text-decoration:none; color:var(--navy); transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.service-index-card::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 8%, rgba(37,99,235,.10), transparent 35%); opacity:0; transition: opacity .3s; }
.service-index-card:hover { transform: translateY(-6px); box-shadow:0 24px 58px rgba(11,28,61,.12); border-color:#c8d8ff; background:#fff; }
.service-index-card:hover::before { opacity:1; }
.service-index-card > * { position:relative; z-index:1; }
.service-index-top { display:flex; justify-content:space-between; align-items:flex-start; gap:24px; margin-bottom: 32px; }
.service-index-num { font-family:'Sora', sans-serif; font-weight:800; color:#bfdbfe; font-size:2.2rem; letter-spacing:-.04em; }
.service-index-icon { width:58px; height:58px; border-radius:18px; background:rgba(37,99,235,.1); border:1px solid rgba(37,99,235,.18); display:flex; align-items:center; justify-content:center; color:var(--accent); }
.service-index-card h2 { font-family:'Sora', sans-serif; font-size:1.45rem; line-height:1.2; margin-bottom:14px; }
.service-index-card p { color:#5b6575; line-height:1.75; font-size:.95rem; flex:1; }
.service-index-meta { display:flex; flex-wrap:wrap; gap:8px; margin:24px 0 26px; }
.service-index-meta span { padding:6px 11px; border-radius:999px; background:#fff; border:1px solid #e5edff; color:#49607f; font-size:.74rem; font-weight:700; }
.service-card-link { display:inline-flex; align-items:center; gap:8px; color:var(--accent); font-size:.9rem; font-weight:800; }
.service-index-card:hover .service-card-link { gap:12px; }

.service-section { padding: 92px 0; background:#fff; color:var(--navy); }
.service-section.alt { background:#f8faff; }
.split-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:70px; align-items:start; }
.sticky-intro { position: sticky; top: calc(var(--nav-h) + 28px); }
.service-eyebrow-dark { color: var(--accent); }
.service-section h2 { font-family:'Sora', sans-serif; font-size:clamp(1.8rem, 3vw, 2.65rem); letter-spacing:-.035em; line-height:1.12; margin-bottom:18px; }
.service-section .lead { color:#5b6575; line-height:1.8; font-size:1rem; }
.bullet-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }
.value-card { background:#fff; border:1px solid #e5edff; border-radius:18px; padding:22px; box-shadow:0 4px 24px rgba(11,28,61,.04); }
.alt .value-card { background:#fff; }
.value-card h3 { font-family:'Sora', sans-serif; font-size:1rem; margin-bottom:8px; color:var(--navy); }
.value-card p { color:#667085; line-height:1.65; font-size:.9rem; }
.deliverable-list { list-style:none; display:grid; gap:12px; }
.deliverable-list li { display:flex; align-items:flex-start; gap:12px; background:#fff; border:1px solid #e5edff; border-radius:14px; padding:16px; color:#516174; line-height:1.55; }
.deliverable-list li::before { content:'✓'; flex:0 0 24px; width:24px; height:24px; border-radius:999px; background:rgba(37,99,235,.1); color:var(--accent); display:flex; align-items:center; justify-content:center; font-weight:800; }
.process-steps { display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
.process-step { padding:24px; border-radius:20px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); }
.process-step strong { display:block; font-family:'Sora', sans-serif; color:#93c5fd; font-size:1.4rem; margin-bottom:14px; }
.process-step h3 { color:#fff; font-family:'Sora', sans-serif; font-size:1rem; margin-bottom:8px; }
.process-step p { color:rgba(255,255,255,.58); line-height:1.65; font-size:.88rem; }
.dark-band { background:linear-gradient(155deg, #071020 0%, #0b1c3d 45%, #0f2655 100%); padding:92px 0; position:relative; overflow:hidden; }
.dark-band::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 25% 30%, rgba(37,99,235,.13), transparent 34%); pointer-events:none; }
.dark-band .section-wrap { position:relative; z-index:1; }
.dark-band h2 { color:#fff; }
.dark-band .lead { color:rgba(255,255,255,.6); }
.related-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin-top:28px; }
.related-card { padding:24px; border-radius:18px; background:#fff; border:1px solid #e5edff; text-decoration:none; color:var(--navy); transition: transform .25s, box-shadow .25s; }
.related-card:hover { transform:translateY(-4px); box-shadow:0 18px 44px rgba(11,28,61,.1); }
.related-card h3 { font-family:'Sora', sans-serif; margin-bottom:8px; font-size:1rem; }
.related-card p { color:#667085; font-size:.88rem; line-height:1.6; }
.cta-band { background:#0b1c3d; padding:72px 0; color:#fff; }
.cta-panel { display:flex; align-items:center; justify-content:space-between; gap:28px; padding:36px; border-radius:26px; background:linear-gradient(135deg, rgba(37,99,235,.24), rgba(255,255,255,.05)); border:1px solid rgba(255,255,255,.12); }
.cta-panel h2 { font-family:'Sora', sans-serif; font-size:clamp(1.6rem, 3vw, 2.3rem); line-height:1.12; margin-bottom:8px; }
.cta-panel p { color:rgba(255,255,255,.64); line-height:1.65; max-width:660px; }
.service-page-contact #contact { padding-top: 86px; }
.service-mini-stat-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-top:28px; }
.service-mini-stat { padding:22px; border-radius:18px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); }
.service-mini-stat b { display:block; color:#fff; font-family:'Sora', sans-serif; font-size:1.55rem; margin-bottom:4px; }
.service-mini-stat span { color:rgba(255,255,255,.56); font-size:.82rem; line-height:1.45; }
@media (max-width: 920px) {
  .service-index-grid, .split-grid, .bullet-grid, .process-steps, .related-grid { grid-template-columns:1fr; }
  .sticky-intro { position: static; }
  .cta-panel { flex-direction:column; align-items:flex-start; }
  .service-mini-stat-grid { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  .page-hero { min-height:auto; padding: calc(var(--nav-h) + 64px) 0 72px; }
  .page-hero-actions .btn-solid-white, .page-hero-actions .btn-outline-white, .cta-panel .btn-solid-white, .cta-panel .btn-outline-white { width:100%; justify-content:center; }
  .service-index-card { padding:26px; }
  .service-index-top { margin-bottom:22px; }
}


/* ═══════════════════════════════════════
   ABOUT DETAIL PAGE
═══════════════════════════════════════ */
.about-intro { background:#fff; color:var(--navy); padding:96px 0; }
.about-story-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; }
.about-story-card { background:#f8faff; border:1px solid #e5edff; border-radius:24px; padding:34px; box-shadow:0 14px 48px rgba(11,28,61,.08); }
.about-story-card h3 { font-family:'Sora', sans-serif; font-size:1.35rem; margin-bottom:14px; color:var(--navy); }
.about-story-card p { color:#667085; line-height:1.78; margin-bottom:16px; }
.about-mini-metrics { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:24px; }
.about-mini-metric { background:#fff; border:1px solid #e5edff; border-radius:16px; padding:20px; }
.about-mini-metric strong { display:block; font-family:'Sora', sans-serif; font-size:1.75rem; color:var(--accent); line-height:1; margin-bottom:7px; }
.about-mini-metric span { color:#667085; font-size:.82rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.about-principles { background:#f8faff; color:var(--navy); padding:92px 0; }
.principle-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:42px; }
.principle-card { background:#fff; border:1px solid #e5edff; border-radius:20px; padding:26px; box-shadow:0 4px 24px rgba(11,28,61,.05); }
.principle-card .num { font-family:'Sora', sans-serif; font-weight:800; color:#bfdbfe; font-size:2rem; line-height:1; margin-bottom:22px; }
.principle-card h3 { font-family:'Sora', sans-serif; color:var(--navy); font-size:1.05rem; margin-bottom:10px; }
.principle-card p { color:#667085; line-height:1.7; font-size:.92rem; }
.founder-section { background:#fff; color:var(--navy); padding:96px 0; }
.founder-panel { display:grid; grid-template-columns:.8fr 1.2fr; gap:52px; align-items:center; background:#f8faff; border:1px solid #e5edff; border-radius:28px; padding:38px; overflow:hidden; }
.founder-portrait { min-height:420px; border-radius:22px; background:linear-gradient(145deg,rgba(11,28,61,.92),rgba(37,99,235,.70)), url('../img/philippp.png') center/cover; position:relative; box-shadow:0 24px 54px rgba(11,28,61,.20); }
.founder-badge { position:absolute; left:22px; bottom:22px; right:22px; background:rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.7); backdrop-filter:blur(16px); border-radius:18px; padding:18px; }
.founder-badge strong { font-family:'Sora', sans-serif; color:var(--navy); display:block; margin-bottom:4px; }
.founder-badge span { color:#667085; font-size:.86rem; }
.founder-copy h2 { font-family:'Sora', sans-serif; font-size:clamp(1.9rem,3vw,2.65rem); line-height:1.1; letter-spacing:-.025em; margin-bottom:18px; }
.founder-copy p { color:#667085; line-height:1.78; margin-bottom:18px; }
.credential-grid { display:flex; flex-wrap:wrap; gap:9px; margin-top:24px; }
.credential-grid span { background:#fff; color:#49607f; border:1px solid #e5edff; border-radius:999px; padding:7px 12px; font-size:.78rem; font-weight:700; }
.team-model { background:linear-gradient(155deg,#071020 0%,#0b1c3d 45%,#0f2655 100%); color:#fff; padding:92px 0; }
.team-model .about-body { color:rgba(255,255,255,.65); }
.team-card-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:42px; }
.team-role-card { background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.10); border-radius:20px; padding:24px; }
.team-role-card h3 { font-family:'Sora', sans-serif; font-size:1rem; margin-bottom:10px; color:#fff; }
.team-role-card p { color:rgba(255,255,255,.62); font-size:.88rem; line-height:1.65; }
.about-cta-note { color:rgba(255,255,255,.65); line-height:1.7; max-width:620px; }
@media (max-width: 1024px) { .principle-grid, .team-card-grid { grid-template-columns:repeat(2,1fr); } .founder-panel, .about-story-grid { grid-template-columns:1fr; } }
@media (max-width: 640px) { .principle-grid, .team-card-grid, .about-mini-metrics { grid-template-columns:1fr; } .founder-panel { padding:22px; } .founder-portrait { min-height:340px; } }
