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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2f45;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #dbeafe;
  --blue-mid: #93c5fd;
  --text: #1e293b;
  --muted: #64748b;
  --light: #94a3b8;
  --bg: #f0f5ff;
  --bg-alt: #e8effe;
  --white: #ffffff;
  --border: rgba(37,99,235,0.1);
  --border-solid: #e2e8f0;
  --glass-bg: rgba(255,255,255,0.7);
  --glass-border: rgba(37,99,235,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(37,99,235,0.08);
  --shadow-lg: 0 12px 48px rgba(37,99,235,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { text-decoration: none; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; position: relative;
  padding: 0 64px; height: 68px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 19px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 36px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .18s; position: relative; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.has-dd::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-left: 5px; vertical-align: middle; opacity: 0.5; }
.nav-cta { background: var(--blue); color: #fff !important; border-radius: var(--radius-xs); padding: 9px 22px; font-size: 14px; font-weight: 600; transition: background .18s, transform .18s; }
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn { display: inline-block; border-radius: var(--radius-xs); padding: 12px 26px; font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; border: none; transition: all .18s; text-align: center; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.25); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border-solid); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 64px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); }
.section-tag { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-tag-light { color: #60a5fa; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 40px; color: var(--navy); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-title-light { color: #fff; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 540px; }
.section-sub-light { color: rgba(255,255,255,0.5); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── GLASS CARD ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.glass:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); transition: all .2s; }

/* ── STATUS PILLS ── */
.pill { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.pill-green { background: #dcfce7; color: #15803d; }
.pill-yellow { background: #fef9c3; color: #a16207; }
.pill-red { background: #fee2e2; color: #b91c1c; }
.pill-blue { background: var(--blue-light); color: var(--blue-dark); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── ICON BOX ── */
.icon-box { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--blue); padding: 72px 64px; text-align: center; }
.cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: 40px; color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; align-items: center; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 52px 64px 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-brand .footer-logo { font-size: 20px; font-weight: 700; color: #fff; }
.footer-brand .footer-logo span { color: var(--blue); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 6px; max-width: 240px; line-height: 1.5; }
.footer-links { display: flex; gap: 32px; align-items: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color .18s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-email a { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.anim-1 { animation: fadeUp .55s ease both; }
.anim-2 { animation: fadeUp .55s ease .12s both; }
.anim-3 { animation: fadeUp .55s ease .24s both; }
.anim-4 { animation: fadeUp .55s ease .36s both; }

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — v23
   Only activates at ≤768px. Desktop unchanged.
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global container & sections ── */
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-title { font-size: 28px; }
  .section-sub { font-size: 15px; }

  /* ── Buttons ── */
  .btn-lg { padding: 13px 28px; font-size: 15px; }
  .btn-full { width: 100%; }

  /* ── CTA banner ── */
  .cta-banner { padding: 56px 20px; }
  .cta-banner h2 { font-size: 30px; }
  .cta-banner p { font-size: 15px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }

  /* ── Hamburger Nav ── */
  nav { position: relative; }
  .nav-links { position: fixed !important; transform: none !important; left: 0 !important; right: 0 !important; }
  nav { padding: 0 20px; position: relative; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); z-index: 999; padding: 12px 0; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 15px; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-ham { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; background: none; border: none; }
  .nav-ham span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .2s; }
  .nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-ham.open span:nth-child(2) { opacity: 0; }
  .nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Footer ── */
  footer { padding: 48px 20px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: flex-start;
  }
  .footer-links a { white-space: nowrap; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

}


/* Footer - mobile only, all links on one line */
@media (max-width: 768px) {
  footer > div:first-child {
    font-size: 11px !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
  }
  footer > div:first-child > a {
    white-space: nowrap !important;
  }
  footer > div:first-child > span {
    display: none !important;
  }
}
