/* Page-specific styles for For Practitioners */

/* Hero */
#hero {
  padding: 160px 24px 80px;
  text-align: center;
  display: block;
  min-height: 0;
  height: auto;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-raw),0.08) 0%, transparent 65%);
}

#hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#hero h1 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 780px;
}

#hero .sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Persona Nav */
#persona-nav {
  padding: 0 24px 60px;
  position: relative;
  z-index: 1;
}

.persona-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.persona-tab {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
  white-space: nowrap;
}

.persona-tab:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.persona-tab.active {
  color: var(--gold);
  border-color: rgba(var(--accent-raw),0.3);
  background: rgba(var(--accent-raw),0.06);
}

/* Persona Sections */
.persona-section {
  padding: 80px 24px 100px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
}

.persona-head {
  margin-bottom: 56px;
}

.persona-head h1 {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.persona-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

/* Problem callout */
.problem-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(var(--accent-raw),0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 56px;
  max-width: 780px;
}

.problem-box-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
  display: block;
}

.problem-box p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 56px;
}

.feature-item {
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.feature-item:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.feature-item:nth-child(2) {
  border-radius: 0 var(--radius-lg) 0 0;
}

.feature-item:nth-last-child(2) {
  border-radius: 0 0 0 var(--radius-lg);
}

.feature-item:last-child {
  border-radius: 0 0 var(--radius-lg) 0;
}

.feature-item:hover {
  border-color: rgba(255,255,255,0.14);
}

.feature-item h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.85;
}

/* Deliverables */
.deliverables {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
  max-width: 680px;
}

.deliverables-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: block;
}

.deliverables ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverables li {
  font-size: 0.855rem;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.deliverables li::before {
  content: '*';
  color: var(--gold-dim);
  font-size: 0.55rem;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* Persona CTAs */
.persona-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Shared Benefits */
#shared {
  padding: 80px 24px 100px;
}

.shared-head {
  text-align: center;
  margin-bottom: 56px;
}

.shared-head h1 {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.benefit-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.benefit-row:last-child {
  border-bottom: none;
}

.benefit-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: rgba(var(--accent-raw),0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: right;
}

.benefit-body {
  flex: 1;
}

.benefit-body strong {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.benefit-body p {
  font-size: 0.855rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Final CTA */
#final-cta {
  padding: 100px 24px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(var(--accent-raw),0.07) 0%, transparent 70%);
}

#final-cta h1 {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-inline: auto;
}

#final-cta .final-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 768px) {
  #hero {
    padding: 140px 24px 60px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .feature-item:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .feature-item:nth-child(2) {
    border-radius: 0;
  }

  .feature-item:nth-last-child(2) {
    border-radius: 0;
  }

  .feature-item:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .deliverables {
    padding: 24px 22px;
  }

  .persona-section {
    padding: 60px 24px 72px;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 1.75rem;
  }

  .persona-head h1 {
    font-size: 1.9rem;
  }

  .persona-ctas {
    flex-direction: column;
  }

  .persona-ctas a {
    text-align: center;
  }
}
