
/* Two-column layout for payment page */
.pay-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.pay-col { min-width: 0; }

/* Benefits side */
.pay-col--benefits h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  margin-bottom: .5rem;
  color: #0f172a;
}
.pay-col--benefits .pay-hero__sub {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #475569;
}

/* Pricing side */
.pay-col--pricing {
  position: relative;
}
.pay-pricing__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
  overflow: hidden;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .pay-layout {
    grid-template-columns: 1fr;
  }
}

/* Hero title */
#pay-hero-title {
  font-size: clamp(2rem, 3vw, 3.5rem); /* scales with viewport */
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;       /* deep slate/ink */
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
  text-align: left;     /* left aligns in column */
}

/* If you want it centered when stacked on mobile */
@media (max-width: 900px) {
  #pay-hero-title {
    text-align: center;
  }
}

.pay-hero{
  max-width: 840px;
  margin: 2.5rem auto 1.25rem;
  padding: 0 1rem;
  text-align: center;
}
.pay-hero h1{
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .5rem;
  color: var(--ink);
}
.pay-hero__sub{
  max-width: 700px;
  margin: 0 auto 1.25rem;
  color: var(--muted);
}

/* Cleaner checklist style for pay-features */
.pay-features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.pay-features li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.4;
}

.pay-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #16a34a; /* green checkmark */
}

/* Optional: scale font slightly up for emphasis */
.pay-features li strong {
  font-weight: 600;
  color: #0f172a;
}

.pay-trust{
  display:flex; flex-wrap:wrap; gap:.5rem .6rem;
  justify-content:center;
  margin-top: .25rem;
}
.pay-trust span{
  font-size: .85rem; color: var(--muted);
  border:1px solid var(--line);
  border-radius: 999px;
  padding: .28rem .55rem;
  background: #fff;
}

.pay-pricing{
  max-width: 980px;
  margin: 1.25rem auto 0;
  padding: 0 1rem;
}
.pay-pricing__card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.stripe-table {
  display: block;
  width: 100%;
  min-height: 500px; /* avoid layout jump */
}

.pay-cta{
  display:grid; place-items:center;
  gap:.3rem;
  padding: 1.25rem 1rem 2rem;
}
.pay-cta .button{
  min-width: 220px;
}
.pay-cta__fine{
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.pay-price {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #0f172a;
}
.pay-price strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0074e4;
}

/* util */
.sr-only{
  position:absolute!important; width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}