@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy:   #0b1628;
  --navy2:  #0e1d38;
  --blue:   #1a4fdb;
  --blue2:  #2563ff;
  --cyan:   #00c8f0;
  --white:  #f0f5ff;
  --gray:   #7a8fb0;
  --light:  #a8bbda;
  --card:   rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── TOPBAR ── */
.topbar {
  background: #07101f;
  border-bottom: 1px solid var(--border);
  padding: 8px 5%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--gray);
}
.topbar a { color: var(--gray); }
.topbar a:hover { color: var(--cyan); }
.topbar-left { display: flex; gap: 24px; }
.topbar-right { display: flex; gap: 12px; }
.t-icon {
  width: 28px; height: 28px; border: 1px solid var(--border);
  border-radius: 6px; display: grid; place-items: center;
  font-size: 12px; transition: .2s;
}
.t-icon:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(11,22,40,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px;
  padding: 16px 0; color: var(--white);
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue2), var(--cyan));
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; color: #07101f;
}
.logo span { color: var(--cyan); }

.nav-list { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block; padding: 20px 13px;
  color: var(--light); font-size: 14px; font-weight: 500;
  transition: color .2s; white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--white); }

.nav-list > li > a.nav-cta {
  background: linear-gradient(90deg, var(--blue2), var(--cyan));
  color: #07101f !important; font-weight: 700;
  padding: 9px 20px !important; border-radius: 8px;
  margin-left: 8px; font-size: 13.5px;
  transition: box-shadow .2s, transform .2s;
}
.nav-list > li > a.nav-cta:hover { box-shadow: 0 4px 20px rgba(0,200,240,.3); transform: translateY(-1px); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 210px;
  background: #0d1e3a; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.nav-list > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 18px; color: var(--light); font-size: 13.5px;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: rgba(37,99,255,.1); color: var(--white); }
.dropdown a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue2); flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: .3s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 70px 5% 60px;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,99,255,.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); margin-bottom: 18px; }
.breadcrumb a { color: var(--cyan); }
.breadcrumb span { color: var(--gray); }
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; margin-bottom: 16px; letter-spacing: -.3px; }
.page-hero p { font-size: 16px; color: var(--light); max-width: 620px; line-height: 1.7; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,255,.12); border: 1px solid rgba(37,99,255,.25);
  padding: 5px 14px; border-radius: 100px; font-size: 12.5px;
  color: var(--cyan); margin-bottom: 16px;
}

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-alt { background: var(--navy2); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--cyan); }
.section-title { font-size: clamp(26px, 3vw, 40px); font-weight: 800; margin-bottom: 14px; letter-spacing: -.3px; line-height: 1.15; }
.section-sub { font-size: 15.5px; color: var(--light); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 50px; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 14.5px; cursor: pointer; border: none; transition: .2s; }
.btn-primary { background: linear-gradient(90deg, var(--blue2), var(--cyan)); color: #07101f; }
.btn-primary:hover { box-shadow: 0 6px 24px rgba(0,200,240,.3); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--white); }
.btn-outline:hover { border-color: var(--cyan); background: rgba(0,200,240,.06); }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover { border-color: rgba(37,99,255,.35); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(37,99,255,.18), rgba(0,200,240,.08));
  border: 1px solid rgba(37,99,255,.25); border-radius: 12px;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 20px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--light); font-size: 14px; line-height: 1.7; }
.card-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tag {
  font-size: 11.5px; padding: 3px 10px; border-radius: 6px;
  background: rgba(37,99,255,.1); border: 1px solid rgba(37,99,255,.18);
  color: var(--cyan);
}

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--light); }
.feature-list li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,200,240,.1); color: var(--cyan);
  display: grid; place-items: center; font-size: 11px; flex-shrink: 0; margin-top: 2px;
}

/* ── STATS BAR ── */
.stats-bar { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-item { flex: 1; padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); background: var(--card); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 34px; font-weight: 800; background: linear-gradient(90deg, var(--blue2), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 5px; }

/* ── CTA BAND ── */
.cta-band {
  margin: 0 5% 80px;
  background: linear-gradient(135deg, var(--blue2), #0099cc);
  border-radius: 20px; padding: 50px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; max-width: 480px; line-height: 1.2; }
.cta-band p { color: rgba(255,255,255,.75); margin-top: 8px; font-size: 15px; }
.btn-white { background: #fff; color: var(--blue2); font-weight: 700; }
.btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,.2); }

/* ── FOOTER ── */
footer {
  background: #07101f; border-top: 1px solid var(--border);
  padding: 64px 5% 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.footer-brand p { color: var(--gray); font-size: 14px; line-height: 1.7; margin: 14px 0 22px; max-width: 260px; }
.footer-socials { display: flex; gap: 9px; }
.footer-social {
  width: 34px; height: 34px; border: 1px solid var(--border);
  border-radius: 7px; display: grid; place-items: center;
  color: var(--gray); font-size: 13px;
  transition: .2s;
}
.footer-social:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-col h5 { font-size: 13.5px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: var(--gray); font-size: 13.5px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--gray); flex-wrap: wrap; gap: 10px;
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar { display: none; }
  .cta-band { padding: 36px 28px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 0 45%; border-bottom: 1px solid var(--border); }
}
@media (max-width: 680px) {
  .hamburger { display: flex; }
  .nav-list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid var(--border); padding: 12px; z-index: 300; }
  .nav-list.open { display: flex; }
  .nav-list > li > a { padding: 11px 8px; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; border: none; background: transparent; box-shadow: none; padding-left: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 5%; }
  .cta-band { flex-direction: column; text-align: center; }
}
