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

body {
  font-family: Arial, sans-serif;
  background: #000000;
  color: white;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 5% 42px;
  background:
   linear-gradient(
      90deg,
      rgba(2, 14, 31, 0.98) 0%,
      rgba(2, 14, 31, 0.9) 20%,
      rgba(2, 14, 31, 0.00) 100%
    ),
    url("assets/background.png");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: 85% 30%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}

.logo {
  width: 280px;
  height: auto;
  margin-left: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-btn {
  /* background: #071426; */
  background: rgba(3, 15, 32, 0.94);
  padding: 16px 30px;
  border-radius: 8px;
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  /* color: #3b78ff; */
  color: #FF7F50;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  margin-bottom: 24px;
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.intro {
  max-width: 560px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
}

.buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 30px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 800;
}

.primary {
  background: #FF7F50;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.75);
}

.services-panel {
  margin-top: 70px;
  background: rgba(3, 15, 32, 0.94);
  border: 1px solid rgba(59, 120, 255, 0.35);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.services-panel article {
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.services-panel article:last-of-type {
  border-right: none;
}

.icon {
  color: #3b78ff;
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.services-panel h3 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-panel p {
  color: #d8e3f5;
  line-height: 1.5;
}

.trust-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .hero {
    background-position: center top;
    padding: 24px;
  }

  .header {
    align-items: flex-start;
    margin-bottom: 60px;
  }

  nav {
    display: none;
  }

  .logo {
    width: 140px;
  }

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

  .services-panel article {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .trust-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}