:root {
  --bg-dark: #0a0a0a;
  --bg-card: #161616;
  --accent1: #ec4899;
  --accent2: #8b5cf6;
  --text-light: #f5f5f5;
  --text-muted: #a1a1aa;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
}

a {
  color: var(--accent1);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 4rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-text {
  max-width: 30rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.125rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-image: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  font-weight: 600;
  transition: opacity .2s;
}

.btn:hover {
  opacity: .9;
}

.btn.alt {
  background-image: linear-gradient(90deg, var(--accent2), var(--accent1));
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero {
  position: relative;
  text-align: center;
  padding: 4rem 1rem 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scale(1.1);
  animation: bgZoom 8s ease-out forwards;
  background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)), url('poster/poster_d1fb9f748f_736.png') center/cover no-repeat;
}

@keyframes bgZoom {
  to {
    transform: scale(1);
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .6);
}

.hero p {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

.hero-logo {
  width: clamp(250px, 40vw, 360px);
  height: auto;
  margin: 0 auto 1.5rem;
}

.pay-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.footer {
  border-top: 1px solid #27272a;
  padding: 2rem 1rem;
  text-align: center;
  font-size: .875rem;
  color: var(--text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards > .card:first-child {
    grid-column: 1 / -1;
  }

  .pay-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width:100px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_100.png');}}\n@media (max-width:200px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_200.png');}}\n@media (max-width:300px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_300.png');}}\n@media (max-width:400px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_400.png');}}\n@media (max-width:500px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_500.png');}}\n@media (max-width:600px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_600.png');}}\n@media (max-width:700px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_700.png');}}\n@media (max-width:736px){.hero::before{background-image:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url('poster/poster_d1fb9f748f_736.png');}}
