* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #000;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

/* Titles */
.section-title {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(90deg, #b86bff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  max-width: 700px;
  margin: 15px auto 60px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: linear-gradient(180deg, #0d0d12, #09090d);
  border: 1px solid rgba(186, 107, 255, 0.12);
  border-radius: 16px;
  padding: 35px 25px;
  transition: all 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(186, 107, 255, 0.25);
}

/* Icon */
.icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: radial-gradient(circle at top left, #ff4fd8, #9b5cff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 25px rgba(186, 107, 255, 0.6);
}

.icon-box.small {
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

/* Trusted Section */
.trusted-section {
  padding-top: 0;
}

.audit-list {
  max-width: 600px;
  margin: auto;
}

.audit-card {
  background: linear-gradient(180deg, #0d0d12, #09090d);
  border: 1px solid rgba(186, 107, 255, 0.15);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audit-left {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.audit-card h4 {
  margin: 0;
  font-size: 16px;
}

.audit-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #fff;
}

.check {
  color: #3cff8f;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
