/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --bg: #ffffff;
  --bg2: #eff6ff;
  --text: #1d1d1f;
  --text2: #6e6e73;
  --accent: #0066cc;
  --border: #c7d7f0;
  --max: 980px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 48px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border-bottom: 1px solid rgba(0,80,200,0.1);
}
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 16px; font-weight: 600; color: var(--text); text-decoration: none; letter-spacing: -0.2px; }
.nav-links { display: none; list-style: none; gap: 28px; }
.nav-links a { font-size: 12px; color: var(--text); text-decoration: none; opacity: 0.72; transition: opacity 0.15s, color 0.15s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }

/* ─── LAYOUT ─── */
section { padding: 96px 24px; }
.wrap { max-width: var(--max); margin: 0 auto; }
hr.divider { border: none; border-top: 1px solid rgba(0,80,200,0.1); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-2-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ─── TYPOGRAPHY ─── */
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.eyebrow-w { font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.headline { font-size: clamp(36px, 5.5vw, 60px); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; color: var(--text); margin-bottom: 18px; }
.headline-w { font-size: clamp(36px, 5.5vw, 60px); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; color: #fff; margin-bottom: 18px; }
.headline-sm { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; line-height: 1.08; letter-spacing: -1px; color: var(--text); margin-bottom: 12px; }
.headline-sm-w { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; line-height: 1.08; letter-spacing: -1px; color: #fff; margin-bottom: 12px; }
.body-text { font-size: 19px; color: var(--text2); line-height: 1.58; max-width: 600px; }
.body-text-w { font-size: 19px; color: rgba(255,255,255,0.72); line-height: 1.58; max-width: 600px; }

/* ─── BUTTONS ─── */
.btn { display: inline-block; padding: 13px 26px; border-radius: 980px; font-size: 17px; font-weight: 400; text-decoration: none; font-family: var(--font); cursor: pointer; border: none; transition: all 0.18s; }
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: #0077ed; }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-ghost { background: transparent; color: var(--accent); }
.btn-ghost:hover { text-decoration: underline; }
.btn-glass { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.32); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn-glass:hover { background: rgba(255,255,255,0.26); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid rgba(0,102,204,0.3); }
.btn-outline:hover { background: rgba(0,102,204,0.06); }

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  padding: 136px 24px 72px;
  background: linear-gradient(180deg, #f5f5f7 0%, #fff 65%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,204,0.05) 0%, transparent 65%);
  top: -120px; right: -140px; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,204,0.04) 0%, transparent 65%);
  bottom: -60px; left: -100px; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.page-hero-title { font-size: clamp(44px, 7vw, 80px); font-weight: 700; line-height: 1.02; letter-spacing: -2.5px; color: var(--text); margin-bottom: 18px; }
.page-hero-sub { font-size: clamp(18px, 2.2vw, 22px); color: var(--text2); max-width: 560px; margin: 0 auto 36px; line-height: 1.45; }

/* ─── CARDS ─── */
.card { background: var(--bg); border-radius: 22px; padding: 40px 36px; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,80,200,0.09); }
.card-glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.card-blue {
  background: linear-gradient(145deg, #0050bb 0%, #1a6ef5 100%);
  border-radius: 22px; padding: 42px;
  box-shadow: 0 20px 64px rgba(0,82,187,0.28);
}
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.icon-blue   { background: rgba(0,102,204,0.12);  color: #0066cc; }
.icon-teal   { background: rgba(0,180,160,0.1);   color: #00a896; }
.icon-purple { background: rgba(120,80,220,0.1);  color: #7850dc; }
.icon-orange { background: rgba(240,140,30,0.1);  color: #f08c1e; }
.icon-green  { background: rgba(52,199,89,0.1);   color: #34c759; }
.card-icon svg { display: block; }

/* ─── STAT CARD ─── */
.stat { border-radius: 18px; padding: 28px 26px; background: linear-gradient(135deg, rgba(0,102,204,0.07) 0%, rgba(0,82,160,0.03) 100%); border: 1px solid rgba(0,102,204,0.15); }
.stat-num { font-size: 52px; font-weight: 700; letter-spacing: -2.5px; line-height: 1; color: var(--accent); margin-bottom: 6px; }
.stat-lbl { font-size: 14px; color: var(--text2); }

/* ─── FEATURES LIST ─── */
.features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.features li { display: flex; align-items: center; gap: 12px; font-size: 17px; color: var(--text); }
.check { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: rgba(0,102,204,0.1); border: 1px solid rgba(0,102,204,0.2); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--accent); font-weight: 700; }

/* ─── TAGS ─── */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 8px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.88); transition: background 0.15s; }
.tag:hover { background: rgba(255,255,255,0.18); }
.tag::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #60a5fa; flex-shrink: 0; }
.tag-light { background: rgba(0,102,204,0.06); border: 1px solid rgba(0,102,204,0.14); color: var(--text); backdrop-filter: none; -webkit-backdrop-filter: none; }
.tag-light:hover { background: rgba(0,102,204,0.1); }
.tag-light::before { background: var(--accent); }

/* ─── PROCESS STEPS ─── */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(0,80,200,0.08); }
.step:last-child { border-bottom: none; }
.step-num { font-size: 13px; font-weight: 700; color: var(--accent); width: 28px; flex-shrink: 0; padding-top: 3px; font-variant-numeric: tabular-nums; }
.step-body h4 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 5px; letter-spacing: -0.3px; }
.step-body p { font-size: 15px; color: var(--text2); line-height: 1.6; }

/* ─── DARK SECTION ─── */
.dark-section {
  background: linear-gradient(148deg, #030c20 0%, #0b2764 48%, #1653cc 100%);
  position: relative; overflow: hidden;
}
.dark-section::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(80,160,255,0.18) 0%, transparent 65%); top: -160px; right: -80px; pointer-events: none; }
.dark-section::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(20,100,255,0.12) 0%, transparent 65%); bottom: -80px; left: 10%; pointer-events: none; }
.dark-section .wrap { position: relative; z-index: 1; }

/* ─── CONTACT INFO ─── */
.info-block { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; flex-direction: column; gap: 3px; }
.info-label { font-size: 11px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--text2); }
.info-val { font-size: 17px; color: var(--text); }
.info-val a { color: var(--accent); text-decoration: none; }
.info-val a:hover { text-decoration: underline; }

/* ─── FORM ─── */
.glass-form { background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.94); backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%); border-radius: 22px; padding: 36px; box-shadow: 0 8px 40px rgba(0,80,200,0.07); }
form { display: flex; flex-direction: column; gap: 14px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 12px; font-weight: 500; color: var(--text2); }
.fg input, .fg textarea, .fg select { font-family: var(--font); font-size: 16px; padding: 11px 14px; border: 1px solid rgba(0,80,200,0.15); border-radius: 10px; background: rgba(239,246,255,0.7); color: var(--text); outline: none; transition: border-color 0.15s, background 0.15s; -webkit-appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--accent); background: rgba(255,255,255,0.95); }
.fg textarea { resize: vertical; min-height: 120px; }

/* ─── ABOUT PEOPLE BLOCK ─── */
.people-card { display: flex; flex-direction: column; gap: 3px; padding: 20px 22px; background: linear-gradient(135deg, rgba(0,102,204,0.06) 0%, rgba(0,102,204,0.02) 100%); border: 1px solid rgba(0,102,204,0.14); border-radius: 14px; }
.people-role { font-size: 11px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; color: var(--accent); }
.people-name { font-size: 18px; font-weight: 600; color: var(--text); letter-spacing: -0.3px; }

/* ─── CTA STRIP ─── */
.cta-strip { background: linear-gradient(148deg, #030c20 0%, #0b2764 48%, #1653cc 100%); padding: 64px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(80,160,255,0.15) 0%, transparent 65%); top: -200px; right: -100px; pointer-events: none; }
.cta-strip .wrap { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -1.5px; color: #fff; margin-bottom: 14px; }
.cta-strip p { font-size: 19px; color: rgba(255,255,255,0.68); margin-bottom: 32px; }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer { background: linear-gradient(180deg, #040d24 0%, #06152e 100%); padding: 48px 24px 36px; }
.foot-inner { max-width: var(--max); margin: 0 auto; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.foot-brand { color: #f5f5f7; font-size: 16px; font-weight: 600; }
.foot-brand span { display: block; font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.38); margin-top: 4px; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { font-size: 12px; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.15s; }
.foot-links a:hover { color: rgba(255,255,255,0.85); }
.foot-copy { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ─── SCROLL ANIMATIONS ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-animate].in-view { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ─── BURGER / MOBILE MENU ─── */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  gap: 5px;
  padding: 0;
  transition: background 0.15s;
}
.burger:hover { background: rgba(0,0,0,0.05); }
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}
nav.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.menu-open .burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(200%) blur(32px);
  -webkit-backdrop-filter: saturate(200%) blur(32px);
  border-bottom: 1px solid rgba(0,80,200,0.09);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.22s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu ul { list-style: none; padding: 6px 0 12px; }
.mobile-menu ul li a {
  display: block;
  padding: 13px 24px;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu ul li a:hover { color: var(--accent); background: rgba(0,102,204,0.04); }
.mobile-menu ul li a.active { color: var(--accent); }
.mobile-menu .menu-sep { height: 1px; background: rgba(0,80,200,0.08); margin: 4px 24px; }

/* ─── RESPONSIVE ─── */
@media (min-width: 769px) {
  .nav-links { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
}

@media (max-width: 768px) {
  .grid-2, .grid-2-top { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .row2 { grid-template-columns: 1fr; }
  .foot-top { flex-direction: column; gap: 22px; }
  section { padding: 64px 20px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}
