/* ======= BASE RESET ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  
/* ========= BODY ========= */
body{
  font-family: "Poppins", sans-serif;
  background-color:rgb(218, 226, 233);
}

.hero-inner{
  background-color: rgb(23, 158, 221);
  height: 25vh;
  color: aliceblue;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px; 
}

.step-title{
  text-align: center;
  margin: 30px;
}

.step{
  justify-content: center;
  text-align: center;
}

.card{
  border-radius: 20px;
  margin: 20px;
  list-style-type:none ;
  text-align: center;
}

.card ul{
  list-style-type:none ;
}

.cards li{
  height: 5vh;
  width: 250px;
  font-size: larger;
}

.cards h3{
  margin: 20px;
  font: 2em sans-serif;
  font-weight: bolder;
}

/* ========== WMS ========== */
.pricing-category {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fb;
  border-radius: 20px;
  margin-bottom: 50px;
}

.pricing-category h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
  text-transform: capitalize;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.plan {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 25px;
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.plan.popular {
  border: 2px solid #007bff;
  background: linear-gradient(180deg, #ffffff, #f2f6ff);
}

.plan h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 20px;
}

.price span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.plan ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
}

.plan ul li::before {
  content: "✔";
  color: #007bff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.plan button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan button:hover {
  background: #0056d2;
}

.form { margin-top: 12px; background: #fff; padding: 14px; border-radius: 12px; border: 1px solid rgba(2,6,23,0.04); }
.form-row { display:flex; gap:10px; margin-bottom:10px; }
.form-row input { flex:1; padding:10px; border-radius:8px; border:1px solid #e6e9ef; }
textarea { width:100%; padding:10px; border-radius:8px; border:1px solid #e6e9ef; min-height:100px; resize:vertical; }

.label { font-weight:600; margin-top:6px; margin-bottom:6px; }

/* Summary box */
.summary {
  display:flex;
  justify-content:space-between;
  gap: 18px;
  align-items:center;
  margin: 14px 0;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0,123,255,0.03), rgba(0,123,255,0.01));
  border: 1px solid rgba(0,123,255,0.03);
}

.summary-row { display:flex; justify-content:space-between; gap:10px; margin-bottom:6px; color:#111827; }
.summary-total { text-align:right; }
.total-amount { font-size:20px; font-weight:700; color:var(--blue); }

/* Actions */
.actions { display:flex; gap:10px; margin-top:10px; align-items:center; }
.btn-primary { background-color: #007bff; color: #06131a; padding:10px 14px; border-radius: 10px; border: none; cursor:pointer; }
.btn-ghost { background: transparent; color: var(--blue); border: 1px solid rgba(0,123,255,0.12); padding:10px 14px; border-radius:10px; cursor:pointer; }

.collab-note { margin-top:14px; background: #fff; padding:12px; border-radius:10px; border:1px solid rgba(2,6,23,0.03); }
.collab-note h3 { margin-bottom:6px; }

/* Footer */
.footer { text-align:center; margin-top: 20px; color: var(--muted); font-size:13px; }

/* Responsive */
@media (max-width: 860px) {
  .form-row { flex-direction: column; }
  .cards, .plans { justify-content:center; }
}

  