/* ── Healthcare page ── */

/* ── 1. Hero ── */
.hc-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 460px;
  padding-top: 72px;
  overflow: hidden;
  background: var(--voy-bg-cream);
}
.hc-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hc-hero-glow {
  position: absolute; top: -60px; right: -40px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(224,37,37,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hc-hero-glow2 {
  position: absolute; bottom: 40px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(22,101,52,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hc-hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--voy-bg-cream));
  pointer-events: none;
}
.hc-hero-container {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.hc-hero-inner { padding: 56px 0 40px 96px; max-width: 640px; flex: 1 1 560px; }
.hc-hero-inner h1 {
  font-family: var(--voy-font-heading);
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  color: var(--voy-text-heading);
  margin: 18px 0 22px;
  letter-spacing: -0.025em;
}
.hc-hero-inner h1 em { font-style: normal; color: var(--voy-primary); }
.hc-hero-sub {
  font-family: var(--voy-font-body);
  font-size: 17.5px; font-weight: 400;
  color: var(--voy-text-body);
  line-height: 1.65; max-width: 560px;
  margin-bottom: 36px;
}
.hc-hero-buttons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* hero right visual */
.hc-hero-visual {
  position: relative; z-index: 2;
  flex: 0 0 auto;
  width: 400px;
  max-width: 40%;
  padding-right: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-hero-panel {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,.97);
  border: 1px solid var(--voy-border);
  border-radius: var(--voy-radius-xl);
  box-shadow: 0 0 40px -18px rgba(224,37,37,.22), 0 24px 54px -20px rgba(60,54,44,.2);
  padding: 22px 24px;
}
.hc-hero-float-chip {
  position: absolute; left: -22px; bottom: -20px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: #FFFFFF; border: 1px solid rgba(224,37,37,.28);
  border-radius: 14px; padding: 11px 16px;
  box-shadow: 0 16px 36px -16px rgba(26,26,23,.3);
}
.hc-hero-float-chip .fc-num { font-family: var(--voy-font-heading); font-weight: 800; font-size: 19px; color: var(--voy-primary); letter-spacing: -.01em; }
.hc-hero-float-chip .fc-lbl { font-size: 11px; color: var(--voy-text-muted); line-height: 1.3; max-width: 118px; }
.hc-hero-float-chip2 {
  position: absolute; right: -18px; top: -18px; z-index: 3;
  display: flex; align-items: center; gap: 6px;
  background: var(--voy-green-bg); border: 1px solid rgba(22,101,52,.28);
  border-radius: 999px; padding: 7px 13px;
  box-shadow: 0 12px 28px -14px rgba(26,26,23,.28);
  font-size: 11.5px; font-weight: 600; color: var(--voy-green);
}
.hc-hero-float-chip2 .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--voy-green); }
.hc-hero-ring {
  position: absolute; top: -46px; right: -36px;
  width: 130px; height: 130px; border-radius: 50%;
  border: 1px solid rgba(224,37,37,.18);
  pointer-events: none;
}

/* ── 2. What we can help build ── */
.hc-help-section { background: #FFFFFF; padding: 96px 96px; border-top: 1px solid rgba(0,0,0,0.06); }
.hc-help-inner { max-width: 1360px; margin: 0 auto; }
.hc-help-header { text-align: center; margin-bottom: 40px; }
.hc-help-header h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(26px, 3vw, 36px); color: var(--voy-text-heading); letter-spacing: -.025em; margin: 14px 0 0;
}
.hc-help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hc-help-block {
  background: var(--voy-bg-panel-inner);
  border: 1px solid var(--voy-border-light);
  border-radius: var(--voy-radius-lg);
  padding: 26px 24px 28px;
  transition: border-color .25s ease, transform .25s cubic-bezier(.22,.8,.36,1), box-shadow .25s ease;
}
.hc-help-block:hover { border-color: rgba(224,37,37,.35); transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(26,26,23,.18); }
.hc-help-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(224,37,37,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.hc-help-block h3 { font-family: var(--voy-font-heading); font-weight: 700; font-size: 16.5px; color: var(--voy-text-heading); margin: 0 0 10px; letter-spacing: -.01em; line-height: 1.3; }
.hc-help-block p { font-size: 13px; color: #6A6A5A; line-height: 1.55; margin: 0 0 12px; }
.hc-help-block p:last-child { margin-bottom: 0; }

/* ── 3. Capabilities ── */
.hc-cap-section { background: #FFFFFF; padding: 96px 96px; border-top: 1px solid rgba(0,0,0,0.06); }
.hc-cap-inner { max-width: 1248px; margin: 0 auto; }
.hc-cap-header { max-width: 640px; margin-bottom: 48px; }
.hc-cap-header h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -.025em;
  line-height: 1.1; color: var(--voy-text-heading); margin: 14px 0 16px;
}
.hc-cap-header p { font-size: 16px; color: var(--voy-text-body); line-height: 1.65; }

/* bento layout */
.hc-cap-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-areas:
    "feature mid1 mid2"
    "feature b1   b2"
    "banner  banner banner";
  gap: 16px;
}
.hc-bento-tile {
  background: var(--voy-bg-panel-inner);
  border: 1px solid var(--voy-border-light);
  border-radius: var(--voy-radius-lg);
  padding: 24px 24px 26px;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s cubic-bezier(.22,.8,.36,1), box-shadow .25s ease;
}
.hc-bento-tile:hover { border-color: rgba(224,37,37,.35); transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(26,26,23,.18); }

.hc-bento-feature { grid-area: feature; background: #1A1A17; border-color: rgba(255,255,255,.08); padding: 32px 30px 30px; }
.hc-bento-feature:hover { border-color: rgba(224,37,37,.5); transform: none; }
.hc-bento-feature .hc-bento-icon { background: rgba(224,37,37,.18); }
.hc-bento-stat { font-family: var(--voy-font-heading); font-weight: 800; font-size: clamp(34px, 4vw, 46px); color: #FFFFFF; letter-spacing: -.02em; margin: 18px 0 3px; line-height: 1; }
.hc-bento-stat-label { font-size: 12.5px; color: rgba(254,252,246,.55); margin-bottom: 22px; }
.hc-bento-feature .hc-bento-title { color: #FEFCF6; font-size: 19px; }
.hc-bento-feature .hc-bento-desc { color: rgba(254,252,246,.6); }
.hc-bento-feature .hc-bento-tag { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color: rgba(254,252,246,.82); }

.hc-bento-mid1 { grid-area: mid1; }
.hc-bento-mid2 { grid-area: mid2; }
.hc-bento-b1 { grid-area: b1; }
.hc-bento-b2 { grid-area: b2; }
.hc-bento-banner { grid-area: banner; flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 26px 30px; }

.hc-bento-icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: rgba(224,37,37,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.hc-bento-title { font-family: var(--voy-font-heading); font-weight: 700; font-size: 16.5px; color: var(--voy-text-heading); margin-bottom: 8px; }
.hc-bento-desc { font-size: 13px; color: #6A6A5A; line-height: 1.55; margin-bottom: 16px; flex: 1; }
.hc-bento-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.hc-bento-tag { font-size: 11.5px; font-family: var(--voy-font-mono); color: #5A5A50; background: #FFFFFF; border: 1px solid var(--voy-border-light); padding: 5px 10px; border-radius: var(--voy-radius-pill); }

.hc-bento-banner-left { display: flex; align-items: center; gap: 18px; flex: 1 1 320px; }
.hc-bento-banner-left .hc-bento-icon { margin-bottom: 0; }
.hc-bento-banner-text .hc-bento-title { margin-bottom: 4px; }
.hc-bento-banner-text .hc-bento-desc { margin-bottom: 0; }
.hc-bento-banner-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hc-bento-banner-stat-num { font-family: var(--voy-font-heading); font-weight: 800; font-size: 21px; color: var(--voy-primary); letter-spacing: -.01em; }
.hc-bento-banner-stat-label { font-size: 11px; color: var(--voy-text-muted); margin-top: 3px; max-width: 150px; line-height: 1.35; }

/* ── 4. How we think about healthcare AI ── */
.hc-think-section { background: var(--voy-bg-cream); padding: 88px 96px; border-top: 1px solid rgba(0,0,0,0.06); }
.hc-think-inner { max-width: 780px; margin: 0 auto; }
.hc-think-header { text-align: center; margin-bottom: 40px; }
.hc-think-header h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(26px, 3vw, 36px); color: var(--voy-text-heading); letter-spacing: -.025em; margin: 14px 0 0;
}
.hc-think-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hc-think-list li {
  font-size: 15px; line-height: 1.6; color: var(--voy-text-body);
  padding: 16px 20px; background: #FFFFFF;
  border: 1px solid var(--voy-border-light); border-radius: 10px;
}

/* ── 5. Our current evidence ── */
.hc-evidence-section { background: var(--voy-bg-cream); padding: 0 96px 88px; }
.hc-evidence-card {
  max-width: 780px; margin: 0 auto;
  background: #FFFFFF; border: 1px solid var(--voy-border-light);
  border-radius: var(--voy-radius-xl); padding: 44px 48px;
}
.hc-evidence-header { text-align: center; margin-bottom: 24px; }
.hc-evidence-header h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -.02em;
  color: var(--voy-text-heading); margin: 14px 0 10px;
}
.hc-evidence-intro { text-align: center; font-size: 13.5px; color: var(--voy-text-muted); }
.hc-evidence-list { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 620px; margin: 0 auto 24px; }
.hc-evidence-list li {
  font-size: 14.5px; line-height: 1.55; color: var(--voy-text-body); display: flex; align-items: flex-start; gap: 12px;
}
.hc-evidence-list li::before {
  content: '✓'; flex: none; font-weight: 700; color: #FFFFFF;
  width: 18px; height: 18px; border-radius: 50%; background: var(--voy-primary);
  display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 2px;
}
.hc-evidence-close { text-align: center; font-size: 13.5px; color: var(--voy-text-muted); line-height: 1.6; font-style: italic; margin: 0; padding-top: 20px; border-top: 1px solid var(--voy-border-light); max-width: 620px; margin-left: auto; margin-right: auto; }

/* ── 6. Projects ── */
.hc-cases-section { background: var(--voy-bg-cream); padding: 96px 96px; border-top: 1px solid rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.hc-cases-inner { max-width: 1248px; margin: 0 auto; position: relative; z-index: 1; }
.hc-cases-header { margin-bottom: 40px; max-width: 680px; }
.hc-cases-header h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -.025em;
  line-height: 1.1; color: var(--voy-text-heading); margin: 14px 0 16px;
}
.hc-cases-header p { font-size: 16px; color: var(--voy-text-body); line-height: 1.65; }
.hc-tabs-bar { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid rgba(0,0,0,0.1); margin-bottom: 32px; padding-bottom: 14px; }
.hc-tab {
  background: #FFFFFF; border: 1px solid var(--voy-border-light); cursor: pointer;
  padding: 9px 16px; border-radius: var(--voy-radius-pill);
  font-size: 13px; font-weight: 500; color: var(--voy-text-muted);
  transition: all .2s ease; white-space: nowrap; font-family: var(--voy-font-body);
}
.hc-tab.active { background: var(--voy-text-heading); border-color: var(--voy-text-heading); color: #FFFFFF; font-weight: 600; }
.hc-tab:hover:not(.active) { border-color: rgba(224,37,37,.4); color: var(--voy-text-heading); }
.hc-case-panel {
  background: var(--voy-bg-panel);
  border-radius: 16px;
  border: 1px solid #F2EBE0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.05);
  padding: 44px 48px;
  display: flex; gap: 56px; align-items: flex-start;
  transition: opacity .25s ease, transform .25s cubic-bezier(.22,.8,.36,1);
}
.hc-case-panel.switching { opacity: 0; transform: translateY(8px); }
.hc-case-left { flex: 1.3; min-width: 0; }
.hc-case-right { width: 320px; flex: none; background: var(--voy-bg-panel-inner); border-radius: 12px; border: 1px solid #EAE9E7; padding: 26px 22px; }
.hc-case-cat { font-size: 12px; font-family: var(--voy-font-mono); font-weight: 500; letter-spacing: .06em; color: var(--voy-primary); text-transform: uppercase; margin-bottom: 14px; }
.hc-case-title { font-family: var(--voy-font-heading); margin: 0 0 16px; font-size: 24px; line-height: 1.25; font-weight: 800; letter-spacing: -.02em; color: var(--voy-text-heading); }
.hc-case-desc { margin: 0 0 24px; font-size: 14.5px; line-height: 1.7; color: #5A5A50; }
.hc-case-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hc-case-metric-label { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--voy-text-muted); margin-bottom: 14px; font-weight: 600; }
.hc-case-metric { padding: 12px 0; border-bottom: 1px solid #EAE7E0; }
.hc-case-metric:last-child { border-bottom: none; padding-bottom: 0; }
.hc-case-metric-num { font-family: var(--voy-font-heading); font-weight: 800; font-size: 19px; color: var(--voy-primary); letter-spacing: -.01em; }
.hc-case-metric-text { font-size: 12.5px; color: #6A6A5A; margin-top: 2px; line-height: 1.4; }

/* ── 7. Stats band ── */
.hc-stats-section { background: #1A1A17; padding: 72px 96px; }
.hc-stats-inner { max-width: 1248px; margin: 0 auto; }
.hc-stats-inner h2 {
  font-family: var(--voy-font-heading); font-weight: 800; text-align: center;
  font-size: clamp(24px, 2.6vw, 32px); color: #FEFCF6; letter-spacing: -.02em; margin-bottom: 48px;
}
.hc-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.hc-stat-cell { text-align: center; padding: 0 12px; border-left: 1px solid rgba(255,255,255,0.08); }
.hc-stat-cell:first-child { border-left: none; }
.hc-stat-num { font-family: var(--voy-font-heading); font-weight: 800; font-size: 30px; color: var(--voy-primary); letter-spacing: -.02em; line-height: 1; }
.hc-stat-label { font-size: 12px; color: rgba(254,252,246,0.5); margin-top: 10px; line-height: 1.4; }

/* ── 8. Tech stack ── */
.hc-stack-section { background: #FFFFFF; padding: 96px 96px; border-top: 1px solid rgba(0,0,0,0.06); }
.hc-stack-inner { max-width: 1248px; margin: 0 auto; }
.hc-stack-header { text-align: center; margin-bottom: 48px; }
.hc-stack-header h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(26px, 3vw, 36px); letter-spacing: -.025em;
  color: var(--voy-text-heading); margin: 14px 0 0;
}
.hc-stack-header p { font-size: 15px; color: var(--voy-text-body); line-height: 1.6; max-width: 520px; margin: 12px auto 0; }

/* layered architecture list */
.hc-stack-layers { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.hc-stack-layer { display: flex; gap: 26px; }
.hc-stack-node { display: flex; flex-direction: column; align-items: center; flex: none; }
.hc-stack-dot {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: var(--layer-bg, rgba(224,37,37,.08));
  border: 1.5px solid var(--layer-color, var(--voy-primary));
  display: flex; align-items: center; justify-content: center;
}
.hc-stack-connector { width: 1.5px; flex: 1; min-height: 44px; background: var(--voy-border-light); margin: 8px 0; }
.hc-stack-layer:last-child .hc-stack-connector { display: none; }
.hc-stack-card {
  flex: 1; min-width: 0;
  background: var(--voy-bg-panel-inner);
  border: 1px solid var(--voy-border-light);
  border-radius: var(--voy-radius-lg);
  padding: 20px 26px 22px;
  margin-bottom: 26px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.hc-stack-layer:last-child .hc-stack-card { margin-bottom: 0; }
.hc-stack-card:hover { border-color: var(--layer-color, var(--voy-primary)); transform: translateX(5px); box-shadow: 0 14px 30px -18px rgba(26,26,23,.16); }
.hc-stack-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.hc-stack-layer-title { font-family: var(--voy-font-heading); font-weight: 800; font-size: 18px; color: var(--voy-text-heading); }
.hc-stack-layer-tag { font-size: 11px; font-family: var(--voy-font-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--layer-color, var(--voy-primary)); font-weight: 600; white-space: nowrap; }
.hc-stack-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hc-stack-pill {
  font-size: 12.5px; color: #5A5A50; font-weight: 500;
  background: #FFFFFF; border: 1px solid var(--voy-border-light);
  padding: 6px 12px; border-radius: var(--voy-radius-pill);
}

/* ── 9. Governance / approach pillars ── */
.hc-approach-section { background: #1A1A17; padding: 88px 96px; border-top: 1px solid rgba(255,255,255,0.06); }
.hc-approach-header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.hc-approach-header h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(26px, 3vw, 36px); color: #FEFCF6; letter-spacing: -.025em; margin: 14px 0 14px;
}
.hc-approach-header p { font-size: 15px; color: rgba(254,252,246,0.5); line-height: 1.65; }
.hc-approach-grid { max-width: 1248px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.hc-approach-card { display: flex; flex-direction: column; gap: 16px; }
.hc-approach-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(224,37,37,.12); display: flex; align-items: center; justify-content: center; }
.hc-approach-title { font-family: var(--voy-font-heading); font-weight: 700; font-size: 16px; color: #FEFCF6; }
.hc-approach-text { font-size: 13.5px; color: rgba(254,252,246,0.48); line-height: 1.65; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hc-hero-inner, .hc-help-section, .hc-cap-section, .hc-think-section, .hc-evidence-section, .hc-cases-section, .hc-stack-section, .hc-approach-section, .hc-stats-section, .hc-questions-section { padding-left: 48px; padding-right: 48px; }
  .hc-hero-visual { width: 300px; padding-right: 48px; }
  .hc-hero-panel { max-width: 280px; padding: 18px 18px; }
  .hc-hero-float-chip { left: -14px; bottom: -14px; padding: 9px 12px; }
  .hc-help-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-cap-bento { grid-template-columns: 1fr 1fr; grid-template-areas: "feature feature" "mid1 mid2" "b1 b2" "banner banner"; }
  .hc-approach-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hc-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hc-stat-cell { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
  .hc-questions-inner { flex-direction: column; gap: 40px; }
  .hc-questions-intro { position: static; flex: none; }
}
@media (max-width: 900px) {
  .hc-case-panel { flex-direction: column; gap: 28px; }
  .hc-case-right { width: 100%; }
}
@media (max-width: 860px) {
  .hc-hero-container { flex-wrap: wrap; }
  .hc-hero-visual { display: none; }
  .hc-hero-inner { flex: 1 1 100%; max-width: 100%; }
}
@media (max-width: 700px) {
  .hc-hero-inner { padding: 56px 24px 32px; }
  .hc-help-section, .hc-cap-section, .hc-think-section, .hc-evidence-section, .hc-cases-section, .hc-stack-section, .hc-approach-section, .hc-stats-section, .hc-questions-section { padding: 56px 20px 64px; }
  .hc-help-grid { grid-template-columns: 1fr; }
  .hc-cap-bento { grid-template-columns: 1fr; grid-template-areas: "feature" "mid1" "mid2" "b1" "b2" "banner"; }
  .hc-approach-grid { grid-template-columns: 1fr; }
  .hc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-case-panel { padding: 28px 20px; }
  .hc-stack-layer { gap: 16px; }
  .hc-stack-dot { width: 38px; height: 38px; }
  .hc-stack-card { padding: 16px 18px 18px; }
  .hc-bento-banner { flex-direction: column; align-items: flex-start; }
  .hc-questions-item { gap: 12px; }
}

/* ── 10. Questions we would ask first (FAQ-style layout) ── */
.hc-questions-section { background: #FFFFFF; padding: 100px 96px; border-top: 1px solid rgba(0,0,0,0.07); }
.hc-questions-inner { max-width: 1248px; margin: 0 auto; display: flex; gap: 80px; align-items: flex-start; }
.hc-questions-intro { flex: 0 0 320px; position: sticky; top: 110px; }
.hc-questions-intro .section-badge-wrap { justify-content: flex-start; margin-bottom: 18px; }
.hc-questions-intro h2 {
  font-family: var(--voy-font-heading); font-weight: 800;
  font-size: clamp(26px, 3vw, 34px); letter-spacing: -.02em;
  line-height: 1.15; color: var(--voy-text-heading); margin: 0;
}
.hc-questions-list { flex: 1; min-width: 0; border-top: 1px solid rgba(0,0,0,0.09); }
.hc-questions-item { display: flex; align-items: flex-start; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(0,0,0,0.09); }
.hc-questions-num { flex-shrink: 0; font-family: var(--voy-font-mono); font-size: 13px; font-weight: 500; color: rgba(224,37,37,.5); padding-top: 3px; }
.hc-questions-text { flex: 1; font-family: var(--voy-font-heading); font-weight: 700; font-size: 17px; color: var(--voy-text-heading); line-height: 1.4; }
