/* ═══════════════════════════════════════════════════
   HCP Pricing — audience-specific overrides
   Shared base: assets/css/pricing.css
   ═══════════════════════════════════════════════════ */

/* ── WHY SECTION ── */
.why-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.why-section .section-title,
.why-section .section-sub {
  margin-bottom: 16px;
}

.why-section .section-sub {
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition:
    box-shadow 0.15s,
    border-color 0.15s;
}

.why-card:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 4px 16px oklch(56% 0.13 192 / 0.1);
}

.why-icon {
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SESSION NOTE ── */
.session-note {
  background: var(--teal-light);
  border: 1px solid oklch(82% 0.07 192);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--teal-dark);
  line-height: 1.6;
  margin-top: 8px;
}

.session-note strong {
  font-weight: 700;
}

/* ── WHAT'S INCLUDED ── */
.included-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.included-section .section-sub {
  margin-bottom: 48px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  transition: border-color 0.15s;
}

.included-item:hover {
  border-color: var(--teal-mid);
}

.included-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 1.5px solid oklch(82% 0.07 192);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.included-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--teal-dark);
  stroke-width: 2.5;
  fill: none;
}

.included-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.4;
}

.included-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── FAQ ── */
.faq-section .section-title {
  margin-bottom: 40px;
}

.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-q {
  color: var(--teal-dark);
}

.faq-a {
  padding: 0 4px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA: single-column centered override ── */
.cta-inner {
  display: block;
}

.cta-content {
  text-align: center;
}

.cta-actions {
  justify-content: center;
}

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

  .examples-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .session-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .proxy-callout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  .included-grid {
    grid-template-columns: 1fr;
  }
}
