/* Healthcare IT Leaders ABM pages — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hil-navy: #2c304e;
  --hil-navy-deep: #232744;
  --hil-teal: #00a098;
  --hil-teal-deep: #007a72;
  --hil-cyan: #98eef0;
  --hil-coral: #f24a4b;
  --hil-coral-deep: #d93c3d;
  --hil-bg: #f0f4f8;
  --hil-cream: #faf8f4;
  --hil-white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--hil-white);
  -webkit-font-smoothing: antialiased;
}

.promo-strip {
  background: var(--hil-coral);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.promo-strip a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

/* ===== NAV ===== */
.navbar {
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--hil-navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.nav-logos .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logos .brand-icon {
  width: 34px; height: 34px;
  border: 2px solid white;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 15px;
  letter-spacing: -1px;
  position: relative;
}
.nav-logos .brand-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: -6px; right: -6px;
  height: 2px;
  background: white;
  transform: translateY(-50%);
  z-index: -1;
}
.nav-logos .divider { opacity: 0.35; font-weight: 300; font-size: 20px; text-transform: none; }
.nav-logos .target {
  font-weight: 700;
  opacity: 0.9;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}
.nav-cta {
  background: var(--hil-coral);
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--hil-coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,85,32,0.35);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--hil-navy);
  background-image:
    radial-gradient(ellipse 800px 500px at 80% 20%, rgba(152,238,240,0.12) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  color: white;
  padding: 88px 48px 96px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(152,238,240,0.14);
  border: 1px solid rgba(152,238,240,0.35);
  color: var(--hil-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--hil-cyan); }
.hero p.lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--hil-coral);
  color: white;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--hil-coral-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,85,32,0.4); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }

.hero-stat-row {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num { font-size: 26px; font-weight: 800; color: var(--hil-cyan); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.8px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1.1/1;
  border-radius: 16px;
  overflow: hidden;
  background: #3d4368;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.hero-visual-card .k { font-size: 11px; font-weight: 700; color: var(--hil-cyan); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.hero-visual-card .v { font-size: 16px; color: white; font-weight: 600; line-height: 1.4; }
.hero-visual-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hero-visual-metric .num { font-size: 44px; font-weight: 800; color: var(--hil-cyan); line-height: 1; }
.hero-visual-metric .lbl { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== SECTIONS ===== */
section { padding: 80px 48px; }
.inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  color: var(--hil-coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--hil-navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-lede {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 720px;
  line-height: 1.55;
}

/* ===== TRUSTED BY ===== */
.trusted {
  padding: 48px 48px;
  background: var(--hil-bg);
}
.trusted-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.trusted-label {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.4px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trusted-logos .logo-text {
  color: var(--hil-navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.72;
}

/* ===== PAIN POINTS ===== */
.pain-section { background: var(--hil-cream); }
.pain-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.pain-bullets {
  display: flex; flex-direction: column; gap: 28px;
}
.pain-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pain-bullet .bullet-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(242,74,75,0.1);
  color: var(--hil-coral);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.pain-bullet p {
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features-section { background: white; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reversed > :first-child { order: 2; }
.feature-label {
  color: var(--hil-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-row h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--hil-navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.feature-row p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.feature-row ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-row ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-700);
}
.feature-row ul li::before {
  content: "✓";
  color: var(--hil-teal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-visual {
  background: linear-gradient(135deg, #2c304e 0%, #3d4368 100%);
  border-radius: 14px;
  padding: 32px;
  color: white;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(152,238,240,0.15);
  top: -60px; right: -60px;
}
.feature-visual > * { position: relative; z-index: 1; }
.feature-visual .stat-row {
  display: flex; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  margin-top: 8px;
}
.feature-visual .stat .n { font-size: 28px; font-weight: 800; color: var(--hil-cyan); line-height: 1; }
.feature-visual .stat .l { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.feature-visual .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(152,238,240,0.18);
  color: var(--hil-cyan);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  align-self: flex-start;
}
.feature-visual h4 { font-size: 22px; font-weight: 800; line-height: 1.2; }
.feature-visual p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.55; margin: 0; }

/* ===== CASE STUDY ===== */
.case-section {
  background: var(--hil-navy);
  color: white;
}
.case-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.case-inner h2 { color: white; }
.case-inner .eyebrow { color: var(--hil-teal); }
.case-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  border-left: 3px solid var(--hil-coral);
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
}
.case-attr { font-size: 14px; color: rgba(255,255,255,0.6); }
.case-attr strong { color: white; font-weight: 600; }
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 20px;
}
.case-stat .n {
  font-size: 36px;
  font-weight: 800;
  color: var(--hil-cyan);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.case-stat .l {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--hil-cream);
  padding: 80px 48px;
  text-align: center;
}
.cta-section h2 { font-size: 40px; font-weight: 800; color: var(--hil-navy); letter-spacing: -1px; margin-bottom: 14px; }
.cta-section p { font-size: 17px; color: var(--gray-500); max-width: 600px; margin: 0 auto 36px; }
.cta-form {
  max-width: 520px;
  margin: 0 auto;
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(11,37,64,0.08);
  text-align: left;
}
.cta-form label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 16px;
  background: white;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: 2px solid var(--hil-teal); border-color: var(--hil-teal); }
.cta-form button {
  width: 100%;
  background: var(--hil-coral);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-form button:hover { background: var(--hil-coral-deep); }

footer {
  background: var(--hil-navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 40px 48px;
  font-size: 13px;
  text-align: center;
}
footer a { color: var(--hil-teal); text-decoration: none; }

@media (max-width: 900px) {
  .hero-inner, .pain-split, .feature-row, .feature-row.reversed, .case-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reversed > :first-child { order: 0; }
  .hero h1 { font-size: 38px; }
  h2.section-title, .cta-section h2 { font-size: 28px; }
  section, .cta-section { padding: 56px 24px; }
  .hero { padding: 56px 24px 64px; }
  .navbar { padding: 14px 24px; }
  .case-stats { grid-template-columns: 1fr; }
}
