:root {
  --royal: #02066F;
  --royal-dark: #010450;
  --royal-mid: #0510A8;
  --royal-light: #1A2FD4;
  --royal-pale: #E8EAFF;
  --royal-ghost: #F0F2FF;
  --gold: #C8A84B;
  --gold-light: #E8C96A;
  --white: #FFFFFF;
  --gray-50: #F7F8FC;
  --gray-100: #EEF0F8;
  --gray-200: #D8DCF0;
  --gray-400: #8A90B8;
  --gray-600: #4A5070;
  --text-dark: #0A0D2E;
  --text-body: #2C3060;
  --text-muted: #6B72A0;
  --font: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(2,6,111,0.06);
  --shadow-md: 0 8px 32px rgba(2,6,111,0.10);
  --shadow-lg: 0 24px 64px rgba(2,6,111,0.14);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ LOADER ═══ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out-expo);
}

#loader.out {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderFadeUp 0.6s var(--ease-out-expo) 0.2s forwards;
}

.loader-logo {
  font-size: 40px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
}

.loader-logo span {
  color: var(--gold);
}

.loader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  width: 0;
  animation: loaderProgress 1.2s var(--ease-out-quart) 0.3s forwards;
}

@keyframes loaderFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderProgress {
  to {
    width: 100%;
  }
}

/* ═══ CURSOR ═══ */
#cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--royal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(2, 6, 111, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), border-color 0.25s, border-width 0.25s;
}

#cursor-ring.hov {
  width: 60px;
  height: 60px;
  border-color: var(--royal);
  border-width: 1px;
}

#cursor-ring.click {
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-width: 2px;
}

/* Hide cursor on touch screens and mobile screens */
@media (pointer: coarse), (max-width: 1024px) {
  #cursor, #cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto !important;
  }
}

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transform: translateY(-80px);
  animation: navSlide 0.8s var(--ease-out-expo) 1.5s forwards;
}

@keyframes navSlide {
  to {
    transform: translateY(0);
  }
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-logo:hover .logo-mark-svg {
  transform: scale(1.08) rotate(5deg);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--royal);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  transform: translateY(-80px);
  animation: navSlide 0.8s var(--ease-out-expo) 1.6s forwards;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease-out-expo);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--royal);
  transition: right 0.35s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--royal);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  background: var(--royal) !important;
  color: white !important;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), background 0.4s var(--ease-out-expo) !important;
  box-shadow: 0 4px 16px rgba(2, 6, 111, 0.2);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(2, 6, 111, 0.3) !important;
  background: var(--royal-mid) !important;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Animated canvas background covering entire viewport */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(2, 6, 111, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(2, 6, 111, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(2, 6, 111, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.06) 0%, transparent 70%);
  bottom: -100px;
  right: 15%;
  animation: orbFloat 11s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.04);
  }
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

/* Text splitting animation */
.split-word {
  display: inline-block;
  overflow: hidden;
}

.split-word-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: wordReveal 0.85s var(--ease-out-expo) forwards;
}

@keyframes wordReveal {
  to {
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--royal-ghost);
  border: 1px solid var(--royal-pale);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out-expo) 1.7s forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--royal);
  border-radius: 50%;
  animation: badgePulse 2.5s ease infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(2, 6, 111, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(2, 6, 111, 0);
  }
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--royal);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-h1 {
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.5px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.h1-line {
  overflow: hidden;
  display: block;
}

.h1-line-inner {
  display: block;
  transform: translateY(100%);
}

.h1-line-inner.animate {
  animation: lineReveal 0.9s var(--ease-out-expo) forwards;
}

@keyframes lineReveal {
  to {
    transform: translateY(0);
  }
}

.hero-h1 em {
  font-style: normal;
  color: var(--royal);
  position: relative;
  display: inline-block;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  animation: underlineGrow 0.7s var(--ease-out-expo) 2.8s forwards;
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 2.5s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 2.7s forwards;
}

/* Magnetic button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--royal);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(2, 6, 111, 0.25);
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.15s var(--ease-out-expo);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out-expo);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(2, 6, 111, 0.35);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: ripple 0.6s ease forwards;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-arrow {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: border-color 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo), background 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
  border-color: var(--royal);
  color: var(--royal);
  background: var(--royal-ghost);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 2.9s forwards;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--royal);
  letter-spacing: -1.5px;
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.stat-div {
  width: 1px;
  height: 44px;
  background: var(--gray-200);
}

/* Counter animation */
.count-up {
  display: inline-block;
}

/* Hero right card */
.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  z-index: 1;
  opacity: 0;
  animation: heroCardIn 1.2s var(--ease-out-expo) 2s forwards;
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(-46%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.hero-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.card-live {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #E8F8F0;
  border-radius: 100px;
  padding: 4px 10px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #1A7A4A;
  border-radius: 50%;
  animation: livePulse 1.8s ease infinite;
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.card-live span {
  font-size: 11px;
  font-weight: 700;
  color: #1A7A4A;
}

.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border-radius: 10px;
  background: var(--gray-50);
  transition: background 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  cursor: default;
}

.svc-row:hover {
  background: var(--royal-ghost);
  transform: translateX(3px);
}

.svc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-ico {
  width: 32px;
  height: 32px;
  background: var(--royal-ghost);
  color: var(--royal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.svc-row:hover .svc-ico {
  background: var(--royal);
  color: white;
}

.svc-ico svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.svc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.svc-bar-bg {
  flex: 1;
  max-width: 90px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.svc-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--royal), var(--royal-light));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s var(--ease-out-expo);
}

.card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatars {
  display: flex;
}

.av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: white;
  margin-left: -7px;
}

.av:first-child {
  margin-left: 0;
}

.av-1 {
  background: var(--royal);
}

.av-2 {
  background: var(--gold);
}

.av-3 {
  background: var(--royal-light);
}

.card-foot-text {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Floating chips */
.chip {
  position: absolute;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
}

.chip-1 {
  top: -18px;
  left: -44px;
  animation: chipFloat 4s ease-in-out infinite;
}

.chip-2 {
  bottom: -16px;
  right: -28px;
  animation: chipFloat 5.5s ease-in-out infinite 1s;
}

@keyframes chipFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.chip-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

.chip-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--royal);
  letter-spacing: -0.5px;
}

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

/* ═══ MARQUEE TICKER ═══ */
.ticker-wrap {
  overflow: hidden;
  background: var(--royal);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3px;
}

.ticker-sep {
  color: var(--gold);
  font-size: 18px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══ ABOUT ═══ */
.about-section {
  background: var(--royal);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  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;
}

/* Animated number circles background */
.about-bg-nums {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-bg-num {
  position: absolute;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -10px;
  user-select: none;
  animation: numDrift 20s ease-in-out infinite;
}

@keyframes numDrift {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 22px;
}

.about-tag span {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 32px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pillar-ico {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s var(--ease-out-expo);
}

.pillar:hover .pillar-ico {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.1) rotate(-5deg);
}

.pillar-ico-svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.pillar-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.pillar-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.metric-card.gold {
  background: var(--gold);
  border-color: var(--gold-light);
}

.metric-num {
  font-size: 52px;
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-card.gold .metric-num {
  color: var(--royal-dark);
}

.metric-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.metric-card.gold .metric-label {
  color: rgba(2, 6, 111, 0.7);
}

.metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ═══ SECTION COMMONS ═══ */
.section {
  padding: 100px 5%;
}

.s-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.s-head {
  text-align: center;
  margin-bottom: 64px;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--royal-ghost);
  border: 1px solid var(--royal-pale);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.s-tag span {
  font-size: 11px;
  font-weight: 700;
  color: var(--royal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.s-h2 {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.s-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-l.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-r.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

/* ═══ WHY ═══ */
.why-section {
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(2, 6, 111, 0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--royal-pale);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  opacity: 1;
}

.why-num {
  font-size: 72px;
  font-weight: 900;
  color: var(--royal-pale);
  letter-spacing: -5px;
  line-height: 1;
  margin-bottom: -10px;
  transition: color 0.4s var(--ease-out-expo);
  position: relative;
  z-index: 1;
}

.why-card:hover .why-num {
  color: rgba(2, 6, 111, 0.06);
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

.why-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ═══ SERVICES ═══ */
.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.svc-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
}

.svc-card::after {
  content: '→';
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 17px;
  color: var(--gray-400);
  transition: color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

/* Shimmer on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(2, 6, 111, 0.04), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.svc-card:hover::before {
  left: 140%;
}

.svc-card:hover {
  background: var(--royal-ghost);
  border-color: rgba(2, 6, 111, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.svc-card:hover::after {
  color: var(--royal);
  transform: translate(3px, -3px);
}

.svc-card-ico {
  width: 44px;
  height: 44px;
  background: var(--royal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.5s var(--ease-out-expo);
}

.svc-card:hover .svc-card-ico {
  transform: scale(1.1) rotate(-5deg);
}

.svc-card-ico-svg {
  width: 22px;
  height: 22px;
  color: white;
}

.svc-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.svc-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.svc-card.feat {
  background: var(--royal);
  border-color: var(--royal-mid);
  grid-column: span 2;
}

.svc-card.feat .svc-card-title {
  color: white;
}

.svc-card.feat .svc-card-desc {
  color: rgba(255, 255, 255, 0.62);
}

.svc-card.feat::after {
  color: rgba(255, 255, 255, 0.35);
}

.svc-card.feat:hover::after {
  color: white;
}

.svc-card.feat .svc-card-ico {
  background: rgba(255, 255, 255, 0.14);
}

.svc-card.feat::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* ═══ ENGAGE ═══ */
.engage-section {
  background: var(--gray-50);
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.eng-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.eng-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(2, 6, 111, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.eng-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.eng-card:hover::before {
  opacity: 1;
}

.eng-num {
  width: 56px;
  height: 56px;
  background: var(--royal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  transition: transform 0.5s var(--ease-out-expo), background 0.4s var(--ease-out-expo);
}

.eng-card:hover .eng-num {
  transform: scale(1.12) rotate(-8deg);
  background: var(--royal-mid);
}

.eng-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.eng-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ USE CASES ═══ */
.usecase-section {
  background: white;
}

.uc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}

.uc-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: padding-left 0.4s var(--ease-out-expo);
  cursor: default;
}

.uc-item:last-child {
  border-bottom: none;
}

.uc-item:hover {
  padding-left: 10px;
}

.uc-n {
  font-size: 12px;
  font-weight: 700;
  color: var(--royal);
  background: var(--royal-ghost);
  border-radius: 100px;
  padding: 4px 11px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo);
}

.uc-item:hover .uc-n {
  background: var(--royal);
  color: white;
}

.uc-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.55;
  transition: color 0.4s var(--ease-out-expo);
}

.uc-item:hover .uc-text {
  color: var(--text-dark);
}

/* ═══ INSIGHTS ═══ */
.insights-section {
  background: var(--gray-50);
}

.ins-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ins-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
}

.ins-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.ins-thumb {
  height: 176px;
  background: var(--royal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ins-thumb-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Animated chart lines in thumb */
.ins-thumb-lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 20px;
  opacity: 0.25;
}

.ins-thumb-line {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: white;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.ins-card:hover .ins-thumb-line {
  transform: scaleY(1);
}

.ins-thumb-ico {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out-expo);
  color: white;
}

.ins-card:hover .ins-thumb-ico {
  transform: scale(1.15) rotate(-5deg);
}

.ins-card:nth-child(2) .ins-thumb {
  background: var(--royal-mid);
}

.ins-card:nth-child(3) .ins-thumb {
  background: var(--royal-dark);
}

.ins-body {
  padding: 22px;
}

.ins-tag {
  display: inline-block;
  background: var(--royal-ghost);
  color: var(--royal);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ins-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.42;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.ins-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

/* ═══ FAQ ═══ */
.faq-section {
  background: white;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 52px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}

.faq-q-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.4s var(--ease-out-expo);
}

.faq-q:hover .faq-q-text {
  color: var(--royal);
}

.faq-ico {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-muted);
  transition: background 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.faq-item.open .faq-ico {
  background: var(--royal);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out-expo);
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-inner {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
  padding-bottom: 24px;
}

/* ═══ CTA ═══ */
.cta-section {
  padding: 100px 5%;
  background: var(--royal);
  position: relative;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(200, 168, 75, 0.12);
  top: -100px;
  right: -100px;
  animation: orbFloat 10s ease-in-out infinite;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  bottom: -100px;
  left: -50px;
  animation: orbFloat 13s ease-in-out infinite reverse;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-h2 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  color: white;
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--royal-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out-expo);
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--text-dark);
  padding: 64px 5% 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.4s var(--ease-out-expo), padding-left 0.4s var(--ease-out-expo);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

/* Progress bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  z-index: 1001;
  width: 0;
  transition: width 0.1s linear;
}

@media(max-width: 1100px) {
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-card.feat {
    grid-column: span 1;
  }
}

@media(max-width: 820px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .engage-grid {
    grid-template-columns: 1fr;
  }
  .ins-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-div {
    display: none;
  }
}
