* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔥 КЛЮЧЕВОЙ МОМЕНТ ДЛЯ ЧЁЛКИ */
html {
  background-color: #080808;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Тот же цвет — чтобы не было белых зон */
  background-color: #080808;

  background: linear-gradient(
    135deg,
    #080808,
    #1c1c1c,
    #2a2a2a
  );
  background-size: 300% 300%;
  animation: bgMove 12s ease infinite;

  /* Safe-area padding */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Появление */
.fade-in {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 40px;
}

/* Основная компоновка */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Название + слоган */
.title-block {
  display: flex;
  flex-direction: column;
}

/* 🔱 Название сервиса */
.service-name {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  background: linear-gradient(
    135deg,
    #f7e29a,
    #d3ac5a
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 10px;
}

/* Слоган */
.slogan {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
}

/* Кнопка */
.cta {
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #111;

  background: linear-gradient(
    135deg,
    #f7e29a,
    #d3ac5a
  );

  transition: all 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* 📱 Мобилка */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .service-name {
    font-size: 36px;
    letter-spacing: 0.1em;
  }

  .slogan {
    font-size: 16px;
  }

  .cta {
    width: 100%;
    max-width: 280px;
  }
}
