/* Local Street Business Accelerator — pricing page */

.ba-page {
  padding-top: 100px;
  background: var(--light-blue, #f4f8fb);
}

.ba-hero {
  position: relative;
  padding: 72px 24px 56px;
  text-align: center;
  overflow: hidden;
}

.ba-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fa5853 0%, #f46692 45%, #ffc444 100%);
  opacity: 0.08;
  pointer-events: none;
}

.ba-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.ba-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(250, 88, 83, 0.12);
  color: #c93d38;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ba-hero h1 {
  margin: 0 0 16px;
  font-family: Manrope, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

.ba-hero p {
  margin: 0 auto;
  max-width: 560px;
  color: #4a5568;
  font-size: 18px;
  line-height: 1.6;
}

.ba-section {
  padding: 48px 24px 24px;
}

.ba-section-header {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.ba-section-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fa5853, #f46692);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-section-title-wrap h2 {
  margin: 0 0 4px;
  font-family: Manrope, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
}

.ba-section-title-wrap p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

.ba-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.ba-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.ba-card--featured {
  border-color: rgba(250, 88, 83, 0.35);
  box-shadow: 0 8px 32px rgba(250, 88, 83, 0.12);
}

.ba-card--bundle {
  border-color: rgba(255, 196, 68, 0.5);
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.ba-badge {
  position: absolute;
  top: -11px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ba-badge--popular {
  background: linear-gradient(135deg, #fa5853, #f46692);
  color: #fff;
}

.ba-badge--value {
  background: linear-gradient(135deg, #ffc444, #f3a562);
  color: #1a1a1a;
}

.ba-badge--free {
  background: #e8f5e9;
  color: #2e7d32;
}

.ba-plan-name {
  margin: 0 0 8px;
  font-family: Manrope, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
}

.ba-price {
  margin: 0 0 4px;
  font-family: Manrope, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.ba-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
}

.ba-price-note {
  margin: 0 0 16px;
  font-size: 13px;
  color: #94a3b8;
  min-height: 18px;
}

.ba-tagline {
  margin: 0 0 16px;
  font-size: 14px;
  color: #475569;
  font-style: italic;
}

.ba-features {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.ba-features li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 14px;
  line-height: 1.45;
  color: #334155;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.ba-features li:last-child {
  border-bottom: none;
}

.ba-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  color: #fa5853;
  font-weight: 700;
  font-size: 13px;
}

.ba-cta {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ba-cta:hover {
  opacity: 0.92;
  transform: scale(1.01);
}

.ba-cta--primary {
  background: linear-gradient(135deg, #fa5853, #f46692);
  color: #fff;
}

.ba-cta--outline {
  background: #fff;
  color: #fa5853;
  border: 2px solid rgba(250, 88, 83, 0.4);
}

.ba-cta--dark {
  background: #1e293b;
  color: #fff;
}

.ba-addon {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 24px 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed rgba(250, 88, 83, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ba-addon h3 {
  margin: 0 0 4px;
  font-family: Manrope, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.ba-addon p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.ba-addon-price {
  font-family: Manrope, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fa5853;
  white-space: nowrap;
}

.ba-bottom-cta {
  max-width: 1100px;
  margin: 48px auto 64px;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(135deg, #fa5853 0%, #f46692 50%, #ffc444 100%);
  color: #fff;
}

.ba-bottom-cta h2 {
  margin: 0 0 8px;
  font-family: Manrope, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.ba-bottom-cta p {
  margin: 0 auto 24px;
  max-width: 480px;
  opacity: 0.95;
  font-size: 16px;
}

.ba-bottom-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ba-bottom-actions a {
  padding: 14px 28px;
  border-radius: 10px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.ba-bottom-actions a:hover {
  transform: scale(1.03);
}

.ba-btn-white {
  background: #fff;
  color: #c93d38;
}

.ba-btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .ba-page {
    padding-top: 80px;
  }

  .ba-hero {
    padding: 48px 20px 40px;
  }

  .ba-section {
    padding: 36px 16px 16px;
  }

  .ba-card {
    padding: 24px 20px 20px;
  }

  .ba-addon {
    flex-direction: column;
    align-items: flex-start;
  }
}
