* {
  box-sizing: border-box;
}

:root {
  --navy: #061a35;
  --deep: #020814;
  --blue: #0078d8;
  --green: #67bd2f;
  --white: #ffffff;
  --gray: #eef4f8;
  --text: #0a1830;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0,120,216,.35), transparent 32%),
    radial-gradient(circle at bottom right, rgba(103,189,47,.25), transparent 30%),
    linear-gradient(135deg, #020814 0%, #061a35 48%, #020814 100%);
  color: var(--white);
}

.page {
  width: min(1180px, 94%);
  margin: 0 auto;
  padding: 34px 0;
}

.hero {
  min-height: calc(100vh - 68px);
  border: 2px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: clamp(26px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(2,8,20,.88), rgba(6,26,53,.86)),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1600&q=80") center/cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 40%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.logo-wrap {
  max-width: 340px;
  margin-bottom: 20px;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.badge {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 26px;
}

.badge strong {
  color: var(--green);
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  margin: 0 0 10px;
}

h1 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(48px, 9vw, 102px);
  line-height: .93;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 20px;
  max-width: 800px;
}

h1 span {
  color: var(--green);
}

.lead {
  max-width: 760px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 34px;
  color: #f2f7fb;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 34px 0;
}

.card {
  background: rgba(255,255,255,.94);
  color: var(--text);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 18px 35px rgba(0,0,0,.2);
}

.icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  font-size: 34px;
  margin-bottom: 14px;
}

.card h2 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.12;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  line-height: 1.45;
  font-size: 15px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.trust span {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.trust span::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.contact-box {
  max-width: 760px;
  background: linear-gradient(90deg, var(--green), #7fd13d);
  color: #061a35;
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
}

.contact-box h2 {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 28px;
}

.contact-box p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 920px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .page {
    width: 100%;
    padding: 0;
  }

  .hero {
    border-radius: 0;
    min-height: 100vh;
  }

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

  .logo-wrap {
    max-width: 280px;
  }
}
