/* =====================================================
   Unwanted Tech — Global Styles
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0B1F3A;
  background: #fff;
  margin: 0;
}

a { text-decoration: none; color: inherit; }
input, textarea, select { font-family: inherit; }

/* =====================================================
   Container
   ===================================================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =====================================================
   Navigation
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #E7EDF5;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1E5BD6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-wordmark {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #0B1F3A;
}

.nav-wordmark span { color: #1E5BD6; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  color: #3A4A60;
  transition: color .15s;
}

.nav-links a:hover,
.nav-links a.active { color: #1E5BD6; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions .link-quote {
  font-size: 15px;
  font-weight: 600;
  color: #1E5BD6;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: 9px;
  padding: 12px 22px;
  transition: opacity .15s, background .15s;
  cursor: pointer;
  border: none;
}

.btn:hover { opacity: .88; }

.btn-primary {
  background: #1E5BD6;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border: 1.5px solid #C9D6E8;
  color: #0B1F3A;
}

.btn-lg {
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 10px;
}

.btn-xl {
  font-size: 17px;
  padding: 17px 30px;
  border-radius: 11px;
}

.btn-white-on-blue {
  background: #fff;
  color: #1E5BD6;
  font-weight: 700;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: #0B1F3A;
  color: #fff;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 40px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #1E5BD6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-wordmark {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.footer-wordmark span { color: #4E8BF5; }

.footer-blurb {
  font-size: 14px;
  color: #8FA3C0;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #8FA3C0;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #C7D5EA;
}

.footer-col-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #C7D5EA;
}

.footer-divider {
  height: 1px;
  background: #1B3357;
  margin: 40px 0 24px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #7E92B0;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover { color: #fff; }

/* =====================================================
   Pills / badges
   ===================================================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E5EDFB;
  color: #1E5BD6;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  letter-spacing: .02em;
}

/* =====================================================
   Icon tile
   ===================================================== */
.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #E5EDFB;
  color: #1E5BD6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-tile-lg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 23px;
}

/* =====================================================
   Sections — general
   ===================================================== */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #1E5BD6;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.section-eyebrow-muted {
  font-size: 13px;
  font-weight: 700;
  color: #8FA3C0;
  letter-spacing: .06em;
}

.section-h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-h2-lg {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 18px;
  color: #5B6B82;
  line-height: 1.55;
  max-width: 560px;
  margin-top: 10px;
}

/* =====================================================
   Cards
   ===================================================== */
.card {
  border: 1px solid #E7EDF5;
  border-radius: 14px;
  padding: 28px;
  background: #fff;
}

.card-lg {
  border-radius: 16px;
  padding: 34px;
}

/* =====================================================
   CTA Band
   ===================================================== */
.cta-band {
  background: #1E5BD6;
  border-radius: 18px;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-band h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  font-size: 17px;
  color: #CFE0FB;
  margin-top: 10px;
}

/* =====================================================
   Hero — light
   ===================================================== */
.hero-light {
  background: #F4F7FB;
  border-bottom: 1px solid #E7EDF5;
}

/* =====================================================
   Trust strip
   ===================================================== */
.trust-strip {
  border-bottom: 1px solid #E7EDF5;
}

.trust-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-names {
  display: flex;
  gap: 30px;
  font-weight: 700;
  font-size: 15px;
  color: #3A4A60;
  flex-wrap: wrap;
}

/* =====================================================
   Mono accents
   ===================================================== */
.mono {
  font-family: 'JetBrains Mono', monospace;
}

/* =====================================================
   Navy panel
   ===================================================== */
.panel-navy {
  background: #0B1F3A;
  border-radius: 18px;
  padding: 54px;
  color: #fff;
}

/* =====================================================
   Hamburger (mobile)
   ===================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0B1F3A;
  border-radius: 2px;
  transition: all .2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 40px 20px;
  border-top: 1px solid #E7EDF5;
  background: rgba(255,255,255,.97);
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #3A4A60;
  padding: 10px 0;
  border-bottom: 1px solid #F4F7FB;
}

.mobile-nav a.active,
.mobile-nav a:hover { color: #1E5BD6; }

.mobile-nav .mobile-nav-btn {
  margin-top: 12px;
  background: #1E5BD6;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 20px;
  border-radius: 9px;
  text-align: center;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }
  .mobile-nav { padding: 16px 20px 20px; }

  .trust-strip-inner { padding: 20px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-inner { padding: 48px 20px 28px; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 8px; }

  .cta-band {
    padding: 36px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band h2 { font-size: 26px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
