:root {
  --blue: #0c4a9a;
  --blue-dark: #082f63;
  --gray: #f3f4f6;
  --dark: #0f172a;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
  --max: 1100px;
  --accent: #38bdf8;
  --text: #1f2937;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: var(--text);
}

header {
  background: rgba(12, 74, 154, 0.92);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  font-size: .65rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
}

.hero {
  background: radial-gradient(circle at top, #0c4a9a 0%, #082f63 45%, #0f172a 90%);
  color: #fff;
  padding: 5rem 1.25rem 4.5rem;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.75rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.5rem;
}

.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: .45rem .7rem;
  border-radius: 999px;
  font-size: .7rem;
  display: inline-flex;
  gap: .35rem;
  align-items: center;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #082f63;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

.hero-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.hero-card h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.metric-grid {
  display: grid;
  gap: 1rem;
}

.metric {
  background: rgba(8, 47, 99, 0.35);
  border: 1px solid rgba(255,255,255,0.02);
  padding: .75rem .8rem .6rem;
  border-radius: 14px;
}

.metric-title {
  font-size: .7rem;
  opacity: .7;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3.75rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
}

.section-title small {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #4b5563;
  background: #e5e7eb;
  padding: .28rem .65rem;
  border-radius: 999px;
}

.section-title h2 {
  font-size: 1.7rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.1rem;
  border: 1px solid rgba(12, 74, 154, 0.05);
  box-shadow: var(--shadow);
}

.card small {
  text-transform: uppercase;
  font-size: .58rem;
  letter-spacing: .15em;
  color: #0c4a9a;
  font-weight: 700;
}

.card h3 {
  margin: .65rem 0 .35rem;
  font-size: 1rem;
}

.card p {
  font-size: .8rem;
  color: #4b5563;
}

footer {
  background: #0f172a;
  color: rgba(255,255,255,.62);
  padding: 2.5rem 1.25rem 2.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: .7rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: .9rem;
  margin-bottom: .4rem;
}

.contact-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.25rem .75rem;
  box-shadow: var(--shadow);
}

.contact-box label {
  font-size: .75rem;
  font-weight: 500;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: .55rem .65rem;
  margin-top: .35rem;
  margin-bottom: .7rem;
  font-family: inherit;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .nav-links {
    flex-wrap: wrap;
  }
}

