/* pricing.css — BayFull /pricing page */

.pricing-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ── HERO BAND ── */
.pricing-hero {
  position: relative;
  padding: 80px 40px 72px;
  text-align: center;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.1;
}

.pricing-hero p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── MAIN PLAN CARD ── */
.pricing-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.plan-card-header {
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--fg);
  letter-spacing: -0.04em;
}

.plan-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.plan-customer-gets {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: var(--radius);
}

.plan-customer-gets span {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

/* ── INCLUDED SECTION ── */
.plan-included {
  padding: 32px 48px;
  border-bottom: 1px solid var(--border);
}

.plan-included h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.4;
}

.feature-text strong {
  display: block;
  margin-bottom: 2px;
}

.feature-text span {
  color: var(--fg-muted);
  font-size: 0.82rem;
}

/* ── HOW IT WORKS ── */
.plan-how {
  padding: 32px 48px;
  border-bottom: 1px solid var(--border);
}

.plan-how h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.5;
}

/* ── CTA SECTION ── */
.plan-cta {
  padding: 40px 48px;
  text-align: center;
}

.plan-cta-price-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.plan-cta-price-note strong {
  color: var(--fg);
}

.plan-buy-btn {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
  background: var(--accent);
  padding: 16px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.plan-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.3);
}

.plan-cta-terms {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* ── FAQ STRIP ── */
.pricing-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.pricing-faq h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-q {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .pricing-hero { padding: 60px 24px 56px; }
  .plan-card-header,
  .plan-included,
  .plan-how,
  .plan-cta { padding-left: 24px; padding-right: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-hero h1 { font-size: 2rem; }
  .plan-price { font-size: 2.6rem; }
}