* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0e1420;
  color: #eaeef6;
  line-height: 1.7;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 30px;
}

.header {
  text-align: center;
  margin-bottom: 70px;
}

.header h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.header p {
  color: #9aa4b2;
}

.block {
  margin-bottom: 60px;
}

.block h2 {
  font-size: 22px;
  margin-bottom: 20px;
  border-left: 4px solid #00d4ff;
  padding-left: 12px;
}

.block h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #00d4ff;
}

.block p {
  margin-bottom: 15px;
  color: #c7cfdb;
}

ul {
  list-style: none;
  margin-top: 10px;
}

ul li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #c7cfdb;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d4ff;
}

.highlight {
  background: linear-gradient(160deg, rgba(0,212,255,0.07), rgba(108,78,242,0.07));
  padding: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0,212,255,0.25);
}

.price-box {
  margin: 20px 0;
}

.price {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: #00d4ff;
}

.installments {
  font-size: 14px;
  color: #9aa4b2;
}

.value-argument {
  margin-top: 20px;
  font-weight: 500;
}

.hosting {
  margin-top: 10px;
}

.final p {
  font-size: 16px;
}

.footer {
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
  color: #9aa4b2;
}

@media (max-width: 600px) {
  .container {
    padding: 50px 20px;
  }

  .price {
    font-size: 30px;
  }
}
.support {
  background: rgba(0,212,255,0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0,212,255,0.2);
  margin-bottom: 60px;
}

.cta-section {
  margin-top: 70px;
  text-align: center;
}

.cta-text {
  margin-bottom: 20px;
  font-size: 16px;
  color: #c7cfdb;
}


.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff, #6c4ef2);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,212,255,0.4);
}