:root {
  --ink: #111111;
  --ink-soft: #3f3f3f;
  --paper: #f7f3eb;
  --white: #fffdf8;
  --mist: #f0f2ee;
  --line: #cfd8d1;
  --coral: #ef4224;
  --night: #050505;
  --shadow: 0 18px 60px rgba(17, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 28px;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(17, 20, 20, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 70px;
  max-width: 280px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px !important;
  color: var(--white) !important;
  background: var(--coral);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 126px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% 18%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 18, 17, 0.88) 0%, rgba(10, 18, 17, 0.62) 44%, rgba(10, 18, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 18, 17, 0.72) 0%, rgba(10, 18, 17, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 48px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.keep-together {
  white-space: nowrap;
}

h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: 0;
}

@media (min-width: 900px) {
  .hero h1 {
    white-space: nowrap;
  }

  .section-heading h2 {
    white-space: nowrap;
  }
}

h2 {
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
}

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

.button.outline-dark {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.section {
  padding: 104px 28px;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(860px, 100%);
}

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

.alternate-band {
  background: var(--paper);
}

.white-band {
  background: var(--white);
}

.intro-band h2 {
  font-size: 32px;
  line-height: 1.05;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.stacked-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.tight-heading-pair h2 + h2 {
  margin-top: -10px;
}

.tight-heading-pair p:not(.eyebrow) + p {
  margin-top: -10px;
}

.callout-list {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.callout-list p {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 850;
}

.callout-list ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.callout-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-weight: 650;
}

.callout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.wide-heading {
  max-width: 1040px;
}

@media (min-width: 900px) {
  .wide-heading p:not(.eyebrow) {
    white-space: nowrap;
  }
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 22px;
}

.card-icon-larger {
  transform: scale(1.18);
  transform-origin: left center;
}

.card p {
  color: var(--ink-soft);
}

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

.video-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.clickable-video-card {
  cursor: pointer;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--night);
  border: 0;
}

.video-thumb img,
.video-thumb.is-pending {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-thumb-embed {
  aspect-ratio: 16 / 9;
}

.video-thumb-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.video-thumb.is-pending {
  display: grid;
  place-items: center;
  color: rgba(255, 253, 248, 0.72);
  background: var(--night);
  font: inherit;
  font-weight: 850;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.video-card-copy {
  padding: 24px;
}

.video-card-copy h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.video-card-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.dark {
  color: var(--white);
  background: var(--night);
}

.dark .stacked-copy p {
  color: rgba(255, 253, 248, 0.76);
}

.diagnosis-chart {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.08;
}

.diagnosis-chart span {
  display: inline-flex;
  padding: 8px 0;
}

.diagnosis-chart b {
  color: var(--coral);
  font-size: 1.1em;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--coral);
  font-size: 16px;
  font-weight: 850;
}

button.text-link {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  font-family: inherit;
}

.muted-link {
  color: var(--ink-soft);
  cursor: default;
}

.clickable-card {
  cursor: pointer;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric-row div {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 210px;
  padding: 26px;
  background: var(--white);
}

.metric-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.metric-row span {
  font-size: 1.08rem;
  font-weight: 750;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
  padding-top: 92px;
  padding-bottom: 56px;
}

.cta-inner {
  display: grid;
  justify-items: start;
  gap: 0;
  justify-content: space-between;
}

.cta-inner h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.04;
}

.cta-inner .button {
  margin-top: 30px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 24px;
  padding: 26px 28px;
  color: var(--white);
  background: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 850;
}

.site-footer small {
  grid-column: 1 / -1;
  justify-self: start;
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-footer img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex: 0 0 auto;
}

.tagline-arrow {
  color: var(--coral);
  padding: 0 8px;
}

.calendly-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.76);
}

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

.calendly-modal__panel {
  position: relative;
  width: min(1080px, 100%);
  height: min(760px, calc(100vh - 48px));
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.calendly-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 850;
  cursor: pointer;
}

.calendly-modal iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.82);
}

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

.video-modal__panel {
  position: relative;
  width: min(1120px, 100%);
}

.video-modal__frame {
  overflow: hidden;
  background: var(--night);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 850;
  cursor: pointer;
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 112;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.82);
}

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

.article-modal__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1180px, 100%);
  height: min(820px, calc(100vh - 48px));
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.article-modal__bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: var(--ink);
}

.article-modal__bar .button {
  min-height: 42px;
  padding: 10px 14px;
}

.article-modal__close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 850;
  cursor: pointer;
}

.article-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.article-modal__panel--fallback {
  height: auto;
  max-width: 720px;
}

.article-modal__message {
  padding: 42px;
}

.article-modal__message h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.article-modal__message p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.page-hero {
  padding: 96px 28px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-hero {
  background: var(--paper);
}

.about-bg-1 {
  background: #f7f3eb;
}

.about-bg-2 {
  background: #fffdf8;
}

.about-bg-3 {
  background: #f0f2ee;
}

.about-bg-4 {
  background: #ffffff;
}

.about-bg-5 {
  background: #f4efe6;
}

.about-bg-6 {
  background: #fbf8f1;
}

.about-bg-7 {
  background: #ecefeb;
}

.about-bg-8 {
  background: #f8f6ef;
}

.page-hero h1 {
  color: var(--ink);
  font-size: 42px;
  line-height: 0.95;
}

.page-hero .eyebrow {
  color: var(--coral);
  font-size: 24px;
  line-height: 1;
}

@media (min-width: 700px) {
  .page-hero .eyebrow {
    white-space: nowrap;
  }
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.pdf-preview {
  overflow: hidden;
  height: min(86vh, 920px);
  min-height: 620px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pdf-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.capability-document {
  display: grid;
  justify-items: center;
}

.capability-document img {
  width: min(100%, 920px);
  height: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-hero p:not(.eyebrow) {
  max-width: 860px;
}

.page-hero.split p {
  align-self: center;
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 34px;
  background: var(--white);
}

.service-item span,
.timeline article span {
  color: var(--coral);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-item p {
  max-width: 780px;
  color: var(--ink-soft);
}

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

.timeline.four-step {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline article {
  padding: 32px;
  background: var(--white);
  border-top: 6px solid var(--coral);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline p,
.proof-placeholder p,
.article-card p {
  color: var(--ink-soft);
}

.muted {
  background: var(--mist);
}

.proof-placeholder {
  max-width: 820px;
}

.recognition-certifications {
  margin-top: 22px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.recognition-certifications strong {
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  min-height: 180px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(17, 20, 20, 0.08);
}

.testimonial-card p {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.35;
}

.testimonial-card cite {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.35;
}

.testimonial-card cite strong {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.testimonial-card cite span {
  display: block;
  font-style: italic;
  font-weight: 400;
}

.about-cta {
  background: var(--white);
  text-align: center;
}

.about-cta h2 {
  max-width: 820px;
  margin: 0 auto 24px;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.quickscan-hero .eyebrow {
  font-size: 24px;
}

.quickscan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.quickscan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quickscan-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
}

.quickscan-card h3 {
  color: var(--coral);
  font-size: 24px;
}

.quickscan-card p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.quickscan-question h2 {
  font-size: 32px;
}

.download-page {
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  padding: 96px 28px;
  background: var(--paper);
}

.download-card {
  width: min(760px, 100%);
  padding: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.download-card .eyebrow {
  font-size: 24px;
}

.download-description {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.download-card h1 {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.article-card h2 {
  font-size: 1.65rem;
  line-height: 1.08;
}

.article-card .eyebrow {
  font-size: 16px;
  line-height: 1.15;
}

.article-body {
  max-width: 820px;
}

.article-body p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.article-note {
  margin-top: 30px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.logo-wall div {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 24px;
  color: var(--ink-soft);
  background: var(--white);
  font-weight: 850;
  text-align: center;
}

.logo-wall img {
  width: auto;
  max-width: 168px;
  max-height: 70px;
  object-fit: contain;
}

.logo-wall img.logo-mark,
.logo-wall img.logo-square {
  max-width: 92px;
  max-height: 82px;
}

.logo-wall img.logo-wide {
  max-width: 178px;
  max-height: 62px;
}

.logo-wall img.logo-extra-wide {
  max-width: 200px;
  max-height: 58px;
}

.logo-wall img.logo-verizon {
  max-width: 146px;
}

.logo-wall img.logo-old-navy {
  max-width: 190px;
  max-height: 82px;
}

.logo-wall img.logo-cdph {
  max-width: 196px;
  max-height: 78px;
}

.certifications-band {
  padding: 26px 28px;
  background: var(--white);
}

.certifications-band.about-bg-8 {
  background: #f8f6ef;
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.certifications span {
  font-weight: 750;
}

.certifications small {
  font-size: 0.82rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  width: min(720px, 100%);
  margin: 0 auto;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 22px;
  border-left: 4px solid var(--coral);
  color: var(--ink-soft);
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 750;
}

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

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-status {
  margin: 0;
  color: var(--coral);
  font-size: 0.95rem;
  font-weight: 750;
}

.form-success {
  display: grid;
  gap: 14px;
  padding: 18px 0;
}

.form-success h2 {
  margin-bottom: 0;
}

.form-success p {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.form-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.direct-contact {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: center;
}

.direct-contact a {
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 28px 26px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .nav-cta {
    display: inline-flex;
    width: fit-content;
  }

  .two-column,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-grid.three,
  .card-grid.four,
  .video-grid,
  .logo-wall,
  .metric-row,
  .timeline,
  .quickscan-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid.four.alignment-authority-method {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .timeline.four-step {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .timeline.four-step {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    width: auto;
  }

  .hero {
    min-height: calc(100vh - 96px);
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-bottom: 48px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .card-grid.three,
  .card-grid.four,
  .video-grid,
  .logo-wall,
  .metric-row,
  .timeline,
  .quickscan-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .contact-panel {
    gap: 28px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    column-gap: 16px;
    row-gap: 12px;
    padding: 24px 18px;
  }

  .site-footer small {
    grid-column: 1 / -1;
  }

  .site-footer > span {
    margin-left: -6px;
  }

  .site-footer img {
    width: 64px;
    height: 64px;
  }

  .download-card {
    padding: 34px 24px;
  }
}
