/* ============================================================
   Home page — Organic Lead Generation System
   New sections + audit lead modal. Built on the global tokens
   in styles.css / theme-bold.css so it stays native to the site.
   ============================================================ */

:root {
  --hm-pos: #2f8f5b;
  --hm-pos-soft: rgba(47, 143, 91, 0.12);
  --hm-neg: #c0492f;
  --hm-neg-soft: rgba(192, 73, 47, 0.1);
}

/* ---------- Social proof band ---------- */
.hm-proof {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(180deg, #fff, var(--gray-50));
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.hm-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.hm-proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  position: relative;
}

.hm-proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.625rem;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--gray-200);
}

.hm-proof-value {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  color: var(--blue-dark);
}

.hm-proof-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray-700);
}

/* ---------- The problem ---------- */
.hm-problem-card {
  max-width: 44rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.hm-problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hm-problem-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
}

.hm-x {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hm-neg-soft);
  color: var(--hm-neg);
}

.hm-problem-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--gray-200);
  text-align: center;
}

.hm-problem-result strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.hm-problem-result p {
  margin: 0;
  color: var(--gray-700);
}

/* ---------- The solution (pillars) ---------- */
.hm-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hm-pillar {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.hm-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-muted);
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.hm-pillar h3 {
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
}

.hm-pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hm-pillar-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.hm-pillar-list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Featured case study ---------- */
.hm-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.hm-feature-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hm-feature h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0.5rem 0 0.75rem;
}

.hm-feature p {
  color: var(--gray-700);
  margin: 0 0 1.25rem;
}

.hm-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hm-feature-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1;
  color: var(--blue-dark);
}

.hm-feature-stat span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.hm-feature-ba {
  display: grid;
  gap: 0.75rem;
}

.hm-shot {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.hm-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.hm-shot-flag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  color: #fff;
}

.hm-flag-before {
  background: rgba(12, 12, 12, 0.7);
}

.hm-flag-after {
  background: var(--hm-pos);
}

/* ---------- Smaller wins ---------- */
.hm-wins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hm-win {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hm-win-metric {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--blue-dark);
  line-height: 1;
}

.hm-win h4 {
  margin: 0.65rem 0 0.25rem;
  font-size: 1.05rem;
}

.hm-win-industry {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0 0 0.6rem;
}

.hm-win p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-700);
}

/* ---------- Industries ---------- */
.hm-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hm-ind {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hm-ind:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: 0 30px 70px rgba(12, 12, 12, 0.14);
}

.hm-ind-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-muted);
  color: var(--blue-dark);
}

.hm-ind-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
}

.hm-ind-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- Why OTO ---------- */
.hm-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 46rem;
  margin: 0 auto;
}

.hm-why-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #fff;
  font-weight: 600;
}

.hm-check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hm-pos-soft);
  color: var(--hm-pos);
}

/* ---------- FAQ ---------- */
.hm-faq {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.hm-faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.hm-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hm-faq-item summary::-webkit-details-marker {
  display: none;
}

.hm-faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s var(--ease);
}

.hm-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.hm-faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--gray-700);
}

.hm-faq-answer p {
  margin: 0;
}

/* ---------- Audit lead modal ---------- */
.hm-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  background: rgba(12, 18, 22, 0.55);
  backdrop-filter: blur(4px);
}

.hm-modal.is-open {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.hm-modal-panel {
  position: relative;
  width: 100%;
  max-width: 30rem;
  margin: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px rgba(12, 12, 12, 0.35);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.hm-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.hm-modal-close:hover {
  background: var(--gray-200);
}

.hm-modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.hm-modal h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  margin: 0.4rem 0 0.5rem;
}

.hm-modal-sub {
  color: var(--gray-700);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.hm-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.hm-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}

.hm-field input,
.hm-field select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--black);
}

.hm-field input:focus,
.hm-field select:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px var(--blue-muted);
}

.hm-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.hm-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.hm-form-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.hm-form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hm-pos);
  min-height: 1.1rem;
}

.hm-form-status.is-error {
  color: var(--hm-neg);
}

.hm-form-note {
  margin: 0.6rem 0 0;
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
}

/* ---------- Problem (3 cards) ---------- */
.hm-prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hm-prob {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.5rem;
}

.hm-prob-num {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray-200);
}

.hm-prob-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--hm-neg-soft);
  color: var(--hm-neg);
  margin-bottom: 1rem;
}

.hm-prob h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.hm-prob p {
  margin: 0;
  color: var(--gray-700);
}

.hm-prob-result {
  max-width: 42rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.hm-prob-result strong {
  color: var(--black);
}

/* ---------- The System (full-width rows) ---------- */
.hm-sys-chips {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.hm-sys-chips a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hm-sys-chips a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.hm-sys-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.hm-sys-section--alt {
  background: var(--gray-50);
}

.hm-sys {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hm-sys--rev .hm-sys-media {
  order: 2;
}

.hm-sys-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.4rem;
}

.hm-sys-copy h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 0.65rem;
}

.hm-sys-lead {
  color: var(--gray-700);
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}

.hm-sys-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.hm-sys-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--black);
}

.hm-sys-list li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hm-pos-soft);
  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='%232f8f5b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.hm-sys-media {
  min-width: 0;
}

.hm-sys-ph {
  position: relative;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, var(--blue-muted), transparent 70%),
    var(--gray-50);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.hm-sys-ph-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--blue-dark);
  box-shadow: var(--shadow);
}

.hm-sys-ph-cap {
  margin: 0;
  max-width: 22rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* ---------- Inline CTA band ---------- */
.hm-cta-band {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background: linear-gradient(180deg, #eef3f6, #f7f9fb);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.hm-cta-band-inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hm-cta-band h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
}

.hm-cta-band p {
  margin: 0;
  color: var(--gray-700);
}

/* ---------- Featured case study (single image + deltas) ---------- */
.hm-feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  background: var(--gray-100);
}

.hm-feature-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hm-feature-delta {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--hm-pos);
}

.hm-win-link {
  margin-top: 1rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  cursor: pointer;
}

.hm-win-link:hover {
  color: var(--accent-hover);
}

/* ---------- Industry card description ---------- */
.hm-ind-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ---------- Process (3 columns) ---------- */
.hm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: hm-step;
}

.hm-step {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
}

.hm-step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hm-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.hm-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Dark-section card overrides (cards stay light on dark sections) ---------- */
.site-bold .section-blue .hm-pillar h3 {
  color: var(--black);
}

.site-bold .section-ink .hm-ind {
  color: var(--black);
}

.site-bold .section-ink .hm-ind .hm-ind-name {
  color: var(--black);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hm-pillars,
  .hm-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-feature {
    grid-template-columns: 1fr;
  }
  .hm-wins,
  .hm-prob-grid,
  .hm-steps {
    grid-template-columns: 1fr;
  }
  .hm-sys {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* Always show the image above the copy when stacked */
  .hm-sys--rev .hm-sys-media {
    order: 0;
  }
}

@media (max-width: 760px) {
  .hm-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }
  .hm-proof-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .hm-proof-grid,
  .hm-pillars,
  .hm-ind-grid,
  .hm-why,
  .hm-feature-stats,
  .hm-sys-list,
  .hm-field-row {
    grid-template-columns: 1fr;
  }
  .hm-proof-item::after {
    display: none !important;
  }
  .hm-feature-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Hero: copy + OTO System flow (replaces the photo background)
   ============================================================ */
.site-bold .hero-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 980px) {
  .site-bold .hero-home .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}

.hero-system {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}

@media (min-width: 980px) {
  .hero-system {
    margin: 0 0 0 auto;
  }
}

.hero-system-title {
  margin: 0 0 1.4rem;
  text-align: center;
  font-family: "Sora", var(--font-sans, sans-serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.hero-system-title span {
  color: var(--accent);
}

.hero-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-flow-step {
  --step: #4f8bff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 42px -24px var(--step);
}

.hero-flow-step--convert {
  --step: #22d3a5;
}
.hero-flow-step--track {
  --step: #a855f7;
}
.hero-flow-step--book {
  --step: var(--accent);
}

.hero-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.15rem + 26px);
  top: 50%;
  width: 2px;
  height: calc(100% + 0.9rem);
  transform: translateX(-50%);
  background: var(--step);
  opacity: 0.4;
  z-index: 0;
}

.hero-flow-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--step);
  border: 1.6px solid var(--step);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 22px -8px var(--step), inset 0 0 14px -10px var(--step);
}

.hero-flow-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.hero-flow-text strong {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-flow-text span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Required-field mark in the audit modal */
.hm-req {
  color: #e5484d;
  font-weight: 700;
  margin-left: 0.1rem;
}
