/* ============================================================
   PADtesters.com — Master Stylesheet
   Brand DNA: Navy / Gold / Red / Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,400;1,600&display=swap');

:root {
  /* ============================================================
     AMERICAN PALETTE — JustRefer1.com inspired bright royal blue
     ============================================================ */
  /* Primary blues — brighter and more saturated */
  --blue: #1A47A8;          /* Bright royal blue — headers, nav */
  --blue-deep: #0E2E78;     /* Darker variant for hero gradients */
  --blue-soft: #2858C2;     /* Lighter for hover/active states */
  --blue-pale: #EEF3FC;     /* Soft sky blue — section backgrounds */
  --blue-tint: #F7FAFF;     /* Lightest hint of blue */

  /* Accent red */
  --red: #D63B3B;
  --red-deep: #A92929;
  --red-soft: #F4DDDD;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFCFF;
  --gray-50: #F6F8FB;
  --gray-100: #E5EBF2;
  --gray-200: #C8D4E2;
  --text-dark: #0E2E78;
  --text-body: #2C3E5C;
  --text-muted: #5A6B82;

  --gold: #F2C12E;

  /* Backwards-compat aliases */
  --navy: var(--blue);
  --navy-deep: var(--blue-deep);
  --navy-soft: var(--blue-soft);
  --cream: var(--blue-pale);
  --cream-deep: var(--gray-100);
  --gold-soft: #F8D86A;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --container: 1240px;
  --container-wide: 1400px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 20px rgba(26, 71, 168, 0.10);
  --shadow-hover: 0 14px 44px rgba(26, 71, 168, 0.18);
  --transition: 220ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 14px;
  border: 1px solid var(--red);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.eyebrow.dark { color: var(--blue); border-color: var(--blue); }
.eyebrow.red  { color: var(--red); border-color: var(--red); }
.eyebrow.light { color: var(--white); border-color: rgba(255,255,255,0.5); }

.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.bg-navy   { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-cream  { background: var(--blue-pale); color: var(--text-body); }
.bg-white  { background: var(--white); color: var(--text-body); }
.bg-deep   { background: var(--blue-deep); color: var(--white); }
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: var(--white); }
.bg-tint   { background: var(--blue-tint); color: var(--text-body); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red  { color: var(--red); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; flex-shrink: 0; }
.brand-mark {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img, .brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  color: var(--white);
  white-space: nowrap;
}
.brand-name .dot { color: var(--red); }
.brand-name .four { color: var(--red); font-weight: 900; }
.brand-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
  align-items: center;
}
.nav-list a, .nav-list > li > button {
  display: inline-block;
  padding: 9px 11px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-list a:hover, .nav-list > li > button:hover {
  background: rgba(255,255,255,0.10);
  color: var(--white);
}
.nav-list a.active, .nav-list > li > a.active {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}
.nav-home {
  border: 1.5px solid rgba(255,255,255,0.30) !important;
  font-weight: 700 !important;
  padding: 7px 12px !important;
}

.has-dropdown { position: relative; }
.has-dropdown > button::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.8em;
  color: var(--red);
  display: inline-block;
  transition: transform var(--transition);
}
.has-dropdown.open > button::after { transform: rotate(180deg); color: var(--white); }
.has-dropdown.open > button { background: rgba(255,255,255,0.14); }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-hover);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all var(--transition);
  list-style: none;
  margin: 0;
  border-radius: 0 0 8px 8px;
}
.has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 20px;
  color: var(--blue);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.dropdown a:hover { background: var(--blue-pale); color: var(--red); }

.nav-cta {
  margin-left: 8px;
  white-space: nowrap !important;
}

.nav-toggle { display: none; width: 44px; height: 44px; color: var(--white); font-size: 1.6rem; background: transparent; border: none; cursor: pointer; }

@media (max-width: 1180px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-list {
    position: absolute;
    top: calc(100% + 3px); left: 0; right: 0;
    background: var(--blue-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease, padding 320ms ease, border-bottom-width 320ms ease;
    border-bottom: 0 solid var(--red);
  }
  .nav-list.open {
    max-height: 100vh;
    overflow-y: auto;
    padding: 18px 16px 24px;
    border-bottom-width: 3px;
  }
  .nav-list > li { width: 100%; }
  .nav-list a, .nav-list > li > button {
    width: 100%;
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }
  .has-dropdown > button { display: flex; justify-content: space-between; align-items: center; }
  .dropdown {
    position: static;
    box-shadow: none;
    background: var(--blue);
    border-top: none;
    border-left: 3px solid var(--red);
    margin: 0 0 6px 12px;
    opacity: 1; pointer-events: auto; transform: none;
    max-height: 0; overflow: hidden; padding: 0;
    transition: max-height 280ms ease, padding 280ms ease;
  }
  .has-dropdown.open .dropdown { max-height: 800px; padding: 6px 0; }
  .dropdown a { color: var(--white); }
  .dropdown a:hover { background: var(--blue-soft); color: var(--white); }
  .nav-cta { margin: 10px 0 0 !important; text-align: center !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--red); }
.btn-gold:hover { background: var(--gold-soft); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline-cream { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-cream:hover { background: var(--blue); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-navy:hover { background: var(--blue); color: var(--white); }

.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--blue-tint) 100%);
  color: var(--text-dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 85% 85%, rgba(214,59,59,0.06), transparent 50%),
    radial-gradient(ellipse at 10% 0%, rgba(26,71,168,0.05), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--container-wide);
  margin: 0 auto;
  min-height: 80vh;
}
.hero-content { text-align: left; }
.hero-content .eyebrow { background: rgba(26,71,168,0.06); color: var(--blue); border-color: var(--blue); }
.hero h1 { color: var(--blue-deep); margin-bottom: 24px; }
.hero h1 .silent { color: var(--red); display: inline-block; }
.hero h1 .find { font-family: var(--font-accent); font-style: italic; font-weight: 600; text-transform: none; color: var(--red); letter-spacing: 0; }
.hero-sub {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,71,168,0.18), 0 0 0 1px rgba(26,71,168,0.08);
  aspect-ratio: 3 / 4;
  max-height: 620px;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,60,114,0.65) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 3;
  background: rgba(20,60,114,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-align: center;
}
.hero-badge span { color: var(--red); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; min-height: auto; }
  .hero-image-wrap { aspect-ratio: 4/5; max-width: 480px; margin: 0 auto; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--blue-tint) 100%);
  color: var(--text-dark);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 70%, rgba(214,59,59,0.06), transparent 40%),
    radial-gradient(circle at 20% 30%, rgba(26,71,168,0.05), transparent 40%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: var(--blue-deep); margin-bottom: 18px; }
.page-hero p {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto;
}
.page-hero .eyebrow.light { color: var(--blue); border-color: var(--blue); background: rgba(26,71,168,0.06); }

/* ---------- Stat blocks ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.stat-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stat-card .stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}
.stat-card .stat-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.45; margin: 0; }

.bg-navy .stat-card, .bg-deep .stat-card {
  background: rgba(255,255,255,0.06);
  border-top-color: var(--red);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 4px solid var(--red);
}
.bg-navy .stat-card .stat-label, .bg-deep .stat-card .stat-label { color: var(--white); }
.bg-navy .stat-card .stat-desc, .bg-deep .stat-card .stat-desc { color: rgba(255,255,255,0.78); }
.bg-navy .stat-card .stat-number, .bg-deep .stat-card .stat-number { color: var(--white); }

/* ---------- Card grid (general) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border-left: 4px solid var(--red);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-icon {
  width: 56px; height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { color: var(--blue); margin-bottom: 10px; }
.card p { color: var(--text-muted); margin: 0; }

.bg-navy .card, .bg-deep .card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 4px solid var(--red);
}
.bg-navy .card h3, .bg-deep .card h3 { color: var(--white); }
.bg-navy .card p, .bg-deep .card p { color: rgba(255,255,255,0.78); }

/* Numbered badge */
.num-badge {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ---------- Test cards (the 3 main tests) ---------- */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.test-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-top: 6px solid var(--red);
  transition: all var(--transition);
}
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.test-card-header { background: var(--blue); color: var(--white); padding: 22px 26px; }
.test-code {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.test-card h3 { color: var(--white); margin: 0; font-size: 1.5rem; }
.test-card-body { padding: 24px 26px; }
.test-card-body p { color: var(--text-muted); margin-bottom: 14px; }
.test-card-body ul { padding-left: 18px; margin: 0; color: var(--blue); }
.test-card-body li { margin-bottom: 6px; }

/* ---------- Big CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(214,59,59,0.18), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(11,34,64,0.25), transparent 40%);
  pointer-events: none;
}
.cta-strip-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.92); font-size: 1.15rem; margin-bottom: 26px; }

/* ---------- COPP Hub-and-spoke ---------- */
.copp-hub {
  display: grid;
  place-items: center;
  margin: 40px auto;
  max-width: 760px;
}
.copp-hub svg { width: 100%; height: auto; max-width: 720px; }

/* ---------- Lists ---------- */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.benefit-list li {
  background: var(--white);
  padding: 20px 22px 20px 56px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-card);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
}
.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 18px; top: 16px;
  width: 28px; height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 1rem;
}
.bg-navy .benefit-list li, .bg-deep .benefit-list li {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.10);
}

/* Specialties grid */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.specialty-chip {
  background: var(--white);
  padding: 22px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  font-size: 0.95rem;
  text-align: center;
}
.specialty-chip:hover { transform: translateY(-3px); border-left-color: var(--red); color: var(--red); box-shadow: var(--shadow-hover); }

/* Revenue strip */
.revenue-strip {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  text-align: center;
}
.revenue-cell {
  padding: 50px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.revenue-cell:last-child { border-right: none; }
.revenue-cell .rev-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.revenue-cell .rev-label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 6px;
}
.revenue-cell .rev-sub { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 0; }
@media (max-width: 760px) {
  .revenue-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 36px 24px; }
  .revenue-cell:last-child { border-bottom: none; }
}

/* ---------- Process flow ---------- */
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  padding: 26px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
  text-align: center;
  border-bottom: 4px solid var(--red);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(214,59,59,0.4);
}
.process-step h4 { color: var(--navy); margin: 8px 0 8px; font-size: 1.05rem; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; margin: 0; line-height: 1.4; }

/* ---------- Standards cards ---------- */
.standard-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--red);
}
.standard-card .std-org {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--red);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.standard-card h3 { color: var(--navy); margin-bottom: 14px; }

/* ---------- Risk checklist ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  background: var(--white);
  padding: 18px 18px 18px 56px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-card);
  color: var(--navy);
  line-height: 1.45;
  font-weight: 500;
  border-left: 3px solid var(--red);
}
.checklist li::before {
  content: '?';
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900;
  font-family: var(--font-display);
}

/* ---------- About / Founder ---------- */
.about-paragraph {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto 1.4em;
  color: var(--navy);
}
.bg-navy .about-paragraph, .bg-deep .about-paragraph { color: rgba(246,239,226,0.92); }
.about-paragraph strong { color: var(--red); }
.bg-navy .about-paragraph strong, .bg-deep .about-paragraph strong { color: var(--gold); }

.founder-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 6px solid var(--red);
}
.founder-monogram {
  width: 90px; height: 90px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  margin: 0 auto 18px;
  border: 3px solid var(--red);
}
.founder-block h3 { color: var(--navy); margin-bottom: 6px; }
.founder-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.founder-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 22px auto 0;
  max-width: 640px;
  line-height: 1.5;
  position: relative;
  padding: 0 28px;
}
.founder-quote::before, .founder-quote::after {
  content: '"';
  color: var(--gold);
  font-size: 2.4rem;
  font-family: var(--font-accent);
  position: absolute;
  line-height: 1;
}
.founder-quote::before { left: 0; top: -8px; }
.founder-quote::after { right: 0; bottom: -22px; }

/* ---------- Form ---------- */
.form-wrap {
  background: var(--white);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
  border-top: 6px solid var(--red);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #D2C9B2;
  background: var(--cream);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  transition: all var(--transition);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(214,59,59,0.18);
}
.form-grid textarea { min-height: 130px; resize: vertical; }
.form-success {
  display: none;
  background: rgba(34,139,34,0.08);
  border: 1px solid #2E8B57;
  border-radius: 6px;
  color: #1E5631;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-weight: 600;
}
.form-success.visible { display: block; }
.form-error {
  display: none;
  background: rgba(214,59,59,0.08);
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--red-deep);
  padding: 14px 18px;
  margin-bottom: 16px;
  font-weight: 600;
}
.form-error.visible { display: block; }

/* ---------- Compliance line ---------- */
.compliance {
  background: var(--blue-pale);
  color: var(--blue);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  border-bottom: 1px solid rgba(20,60,114,0.10);
}
.compliance strong { color: var(--red); font-style: normal; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--blue-deep), #0a1f3f);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 30px;
  border-top: 4px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-tagline { font-size: 0.95rem; line-height: 1.6; max-width: 320px; color: rgba(255,255,255,0.7); }
.site-footer h4 {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.site-footer a:hover { color: var(--white); }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.footer-compliance {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 14px;
  line-height: 1.5;
}
.footer-compliance strong { color: rgba(255,255,255,0.85); font-style: normal; }
.footer-meta a { color: var(--red); font-style: normal; }
.footer-meta a:hover { color: var(--white); }
.footer-meta .legal { font-style: normal; display: block; margin-top: 10px; font-size: 0.78rem; }

/* ---------- Two-column generic ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Section header ---------- */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }
.bg-navy .section-head p, .bg-deep .section-head p { color: rgba(246,239,226,0.75); }

/* Pull quote */
.pull-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.45;
  color: var(--gold);
  text-align: center;
  max-width: 820px;
  margin: 30px auto;
  padding: 0 24px;
}

/* ============================================================
   ANIMATIONS — Scroll-triggered + hover lifts
   ============================================================ */

/* Reveal animations DISABLED to ensure content is always visible.
   Previously: opacity:0 until JS IntersectionObserver added .is-visible class.
   That caused broken-looking pages when JS was slow or content didn't trigger
   the observer threshold. Content visibility now NEVER depends on JS. */
[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* Stagger delays — apply data-delay="1" through "8" */
[data-delay="1"].is-visible { transition-delay: 80ms; }
[data-delay="2"].is-visible { transition-delay: 160ms; }
[data-delay="3"].is-visible { transition-delay: 240ms; }
[data-delay="4"].is-visible { transition-delay: 320ms; }
[data-delay="5"].is-visible { transition-delay: 400ms; }
[data-delay="6"].is-visible { transition-delay: 480ms; }
[data-delay="7"].is-visible { transition-delay: 560ms; }
[data-delay="8"].is-visible { transition-delay: 640ms; }

/* Hero — animate on load with stagger */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroZoom {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}
.hero .eyebrow    { animation: heroFadeUp 700ms cubic-bezier(.2,.7,.2,1) 100ms both; }
.hero h1          { animation: heroFadeUp 900ms cubic-bezier(.2,.7,.2,1) 200ms both; }
.hero .hero-sub   { animation: heroFadeUp 800ms cubic-bezier(.2,.7,.2,1) 450ms both; }
.hero .hero-cta   { animation: heroFadeUp 700ms cubic-bezier(.2,.7,.2,1) 650ms both; }
.hero .hero-image-wrap { animation: heroZoom 1100ms cubic-bezier(.2,.7,.2,1) 300ms both; }
.hero .hero-badge { animation: heroFadeUp 700ms cubic-bezier(.2,.7,.2,1) 900ms both; }
.compliance       { animation: heroFadeIn 800ms ease 200ms both; }

/* Cards — hover lift */
.feature-card, .test-card, .pillar-card, .spoke-card,
.benefit-card, .specialty-card, .standards-card,
.workflow-step, .step-card, .audience-card {
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              box-shadow 320ms cubic-bezier(.2,.7,.2,1),
              border-color 320ms ease;
}
.feature-card:hover, .test-card:hover, .pillar-card:hover,
.spoke-card:hover, .benefit-card:hover, .specialty-card:hover,
.standards-card:hover, .workflow-step:hover, .step-card:hover,
.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(11,34,64,0.16);
}

/* Big number counters — slight glow on reveal */
.stat-big, .big-num, .stat-value {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), text-shadow 600ms ease;
}
.stat-big.is-visible, .big-num.is-visible, .stat-value.is-visible {
  text-shadow: 0 0 30px rgba(214,59,59,0.30);
}

/* ============================================================
   COPP HUB & SPOKE — Draw-in animation + interactive hover
   ============================================================ */

/* Container — make it interactive */
.copp-hub {
  max-width: 760px;
  margin: 40px auto;
  position: relative;
}
.copp-hub svg { width: 100%; height: auto; display: block; }

/* Lines fade in then "stretch" via dash animation */
.hub-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1400ms cubic-bezier(.2,.7,.2,1);
}
.hub-svg.is-visible .hub-line { stroke-dashoffset: 0; }
.hub-svg.is-visible .hub-line:nth-of-type(1) { transition-delay: 200ms; }
.hub-svg.is-visible .hub-line:nth-of-type(2) { transition-delay: 280ms; }
.hub-svg.is-visible .hub-line:nth-of-type(3) { transition-delay: 360ms; }
.hub-svg.is-visible .hub-line:nth-of-type(4) { transition-delay: 440ms; }
.hub-svg.is-visible .hub-line:nth-of-type(5) { transition-delay: 520ms; }
.hub-svg.is-visible .hub-line:nth-of-type(6) { transition-delay: 600ms; }

/* Center hub — pulse in */
.hub-center {
  opacity: 0;
  transform-origin: 360px 270px;
  transform: scale(0.7);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.34,1.56,.64,1);
}
.hub-svg.is-visible .hub-center {
  opacity: 1;
  transform: scale(1);
  transition-delay: 100ms;
}

/* Spokes — pop in with stagger + hover effect */
.hub-spoke {
  opacity: 0;
  cursor: pointer;
  transition: opacity 700ms ease, transform 600ms cubic-bezier(.34,1.56,.64,1);
}
.hub-spoke circle {
  transition: fill 280ms ease, stroke 280ms ease, stroke-width 280ms ease, filter 280ms ease;
}
.hub-spoke text {
  transition: fill 280ms ease, font-weight 280ms ease;
}

/* Reveal staggered */
.hub-svg.is-visible .hub-spoke { opacity: 1; }
.hub-svg.is-visible .hub-spoke:nth-of-type(3) { transition-delay: 700ms; }   /* faith */
.hub-svg.is-visible .hub-spoke:nth-of-type(4) { transition-delay: 800ms; }   /* first responders */
.hub-svg.is-visible .hub-spoke:nth-of-type(5) { transition-delay: 900ms; }   /* civic */
.hub-svg.is-visible .hub-spoke:nth-of-type(6) { transition-delay: 1000ms; }  /* employers */
.hub-svg.is-visible .hub-spoke:nth-of-type(7) { transition-delay: 1100ms; }  /* schools */
.hub-svg.is-visible .hub-spoke:nth-of-type(8) { transition-delay: 1200ms; }  /* seniors */

/* HOVER: flip the spoke — red circle background, white text, lift effect */
.hub-spoke:hover circle {
  fill: #D63B3B;
  stroke: #0E2E78;
  stroke-width: 4;
  filter: drop-shadow(0 8px 18px rgba(214,59,59,0.40));
}
.hub-spoke:hover text {
  fill: #FFFFFF;
}

/* Center hub also gets a subtle hover */
.hub-center:hover circle {
  filter: drop-shadow(0 10px 24px rgba(26,71,168,0.45));
}

/* Buttons — subtle press */
.btn { transition: transform 180ms cubic-bezier(.2,.7,.2,1), box-shadow 180ms ease, background 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Section eyebrow pill — subtle scale on reveal */
.section-eyebrow { transition: transform 500ms cubic-bezier(.2,.7,.2,1); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Legacy fade-up (kept for compat) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 700ms ease both; }
.fade-up.delay-1 { animation-delay: 100ms; }
.fade-up.delay-2 { animation-delay: 200ms; }
.fade-up.delay-3 { animation-delay: 300ms; }

/* Image hero alt for inner pages w/ small variant */
.mini-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 480px;
  margin: 30px auto 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(214,59,59,0.20);
}

/* ============================================================
   PULSE4PHYSICIANS WORDMARK — primary brand identifier
   ============================================================ */
.p4p-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-block;
  line-height: 1;
}
.p4p-wordmark .p4p-main {
  font-weight: 900;
  color: var(--white);
}
.p4p-wordmark .p4p-four {
  color: var(--red) !important;
  font-weight: 900;
}

/* On light/cream/white backgrounds, main text is navy */
.hero .p4p-wordmark .p4p-main,
.bg-white .p4p-wordmark .p4p-main,
.bg-cream .p4p-wordmark .p4p-main,
.bg-tint .p4p-wordmark .p4p-main,
.bg-blue-pale .p4p-wordmark .p4p-main,
.section.bg-cream .p4p-wordmark .p4p-main,
.section.bg-white .p4p-wordmark .p4p-main,
.p4p-wordmark.on-light .p4p-main {
  color: var(--blue-deep) !important;
}

/* Header / footer / navy sections — main text stays white */
.site-header .p4p-wordmark .p4p-main,
.site-footer .p4p-wordmark .p4p-main,
.bg-navy .p4p-wordmark .p4p-main,
.bg-deep .p4p-wordmark .p4p-main,
.cta-strip .p4p-wordmark .p4p-main,
.p4p-wordmark.on-dark .p4p-main {
  color: var(--white) !important;
}

/* Header brand wordmark */
.site-header .brand-name .p4p-wordmark {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.site-footer .brand-name .p4p-wordmark {
  font-size: 1.4rem;
}

/* When used in hero h1 — inherit the giant h1 size */
.hero h1 .p4p-wordmark {
  font-size: inherit;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* "Powered by Pulse4Pulse" header subtitle: white text */
.brand-tag.powered {
  color: rgba(255,255,255,0.92) !important;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  margin-top: 4px;
}
.brand-tag.powered .four { color: var(--red); font-weight: 900; }
.site-footer .brand-tag.powered { color: rgba(255,255,255,0.85) !important; }

.site-header .brand { gap: 0; }

@media (max-width: 768px) {
  .site-header .brand-name .p4p-wordmark { font-size: 1.35rem; }
}

/* ============================================================
   VISUAL UPGRADES — adding pop, motion, and accent visuals
   ============================================================ */

/* ---------- Stat cards: add icon slot, pulse accent ---------- */
.stat-card { position: relative; padding-top: 80px; overflow: hidden; }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-deep) 50%, var(--red) 100%);
}
.stat-card .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(214,59,59,0.32);
  position: relative;
  z-index: 2;
}
.stat-card .stat-icon svg { width: 28px; height: 28px; stroke-width: 2.2; }
.stat-card .stat-number { position: relative; z-index: 2; }
.stat-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(214,59,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Cards in card-grid: visual icon header ---------- */
.card { position: relative; overflow: hidden; padding-top: 32px; }
.card-icon-visual {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(26,71,168,0.25);
  position: relative;
  z-index: 2;
}
.card-icon-visual svg { width: 30px; height: 30px; stroke-width: 2; }
.card-icon-visual.red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 6px 18px rgba(214,59,59,0.30);
}
.card-num-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--red);
  background: rgba(214,59,59,0.10);
  padding: 4px 10px;
  border-radius: 100px;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  opacity: 0;
  transition: opacity 220ms var(--ease, ease);
}
.card:hover::before { opacity: 1; }

/* ---------- Path cards: icon ribbons ---------- */
.path-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(214,59,59,0.28);
}
.path-card-icon svg { width: 26px; height: 26px; stroke-width: 2.2; }

/* ---------- No Catch list: stronger visual ---------- */
.benefit-list.no-catch li {
  background: #fff;
  padding: 18px 22px 18px 56px;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--red);
  margin-bottom: 14px;
  position: relative;
}
.benefit-list.no-catch li::before {
  content: '';
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(214,59,59,0.32);
}
.benefit-list.no-catch li::after {
  content: '✓';
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Section dividers (red pulse line) ---------- */
.divider-pulse {
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  border: 0;
  margin: 0;
}

/* ---------- Hero accent: floating pulse decoration ---------- */
.hero { position: relative; overflow: hidden; }
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(214,59,59,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid { position: relative; z-index: 1; }

/* Hero badge: red dot pulse */
.hero-badge {
  position: relative;
}

/* ---------- Marketing teaser block: add accent ribbon ---------- */
.marketing-teaser-block {
  position: relative;
  overflow: hidden;
}
.marketing-teaser-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(214,59,59,0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- "Two Paths" visual upgrade ---------- */
.path-grid-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 820px) {
  .path-grid-visual { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.path-card-visual {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 2px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: all 250ms var(--ease, ease);
  box-shadow: var(--shadow-card);
}
.path-card-visual:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.path-card-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--red-deep));
}
.path-card-visual::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(214,59,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.path-tag-visual {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--red);
  background: rgba(214,59,59,0.10);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.path-tag-visual::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(214,59,59,0.20);
}

/* ---------- "What's In The Box" cards: icon decoration ---------- */
.box-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--red);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease, ease), box-shadow 220ms var(--ease, ease);
}
.box-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.box-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.box-card-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(26,71,168,0.28);
}
.box-card-icon svg { width: 28px; height: 28px; stroke-width: 2.2; }
.box-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.85;
}
.box-card h3 { margin-bottom: 10px; }

/* ---------- CTA strip accent ---------- */
.cta-strip { position: relative; overflow: hidden; }
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, #fff 50%, transparent 100%);
  opacity: 0.4;
}

/* ---------- Quote callout (reusable accent block) ---------- */
.callout-quote {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11,34,64,0.20);
}
.callout-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--font-accent);
  font-size: 8rem;
  color: rgba(214,59,59,0.30);
  line-height: 1;
  font-weight: 900;
}
.callout-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 1;
}
.callout-quote p .accent { color: var(--red-bright, #E84545); font-style: italic; font-family: var(--font-accent); }

/* ---------- Floating pulse-line decoration (use sparingly) ---------- */
.pulse-decoration {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 30px;
  margin: 0 auto 8px;
  opacity: 0.85;
}

/* ============================================================
   MOBILE ICON HARD-CAP (regression guard)
   ============================================================
   Any small icon-style SVG (24x24 viewBox) without explicit
   container sizing should not exceed 32px even in flex/grid
   layouts that try to stretch it. Inline width/height on the
   tag itself is the primary fix; this is a defensive backstop.
   ============================================================ */
.stat-card .stat-icon,
.card-icon-visual,
.path-card-icon,
.box-card-icon {
  flex-shrink: 0 !important;
}
.stat-card .stat-icon svg,
.card-icon-visual svg,
.path-card-icon svg,
.box-card-icon svg {
  max-width: 36px !important;
  max-height: 36px !important;
  flex-shrink: 0 !important;
}

/* ============================================================
   MOBILE SPACING REFINEMENT
   ============================================================
   Tighten vertical rhythm on phones so sections don't feel
   disconnected with huge empty gaps between them, and give
   the page-hero a bit more breathing room below the sticky
   nav so the eyebrow doesn't sit right under the header.
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .page-hero { padding: 56px 0 48px; }
  .hero-grid { padding: 48px 24px 40px; }
  .cta-strip { padding: 56px 24px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .page-hero { padding: 44px 0 36px; }
}

/* ============================================================
   NEW SECTIONS — Pulse4Physicians rebuild May 2026
   ============================================================ */

/* ---------- Banner strip (Increase Practice Revenue / $0 Start-Up) ---------- */
.banner-strip {
  background: linear-gradient(135deg, #0B2240 0%, #14223B 100%);
  color: #fff;
  padding: 48px clamp(20px, 5vw, 56px);
  border-radius: 14px;
  margin: 0 auto;
  max-width: var(--container);
  box-shadow: 0 16px 40px rgba(11,34,64,0.25);
  position: relative;
  overflow: hidden;
}
.banner-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, #F2C12E 50%, var(--red) 100%);
}
.banner-strip h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.banner-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner-pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.banner-pills li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #F2C12E;
}

/* ---------- ADA/AHA Standards Cards ---------- */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.standards-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(11,34,64,0.10);
  border-top: 4px solid var(--red);
  text-align: center;
}
.standards-card .standards-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.standards-card .standards-logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.standards-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ---------- 3 Ways Cards (physician value pitch) ---------- */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.way-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(11,34,64,0.18);
  transition: transform 320ms ease, box-shadow 320ms ease;
}
.way-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11,34,64,0.24);
}
.way-card .way-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
}
.way-card .way-icon svg {
  width: 60px;
  height: 60px;
  stroke-width: 1.5;
}
.way-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Pillar Photo Cards (Medical Device/Report/Tech/Billing) ---------- */
.pillar-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.pillar-photo-card {
  text-align: center;
  padding: 12px;
}
.pillar-photo-frame {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11,34,64,0.18);
  display: grid;
  place-items: center;
  padding: 8px;
}
.pillar-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.pillar-photo-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 18px;
  text-align: center;
}
.bg-navy .pillar-photo-card h3 { color: #fff; }
.pillar-photo-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.pillar-photo-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--text);
}
.bg-navy .pillar-photo-card ul li { color: rgba(255,255,255,0.92); }
.pillar-photo-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
.pillar-photo-card .pillar-cta {
  margin-top: 18px;
  text-align: center;
}

/* ---------- What's Included 2-Column ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.included-col h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
  letter-spacing: 0.02em;
}
.included-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.included-col ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
}
.included-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

/* ---------- What Sets Us Apart 6 cards ---------- */
.apart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.apart-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(11,34,64,0.10);
  border-left: 4px solid var(--red);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.apart-card .apart-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.apart-card .apart-check svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 3.5;
}
.apart-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--text);
}
.apart-card p strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

/* ---------- Org Type Cards ---------- */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.org-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11,34,64,0.12);
  transition: transform 320ms ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(11,34,64,0.20);
}
.org-card .org-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--blue-deep);
}
.org-card .org-icon svg { width: 100%; height: 100%; stroke-width: 1.6; }
.org-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: var(--blue-deep);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.org-card p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

/* ---------- Specialties Grid (top 8 on home, all 20 on specialties.html) ---------- */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.specialty-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 22px;
  box-shadow: 0 6px 18px rgba(11,34,64,0.08);
  border-left: 3px solid var(--red);
}
.specialty-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue-deep);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.specialty-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

/* ---------- COPP Optional Add-On Section ---------- */
.copp-optional-banner {
  background: linear-gradient(135deg, rgba(214,59,59,0.08), rgba(214,59,59,0.02));
  border: 1.5px dashed var(--red);
  border-radius: 12px;
  padding: 18px 24px;
  margin: 0 auto 28px;
  max-width: 800px;
  text-align: center;
}
.copp-optional-banner strong {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-right: 8px;
}
.copp-optional-banner span {
  font-size: 0.95rem;
  color: var(--text);
}
.copp1-preview {
  max-width: 920px;
  margin: 36px auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(11,34,64,0.16);
}
.copp1-preview img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.copp1-preview .copp1-caption {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 14px 0 4px;
}

/* ---------- PAD Education Pull-Quote ---------- */
.pad-edu-section {
  max-width: 920px;
  margin: 0 auto;
}
.pad-edu-quote {
  background: linear-gradient(135deg, var(--blue-pale) 0%, rgba(228,237,251,0.5) 100%);
  border-left: 4px solid var(--blue);
  padding: 22px 28px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.pad-edu-quote p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--blue-deep);
  margin: 0;
  font-weight: 600;
}
.pad-edu-body p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
}
.pad-edu-body p em {
  font-weight: 700;
  font-style: italic;
  color: var(--red);
}

/* ---------- Billing Codes Section ---------- */
.billing-codes-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(11,34,64,0.12);
  border-top: 4px solid var(--red);
}
.billing-codes-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 8px;
}
.billing-codes-card .billing-intro {
  color: var(--text);
  margin: 0 0 22px;
  font-size: 0.98rem;
}
.billing-codes-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.billing-codes-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
}
.billing-codes-list li:last-child { border-bottom: none; }
.billing-codes-list .code-name {
  color: var(--blue-deep);
  font-weight: 600;
}
.billing-codes-list .code-num {
  font-family: 'Courier New', monospace;
  background: var(--blue-pale);
  color: var(--blue-deep);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
}
.billing-codes-card .billing-additional {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 2px dashed var(--gray-100);
}
.billing-codes-card .billing-additional h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}

/* ---------- Patient Workflow 6 Steps ---------- */
.patient-flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.flow-step {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11,34,64,0.10);
  position: relative;
}
.flow-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(214,59,59,0.32);
}
.flow-step-icon {
  width: 72px;
  height: 72px;
  margin: 18px auto 16px;
  color: var(--blue-deep);
}
.flow-step-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.flow-step h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-deep);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* COPP 8 spokes diagram tweak — fits 8 spokes */
@media (max-width: 700px) {
  .banner-strip h2 { font-size: 1.3rem; }
}

/* ============================================================
   FOOTER NEWSLETTER CTA
   ============================================================ */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(242,193,46,0.10) 0%, rgba(214,59,59,0.06) 100%);
  border: 1px solid rgba(242,193,46,0.25);
  border-radius: 14px;
  padding: 28px 36px;
  margin-bottom: 48px;
}
.footer-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer-newsletter-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 12px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
}
.footer-newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.footer-newsletter-sub {
  font-size: 0.95rem;
  color: rgba(246,239,226,0.78);
  margin: 0;
  line-height: 1.5;
}
.footer-newsletter-cta .btn {
  white-space: nowrap;
}
@media (max-width: 760px) {
  .footer-newsletter {
    padding: 24px 22px;
  }
  .footer-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .footer-newsletter-cta .btn {
    width: 100%;
  }
}

/* HubSpot form container - light styling tweaks */
.hs-form-container {
  margin-top: 8px;
}
.hs-form-container form {
  font-family: var(--font-body) !important;
}
.hs-form-container .hs-form-field label {
  color: var(--blue-deep) !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  margin-bottom: 4px !important;
}
.hs-form-container input[type="text"],
.hs-form-container input[type="email"],
.hs-form-container input[type="tel"],
.hs-form-container textarea,
.hs-form-container select {
  border: 1.5px solid var(--gray-100) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.hs-form-container input:focus,
.hs-form-container textarea:focus {
  border-color: var(--navy) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(14,46,120,0.10) !important;
}
.hs-form-container .hs-button {
  background: var(--gold) !important;
  color: var(--blue-deep) !important;
  border: none !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
  margin-top: 12px !important;
}
.hs-form-container .hs-button:hover {
  background: #FFD45F !important;
  transform: translateY(-1px) !important;
}

/* ============================================================
   TWO-COLUMN PAGE HERO
   ============================================================ */
.page-hero.hero-2col {
  background: linear-gradient(135deg, #0B2240 0%, #1A47A8 60%, #0E2E78 100%);
  color: #fff;
  padding: 90px 0 90px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-hero.hero-2col::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,193,46,0.18) 0%, rgba(242,193,46,0) 70%);
  pointer-events: none;
}
.page-hero.hero-2col::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,59,59,0.16) 0%, rgba(214,59,59,0) 70%);
  pointer-events: none;
}
.page-hero.hero-2col .hero-2col-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.page-hero.hero-2col h1 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.page-hero.hero-2col p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(246,239,226,0.92);
  margin: 0 0 28px;
  max-width: 580px;
  line-height: 1.6;
}
.page-hero.hero-2col .eyebrow.light,
.page-hero.hero-2col .eyebrow {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(242,193,46,0.10);
}
.page-hero.hero-2col .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-hero.hero-2col .btn-outline-navy,
.page-hero.hero-2col .btn-outline-cream {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
}
.page-hero.hero-2col .btn-outline-navy:hover,
.page-hero.hero-2col .btn-outline-cream:hover {
  background: rgba(255,255,255,0.10) !important;
  border-color: #fff !important;
}

/* Visual card on the right side */
.hero-visual {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 6px solid var(--gold);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-visual-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
}
.hero-visual-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* Stat list inside visual card */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hero-stat:last-child {
  border-bottom: none;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  display: block;
}
.hero-stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(246,239,226,0.92);
  line-height: 1.4;
}

/* Icon row variant (alternative to stats) */
.hero-icon-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 6px;
}
.hero-icon-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
}
.hero-icon-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-icon-pill-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

/* Single large icon variant (e.g., for risk page) */
.hero-big-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, #FFB84D 100%);
  color: var(--blue-deep);
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(242,193,46,0.35);
}

/* Quote card variant */
.hero-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  font-style: italic;
  margin: 0 0 16px;
}
.hero-quote-attr {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 880px) {
  .page-hero.hero-2col {
    padding: 60px 0 60px;
  }
  .page-hero.hero-2col .hero-2col-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    padding: 24px;
  }
  .hero-icon-row {
    grid-template-columns: 1fr;
  }
}
