@import url("../Home/index.css");

.become-hero {
  margin-top: 40px;
}

.hero-left {
  padding: 34px;
}

.steps {
  max-width: var(--max-width);
  margin: 45px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #072029;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(2,6,23,0.06);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #072029;
}

.step-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.step-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.special-title{
  text-align: center;
}

.plans {
  max-width: var(--max-width);
  margin: 30px auto 70px;
  padding: 0 20px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plan-card {
  background: #d9d9d9; 
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(2,6,23,0.06);
  text-align: left;
  opacity: 0.85; 
  cursor: not-allowed; 
}

.plan-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #555; 
}

.plan-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #777; 
}

.plan-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.plan-card ul li {
  margin: 6px 0;
  font-size: 14px;
  color: #666; 
}


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

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