:root {
  --bg: #0b1220;
  --bg-soft: #111a2d;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --border: #dbe4f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #f8fbff;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  text-decoration: none;
}

.logo-image {
  height: 58px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  color: #dbeafe;
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 65%, #11223f 100%);
  color: var(--white);
  padding: 5.5rem 0 4.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
}

.hero-copy {
  color: #dbeafe;
  max-width: 62ch;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 1.3rem;
}

.hero-card h2 {
  font-size: 1.15rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.68rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.section {
  padding: 4rem 0;
}

.slider-section .container {
  width: min(1280px, 96%);
}

.slider {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.slides {
  min-height: 420px;
}

.slide {
  display: none;
  padding: 1.6rem 4.4rem;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.4rem;
  align-items: center;
}

.slide.active {
  display: grid;
}

.slide-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.slide-content {
  padding-right: 0.6rem;
}

.slide-content h3 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.slide-content p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.slide h3 {
  margin-bottom: 0.6rem;
}

.slide p {
  color: var(--muted);
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.slider-btn:hover {
  background: #bfdbfe;
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.slider-dots button.active {
  background: #2563eb;
}

.trust-bar {
  background: #0a162d;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0;
}

.trust-grid div {
  display: grid;
  gap: 0.2rem;
  text-align: center;
}

.trust-grid strong {
  font-size: 1.1rem;
  color: #93c5fd;
}

.trust-grid span {
  color: #cbd5e1;
  font-size: 0.88rem;
}

.section-alt {
  background: #eef4ff;
}

.section-lead {
  color: var(--muted);
  margin-top: -0.3rem;
  margin-bottom: 1.8rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.stats {
  display: grid;
  gap: 0.8rem;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}

.stat-box strong {
  display: block;
  font-size: 1.4rem;
  color: #0b3a8f;
}

.stat-box span {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.chips {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.chips span {
  background: #dbeafe;
  color: #1e3a8a;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
}

.contact-form label {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.contact-form button {
  margin-top: 1rem;
}

.site-footer {
  background: var(--bg);
  color: #cbd5e1;
  padding: 1.2rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    padding: 0.85rem;
    border-radius: 12px;
    background: #132340;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-nav.open {
    display: flex;
  }

  .card-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .slide {
    padding: 1.3rem 3.2rem;
    grid-template-columns: 1fr;
  }

  .slide-image {
    height: 250px;
  }

  .logo-image {
    height: 48px;
  }

  .footer-wrap,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
