:root {
  --ink: #152125;
  --paper: #f7f7f3;
  --white: #ffffff;
  --teal: #0b6d75;
  --teal-dark: #083f48;
  --amber: #d7a347;
  --red: #bd3f38;
  --mint: #dfeeea;
  --line: rgba(21, 33, 37, 0.14);
  --shadow: 0 24px 70px rgba(11, 28, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(13, 32, 35, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(13, 32, 35, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 142px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-color: #f7f7f3;
  background-image: url("assets/hero-on-hold-impressions-people.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 82%;
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 32, 39, 0.82) 0%, rgba(8, 32, 39, 0.58) 40%, rgba(8, 32, 39, 0.08) 78%),
    linear-gradient(0deg, rgba(8, 32, 39, 0.22), rgba(8, 32, 39, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 0;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.88);
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--amber);
  color: #20170a;
  box-shadow: 0 16px 34px rgba(215, 163, 71, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  width: 34px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.45; }
  50% { transform: translate(-50%, 12px); opacity: 1; }
}

.intro-band {
  background: var(--teal-dark);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
}

.intro-grid > div {
  min-height: 84px;
  padding: clamp(14px, 2vw, 22px);
  background: var(--teal-dark);
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
}

.intro-grid p,
.service-card p,
.copy-block p,
.process-list p,
.demo-content p,
.support-grid p,
.contact-copy p {
  margin: 0;
  color: rgba(21, 33, 37, 0.72);
  line-height: 1.68;
}

.intro-grid p,
.demo-content p {
  color: rgba(255, 255, 255, 0.74);
}

.section,
.split-section,
.control-band,
.demo-band,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.control-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding-top: 0;
}

.control-copy h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}

.control-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.control-grid span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(11, 109, 117, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 800;
}

.section-heading.services-heading {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 22px;
  text-align: left;
}

.section-heading .services-label {
  margin: 0 0 8px;
  text-align: left;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.process-list > div,
.support-grid > div,
.contact-form,
.ticket-system,
.ticket-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(11, 28, 32, 0.04);
}

.service-card {
  min-height: 310px;
  padding: 26px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.copy-block p {
  max-width: 590px;
  margin-top: 22px;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--teal);
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 20px;
  padding: 24px;
}

.process-list span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.demo-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(18px, 1fr) minmax(0, 560px) minmax(0, 560px) minmax(18px, 1fr);
  gap: 40px;
  align-items: center;
  background: var(--teal-dark);
  color: var(--white);
}

.demo-content {
  grid-column: 2;
}

.demo-content h2 {
  max-width: 540px;
}

.demo-content p {
  max-width: 520px;
  margin-top: 18px;
  font-size: 18px;
}

.audio-panel {
  grid-column: 3;
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.player-top,
.player-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.play-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(189, 63, 56, 0.18);
}

.waveform {
  height: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 42px 0;
}

.waveform span {
  flex: 1;
  min-width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber), #fff1c8);
  animation: level 1.6s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 28%; animation-delay: 0ms; }
.waveform span:nth-child(2) { height: 72%; animation-delay: 80ms; }
.waveform span:nth-child(3) { height: 44%; animation-delay: 150ms; }
.waveform span:nth-child(4) { height: 86%; animation-delay: 230ms; }
.waveform span:nth-child(5) { height: 38%; animation-delay: 300ms; }
.waveform span:nth-child(6) { height: 62%; animation-delay: 360ms; }
.waveform span:nth-child(7) { height: 90%; animation-delay: 430ms; }
.waveform span:nth-child(8) { height: 50%; animation-delay: 500ms; }
.waveform span:nth-child(9) { height: 76%; animation-delay: 570ms; }
.waveform span:nth-child(10) { height: 34%; animation-delay: 640ms; }
.waveform span:nth-child(11) { height: 82%; animation-delay: 710ms; }
.waveform span:nth-child(12) { height: 46%; animation-delay: 780ms; }
.waveform span:nth-child(13) { height: 70%; animation-delay: 850ms; }
.waveform span:nth-child(14) { height: 40%; animation-delay: 920ms; }
.waveform span:nth-child(15) { height: 92%; animation-delay: 990ms; }
.waveform span:nth-child(16) { height: 56%; animation-delay: 1060ms; }
.waveform span:nth-child(17) { height: 74%; animation-delay: 1130ms; }
.waveform span:nth-child(18) { height: 32%; animation-delay: 1200ms; }

@keyframes level {
  0%, 100% { transform: scaleY(0.72); opacity: 0.72; }
  50% { transform: scaleY(1); opacity: 1; }
}

.support-section {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-grid > div {
  padding: 28px;
}

.ticket-system {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 4vw, 42px);
  margin-top: 18px;
  padding: clamp(24px, 4vw, 34px);
}

.ticket-copy p {
  margin: 0;
  color: rgba(21, 33, 37, 0.72);
  line-height: 1.68;
}

.ticket-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
}

.ticket-status {
  margin-top: 22px;
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.4;
}

.ticket-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ticket-list {
  grid-column: 1 / -1;
  padding: 22px;
}

.ticket-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.ticket-list-header h3 {
  margin: 0;
}

.ticket-clear {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: #fbfbf8;
  color: var(--teal-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.ticket-items {
  display: grid;
  gap: 10px;
}

.ticket-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfbf8;
}

.ticket-item strong {
  color: var(--teal-dark);
}

.ticket-item span,
.ticket-item time,
.empty-tickets {
  color: rgba(21, 33, 37, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.empty-tickets {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 7vw, 80px);
  align-items: start;
  padding-top: clamp(52px, 7vw, 82px);
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-copy p {
  margin-top: 20px;
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-weight: 700;
}

.contact-details a {
  color: var(--teal);
}

.contact-details span {
  color: rgba(21, 33, 37, 0.64);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(21, 33, 37, 0.72);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 13px;
  font: inherit;
  color: var(--ink);
  background: #fbfbf8;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 109, 117, 0.2);
  border-color: var(--teal);
}

.wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
  font: inherit;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: rgba(21, 33, 37, 0.64);
}

.footer-brand {
  display: grid;
  gap: 2px;
  width: 150px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.footer-brand span {
  display: block;
  color: rgba(21, 33, 37, 0.62);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 64px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    border-color: var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .intro-grid,
  .service-grid,
  .support-grid,
  .ticket-system {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .control-band,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .demo-band {
    grid-template-columns: 18px minmax(0, 1fr) 18px;
  }

  .demo-content,
  .audio-panel {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .brand {
    width: 114px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media {
    background-position: 68% bottom;
    background-repeat: no-repeat;
    background-size: auto 78%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 32, 39, 0.88) 0%, rgba(8, 32, 39, 0.72) 64%, rgba(8, 32, 39, 0.38)),
      linear-gradient(0deg, rgba(8, 32, 39, 0.32), rgba(8, 32, 39, 0.04));
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .service-grid,
  .support-grid,
  .ticket-system,
  .ticket-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .ticket-item {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .process-list > div {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .process-list span {
    width: 40px;
    height: 40px;
  }

  .waveform {
    gap: 5px;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* Intro stats compact override */
.intro-grid p {
  font-size: 14px;
  line-height: 1.42;
}

.section-heading.services-heading {
  display: block;
  max-width: 760px;
  margin: 0 0 22px 0;
  text-align: left;
}

.section-heading.services-heading .services-label {
  display: block;
  margin: 0 0 8px 0;
  text-align: left;
}

.lead-line {
  display: block;
  white-space: nowrap;
}


.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.services-intro {
  max-width: 720px;
  margin: 0;
  color: rgba(21, 33, 37, 0.72);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.14;
}


.support-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(21, 33, 37, 0.72);
  font-size: 18px;
  line-height: 1.68;
  text-align: left;
}


.support-heading {
  align-items: start;
}

.support-heading > div {
  justify-self: start;
  width: 100%;
  text-align: left;
}

.support-heading h2 {
  text-align: left;
}

/* Responsive polish for tablets and phones */
@media (max-width: 1100px) {
  .hero {
    min-height: 820px;
  }

  .hero-media {
    background-position: 74% bottom;
    background-size: auto 76%;
  }

  .hero-content {
    width: min(620px, calc(100% - 48px));
    margin-left: 24px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 230px;
  }

  .ticket-system,
  .contact-section,
  .split-section,
  .control-band {
    grid-template-columns: 1fr;
  }

  .ticket-copy,
  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 8px 18px;
  }

  .brand {
    width: 122px;
  }

  .site-nav {
    top: 62px;
  }

  .hero {
    min-height: 760px;
    align-items: start;
  }

  .hero-media {
    background-position: 64% bottom;
    background-size: auto 58%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 32, 39, 0.9) 0%, rgba(8, 32, 39, 0.76) 42%, rgba(8, 32, 39, 0.28) 100%),
      linear-gradient(90deg, rgba(8, 32, 39, 0.78), rgba(8, 32, 39, 0.18));
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 auto;
    padding-top: 110px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 68px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(30px, 7vw, 44px);
  }

  .hero-copy {
    max-width: 520px;
    font-size: clamp(18px, 4.7vw, 24px);
  }

  .section,
  .split-section,
  .control-band,
  .contact-section {
    width: min(100% - 32px, 1180px);
    padding: 64px 0;
  }

  .demo-band {
    padding: 64px 0;
  }

  .intro-grid,
  .support-grid,
  .ticket-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .intro-grid > div {
    min-height: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .support-grid > div,
  .ticket-system,
  .ticket-list,
  .contact-form {
    padding: 22px;
  }

  .lead-line {
    white-space: normal;
  }

  .services-intro {
    font-size: clamp(24px, 6vw, 34px);
  }

  .control-grid span {
    min-height: 42px;
    padding: 10px 12px;
  }

  .audio-panel {
    min-height: 250px;
  }

  .waveform {
    height: 108px;
    margin: 30px 0;
  }

  .ticket-item {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    gap: 20px;
  }

  .site-footer div {
    display: grid;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 108px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-position: 64% bottom;
    background-size: auto 50%;
  }

  .hero-content {
    padding-top: 96px;
  }

  .eyebrow {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(40px, 15vw, 58px);
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 13px 15px;
  }

  .section,
  .split-section,
  .control-band,
  .contact-section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  .demo-band {
    padding: 54px 0;
  }

  .service-card,
  .support-grid > div,
  .ticket-system,
  .ticket-list,
  .audio-panel,
  .contact-form {
    padding: 18px;
  }

  .process-list > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-list span {
    grid-row: auto;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}
/* Support intro left alignment override */
.section-heading.support-heading {
  display: block;
  max-width: 860px;
  margin: 0 0 34px 0;
  text-align: left;
}

.section-heading.support-heading .eyebrow {
  margin: 0 0 16px 0;
  text-align: left;
}

.section-heading.support-heading > div {
  width: 100%;
  max-width: 860px;
  justify-self: start;
  text-align: left;
}

.section-heading.support-heading h2,
.section-heading.support-heading .support-intro {
  text-align: left;
}