:root {
  --brand: #002D72;
  --brand-2: #0b4cc2;
  --muted: #6b7280;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f6f8fc;
  color: #111827;
}

.text-primary { color: var(--brand) !important; }
.bg-primary { background-color: var(--brand) !important; }
.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover { background-color: #00255f; border-color: #00255f; }
.btn-outline-primary { border-color: var(--brand); color: var(--brand); }
.btn-outline-primary:hover { background-color: var(--brand); border-color: var(--brand); }
.btn-outline-light {
  border-color: rgba(255,255,255,0.85);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.95);
}

.btn-soft-primary {
  background: rgba(0,45,114,0.08);
  color: var(--brand);
  border: 1px solid rgba(0,45,114,0.15);
}
.btn-soft-primary:hover {
  background: rgba(0,45,114,0.12);
  color: var(--brand);
}
.btn-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero {
  position: relative;
  border-bottom: 1px solid rgba(17,24,39,0.08);
  background: #0b1b3a;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11,27,58,0.9), rgba(11,27,58,0.25)),
    url("../img/hero-placeholder.svg");
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero > .container {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 28px;
}
.hero .btn-lg { border-radius: 14px; }
.hero-title {
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: clamp(28px, 4vw, 44px);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  max-width: 48rem;
}

.service-card {
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  overflow: hidden;
}
.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,45,114,0.08);
  color: var(--brand);
  font-size: 22px;
}
.service-card .btn {
  border-radius: 12px;
}
.service-card .text-muted { color: #4b5563 !important; }

.feature-strip {
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.feature-item i {
  color: var(--brand);
  font-size: 20px;
}
.feature-item .title {
  font-weight: 700;
  font-size: 13px;
}
.feature-item .desc {
  color: var(--muted);
  font-size: 12px;
}

.cta-bar {
  background: linear-gradient(90deg, var(--brand), #003b99);
  border-radius: 18px;
  color: #fff;
}
.cta-bar .btn-lg { border-radius: 14px; }

.site-footer a { color: inherit; }
.site-footer a:hover { color: var(--brand-2); }

