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

html {
  scroll-behavior: smooth;
}

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

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

.hero {
  min-height: 100vh;
  padding: 26px 7%;
  color: #ffffff;
  background:
    linear-gradient(rgba(4, 18, 39, 0.78), rgba(4, 18, 39, 0.88)),
    radial-gradient(circle at top right, rgba(212, 161, 54, 0.35), transparent 32%),
    #061a33;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  width: 190px;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 14px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

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

.hero-content {
  max-width: 790px;
  padding-top: 120px;
}

.eyebrow,
.eyebrow-dark,
.section-title span {
  display: inline-block;
  margin-bottom: 12px;
  color: #d4a136;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #0b376d;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.hero-content p {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: 20px;
  color: #e8edf5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 23px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn.primary {
  color: #071b35;
  background: #d4a136;
}

.btn.primary:hover {
  background: #f0c461;
}

.btn.secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.8);
}

.btn.secondary:hover {
  color: #071b35;
  background: #ffffff;
}

.section {
  padding: 82px 7%;
}

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

.section-title h2,
.process-text h2 {
  color: #061a33;
  font-size: 38px;
  line-height: 1.2;
}

.intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.stats div,
.card {
  padding: 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(6, 26, 51, 0.09);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: #0b376d;
  font-size: 28px;
}

.products {
  background: #f6f8fb;
}

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

.card h3 {
  margin-bottom: 12px;
  color: #0b376d;
  font-size: 22px;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.process-text p {
  margin-top: 18px;
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps div {
  padding: 20px;
  border-left: 5px solid #d4a136;
  border-radius: 14px;
  background: #f6f8fb;
  font-weight: 700;
}

.steps span {
  margin-right: 14px;
  color: #0b376d;
  font-weight: 900;
}

.contact {
  background: #061a33;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 26px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.contact-card img {
  width: 210px;
  margin-bottom: 20px;
}

.contact-card h2 {
  color: #061a33;
  font-size: 36px;
}

.contact-card > p {
  margin: 12px auto 22px;
  max-width: 560px;
}

.contact-details {
  margin: 24px 0;
  padding: 22px;
  border-radius: 16px;
  background: #f6f8fb;
}

.contact-details p {
  margin-bottom: 8px;
}

footer {
  padding: 24px;
  color: #ffffff;
  background: #020b16;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 950px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-content {
    padding-top: 80px;
  }

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

  .brand img,
  .contact-card img {
    width: 170px;
  }
}
