/* =========================
   WIZARD / GET QUOTES SECTION
   ========================= */

.wizard-section {
  margin: 40px auto;
}

.wizard-inner {
  max-width: 1240px; /* slightly tighter */
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 36px 34px; /* reduced breadth */
  box-shadow: 0 36px 80px rgba(15,23,42,0.22);
}

.wizard-tag {
  display: inline-block;
  background: linear-gradient(90deg, #e0e7ff, #ecfeff);
  color: #2563eb;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.wizard-title {
  font-size: 34px;
  margin: 0 0 6px;
  color: #0f172a;
}

.wizard-sub {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 30px;
  max-width: 720px;
}

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

/* Cards */
.wizard-card {
  position: relative;
  background: #f8fafc;
  border-radius: 20px;
  padding: 26px 22px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wizard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15,23,42,0.22);
}

.wizard-card .icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.wizard-card h3 {
  font-size: 18px;
  margin: 0 0 6px;
}

.wizard-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Popular badge */
.wizard-card.popular {
  background: linear-gradient(135deg, #ecfeff, #f0fdf4);
  border: 2px solid #22c55e;
}

.wizard-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #22c55e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 1100px) {
  .wizard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .wizard-inner {
    padding: 30px 22px;
  }

  .wizard-title {
    font-size: 26px;
  }
}
