/* /become-a-client — client acquisition landing page */

.bc-page {
  padding: calc(68px + 48px) 24px 80px;
  background: var(--bg);
  position: relative;
}

.bc-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 10%, rgba(59, 130, 246, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 80% 90%, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.bc-hero,
.bc-features,
.bc-faq {
  position: relative;
  z-index: 1;
}

.bc-hero-inner,
.bc-features-inner,
.bc-faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.bc-hero {
  text-align: center;
  padding: 80px 0 64px;
}

.bc-hero .section-label {
  margin-bottom: 20px;
}

.bc-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.bc-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ─── CTA ─────────────────────────────────────── */
.bc-cta {
  margin: 0 auto;
  max-width: 420px;
}

.bc-cta-button {
  display: block;
  width: 100%;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}

.bc-cta-button:hover {
  background: var(--accent-dim);
}

.bc-cta-button:active {
  transform: translateY(1px);
}

.bc-cta-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ─── FEATURES ─────────────────────────────────── */
.bc-features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.bc-features-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin: 0 0 48px;
  max-width: 700px;
}

/* ─── FAQ ──────────────────────────────────────── */
.bc-faq {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.bc-faq-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin: 0 0 48px;
}

.bc-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ─── RECEIPT (success / pending / cancelled) ──── */
.bc-receipt {
  margin: 0 auto 40px;
  max-width: 560px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}

.bc-receipt-cancel {
  background: rgba(255, 100, 100, 0.04);
  border-color: rgba(255, 100, 100, 0.18);
}

.bc-receipt-check {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.bc-receipt-cancel .bc-receipt-check {
  color: #e07070;
}

.bc-receipt h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.bc-receipt p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.bc-receipt-note {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Footer "Become a Client" link — reuses .navbar-link styling */
.footer-link-row {
  margin: 8px 0;
}

.footer-link {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 120ms ease;
}

.footer-link:hover {
  color: var(--fg);
}

/* ─── CAPTURE FORM (post-signup clinic details) ── */
.bc-capture-form {
  margin: 0 auto;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.bc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-field-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.bc-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  outline: none;
}

.bc-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}

.bc-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.bc-input-error {
  border-color: rgba(255, 100, 100, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 100, 100, 0.12);
}

.bc-input-error:focus {
  border-color: rgba(255, 100, 100, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 100, 100, 0.22);
}

.bc-capture-summary {
  list-style: none;
  margin: 16px auto 0;
  padding: 0;
  max-width: 420px;
  text-align: left;
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.bc-capture-summary li strong {
  color: var(--fg);
  font-weight: 500;
  margin-right: 6px;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .bc-hero { padding: 60px 0 48px; }
  .bc-features { padding: 64px 0; }
  .bc-faq { padding: 64px 0; }
}

@media (max-width: 600px) {
  :root { --section-pad: 72px 20px; }
  .bc-page { padding: calc(68px + 32px) 20px 64px; }
  .bc-cta { max-width: 100%; }
}
