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

:root {
  --blue: #1a3aff;
  --blue-dark: #0f2acc;
  --blue-light: #e8eeff;
  --navy: #0a0f2e;
  --navy-mid: #162155;
  --white: #ffffff;
  --gray: #f4f6fb;
  --text: #1a1d2e;
  --muted: #6b7280;
  --accent: #00c6ff;
  --green: #22c55e;
  --border: #e5e7f0;
  --shadow-sm: 0 2px 10px rgba(26,58,255,0.07);
  --shadow-md: 0 8px 30px rgba(26,58,255,0.12);
  --shadow-lg: 0 24px 60px rgba(26,58,255,0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Sora', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(26,58,255,0.1); }

.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-logo-img {
  height: 60px;
  width: auto;
}

.nav-logo svg { width: 32px; height: 32px; }
.nav-logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.nav-logo-text em { color: var(--blue); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; font-weight: bold;}
.nav-links li a {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; display: block;
  font-weight: bold;
}
.nav-links li a:hover { color: var(--blue); background: rgba(26,58,255,0.07); }
.nav-links li a.active { color: var(--blue); background: rgba(26,58,255,0.07); font-weight: 600; font-weight: bold; }

.nav-cta {
  background: var(--blue); color: #fff;
  padding: 10px 22px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,58,255,0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; padding: 16px 5% 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile ul li a {
  display: block; padding: 12px 16px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--text); border-radius: 10px;
  transition: all 0.2s;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--blue); background: var(--blue-light); }
.nav-mobile .mobile-cta {
  margin-top: 12px; display: block;
  background: var(--blue); color: #fff;
  padding: 13px 20px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; text-align: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 14px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,58,255,0.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  padding: 13px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  border: 2px solid var(--blue); cursor: pointer; transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  padding: 14px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-white:hover { background: #e8eeff; transform: translateY(-2px); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 13px 28px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: all 0.25s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ─── SHARED UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.page-wrap { padding-top: 68px; min-height: 100vh; }
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,58,255,0.09);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}
.tag-white {
  background: rgba(255,255,255,0.15); color: #fff;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 540px; margin: 0 auto; line-height: 1.65;
}
.section-head { text-align: center; margin-bottom: 54px; }
.text-blue { color: var(--blue); }

/* ─── CTA BAND ─── */
.cta-band {
  margin: 0 5% 80px; border-radius: 28px;
  background: linear-gradient(135deg, var(--blue) 0%, #0040ff 50%, var(--accent) 100%);
  padding: 70px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%; background: rgba(255,255,255,0.07);
}
.cta-band::after {
  content: ''; position: absolute;
  bottom: -80px; left: 20%;
  width: 200px; height: 200px;
  border-radius: 50%; background: rgba(255,255,255,0.05);
}
.cta-band h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-band > div > p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 500px; line-height: 1.65; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 64px 5% 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-brand > p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--blue); color: #fff; }
.footer-col h5 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s; display: block;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-contact-strong { color: rgba(255,255,255,0.85); display: block; margin-top: 10px; font-size: 0.85rem; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-links a:hover { color: rgba(255,255,255,0.65); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.fade-up { animation: fadeUp 0.65s ease-out both; }
.fade-in { animation: fadeIn 0.65s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* Scroll-reveal base state */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 50px 30px; }
  .cta-btns { justify-content: center; }
}
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { margin: 0 4% 60px; padding: 40px 24px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns a { justify-content: center; }
  .cta-band h2 { font-size: 1.6rem; }
}