/* ============================================================
   Dental IT Landing Page kit — extends colors_and_type.css
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

img { display: block; max-width: 100%; }

.hw-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---------- BUTTONS ---------- */
.hw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: var(--fw-semibold); padding: 14px 28px;
  border-radius: var(--radius-md); border: 1px solid transparent;
  font-size: var(--fs-body); cursor: pointer; white-space: nowrap;
  transition: all var(--dur-base) var(--ease-out);
}
.hw-btn-sm { padding: 9px 16px; font-size: var(--fs-sm); }
.hw-btn-lg { padding: 18px 36px; font-size: 1.0625rem; }
.hw-btn-primary { background: var(--gold); color: var(--fg-on-gold); }
.hw-btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-glow-gold); color: var(--fg-on-gold); }
.hw-btn-secondary { color: var(--white); border-color: var(--border-strong); background: transparent; }
.hw-btn-secondary:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.hw-btn-arrow { transition: transform var(--dur-base) var(--ease-out); }
.hw-btn:hover .hw-btn-arrow { transform: translateX(4px); }

.hw-btn-on-light { background: var(--teal); color: var(--white); }
.hw-btn-on-light:hover { background: var(--teal-light); color: var(--white); }
.hw-btn-on-light-secondary { background: transparent; color: var(--teal); border-color: rgba(0,67,96,0.25); }
.hw-btn-on-light-secondary:hover { border-color: rgba(0,67,96,0.5); color: var(--teal); }

/* ============================================================
   NAV (full + stripped paid variant)
   ============================================================ */
.hw-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-hairline);
}
.hw-nav-inner {
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.hw-brand { display: flex; align-items: center; gap: 8px; }
.hw-brand-emblem { width: 32px; height: 32px; }
.hw-brand-name { font-weight: 800; letter-spacing: 0.05em; color: var(--white); font-size: 1.05rem; }
.hw-brand-msp { color: var(--gold); font-weight: 800; letter-spacing: 0.05em; font-size: 1.05rem; }

.hw-nav-links { display: flex; align-items: center; gap: 28px; font-size: var(--fs-sm); }
.hw-nav-links a { color: var(--slate-light); transition: color var(--dur-base) var(--ease-out); }
.hw-nav-links a:hover { color: var(--white); }
.hw-nav-phone { color: var(--gold) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.hw-chev { width: 12px; height: 12px; }

.hw-dropdown { position: relative; }
.hw-dropdown > button {
  background: transparent; border: 0; color: var(--slate-light);
  font: inherit; font-size: var(--fs-sm); cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 4px;
}

/* Light nav (used for direction B "clinical" feel) */
.hw-nav-light {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 67, 96, 0.08);
}
.hw-nav-light .hw-brand-name { color: var(--teal-dark); }
.hw-nav-light .hw-brand-msp { color: var(--gold-dark); }
.hw-nav-light .hw-nav-links a { color: #475569; }
.hw-nav-light .hw-nav-links a:hover { color: var(--teal-dark); }
.hw-nav-light .hw-nav-phone { color: var(--teal) !important; }

/* ============================================================
   HERO — DARK (Direction A)
   ============================================================ */
.hw-hero {
  position: relative; min-height: 720px; display: flex; align-items: center;
  background: var(--gradient-dark); overflow: hidden;
}
.hw-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hw-hero-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.40; }
.hw-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(0,46,66,0.78) 50%, rgba(0,67,96,0.72) 100%);
}
.hw-hero-content { position: relative; z-index: 2; padding: 88px 0 96px; max-width: 880px; }
.hw-hero-h1 { color: var(--white); margin: 24px 0 24px; font-size: clamp(2.25rem, 3.6vw + 1rem, 3.75rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance; }
.hw-hero-h1 em, .hw-gold-italic { color: var(--gold); font-style: italic; font-weight: 800; }
.hw-hero-lead { max-width: 680px; margin-bottom: 24px; color: var(--slate-light); font-size: 1.125rem; line-height: 1.65; }
.hw-hero-trustline {
  display: inline-flex; flex-wrap: wrap; gap: 20px 28px; align-items: center;
  margin: 8px 0 32px; padding: 12px 20px;
  border: 1px solid var(--border-soft); border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: var(--fs-sm); color: var(--slate-light);
}
.hw-hero-trustline strong { color: var(--white); font-weight: 600; }
.hw-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.hw-trust-item svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.hw-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hw-hero-cta-aside { font-size: var(--fs-sm); color: var(--slate); }

/* ============================================================
   HERO — CLINICAL (Direction B): split, lighter, photo on right
   ============================================================ */
.hw-hero-split {
  position: relative; background: linear-gradient(180deg, #f8fafc 0%, #eef4f7 100%);
  color: var(--teal-dark);
  overflow: hidden;
}
.hw-hero-split-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
  padding: 80px 0 96px;
}
.hw-hero-split-eyebrow { color: var(--teal); font-size: var(--fs-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 12px; }
.hw-hero-split-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.hw-hero-split h1 {
  font-size: clamp(2.25rem, 3.4vw + 1rem, 3.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--teal-dark); margin: 18px 0 22px; text-wrap: balance;
}
.hw-hero-split h1 em { font-style: italic; color: var(--gold-dark); font-weight: 800; }
.hw-hero-split p.lead { color: #334155; font-size: 1.125rem; line-height: 1.65; max-width: 540px; margin: 0 0 24px; }
.hw-hero-split-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.hw-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,67,96,0.06); color: var(--teal-dark);
  border: 1px solid rgba(0,67,96,0.1);
  font-size: 0.8125rem; font-weight: 500;
}
.hw-pill svg { width: 14px; height: 14px; color: var(--gold-dark); }
.hw-hero-split-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hw-hero-split-aside { font-size: var(--fs-sm); color: #64748b; margin-top: 14px; }

.hw-hero-split-art {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(2, 30, 50, 0.25);
}
.hw-hero-split-art .panel {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(253,185,18,0.12), transparent 50%),
    linear-gradient(150deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
}
.hw-hero-split-art .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 60%, black 30%, transparent 80%);
}
.hw-hero-split-art .floating-card {
  position: absolute; background: rgba(255,255,255,0.96); color: var(--teal-dark);
  border-radius: 14px; padding: 16px 18px; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.6);
}
.hw-fc-pm { top: 7%; right: 7%; max-width: 240px; }
.hw-fc-monitor { bottom: 8%; left: 7%; max-width: 260px; }
.hw-fc-row { display: flex; align-items: center; gap: 10px; font-size: 0.8125rem; }
.hw-fc-row + .hw-fc-row { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(0,0,0,0.06); }
.hw-fc-dot { width: 8px; height: 8px; border-radius: 999px; background: #16a34a; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(22,163,74,0.15); }
.hw-fc-label { font-weight: 600; }
.hw-fc-meta { color: #64748b; font-size: 0.75rem; }
.hw-fc-title { font-weight: 700; font-size: 0.875rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: var(--teal-dark); }
.hw-fc-title svg { color: var(--gold-dark); width: 16px; height: 16px; }
.hw-tooth-watermark {
  position: absolute; right: -20px; bottom: -30px; width: 240px; height: 240px;
  opacity: 0.08; color: white;
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.hw-proofbar {
  background: var(--navy-light); padding: 28px 0;
  border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline);
}
.hw-proofbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hw-proofbar-cell { padding: 4px 16px; border-left: 2px solid var(--gold); }
.hw-proofbar-stat { font-size: 1.65rem; font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; }
.hw-proofbar-stat .stars { color: var(--gold); letter-spacing: 0.05em; font-size: 1.2rem; }
.hw-proofbar-label { font-size: var(--fs-sm); color: var(--slate); margin-top: 4px; }

.hw-proofbar-light {
  background: white; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;
}
.hw-proofbar-light .hw-proofbar-cell { border-left-color: var(--gold-dark); }
.hw-proofbar-light .hw-proofbar-stat { color: var(--teal-dark); }
.hw-proofbar-light .hw-proofbar-label { color: #64748b; }

/* ============================================================
   PM SOFTWARE LOGOS
   ============================================================ */
.hw-pmsoftware { padding: 80px 0; }
.hw-pmsoftware-light { background: white; color: var(--teal-dark); }
.hw-pmsoftware-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.hw-pmsoftware-head .eyebrow { justify-content: center; }
.hw-pmsoftware-head h2 { margin: 16px 0 12px; }
.hw-pmsoftware-head .lead { color: var(--slate-light); }
.hw-pmsoftware-light .hw-pmsoftware-head h2 { color: var(--teal-dark); }
.hw-pmsoftware-light .hw-pmsoftware-head .lead { color: #475569; }
.hw-pmsoftware-light .eyebrow { color: var(--gold-dark); }
.hw-pmsoftware-light .eyebrow::before { background: var(--gold-dark); }

.hw-pm-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 32px;
}
.hw-pm-card {
  text-align: center; padding: 24px 16px;
  border: 1px solid var(--border-soft); border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: all var(--dur-base) var(--ease-out);
}
.hw-pm-card:hover { border-color: var(--border-accent); background: rgba(253,185,18,0.04); }
.hw-pm-light .hw-pm-card { background: white; border-color: #e2e8f0; }
.hw-pm-light .hw-pm-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px -10px rgba(253,185,18,0.3); }
.hw-pm-logo {
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.015em;
  color: var(--white); margin-bottom: 6px;
}
.hw-pm-light .hw-pm-logo { color: var(--teal-dark); }
.hw-pm-vendor { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); }
.hw-pm-light .hw-pm-vendor { color: #64748b; }
.hw-pm-mark { width: 36px; height: 36px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }

.hw-pm-promise {
  margin-top: 32px; text-align: center; font-size: 1.0625rem; color: var(--slate-light);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.hw-pm-promise strong { color: var(--white); font-weight: 600; }
.hw-pm-light .hw-pm-promise { color: #475569; }
.hw-pm-light .hw-pm-promise strong { color: var(--teal-dark); }

/* ============================================================
   PAIN SECTION
   ============================================================ */
.hw-pain { background: var(--teal-dark); padding: 120px 0; position: relative; }
.hw-pain::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('assets/bg-geometric.jpg');
  background-size: cover; background-position: center;
  opacity: 0.06; mix-blend-mode: screen;
}
.hw-pain-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hw-pain h2 { color: var(--white); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.025em; margin: 16px 0 40px; }
.hw-pain-list { list-style: none; padding: 0; margin: 0 0 40px; }
.hw-pain-list li {
  padding: 22px 0 22px 36px; position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 1.125rem; color: var(--slate-light); line-height: 1.55;
}
.hw-pain-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hw-pain-list li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold);
  font-weight: 700;
}
.hw-pain-close {
  font-size: 1.25rem; color: var(--white); font-weight: 600;
  border-left: 3px solid var(--gold); padding: 4px 0 4px 20px;
  max-width: 600px;
}

/* Direction B variant: pain as quote-style cards */
.hw-pain-quotes { background: white; padding: 120px 0; }
.hw-pain-quotes h2 { color: var(--teal-dark); }
.hw-pain-quotes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px;
}
.hw-pain-quote {
  padding: 28px; border-radius: 14px; background: #f8fafc;
  border: 1px solid #e2e8f0; border-left: 3px solid var(--gold);
  font-size: 1.0625rem; color: #1e293b; line-height: 1.55;
  position: relative;
}
.hw-pain-quote::before {
  content: "“"; position: absolute; top: -8px; left: 16px;
  color: var(--gold); font-size: 3rem; font-weight: 800; line-height: 1; font-family: Georgia, serif;
}
.hw-pain-quote-attr { display: block; margin-top: 16px; font-size: 0.8125rem; color: #64748b; font-style: italic; }
.hw-pain-quotes-close {
  text-align: center; margin-top: 44px; font-size: 1.25rem;
  color: var(--teal-dark); font-weight: 600;
}
.hw-pain-quotes-close em { color: var(--gold-dark); font-style: normal; }

/* ============================================================
   SERVICES (5 pillars + featured BUILD callout)
   ============================================================ */
.hw-pillars { padding: 110px 0; background: var(--bg-page); }
.hw-pillars-light { background: #f8fafc; }
.hw-pillars-head { max-width: 760px; margin-bottom: 48px; }
.hw-pillars-light .hw-pillars-head h2 { color: var(--teal-dark); }
.hw-pillars-light .hw-pillars-head .lead { color: #475569; }
.hw-pillars-light .eyebrow { color: var(--gold-dark); }
.hw-pillars-light .eyebrow::before { background: var(--gold-dark); }

.hw-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hw-pillar {
  padding: 28px; border: 1px solid var(--border-soft); border-radius: 14px;
  background: var(--card-bg);
  transition: all var(--dur-base) var(--ease-out);
}
.hw-pillar:hover { border-color: var(--border-accent); background: var(--card-bg-hover); }
.hw-pillars-light .hw-pillar { background: white; border-color: #e2e8f0; }
.hw-pillars-light .hw-pillar:hover { border-color: rgba(253,185,18,0.4); box-shadow: 0 12px 32px -16px rgba(0,67,96,0.15); }
.hw-pillar .icon-tile { margin-bottom: 18px; }
.hw-pillar h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.hw-pillars-light .hw-pillar h3 { color: var(--teal-dark); }
.hw-pillar p { color: var(--slate-light); margin: 0; font-size: 0.9375rem; line-height: 1.55; }
.hw-pillars-light .hw-pillar p { color: #475569; }

/* BUILD featured callout (Direction A) */
.hw-build-feature {
  margin-top: 24px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  border: 1px solid var(--border-accent); border-radius: 16px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(253,185,18,0.06) 0%, rgba(253,185,18,0.02) 100%);
  align-items: center;
}
.hw-build-feature-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; }
.hw-build-feature-tag::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.hw-build-feature h3 { color: var(--white); font-size: 1.875rem; font-weight: 800; margin: 12px 0 14px; letter-spacing: -0.02em; line-height: 1.15; }
.hw-build-feature h3 em { color: var(--gold); font-style: italic; }
.hw-build-feature p { color: var(--slate-light); margin: 0 0 18px; font-size: 1.0625rem; line-height: 1.6; max-width: 560px; }
.hw-build-feature .build-link { color: var(--gold); font-weight: 600; font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: 6px; }
.hw-build-feature .build-link span { transition: transform var(--dur-base); }
.hw-build-feature .build-link:hover span { transform: translateX(4px); }
.hw-build-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hw-build-stat {
  padding: 20px; background: rgba(0,0,0,0.25); border: 1px solid rgba(253,185,18,0.18);
  border-radius: 12px;
}
.hw-build-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.hw-build-stat-label { font-size: 0.8125rem; color: var(--slate-light); margin-top: 6px; }

/* ============================================================
   BUILD as own section (Direction B)
   ============================================================ */
.hw-buildsection {
  background: var(--teal-dark);
  padding: 120px 0;
  position: relative; overflow: hidden;
  color: white;
}
.hw-buildsection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hw-buildsection-eyebrow { color: var(--gold); font-size: var(--fs-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 12px; }
.hw-buildsection-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.hw-buildsection h2 { color: var(--white); font-size: 2.5rem; font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; margin: 16px 0 22px; }
.hw-buildsection h2 em { color: var(--gold); font-style: italic; }
.hw-buildsection p.lead { color: rgba(255,255,255,0.85); font-size: 1.125rem; line-height: 1.65; margin: 0 0 24px; }
.hw-buildsection-bullets { list-style: none; padding: 0; margin: 0 0 28px; }
.hw-buildsection-bullets li {
  padding: 12px 0 12px 28px; position: relative; color: white; font-size: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hw-buildsection-bullets li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.hw-buildsection-bullets li::before {
  content: "▶"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 16px;
}
.hw-buildsection-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 36px;
  font-family: var(--font-mono); font-size: 0.875rem; line-height: 1.7;
  color: var(--slate-light);
}
.hw-buildsection-card-title { color: var(--gold); font-family: var(--font-sans); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.hw-buildsection-card-title::before { content: "// "; }
.hw-buildsection-card .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); font-family: var(--font-sans); color: white; }
.hw-buildsection-card .row:last-child { border-bottom: none; }
.hw-buildsection-card .row span:last-child { color: var(--gold); font-weight: 600; }
.hw-buildsection-card .num { font-size: 2.5rem; font-weight: 800; color: var(--gold); margin-top: 16px; font-family: var(--font-sans); letter-spacing: -0.02em; }
.hw-buildsection-card .num-label { font-size: 0.75rem; color: var(--slate); margin-top: 4px; font-family: var(--font-sans); }

/* ============================================================
   CASE STUDY (expanded story)
   ============================================================ */
.hw-casestudy {
  background: var(--teal); padding: 110px 0; color: white;
}
.hw-casestudy-eyebrow { color: var(--gold); font-size: var(--fs-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 12px; }
.hw-casestudy-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.hw-casestudy h2 { color: white; font-size: 2.25rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 16px 0 32px; max-width: 720px; }

.hw-casestudy-stats-row {
  display: flex; gap: 48px; margin-bottom: 40px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hw-casestudy-stat-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.hw-casestudy-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

.hw-casestudy-story {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.hw-casestudy-step h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); font-weight: 700; margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.hw-casestudy-step h4::before {
  content: ""; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(253,185,18,0.15); border: 1px solid rgba(253,185,18,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 0.75rem; color: var(--gold); font-weight: 800;
}
.hw-casestudy-step:nth-child(1) h4::before { content: "1"; }
.hw-casestudy-step:nth-child(2) h4::before { content: "2"; }
.hw-casestudy-step:nth-child(3) h4::before { content: "3"; }
.hw-casestudy-step p { color: rgba(255,255,255,0.85); margin: 0; line-height: 1.6; font-size: 0.9375rem; }
.hw-casestudy-step strong { color: white; font-weight: 600; }

.hw-casestudy-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 36px;
  padding: 18px 24px; border: 1px solid rgba(255,255,255,0.25); border-radius: 12px;
  color: white; font-size: 1rem; transition: all var(--dur-base);
}
.hw-casestudy-link:hover { border-color: var(--gold); background: rgba(253,185,18,0.06); color: white; }
.hw-casestudy-link strong { color: var(--gold); font-weight: 600; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.hw-testimonial {
  background: var(--bg-page); padding: 110px 0;
}
.hw-testimonial-light { background: white; }
.hw-testimonial-card {
  max-width: 780px; margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--border-soft); border-radius: 16px;
  background: var(--card-bg);
  position: relative;
}
.hw-testimonial-light .hw-testimonial-card { background: #f8fafc; border-color: #e2e8f0; }
.hw-testimonial-card::before {
  content: "“"; position: absolute; top: 8px; left: 24px;
  color: var(--gold); font-size: 5rem; font-weight: 800; line-height: 1; font-family: Georgia, serif;
}
.hw-testimonial-quote {
  font-size: 1.5rem; font-weight: 500; color: var(--white); line-height: 1.4;
  margin: 0 0 24px; letter-spacing: -0.01em;
}
.hw-testimonial-light .hw-testimonial-quote { color: var(--teal-dark); }
.hw-testimonial-attr {
  display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hw-testimonial-light .hw-testimonial-attr { border-top-color: #e2e8f0; }
.hw-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 1rem;
}
.hw-testimonial-name { color: white; font-weight: 600; font-size: 0.9375rem; }
.hw-testimonial-role { color: var(--slate); font-size: 0.8125rem; }
.hw-testimonial-light .hw-testimonial-name { color: var(--teal-dark); }
.hw-testimonial-light .hw-testimonial-role { color: #64748b; }
.hw-testimonial-placeholder {
  display: inline-block; margin-top: 16px;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(253,185,18,0.1); border: 1px dashed var(--gold);
  font-size: 0.6875rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em;
}

/* ============================================================
   PRICING
   ============================================================ */
.hw-pricing { padding: 110px 0; background: var(--teal-dark); }
.hw-pricing-light { background: #f8fafc; }
.hw-pricing-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.hw-pricing-head .eyebrow { justify-content: center; }
.hw-pricing-head h2 { color: white; margin: 16px 0 12px; font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; }
.hw-pricing-head .lead { color: var(--slate-light); }
.hw-pricing-light .hw-pricing-head h2 { color: var(--teal-dark); }
.hw-pricing-light .hw-pricing-head .lead { color: #475569; }

.hw-pricing-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.hw-pricing-step {
  text-align: center; padding: 28px;
  border: 1px solid var(--border-soft); border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.hw-pricing-light .hw-pricing-step { background: white; border-color: #e2e8f0; }
.hw-pricing-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(253,185,18,0.12); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 16px; font-size: 1.05rem;
}
.hw-pricing-step h3 { color: white; font-size: 1.125rem; font-weight: 700; margin: 0 0 8px; }
.hw-pricing-step p { color: var(--slate-light); margin: 0; font-size: 0.9375rem; }
.hw-pricing-light .hw-pricing-step h3 { color: var(--teal-dark); }
.hw-pricing-light .hw-pricing-step p { color: #475569; }

/* Range anchor (Direction A) */
.hw-pricing-anchor {
  max-width: 760px; margin: 0 auto;
  padding: 32px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(253,185,18,0.08) 0%, rgba(253,185,18,0.02) 100%);
  border: 1px solid var(--border-accent);
  text-align: center;
}
.hw-pricing-anchor-range {
  font-size: 2.25rem; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; line-height: 1;
}
.hw-pricing-anchor-range span { color: white; }
.hw-pricing-anchor-cap { font-size: 0.75rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 12px; }
.hw-pricing-anchor p { margin: 16px auto 0; max-width: 560px; color: var(--slate-light); font-size: 0.9375rem; line-height: 1.6; }

/* Bands visual (Direction B) */
.hw-pricing-bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
.hw-pricing-band {
  padding: 28px; border-radius: 14px; background: white;
  border: 1px solid #e2e8f0;
  position: relative;
}
.hw-pricing-band.featured { border-color: var(--gold); box-shadow: 0 16px 36px -14px rgba(253,185,18,0.25); }
.hw-pricing-band-tag {
  position: absolute; top: -10px; right: 20px;
  background: var(--gold); color: var(--navy); font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
}
.hw-pricing-band h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-dark); font-weight: 700; margin: 0 0 8px;
}
.hw-pricing-band-size { font-size: 1.125rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 12px; }
.hw-pricing-band-range { font-size: 1.875rem; font-weight: 800; color: var(--teal-dark); letter-spacing: -0.02em; line-height: 1; }
.hw-pricing-band-range small { font-size: 0.875rem; font-weight: 500; color: #64748b; }
.hw-pricing-band-meta { font-size: 0.8125rem; color: #64748b; margin-top: 8px; }
.hw-pricing-bands-note {
  text-align: center; margin-top: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
  color: #475569; font-size: 0.9375rem;
}

/* ============================================================
   FORM
   ============================================================ */
.hw-form-section { padding: 120px 0; background: var(--bg-page); }
.hw-form-section-light { background: linear-gradient(180deg, white 0%, #eef4f7 100%); }
.hw-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 1080px; margin: 0 auto; }
.hw-form-pitch h2 { color: white; font-size: 2.25rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 16px 0 16px; }
.hw-form-pitch .lead { color: var(--slate-light); margin-bottom: 28px; max-width: 460px; }
.hw-form-section-light .hw-form-pitch h2 { color: var(--teal-dark); }
.hw-form-section-light .hw-form-pitch .lead { color: #475569; }

.hw-form-trustline { font-size: 0.875rem; color: var(--slate-light); display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.hw-form-section-light .hw-form-trustline { color: #475569; }
.hw-form-trustline-row { display: flex; align-items: center; gap: 8px; }
.hw-form-trustline-row svg { color: var(--gold); width: 16px; height: 16px; }
.hw-form-section-light .hw-form-trustline-row svg { color: var(--gold-dark); }

.hw-form-phone { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 24px; }
.hw-form-section-light .hw-form-phone { border-top-color: #e2e8f0; }
.hw-form-phone-label { font-size: 0.8125rem; color: var(--slate); margin-bottom: 4px; }
.hw-form-section-light .hw-form-phone-label { color: #64748b; }
.hw-form-phone-num { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.hw-form-section-light .hw-form-phone-num { color: var(--teal); }

.hw-form-card {
  padding: 40px;
  border: 1px solid var(--border-soft); border-radius: 16px;
  background: var(--card-bg);
}
.hw-form-section-light .hw-form-card { background: white; border-color: #e2e8f0; box-shadow: 0 24px 48px -20px rgba(0,67,96,0.15); }

.hw-form-row { margin-bottom: 18px; }
.hw-form-row label {
  display: block; font-size: 0.8125rem; color: var(--slate-light);
  font-weight: 500; margin-bottom: 6px;
}
.hw-form-section-light .hw-form-row label { color: #475569; }
.hw-form-row label .opt { color: var(--slate); font-weight: 400; margin-left: 4px; }
.hw-form-row input, .hw-form-row select {
  width: 100%; font: inherit; font-size: 0.9375rem;
  padding: 12px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.04); color: white;
  border: 1px solid rgba(255,255,255,0.12);
  outline: none; transition: border-color var(--dur-base);
}
.hw-form-row input:focus, .hw-form-row select:focus { border-color: var(--gold); }
.hw-form-section-light .hw-form-row input, .hw-form-section-light .hw-form-row select {
  background: white; color: var(--teal-dark); border-color: #cbd5e1;
}
.hw-form-row input::placeholder { color: var(--slate); }
.hw-form-section-light .hw-form-row input::placeholder { color: #94a3b8; }
.hw-form-submit { width: 100%; margin-top: 8px; }

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.hw-leadmagnet { padding: 100px 0; background: var(--navy-light); }
.hw-leadmagnet-card {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
  padding: 48px;
  border: 1px solid var(--border-accent); border-radius: 16px;
  background: linear-gradient(135deg, rgba(253,185,18,0.05) 0%, rgba(0,67,96,0.05) 100%);
}
.hw-leadmagnet-cover {
  aspect-ratio: 3/4; border-radius: 8px; padding: 24px; color: white;
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 100%);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.4);
}
.hw-leadmagnet-cover-tag { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; }
.hw-leadmagnet-cover-title { font-size: 1.25rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
.hw-leadmagnet-cover-meta { font-size: 0.6875rem; color: var(--slate); }
.hw-leadmagnet-cover-checks { font-size: 0.75rem; color: var(--slate-light); list-style: none; padding: 0; margin: 12px 0 0; line-height: 1.6; }
.hw-leadmagnet-cover-checks li::before { content: "✓ "; color: var(--gold); }
.hw-leadmagnet h3 { color: white; font-size: 1.5rem; font-weight: 800; margin: 8px 0 12px; letter-spacing: -0.01em; }
.hw-leadmagnet p { color: var(--slate-light); margin: 0 0 20px; font-size: 0.9375rem; line-height: 1.6; }
.hw-leadmagnet-form { display: flex; gap: 8px; flex-wrap: wrap; }
.hw-leadmagnet-form input {
  flex: 1; min-width: 200px;
  padding: 12px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.06); color: white; border: 1px solid rgba(255,255,255,0.15);
  font: inherit; font-size: 0.9375rem;
}
.hw-leadmagnet-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; }
.hw-leadmagnet-tag::before { content: ""; width: 24px; height: 1px; background: var(--gold); }

/* Sticky lead-magnet bar (Direction B) */
.hw-leadmagnet-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--teal-dark);
  padding: 22px 0;
}
.hw-leadmagnet-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.hw-leadmagnet-strip-text { display: flex; align-items: center; gap: 16px; }
.hw-leadmagnet-strip-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,67,96,0.15); display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark); flex-shrink: 0;
}
.hw-leadmagnet-strip-title { font-weight: 800; font-size: 1.0625rem; line-height: 1.2; }
.hw-leadmagnet-strip-sub { font-size: 0.875rem; color: rgba(0,67,96,0.8); margin-top: 2px; }
.hw-leadmagnet-strip-form { display: flex; gap: 8px; flex-wrap: nowrap; }
.hw-leadmagnet-strip-form input {
  padding: 11px 14px; border-radius: 8px;
  background: white; border: 1px solid rgba(0,67,96,0.2);
  font: inherit; font-size: 0.9375rem; min-width: 240px;
  color: var(--teal-dark);
}
.hw-leadmagnet-strip-form .hw-btn { padding: 10px 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.hw-footer { background: var(--navy); padding: 48px 0 32px; border-top: 1px solid var(--border-hairline); }
.hw-footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }
.hw-footer-brand { display: flex; align-items: center; gap: 8px; }
.hw-footer-links { display: flex; gap: 24px; }
.hw-footer-links a { color: var(--slate); font-size: var(--fs-sm); }
.hw-footer-links a:hover { color: white; }
.hw-footer-meta { color: var(--fg-3); font-size: var(--fs-sm); text-align: right; }

.hw-footer-light { background: white; color: var(--teal-dark); border-top: 1px solid #e2e8f0; }
.hw-footer-light .hw-brand-name { color: var(--teal-dark); }
.hw-footer-light .hw-brand-msp { color: var(--gold-dark); }
.hw-footer-light .hw-footer-links a { color: #64748b; }
.hw-footer-light .hw-footer-links a:hover { color: var(--teal-dark); }
.hw-footer-light .hw-footer-meta { color: #94a3b8; }

/* ============================================================
   RESPONSIVE — minimal; primary target is desktop preview
   ============================================================ */
@media (max-width: 1023px) {
  .hw-nav-links { display: none; }
  .hw-nav-mobile-cta { display: inline-flex; }
  .hw-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .hw-pm-grid { grid-template-columns: repeat(3, 1fr); }
  .hw-build-feature { grid-template-columns: 1fr; gap: 28px; }
  .hw-buildsection-grid { grid-template-columns: 1fr; gap: 40px; }
  .hw-casestudy-story { grid-template-columns: 1fr; }
  .hw-pricing-bands { grid-template-columns: 1fr; }
  .hw-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .hw-hero-split-grid { grid-template-columns: 1fr; gap: 48px; }
  .hw-pain-quotes-grid { grid-template-columns: 1fr; }
  .hw-leadmagnet-card { grid-template-columns: 1fr; gap: 28px; }
  .hw-proofbar-grid { grid-template-columns: repeat(2, 1fr); }
}
