:root {
  --ml-primary: #0b4f8c;
  --ml-primary-dark: #07345c;
  --ml-accent: #ff8b2d;
  --ml-slate: #1f2937;
  --ml-muted: #5b6472;
  --ml-surface: #f7f9fc;
}

body {
  color: var(--ml-slate);
  background-color: #ffffff;
}

.navbar-brand img.brand-logo {
  height: 52px;
  width: auto;
}

.brand-wrap {
  gap: 0.55rem;
}

.brand-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ml-primary-dark);
  white-space: nowrap;
}

@media (max-width: 576px) {
  .navbar-brand img.brand-logo {
    height: 42px;
  }

  .brand-tagline {
    font-size: 0.78rem;
  }
}

.hero {
  background: linear-gradient(120deg, #072b4a 0%, var(--ml-primary) 55%, #2f83d0 100%);
  color: #ffffff;
  border-radius: 1rem;
}

.hero-main-tagline {
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-subheading {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 58ch;
}

.hero-soft {
  background: linear-gradient(135deg, #edf6ff 0%, #ffffff 45%, #fff4ea 100%);
  border-radius: 1rem;
}

.section-title {
  letter-spacing: 0.03em;
}

.page-header {
  background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 65%);
  border: 1px solid #e8eef6;
  border-radius: 1rem;
}

.feature-card,
.service-card,
.product-card {
  height: 100%;
  border: 1px solid #e6ebf2;
  border-radius: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 79, 140, 0.12);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: var(--ml-primary);
}

.product-thumb {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid #dfe7f2;
}

.striped-band {
  background: repeating-linear-gradient(
    -45deg,
    #f7f9fc,
    #f7f9fc 14px,
    #eef3fa 14px,
    #eef3fa 28px
  );
  border-radius: 1rem;
}

.contact-box {
  background-color: var(--ml-surface);
  border: 1px solid #e1e8f2;
  border-radius: 0.9rem;
}

.footer {
  border-top: 1px solid #e5eaf2;
  color: var(--ml-muted);
}

.brand-tagline-footer {
  font-weight: 600;
  color: var(--ml-primary-dark);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.65;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.legal-content h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.btn-ml {
  background-color: var(--ml-accent);
  border-color: var(--ml-accent);
  color: #1f1307;
}

.btn-ml:hover,
.btn-ml:focus {
  background-color: #e67a1e;
  border-color: #e67a1e;
  color: #1f1307;
}

.badge-soft {
  background-color: #e8f1fc;
  color: var(--ml-primary-dark);
}
