/*
 * bn-pricing.css — Pricing page styles
 * Loaded only on /pricing.php
 * Relies on bn-style.css CSS variables and shared components.
 */

/* ── PAGE HERO ────────────────────────────────────────────── */

.pricing-hero {
  padding: 120px 24px 72px;
  text-align: center;
}

.pricing-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.pricing-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bn-acc);
  margin-bottom: 20px;
}

.pricing-hero__headline {
  font-family: var(--bn-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--bn-text);
  margin-bottom: 20px;
}

.pricing-hero__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--bn-text-muted);
  line-height: 1.7;
}

/* ── SHARED SECTION WRAPPER ───────────────────────────────── */

.pricing-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-section + .pricing-section {
  padding-top: 0;
}

.pricing-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bn-acc);
  margin-bottom: 12px;
}

.pricing-section__headline {
  font-family: var(--bn-font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bn-text);
  margin-bottom: 8px;
}

.pricing-section__sub {
  font-size: 15px;
  color: var(--bn-text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}

/* ── PROJECT CARDS (Web Design / AI & Creative) ───────────── */

.pricing-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-project-card {
  background: var(--bn-surf);
  border: 1px solid var(--bn-bdr);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.pricing-project-card--featured {
  border-color: var(--bn-acc);
}

.pricing-project-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bn-acc);
  margin-bottom: 20px;
}

.pricing-project-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.pricing-project-card__from {
  font-size: 14px;
  color: var(--bn-text-muted);
}

.pricing-project-card__num {
  font-family: var(--bn-font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bn-text);
}

.pricing-project-card__unit {
  font-size: 15px;
  color: var(--bn-text-muted);
}

.pricing-project-card__note {
  font-size: 13px;
  color: var(--bn-text-faint);
  margin-bottom: 28px;
}

.pricing-project-card__divider {
  width: 28px;
  height: 3px;
  background: var(--bn-acc);
  border-radius: 2px;
  margin-bottom: 24px;
}

.pricing-project-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 36px;
}

.pricing-project-card__feature {
  font-size: 14px;
  color: var(--bn-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pricing-project-card__feature::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: var(--bn-acc);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-project-card__cta {
  margin-top: auto;
}

/* ── MAINTENANCE PLANS ────────────────────────────────────── */
/* Reuses .plan-grid / .plan-card from bn-pages.css            */

.pricing-plans-wrap {
  background: var(--bn-surf);
  padding: 80px 24px;
}

.pricing-plans-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-plans-note {
  text-align: center;
  font-size: 13px;
  color: var(--bn-text-faint);
  margin-top: 24px;
  line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────────────────── */

.pricing-faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-faq__item {
  border-bottom: 1px solid var(--bn-bdr);
  padding: 28px 0;
}

.pricing-faq__item:first-child {
  border-top: 1px solid var(--bn-bdr);
}

.pricing-faq__q {
  font-family: var(--bn-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--bn-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pricing-faq__a {
  font-size: 15px;
  color: var(--bn-text-muted);
  line-height: 1.7;
}

.pricing-faq__a a {
  color: var(--bn-acc);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 700px) {
  .pricing-hero { padding: 96px 24px 56px; }

  .pricing-project-grid {
    grid-template-columns: 1fr;
  }

  .pricing-project-card {
    padding: 32px 24px;
  }

  .pricing-plans-wrap { padding: 56px 24px; }

  .pricing-section { padding: 56px 24px; }
  .pricing-section + .pricing-section { padding-top: 0; }
}
