:root {
  --brand-green: #8cc63f;
  --brand-green-hover: #7db333;
  --deep-ink: #18201f;
  --forest: #3b5350;
  --white: #ffffff;
  --mist: #f4f6f3;
  --border: #d7ddd8;
  --muted: #5e6964;
  --signal-blue: #1e6f9f;
  --amber: #b86d00;
  --error: #b43b3b;
  --shell: 1180px;
  --header-height: 72px;
  --radius: 6px;
  --shadow-focus: 0 0 0 3px #18201f, 0 0 0 5px #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--deep-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

a {
  color: var(--signal-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--signal-blue);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--deep-ink);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: 56px;
  line-height: 1.12;
}

h2 {
  font-size: 38px;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

.shell {
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: 24px;
  width: 100%;
}

.shell--narrow {
  max-width: 820px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  background: var(--white);
  color: var(--deep-ink);
  font-weight: 700;
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -80px;
  z-index: 9999;
}

.skip-link:focus {
  top: 12px;
}

.icon {
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.eyebrow {
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ddecce;
}

.button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  min-height: 50px;
  padding: 13px 22px;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--brand-green);
  color: var(--deep-ink);
}

.button--primary:hover {
  background: var(--brand-green-hover);
  color: var(--deep-ink);
  text-decoration: none;
}

.button--primary:focus-visible {
  box-shadow: var(--shadow-focus);
  outline: 0;
}

.button[disabled],
.button.is-loading {
  cursor: wait;
  opacity: 0.7;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
}

.text-link .icon {
  height: 18px;
  transition: transform 160ms ease;
  width: 18px;
}

.text-link:hover .icon {
  transform: translateX(3px);
}

.text-link--light {
  color: var(--white);
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  min-height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: var(--header-height);
}

.site-brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.site-brand img,
.site-brand .custom-logo {
  height: auto;
  max-height: 50px;
  width: 166px;
}

.site-brand .custom-logo-link {
  display: flex;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.primary-nav__list,
.primary-nav .menu {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav__list a,
.primary-nav .menu a {
  color: var(--deep-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav__list a:hover,
.primary-nav .menu a:hover {
  color: var(--signal-blue);
}

.primary-nav__cta {
  min-height: 44px;
  padding-block: 10px;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--deep-ink);
  display: none;
  height: 48px;
  justify-content: center;
  padding: 0;
  width: 48px;
}

.hero {
  background: #121a18;
  min-height: min(700px, calc(100svh - 82px));
  overflow: hidden;
  position: relative;
}

.hero__media,
.hero__media img,
.hero__shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background: rgba(8, 14, 13, 0.28);
}

.hero__inner {
  align-items: center;
  display: flex;
  min-height: min(700px, calc(100svh - 82px));
  padding-block: 72px;
  position: relative;
  z-index: 2;
}

.hero__content {
  color: var(--white);
  max-width: 650px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 640px;
}

.hero__lead {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 630px;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}

.hero__trust {
  border-left: 3px solid var(--brand-green);
  color: #e6ece7;
  font-size: 15px;
  margin: 0;
  max-width: 590px;
  padding-left: 14px;
}

.proof-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
}

.proof-band__metrics {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  align-items: baseline;
  border-right: 1px solid var(--border);
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 4px 30px;
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  border-right: 0;
  padding-right: 0;
}

.metric strong {
  color: var(--deep-ink);
  font-size: 34px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.proof-band__note {
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0 0;
}

.section {
  padding-block: 96px;
}

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

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

.section--ink {
  background: var(--deep-ink);
  color: var(--white);
}

.section--form {
  background: #eef2ee;
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 54px;
  max-width: 760px;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-header > p:last-child {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}

.section-header--split {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  max-width: none;
}

.section-header--split h2,
.section-header--split p {
  margin-bottom: 0;
}

.section-header--light h2,
.section-header--light > p:last-child {
  color: var(--white);
}

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

.diagnostic-item {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.diagnostic-item h3 {
  font-size: 22px;
  margin: 20px 0 12px;
}

.diagnostic-item p {
  color: var(--muted);
  margin: 0;
}

.icon-box {
  align-items: center;
  background: #e7f1dc;
  border-radius: var(--radius);
  color: var(--forest);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.icon-box--dark {
  background: #2e3a38;
  color: var(--brand-green);
}

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

.model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
}

.model-card--featured {
  border-top: 5px solid var(--brand-green);
  padding-top: 26px;
}

.model-card__label {
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.model-card h3 {
  margin-bottom: 12px;
}

.model-card > p:not(.model-card__label):not(.model-card__boundary) {
  color: var(--muted);
}

.model-card .text-link {
  margin-top: auto;
}

.check-list {
  list-style: none;
  margin: 10px 0 22px;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--border);
  padding: 10px 0 10px 24px;
  position: relative;
}

.check-list li::before {
  background: var(--brand-green);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 2px;
  position: absolute;
  top: 20px;
  width: 8px;
}

.model-card__boundary {
  background: var(--mist);
  border-left: 3px solid var(--forest);
  font-size: 14px;
  margin: 0 0 24px;
  padding: 12px 14px;
}

.section-cta {
  margin-top: 42px;
  text-align: center;
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-row {
  align-items: start;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 24px;
  grid-template-columns: 48px 44px minmax(0, 1fr);
  padding-block: 28px;
}

.service-row__number {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 15px;
  padding-top: 10px;
}

.service-row h3 {
  font-size: 22px;
  margin: 6px 0 8px;
}

.service-row p {
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.process-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-left: 1px solid #45514f;
  min-width: 0;
  padding: 0 26px 0 24px;
}

.process-list li:first-child {
  border-left: 0;
  padding-left: 0;
}

.process-list__number {
  color: #a9b6b1;
  display: block;
  font-family: "Courier New", monospace;
  font-size: 14px;
  margin-bottom: 18px;
}

.process-list .icon-box {
  margin-bottom: 18px;
}

.process-list h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 10px;
}

.process-list p {
  color: #c8d1cd;
  font-size: 15px;
  margin-bottom: 16px;
}

.process-list strong {
  color: var(--brand-green);
  display: block;
  font-size: 13px;
}

.delivery-band {
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 640px;
}

.delivery-band__media {
  min-height: 520px;
}

.delivery-band__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.delivery-band__content {
  align-items: center;
  display: flex;
  padding: 72px max(32px, calc((100vw - var(--shell)) / 2));
}

.delivery-band__content > div {
  max-width: 560px;
}

.delivery-band__content h2 {
  margin-bottom: 22px;
}

.delivery-band__content p:not(.eyebrow) {
  color: var(--muted);
}

.trust-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.trust-grid h2 {
  margin-bottom: 0;
}

.lead-copy {
  font-size: 20px;
  line-height: 1.55;
}

.trust-list,
.fit-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.trust-list li,
.fit-list li {
  align-items: flex-start;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 14px;
  padding-block: 15px;
}

.trust-list .icon,
.fit-list--yes .icon {
  color: #4d7d18;
  margin-top: 2px;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
}

.fit-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(2, 1fr);
}

.fit-column h3 {
  border-bottom: 3px solid var(--brand-green);
  margin-bottom: 0;
  padding-bottom: 14px;
}

.fit-column:last-child h3 {
  border-bottom-color: var(--forest);
}

.fit-list {
  margin-top: 0;
}

.fit-list--no .icon {
  color: var(--error);
  margin-top: 2px;
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.faq-layout__header {
  margin-bottom: 0;
  position: sticky;
  top: 116px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  color: var(--deep-ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
  min-height: 68px;
  padding: 20px 48px 20px 0;
  position: relative;
}

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

.faq-list summary::before,
.faq-list summary::after {
  background: var(--deep-ink);
  content: "";
  height: 2px;
  position: absolute;
  right: 6px;
  top: 34px;
  width: 18px;
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details > div {
  color: var(--muted);
  max-width: 720px;
  padding: 0 48px 22px 0;
}

.faq-list details > div p {
  margin: 0;
}

.consultation-layout {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.consultation-intro {
  position: sticky;
  top: 116px;
}

.consultation-intro h2 {
  margin-bottom: 20px;
}

.next-steps {
  border-top: 1px solid #c9d2ca;
  margin-top: 34px;
  padding-top: 24px;
}

.next-steps h3 {
  font-size: 19px;
}

.next-steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.next-steps li {
  align-items: start;
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
}

.next-steps li > span {
  align-items: center;
  background: var(--deep-ink);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  font-size: 13px;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.next-steps p {
  margin: 0;
}

.security-note {
  align-items: flex-start;
  background: var(--white);
  border-left: 4px solid var(--signal-blue);
  display: flex;
  font-size: 14px;
  gap: 12px;
  margin: 30px 0 0;
  padding: 14px 16px;
}

.security-note .icon {
  color: var(--signal-blue);
  height: 20px;
  margin-top: 1px;
  width: 20px;
}

.consultation-form-surface {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}

.form-unavailable {
  border-left: 4px solid var(--amber);
  padding: 4px 0 4px 18px;
}

.form-unavailable h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.form-unavailable p {
  margin: 0;
}

.site-footer {
  background: var(--deep-ink);
  color: #dbe3df;
  padding: 64px 0 24px;
}

.site-footer__inner {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.site-footer__brand img {
  background: var(--white);
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 6px 8px;
}

.site-footer__brand p {
  max-width: 420px;
}

.site-footer__legal {
  justify-self: end;
  max-width: 470px;
}

.site-footer a {
  color: var(--white);
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid #3a4744;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 22px;
}

.site-footer__bottom p {
  margin: 0;
}

.content-main {
  min-height: 60vh;
}

.content-page {
  padding-block: 80px 112px;
}

.content-page__header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 42px;
  padding-bottom: 28px;
}

.content-page__header h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.content-page__updated {
  color: var(--muted);
  font-size: 14px;
}

.entry-content h2 {
  font-size: 30px;
  margin-top: 52px;
}

.entry-content h3 {
  font-size: 22px;
  margin-top: 34px;
}

.entry-content li {
  margin-bottom: 8px;
}

.post-summary {
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
}

.error-page {
  padding-top: 120px;
}

@media (max-width: 1220px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(24, 32, 31, 0.12);
    display: flex;
    flex-direction: column;
    gap: 22px;
    left: 0;
    padding: 24px 24px 30px;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .js .primary-nav:not(.is-open) {
    display: none;
  }

  .primary-nav__list,
  .primary-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav__list a,
  .primary-nav .menu a {
    border-bottom: 1px solid var(--border);
    display: block;
    min-height: 48px;
    padding-block: 12px;
  }

  .primary-nav__cta {
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav__list,
  .primary-nav .menu {
    gap: 18px;
  }

  .model-card {
    padding: 24px;
  }

  .process-list {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li,
  .process-list li:first-child {
    border-left: 0;
    border-top: 1px solid #45514f;
    padding: 26px 0 0;
  }

  .process-list li:nth-child(-n+2) {
    border-top: 0;
    padding-top: 0;
  }

  .delivery-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    padding-inline: 20px;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(24, 32, 31, 0.12);
    display: flex;
    flex-direction: column;
    gap: 22px;
    left: 0;
    padding: 24px 20px 30px;
    position: absolute;
    right: 0;
    top: 64px;
  }

  .js .primary-nav:not(.is-open) {
    display: none;
  }

  .primary-nav__list,
  .primary-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav__list a,
  .primary-nav .menu a {
    border-bottom: 1px solid var(--border);
    display: block;
    min-height: 48px;
    padding-block: 12px;
  }

  .primary-nav__cta {
    width: 100%;
  }

  .hero,
  .hero__inner {
    min-height: min(680px, calc(100svh - 72px));
  }

  .hero__shade {
    background: rgba(8, 14, 13, 0.48);
  }

  .hero__content {
    max-width: 620px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section {
    padding-block: 72px;
  }

  .diagnostic-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .model-grid {
    gap: 16px;
  }

  .section-header--split,
  .trust-grid,
  .faq-layout,
  .consultation-layout {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .faq-layout__header,
  .consultation-intro {
    position: static;
  }

  .delivery-band {
    grid-template-columns: 1fr;
  }

  .delivery-band__media {
    min-height: 460px;
  }

  .delivery-band__content {
    padding: 64px 24px 72px;
  }

  .fit-grid {
    gap: 30px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .shell {
    padding-inline: 16px;
  }

  h1,
  .hero h1 {
    font-size: 36px;
    line-height: 1.14;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .site-brand img,
  .site-brand .custom-logo {
    width: 140px;
  }

  .hero,
  .hero__inner {
    min-height: min(680px, calc(100svh - 68px));
  }

  .hero__media img {
    object-position: center;
  }

  .hero__shade {
    background: rgba(8, 14, 13, 0.58);
  }

  .hero__inner {
    align-items: end;
    padding-block: 38px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero__lead {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
  }

  .hero__trust {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .proof-band__metrics {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:first-child,
  .metric:last-child {
    border-bottom: 1px solid var(--border);
    border-right: 0;
    padding: 14px 0;
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 62px;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .diagnostic-grid {
    gap: 28px;
  }

  .model-card {
    padding: 22px;
  }

  .section-cta .button {
    width: 100%;
  }

  .service-row {
    gap: 14px;
    grid-template-columns: 34px 40px minmax(0, 1fr);
    padding-block: 24px;
  }

  .service-row .icon-box {
    height: 40px;
    width: 40px;
  }

  .service-row h3 {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(-n+2) {
    border-top: 1px solid #45514f;
    padding: 26px 0 0;
  }

  .process-list li:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .delivery-band__media {
    min-height: 340px;
  }

  .delivery-band__content {
    padding-inline: 16px;
  }

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

  .faq-list summary {
    font-size: 17px;
    padding-right: 40px;
  }

  .consultation-form-surface {
    padding: 22px 18px;
  }

  .site-footer__inner {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    justify-self: start;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .content-page {
    padding-block: 60px 84px;
  }

  .content-page__header h1 {
    font-size: 38px;
  }
}

@media (max-width: 380px) {
  h1,
  .hero h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 29px;
    overflow-wrap: anywhere;
  }

  .service-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .service-row .icon-box {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}




