.pricing-page {
  padding: 5rem 0 6rem;
}
.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pricing-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--accent-glow); border: 1px solid var(--accent-border);
  color: var(--accent2); padding: .28rem .9rem;
  border-radius: 20px; font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.pricing-title span { color: var(--accent); }
.pricing-subtitle {
  color: var(--text2); font-size: 1.05rem;
  max-width: 520px; margin: 0 auto;
  line-height: 1.6;
}

/* Trial badge */
.trial-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--success-dim); border: 1px solid rgba(34,197,94,.28);
  color: var(--success); padding: .55rem 1.2rem;
  border-radius: 100px; font-size: .82rem; font-weight: 700;
  margin-top: 1.5rem;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all .22s;
  display: flex; flex-direction: column; gap: 0;
}
.plan-card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.plan-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, color-mix(in srgb, var(--bg2) 95%, var(--accent)) , var(--bg2));
  box-shadow: 0 0 0 1px var(--accent-border), 0 12px 40px var(--accent-glow);
}

.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: .22rem .9rem; border-radius: 20px;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: .35rem;
}
.plan-desc {
  font-size: .83rem; color: var(--text3);
  margin-bottom: 1.5rem; line-height: 1.5;
  min-height: 2.5rem;
}

.plan-price {
  display: flex; align-items: baseline; gap: .35rem;
  margin-bottom: .35rem;
}
.plan-price .amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--text); line-height: 1;
}
.plan-price .currency {
  font-size: .85rem; font-weight: 600; color: var(--text3);
  margin-bottom: .2rem;
}
.plan-period {
  font-size: .78rem; color: var(--text3);
  margin-bottom: 1.75rem;
}

.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: .65rem;
  margin-bottom: 2rem; flex: 1;
}
.plan-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .875rem; color: var(--text2);
}
.plan-features li i {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--success-dim); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; flex-shrink: 0;
}
.plan-features li.off { color: var(--text4); text-decoration: line-through; }
.plan-features li.off i { background: var(--bg4); color: var(--text4); }

.plan-cta {
  margin-top: auto;
}

/* Payment methods shown */
.payment-methods {
  display: flex; align-items: center; gap: .6rem; justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.pm-chip {
  display: flex; align-items: center; gap: .4rem;
  background: var(--bg3); border: 1px solid var(--border2);
  padding: .4rem .9rem; border-radius: var(--radius-xs);
  font-size: .78rem; font-weight: 600; color: var(--text2);
}
.pm-chip img { height: 16px; }

/* How it works */
.how-section {
  margin-top: 5rem;
  text-align: center;
}
.how-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  margin-bottom: .6rem; letter-spacing: -.02em;
}
.how-sub { color: var(--text3); font-size: .9rem; margin-bottom: 2.5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; max-width: 800px; margin: 0 auto;
}
.step-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.5rem 1.25rem;
  transition: .2s;
}
.step-card:hover { border-color: var(--accent-border); }
.step-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-glow); border: 1px solid var(--accent-border);
  color: var(--accent2); font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-title { font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.step-desc { font-size: .82rem; color: var(--text3); line-height: 1.5; }

/* FAQ */
.faq-section { margin-top: 4.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.faq-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; text-align: center; margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-q { font-weight: 600; font-size: .9rem; margin-bottom: .4rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { font-size: .84rem; color: var(--text2); line-height: 1.6; }