/* Sales page styles scoped to .sales-content to avoid global overrides */
.sales-content {
  --sales-primary: #0f766e;
  --sales-primary-dark: #0b5f59;
  --sales-accent: #f59e0b;
  --sales-ink: #0f172a;
  --sales-muted: #64748b;
  --sales-border: #e5e7eb;
  --sales-bg-soft: #f7faf9;
  --sales-bg-hero: linear-gradient(135deg, #e6f7f4 0%, #fff7e6 100%);
  color: var(--sales-ink);
}

.sales-section {
  padding: 4.5rem 0;
}

@media (max-width: 767.98px) {
  .sales-section {
    padding: 3rem 0;
  }
}

.sales-section-sm {
  padding: 2.5rem 0;
}

.sales-section-muted {
  background: var(--sales-bg-soft);
}

.sales-section-hero {
  background: var(--sales-bg-hero);
  position: relative;
  overflow: hidden;
}

.sales-section-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.15) 0%, rgba(15, 118, 110, 0) 70%);
  top: -140px;
  right: -140px;
}

.sales-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--sales-primary);
  font-weight: 700;
}

.sales-display-title {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.8rem);
  line-height: 1.08;
}

.sales-lead {
  font-size: 1.2rem;
  color: var(--sales-muted);
}

.sales-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 767.98px) {
  .sales-btn-group .btn {
    width: 100%;
  }
}

.sales-card {
  border: 1px solid var(--sales-border);
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.sales-badge {
  background: rgba(15, 118, 110, 0.12);
  color: var(--sales-primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  display: inline-block;
}

.sales-list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.sales-list-check li {
  margin-bottom: 0.65rem;
}

.sales-list-check li::before {
  content: "✓";
  color: var(--sales-primary);
  font-weight: 800;
  margin-right: 0.5rem;
}

.sales-proof-tile {
  border: 1px dashed var(--sales-border);
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  height: 100%;
}

.sales-price-card {
  border: 1px solid var(--sales-border);
  border-radius: 1rem;
  padding: 2rem;
  background: #fff;
  position: relative;
  height: 100%;
}

.sales-price {
  font-size: 2rem;
  font-weight: 700;
}

.sales-price-card.best {
  border: 2px solid var(--sales-primary);
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.15);
}

.sales-price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--sales-accent);
  color: #111;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.sales-steps {
  counter-reset: sales-step;
  padding-left: 0;
  list-style: none;
}

.sales-steps li {
  counter-increment: sales-step;
  padding: 1rem 1.25rem;
  border: 1px solid var(--sales-border);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.sales-steps li::before {
  content: counter(sales-step);
  font-weight: 700;
  color: #fff;
  background: var(--sales-primary);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-right: 0.75rem;
}

.sales-cta-band {
  background: #0f172a;
  color: #f8fafc;
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.sales-cta-band .btn-light {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.sales-cta-band .btn-light:hover,
.sales-cta-band .btn-light:focus {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #e2e8f0;
}

.sales-accordion .card {
  border: 1px solid var(--sales-border);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.sales-accordion .card-header {
  background: #fff;
  border-bottom: 1px solid var(--sales-border);
}

.sales-accordion .btn-link {
  color: var(--sales-ink);
  text-decoration: none;
  font-weight: 600;
}

.sales-accordion .btn-link:hover {
  color: var(--sales-primary);
  text-decoration: none;
}

.sales-animate {
  animation: salesFadeUp 700ms ease-out both;
}

@keyframes salesFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-animate {
    animation: none;
  }
}

@media (min-width: 992px) {
  .sales-content .container {
    max-width: 860px;
  }
}
