/* DeepSales pricing page — namespaced under .pricing-* */

.pricing-page {
  background: #fff;
  color: #0f0f0f;
  padding-bottom: 96px;
}

/* Hero */
.pricing-hero {
  text-align: center;
  padding: 96px 32px 32px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.pricing-hero p {
  font-size: 18px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Billing toggle */
.pricing-billing {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 16px 16px;
}
.pricing-billing__btn {
  background: #f5f5f5;
  color: #0f0f0f;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 180ms;
}
.pricing-billing__btn[aria-pressed="true"] {
  background: #0f0f0f;
  color: #fff;
}
.pricing-billing__badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  background: #d1ff99;
  color: #0f0f0f;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.pricing-billing__badge-wrap {
  text-align: center;
  display: none;
}
body.is-annual .pricing-billing__badge-wrap {
  display: block;
}

/* Tier cards */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 32px;
}
.pricing-tier {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-tier--popular {
  border-color: #0f0f0f;
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(15, 15, 15, 0.08);
}
.pricing-tier__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f0f0f;
  color: #fff;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-tier__name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.pricing-tier__desc {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.pricing-tier__price {
  font-size: 36px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-tier__price-period {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}
.pricing-tier__price--annual {
  display: none;
}
body.is-annual .pricing-tier__price--monthly {
  display: none;
}
body.is-annual .pricing-tier__price--annual {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-tier__cta {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  background: #0f0f0f;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 180ms;
}
.pricing-tier__cta:hover {
  background: #2a2a2a;
}
.pricing-tier__features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-tier__features li {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.pricing-tier__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f0f0f;
  font-weight: 700;
}
.pricing-tier__specs {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-tier__spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}
.pricing-tier__spec-icon {
  flex-shrink: 0;
  font-size: 15px;
}
.pricing-tier__spec--highlight-blue {
  color: #0f0f0f;
  font-weight: 700;
}
.pricing-tier__spec--highlight-green {
  color: #059669;
  font-weight: 700;
}
.pricing-tier__discount {
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  margin: 4px 0 0;
}
.pricing-tier__vat {
  font-size: 11px;
  color: #888;
  margin: 8px 0 0;
}

/* Comparison table */
.pricing-table-section {
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 32px;
  text-align: center;
}
.pricing-table-toggle {
  background: transparent;
  border: 1px solid #0f0f0f;
  color: #0f0f0f;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.pricing-table-wrapper {
  margin-top: 32px;
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}
.pricing-table th,
.pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}
.pricing-table thead th {
  background: #f5f5f5;
  font-weight: 700;
}
.pricing-table tbody tr.pricing-table__group td {
  background: #fafafa;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5px;
}
.pricing-table tbody td:first-child {
  color: #333;
}
.pricing-table tbody td:not(:first-child) {
  text-align: center;
  color: #555;
}
.pricing-table__cta-row td {
  text-align: center;
}
.pricing-table__cta-row a {
  display: inline-block;
  padding: 8px 16px;
  background: #0f0f0f;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Cost comparison */
.pricing-cost {
  max-width: 1200px;
  margin: 96px auto 0;
  padding: 0 32px;
  text-align: center;
}
.pricing-cost h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 32px;
}
.pricing-cost__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pricing-cost__card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}
.pricing-cost__card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}
.pricing-cost__card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.pricing-cost__savings {
  background: #c8f135;
  color: #0f0f0f;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 24px;
  border-radius: 999px;
  display: inline-block;
}
.pricing-cost__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 8px;
}
.pricing-cost__badge--red {
  background: #fee2e2;
  color: #991b1b;
}
.pricing-cost__badge--orange {
  background: #ffedd5;
  color: #9a3412;
}
.pricing-cost__badge--yellow {
  background: #fef3c7;
  color: #92400e;
}
.pricing-cost__badge--blue {
  background: #dbeafe;
  color: #1e40af;
}
.pricing-cost__badge--purple {
  background: #ede9fe;
  color: #6b21a8;
}
.pricing-cost__badge--gray {
  background: #f3f4f6;
  color: #374151;
}
.pricing-cost__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  margin-top: 16px;
}
.pricing-cost__bottom-col {
  text-align: center;
}
.pricing-cost__bottom-label {
  font-size: 12px;
  color: #888;
  margin: 0 0 4px;
}
.pricing-cost__bottom-amount {
  font-size: 28px;
  font-weight: 900;
  color: #0f0f0f;
  margin: 0;
}
.pricing-cost__bottom-amount--strike {
  color: #ccc;
  text-decoration: line-through;
}
.pricing-cost__bottom-arrow {
  font-size: 28px;
  color: #888;
}

/* Real Results */
.pricing-real-results {
  max-width: 1200px;
  margin: 96px auto 0;
  padding: 0 32px;
}
.pricing-real-results__heading {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 40px;
  color: #0f0f0f;
}

/* Stats */
.pricing-stats {
  max-width: 1200px;
  margin: 96px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-real-results .pricing-stats {
  margin-top: 0;
}
.pricing-stat {
  text-align: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px 16px;
}
.pricing-stat__num {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #0f0f0f;
}
.pricing-stat__label {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.pricing-stat__sub {
  font-size: 11px;
  color: #888;
  margin: 4px 0 0;
}

/* Testimonials */
.pricing-testimonials {
  max-width: 1200px;
  margin: 96px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-testimonial {
  background: #fafafa;
  border-radius: 16px;
  padding: 32px;
}
.pricing-testimonial__quote {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px;
}
.pricing-testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: #0f0f0f;
  margin: 0;
}
.pricing-testimonial__role {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* Features highlights */
.pricing-features {
  max-width: 1200px;
  margin: 96px auto 0;
  padding: 0 32px;
}
.pricing-features h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
}
.pricing-features__subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin: 0 0 48px;
  line-height: 1.6;
}
.pricing-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pricing-feature {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
}
.pricing-feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.pricing-feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.pricing-features__cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.pricing-features__cta {
  display: inline-block;
  padding: 14px 32px;
  background: #0f0f0f;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}
.pricing-features__cta:hover {
  background: #2a2a2a;
}

/* FAQ — reuses .faq-item / .faq-list pattern from main.js */
.pricing-faq {
  max-width: 880px;
  margin: 96px auto 0;
  padding: 0 32px;
}
.pricing-faq h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 32px;
}
.pricing-faq__item {
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
}
.pricing-faq__trigger {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #0f0f0f;
}
.pricing-faq__trigger::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform 200ms;
}
.pricing-faq__item[data-open="true"] .pricing-faq__trigger::after {
  transform: rotate(45deg);
}
.pricing-faq__panel {
  overflow: hidden;
  height: 0;
  transition: height 240ms ease;
}
.pricing-faq__panel p {
  padding: 0 0 16px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* CTA banner */
.pricing-cta-banner {
  max-width: 1200px;
  margin: 96px auto 0;
  padding: 64px 32px;
  background: #0f0f0f;
  color: #fff;
  border-radius: 24px;
  text-align: center;
}
.pricing-cta-banner__text {
  text-align: left;
}
.pricing-cta-banner__pre {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: 0;
}
.pricing-cta-banner__heading {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
  color: #fff;
}
.pricing-cta-banner__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pricing-cta-banner__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.pricing-cta-banner__btn--primary {
  background: #fff;
  color: #0f0f0f;
}
.pricing-cta-banner__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .pricing-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 32px;
  }
  .pricing-cta-banner__actions {
    flex-shrink: 0;
    flex-wrap: nowrap;
    margin-top: 0;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .pricing-hero h1 {
    font-size: 36px;
  }
  .pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .pricing-cost__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-testimonials {
    grid-template-columns: 1fr;
  }
  .pricing-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone */
@media (max-width: 767px) {
  .pricing-hero {
    padding: 64px 16px 16px;
  }
  .pricing-hero h1 {
    font-size: 28px;
  }
  .pricing-cost__grid,
  .pricing-stats,
  .pricing-features__grid {
    grid-template-columns: 1fr;
  }
  .pricing-cta-banner {
    padding: 48px 24px;
    border-radius: 16px;
  }
  .pricing-cta-banner h2 {
    font-size: 24px;
  }
}
