/* ── Pricing Section ────────────────────────────────────────────────── */

.pricing {
  padding: 80px 0;
  background: var(--surface, #0d0d14);
}

.pricing .section-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-muted, rgba(255,255,255,0.65));
  font-size: 16px;
  line-height: 1.75;
}

.pricing-table {
  max-width: 560px;
  margin: 48px auto 0;
  border: 1px solid rgba(121, 57, 151, 0.25);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  font-size: 15px;
  color: var(--ink, #fff);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.18s;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:not(.pricing-row-head):hover {
  background: rgba(121, 57, 151, 0.08);
}

.pricing-row span:last-child {
  font-weight: 600;
  color: var(--clr-primary, #793997);
}

.pricing-row-head {
  background: rgba(121, 57, 151, 0.15);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
}

.pricing-row-head span:last-child {
  color: rgba(255,255,255,0.55) !important;
  font-weight: 700;
}

.pricing-note {
  max-width: 560px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .pricing-table { margin: 36px 0 0; border-radius: 12px; }
  .pricing-row { padding: 14px 20px; font-size: 14px; }
}


/* ===========================
   Pricing Mobile Fix
=========================== */

@media (max-width:768px){

    .pricing{
        padding:40px 0;
    }

    .pricing .container{
        padding-left:16px;
        padding-right:16px;
    }

    .pricing .section-head{
        margin-bottom:24px !important;
    }

    .pricing .eyebrow{
        margin-bottom:12px;
    }

    .pricing h2{
        margin:0 0 16px;
        line-height:1.15;
        font-size:38px;
    }

    .pricing .section-lead{
        margin:0;
        font-size:15px;
        line-height:1.6;
    }

    .pricing-table{
        margin-top:24px;
    }

    .pricing-row{
        padding:16px;
    }

    .pricing-note{
        margin-top:18px;
        padding:0;
    }
}
