/* pricing.css — Qubix pricing styles (modern minimal) */

:root{
  --bg: #ffffff;
  --text: #222222;
  --muted: #6b7280;
  --accent: #222222;
  --card-bg: #ffffff;
  --border: #e6e9ef;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(12,20,30,0.06);
  --gap: 1.25rem;
  --max-width: 1200px;
  --badge-bg: #5949AA;
  --badge-text: #fff;
}

/* container */
.pricing{
  background: var(--bg);
  color: var(--text);
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.pricing-title{
  margin: 0 0 8px 0;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 600;
  text-align: center;
}
.pricing-intro{
  margin: 0 auto 32px auto;
  max-width: 880px;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

.subheading{
  font-size: 1.125rem;
  margin: 0 0 18px 0;
  color: var(--text);
  padding-top: 20px;
  font-weight: 600;
}

/* grid */
.pricing-grid{
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* card */
.price-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  min-height: 260px;
}
.price-card.popular{
  border: 2px solid rgba(11,114,255,0.12);
}

/* badge */
.badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(12,20,30,0.04);
}

/* card header */
.price-card h4{
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  letter-spacing: -0.2px;
}
.price{
  margin: 0 0 14px 0;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price .currency{
  font-size: 0.95rem;
  font-weight: 600;
}
.price .period{
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

/* features */
.features{
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  gap: 8px;
  flex: 1 0 auto;
}
.features li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.3;
}
.icon-check{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  color: var(--accent);
}
.icon-check path{
  stroke: none;
  fill: currentColor;
}

/* button */
.btn-primary{
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  align-self: stretch;
}
.btn-primary:hover,
.btn-primary:focus{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  outline: none;
  background: var(--accent);
}
.btn-primary:active{ transform: translateY(0); }

/* small note and footer */
.small-note{
  color: var(--muted);
  font-size: 0.9rem;
  margin: 6px 0 14px 0;
}
.pricing-note{
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* responsive tweaks */
@media (max-width: 720px){
  .pricing{
    padding: 32px 16px;
  }
  .price{
    font-size: 1.25rem;
  }
  .price-card{
    padding: 16px;
  }
  .badge{ top: 10px; right: 10px; padding: 5px 8px; font-size: 11px; }
}
