/* PROCEDURE PAGES - SHARED STYLES */
/* Used by all 23 individual procedure pages                                   */

/* ── PROC HERO ───────────────────────────────────────────────── */
.proc-hero {
  background: var(--bg-2);
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.proc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.proc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 20px;
}

.proc-breadcrumb a {
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.15s;
}
.proc-breadcrumb a:hover { color: var(--gold); }

.proc-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--gold-p);
  border: 1px solid rgba(202,138,4,.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-d);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.proc-hero h1 {
  margin-bottom: 16px;
}

.proc-hero .proc-lead {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.proc-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.proc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proc-stat-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.proc-stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.proc-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.proc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Visual / Icon Panel */
.proc-hero-visual {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

.proc-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(20,15,10,.08) 100%);
  pointer-events: none;
}

.proc-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── INFO TABLE ──────────────────────────────────────────────── */
.proc-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.proc-info-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}

.proc-info-table td {
  padding: 16px 24px;
  font-size: 0.9375rem;
  vertical-align: top;
}

.proc-info-table td:first-child {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-2);
  width: 200px;
  white-space: nowrap;
}

.proc-info-table td:last-child {
  color: var(--text-2);
}

/* ── BENEFITS GRID ───────────────────────────────────────────── */
.proc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proc-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.proc-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.07);
  border-color: rgba(202,138,4,.2);
}

.proc-benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-p);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.proc-benefit-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--sans);
}

.proc-benefit-card p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.6;
}

/* ── INDICATIONS ─────────────────────────────────────────────── */
.proc-indications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.proc-indications-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 8px;
}

.proc-indications-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proc-indications-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.proc-ind-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.proc-ind-dot.ok {
  background: rgba(34,197,94,.12);
  color: #16a34a;
}

.proc-ind-dot.no {
  background: rgba(239,68,68,.1);
  color: #dc2626;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.proc-faq {}

/* ── CTA ─────────────────────────────────────────────────────── */
.proc-cta {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  text-align: center;
  padding-block: 96px;
}

.proc-cta .eyebrow { margin-bottom: 16px; }
.proc-cta h2 { margin-bottom: 16px; }
.proc-cta p { margin-bottom: 40px; max-width: 480px; margin-inline: auto; font-size: 1.0625rem; }

.proc-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .proc-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .proc-hero-visual {
    max-width: 320px;
    margin: 0 auto;
  }
  .proc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .proc-hero {
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 48px;
  }
  .proc-benefits-grid {
    grid-template-columns: 1fr;
  }
  .proc-indications-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .proc-info-table td:first-child {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .proc-stats {
    gap: 16px;
  }
  .proc-hero-actions {
    flex-direction: column;
  }
  .proc-hero-actions .btn-gold,
  .proc-hero-actions .btn-outline {
    justify-content: center;
  }
  .proc-cta-actions {
    flex-direction: column;
  }
}
