.dl-hero {
  text-align: center;
  padding: 80px 0 40px;
}

.dl-hero h1 {
  margin-bottom: 16px;
}

.dl-hero .lead {
  max-width: 560px;
  margin-inline: auto;
}

.dl-hero .lead strong {
  color: var(--gold);
  font-weight: 800;
}

.dl-hero .hero-actions {
  justify-content: center;
}

.dl-hero .hero-actions .button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(213, 173, 255, 0.22);
  color: var(--text);
  box-shadow: none;
}

.dl-hero .hero-actions .button:hover {
  background: linear-gradient(135deg, var(--purple) 0%, #b357ff 45%, #f1c1ff 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(134, 57, 255, 0.34);
}

.dl-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.dl-card {
  background: linear-gradient(180deg, rgba(23, 12, 38, 0.85), rgba(12, 6, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(114, 40, 255, 0.4);
}

.dl-card .dl-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}

.dl-card h3 {
  margin-bottom: 8px;
}

.dl-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.dl-card .button {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(213, 173, 255, 0.22);
  color: var(--text);
  box-shadow: none;
}

.dl-card .button:hover {
  background: linear-gradient(135deg, var(--purple) 0%, #b357ff 45%, #f1c1ff 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(134, 57, 255, 0.34);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: steps;
}

.step-item {
  background: linear-gradient(180deg, rgba(23, 12, 38, 0.85), rgba(12, 6, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 16px;
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.req-box {
  background: linear-gradient(180deg, rgba(23, 12, 38, 0.85), rgba(12, 6, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.req-box h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.req-box h3 span {
  font-size: 1.4rem;
}

.req-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.req-list li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}

.req-list li:last-child {
  border-bottom: none;
}

.req-list li strong {
  color: var(--text);
}

.dl-cta-banner {
  background: linear-gradient(135deg, rgba(100, 30, 200, 0.3), rgba(190, 80, 255, 0.15));
  border: 1px solid rgba(163, 77, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.dl-cta-banner h2 {
  margin-bottom: 12px;
}

.dl-cta-banner p {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 0;
}

.dl-cta-banner .hero-actions {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .dl-card-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .req-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dl-cta-banner {
    padding: 40px 20px;
  }
}
