/* ── Page Hero ────────────────────────────────────────── */
.page-hero {
  background: var(--light-bg);
  padding: 56px 15px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.page-hero .section-label {
  margin-bottom: 10px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  z-index: 0;
}

.page-hero h1::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 7px;
  background: var(--green);
  z-index: -1;
}

.page-hero .hero-sub {
  font-size: 15px;
  color: var(--text);
  margin-top: 10px;
}

/* ── Pricing Tabs Section ─────────────────────────────── */
.pricing-tabs-section {
  background: var(--white);
  padding: 64px 15px;
}

.tab-switcher {
  display: flex;
  justify-content: center;
  background: #e8e8e8;
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 52px;
}

.tab-btn {
  padding: 12px 36px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    background 0.2s,
    color 0.2s;
}

.tab-btn.active {
  background: var(--cyan);
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.pricing-display {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pricing-desc {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.75;
}

.price-amount {
  font-size: clamp(52px, 9vw, 80px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 28px;
}

.price-amount span {
  font-size: 0.4em;
  font-weight: 600;
  vertical-align: super;
  color: var(--text);
}

.pricing-feature-list {
  list-style: none;
  margin-bottom: 28px;
  display: inline-block;
  text-align: left;
}

.pricing-feature-list li {
  font-size: 15px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-feature-list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.5L2.5 7.5l1.4-1.4L6.5 8.7l5.6-5.6 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-note-text {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

/* ── Benefits Section ─────────────────────────────────── */
.benefits {
  background: var(--light-bg);
  padding: 72px 15px;
}

.benefits .section-label,
.benefits .section-title {
  text-align: center;
}

.benefits .section-title {
  margin-bottom: 16px;
}

.benefits-intro {
  font-size: 16px;
  color: var(--text);
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.credentials-block {
  margin-top: 56px;
}

.credentials-block .benefits-intro + .benefits-intro {
  margin-bottom: 32px;
}

.credentials-badges {
  margin: 0;
}

/* images are display:block sitewide, so text-align cannot centre them */
.credentials-badges img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.benefit-item {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--navy);
}

.benefit-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero h1::after {
    display: none;
  }

  .tab-btn {
    padding: 10px 22px;
    font-size: 13px;
  }

  .pricing-tabs-section,
  .benefits {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .tab-switcher {
    width: 100%;
    justify-content: stretch;
  }

  .tab-btn {
    flex: 1;
    text-align: center;
  }
}
