:root {
  --navy: #0D1F3C;
  --blue: #185FA5;
  --blue-bright: #5297FF;
  --off-white: #F5F8FF;
  --white: #FFFFFF;
  --muted: #6b7a99;
  --green: #10b981;
  --gold: #f59e0b;
  --gradient-hero: linear-gradient(135deg, #0D1F3C 0%, #162d5a 50%, #0D1F3C 100%);
  --gradient-cta: linear-gradient(135deg, #185FA5 0%, #5297FF 100%);
  --shadow-sm: 0 2px 8px rgba(13,31,60,0.08);
  --shadow-md: 0 8px 32px rgba(13,31,60,0.12);
  --shadow-lg: 0 16px 64px rgba(13,31,60,0.16);
  --shadow-glow: 0 0 40px rgba(82,151,255,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gradient-cta);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,151,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow { display: block; }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  background: rgba(10,18,40,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.nav-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.nav-logo svg { flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--white); letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.btn-nav {
  background: #5297FF;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.btn-nav:hover { box-shadow: 0 0 30px rgba(82,151,255,0.4); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--font-heading); font-weight: 700; font-size: 1.75rem; color: var(--white); }

/* ── INNER HERO ── */
.inner-hero {
  background: var(--gradient-hero);
  padding: 120px 2rem 60px;
  text-align: center;
  position: relative;
}
.inner-hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.inner-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* ── LAYOUT ── */
.section-padding { padding: 5rem 2rem; }
.section-padding-alt { background: var(--off-white); padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-label { font-weight: 700; font-size: 0.8rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; display: inline-block; }
.section-title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--navy); margin-bottom: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  text-decoration: none;
}
.btn-primary { background: var(--gradient-cta); color: var(--white); box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(82,151,255,0.4); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid rgba(13,31,60,0.2); }
.btn-secondary:hover { border-color: var(--blue-bright); background: rgba(82,151,255,0.05); }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 4rem 2rem 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--white); }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 1.25rem; color: var(--white); }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.5); padding: 0.375rem 0; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-legal a { color: rgba(255,255,255,0.4); margin-left: 1.5rem; }

/* ── SIMPLE SITE FOOTER ── */
.site-footer {
  background: #080f1e;
  padding: 2rem 4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.site-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-footer-copy { color: rgba(255,255,255,0.4); }
.footer-socials { display: flex; gap: 0.875rem; align-items: center; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer-socials a:hover { background: rgba(82,151,255,0.15); border-color: rgba(82,151,255,0.3); color: #5297FF; }
.site-footer .footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.site-footer .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.site-footer .footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-r.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .site-footer { padding: 1.5rem; }
  .site-footer-top { flex-direction: column; align-items: center; text-align: center; }
  .site-footer .footer-links { justify-content: center; gap: 0.75rem; }
}
