:root {
  --navy: #032b6a;
  --navy-dark: #011b45;
  --blue: #0f6fd6;
  --light-blue: #d8ecff;
  --red: #d71920;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --text: #172033;
  --muted: #5a6475;
  --border: rgba(3, 43, 106, 0.12);
  --shadow: 0 18px 45px rgba(1, 27, 69, 0.14);
  --radius: 20px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(1, 27, 69, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: auto;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  padding: 4px;
}

.brand-text {
  color: var(--white);
}

.brand-text strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 40px;
  background:
    radial-gradient(circle at top right, rgba(15, 111, 214, 0.22), transparent 30%),
    linear-gradient(135deg, #041f53 0%, #0a4fa3 58%, #0f6fd6 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 850px;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
  max-width: 760px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(215, 25, 32, 0.25);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(1, 27, 69, 0.22);
}

.hero-logo {
  background: rgba(255,255,255,0.94);
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(3, 43, 106, 0.08);
}

.hero-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.hero-card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
}

section {
  padding: 86px 0;
}

.section-heading {
  max-width: 1180px;
  margin-bottom: 38px;
}

.section-heading .kicker {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: bold;
  margin-bottom: 14px;
  display: block;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--navy-dark);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card p + p {
  margin-top: 14px;
}

.feature-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 20px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.highlight-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.highlight-band h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.highlight-band p {
  color: rgba(255,255,255,0.86);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.coverage-item {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  font-weight: bold;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(3, 43, 106, 0.08);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.contact-item {
  margin-bottom: 16px;
}

.contact-item label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 4px;
  font-weight: bold;
}

.contact-item p,
.contact-item a {
  color: var(--text);
  font-size: 1rem;
}

.map-placeholder {
  height: 340px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer .container {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: center; 
  align-items: center;
  flex-direction: column;  
  text-align: center;      
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 1024px) {
  .hero-grid,
  .grid-2,
  .highlight-band,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  section {
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand img {
    width: 58px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-card,
  .card,
  .contact-card {
    padding: 24px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }
}
