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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #102033;
  background: #f7fbff;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e4eef7;
}

.navbar {
  max-width: 1180px;
  margin: auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: #073b88;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #31465c;
}

.nav-links a:hover {
  color: #009f93;
}

.nav-cta {
  background: #073b88;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #073b88;
}

.hero {
  max-width: 1180px;
  margin: auto;
  padding: 90px 22px 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.badge,
.mini-label {
  display: inline-block;
  background: #e6fbf6;
  color: #008c7d;
  border: 1px solid #bceee4;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  color: #061b38;
  margin-bottom: 22px;
  letter-spacing: -1.4px;
}

.hero p {
  font-size: 18px;
  color: #4f6278;
  max-width: 720px;
  margin-bottom: 30px;
}

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

.btn {
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(135deg, #073b88, #009f93);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 59, 136, 0.22);
}

.btn.secondary {
  background: #fff;
  color: #073b88;
  border: 1px solid #d7e6f2;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-stats div {
  background: #fff;
  border: 1px solid #e2edf6;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(18, 50, 85, 0.05);
}

.hero-stats strong {
  display: block;
  color: #073b88;
  font-size: 24px;
}

.hero-stats span {
  color: #64778c;
  font-size: 14px;
}

.hero-card {
  background: #ffffff;
  border: 1px solid #dcebf5;
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(12, 55, 100, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 159, 147, 0.18), transparent 70%);
  top: -60px;
  right: -60px;
}

.hero-card img {
  width: 240px;
  max-width: 100%;
  position: relative;
  margin-bottom: 24px;
}

.hero-card h3 {
  color: #073b88;
  font-size: 24px;
  margin-bottom: 10px;
  position: relative;
}

.hero-card p {
  color: #607389;
  position: relative;
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 75px 22px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-header h2,
.features-wrapper h2,
.contact-card h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: #061b38;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.section-header p,
.features-wrapper p,
.contact-card p {
  color: #5f7288;
  font-size: 17px;
}

.about-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-card,
.service-card {
  background: #fff;
  border: 1px solid #e1edf6;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(18, 50, 85, 0.05);
}

.about-card h3,
.service-card h3 {
  color: #073b88;
  font-size: 22px;
  margin-bottom: 10px;
}

.about-card p,
.service-card p {
  color: #607389;
}

.services-section {
  background: linear-gradient(180deg, #f7fbff, #eef8fb);
  max-width: none;
}

.services-section .section-header,
.services-section .services-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.icon {
  width: 52px;
  height: 52px;
  background: #e8f8f5;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.features-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.feature-list {
  margin-top: 24px;
  list-style: none;
}

.feature-list li {
  margin-bottom: 13px;
  color: #31465c;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #009f93;
  font-weight: 900;
}

.feature-panel {
  background: #061b38;
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 60px rgba(6, 27, 56, 0.18);
}

.feature-panel h3 {
  font-size: 26px;
  margin-bottom: 24px;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-list span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.contact-section {
  max-width: 1180px;
  margin: auto;
  padding: 70px 22px;
}

.contact-card {
  background: linear-gradient(135deg, #073b88, #009f93);
  color: #fff;
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(7, 59, 136, 0.22);
}

.contact-card .mini-label {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-card h2,
.contact-card p {
  color: #fff;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details span {
  background: rgba(255, 255, 255, 0.14);
  padding: 14px 16px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
}

.footer {
  border-top: 1px solid #e1edf6;
  padding: 28px 22px;
  text-align: center;
  color: #607389;
  background: #fff;
}

.footer p:first-child {
  font-weight: 700;
  color: #31465c;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 22px;
    right: 22px;
    background: #fff;
    border: 1px solid #e1edf6;
    border-radius: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 18px 40px rgba(18, 50, 85, 0.12);
  }

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

  .hero,
  .features-wrapper,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

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

@media (max-width: 520px) {
  .navbar {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 18px;
  }

  .section,
  .contact-section,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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