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

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: #0c0438;
}

.page {
  min-height: 100vh;
  background-color: #efeafb;
  background-image: url("./img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(42px, 6vh, 82px) clamp(18px, 4vw, 52px) clamp(20px, 3vh, 40px);
}

.title {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: clamp(20px, 3vh, 44px);
}

.description {
  max-width: 1120px;
  margin: 0 auto clamp(20px, 3vh, 34px);
}

.description p {
  font-size: clamp(14px, 1.2vw, 19px);
  line-height: 1.95;
  color: rgba(12, 4, 56, 0.78);
}

.description p + p {
  margin-top: clamp(10px, 1.5vh, 16px);
}

.cards {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.card {
  min-height: 240px;
  border-radius: 16px;
  padding: clamp(16px, 2vh, 24px) clamp(16px, 1.4vw, 22px) clamp(14px, 1.8vh, 20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.card h2 {
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}

.line {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: #9d77f4;
  margin: 10px 0 14px;
}

.card p,
.card li {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.9;
  color: rgba(12, 4, 56, 0.78);
}

.card ul {
  list-style: none;
  margin-top: 2px;
}

.card li {
  position: relative;
  padding-left: 14px;
}

.card li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
}

.footer {
  text-align: center;
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.4;
  color: rgba(12, 4, 56, 0.5);
  margin-top: clamp(22px, 4vh, 40px);
}

@media (max-width: 1600px) {
  .container {
    width: min(100%, 1320px);
  }
}

@media (max-width: 980px) {
  .container {
    padding-top: 48px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    min-height: unset;
  }

  .footer {
    margin-top: 42px;
  }
}
