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

html,
body {
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

body {
  background: #090909;
}

.hero {
  position: relative;
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 90px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.78)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1050px;
  text-align: center;
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 22px;
}

h1 span,
.cta h2 {
  color: #ffd86f;
}

.subtitle {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 92px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px;
  align-items: stretch;
  margin-bottom: 86px;
}

.card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 22px;
  border-radius: 8px;
  background: #d9d9d9;
  color: #050505;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 76px;
  height: 76px;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
}

.card h3 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
}

.card p {
  font-size: 16px;
  line-height: 1.22;
  font-weight: 500;
}

.cta h2 {
  font-size: clamp(26px, 3vw, 35px);
  margin-bottom: 28px;
  font-weight: 500;
}

.cta p {
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.2;
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 365px;
  padding: 12px 30px;
  border-radius: 11px;
  background: linear-gradient(90deg, #2ca8ff, #0878bd);
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 120, 190, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 120, 190, 0.45);
}

.button svg {
  width: 43px;
  height: 43px;
  fill: currentColor;
}

footer {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #ffd86f;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1050px) {
  .subtitle {
    margin-bottom: 55px;
  }

  .cards {
    gap: 32px;
    margin-bottom: 60px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 44px 16px 64px;
  }

  .subtitle br,
  .cta p br {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .card {
    min-height: 190px;
  }

  .button {
    min-width: 0;
    width: 100%;
    max-width: 365px;
    font-size: 24px;
  }
}
