@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("./fonts/playfair-display-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --ac-blue: #2563eb;
  --ac-blue-dark: #1d4ed8;
  --ac-navy: #0f172a;
  --ac-muted: #64748b;
  --ac-bg: #f8fafc;
  --ac-card: #ffffff;
  --ac-border: #e2e8f0;
  --ac-soft-blue: #eff6ff;
  --ac-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  --ac-shadow-hover: 0 22px 48px rgba(15, 23, 42, .12);
  --background: #f8fafc;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --primary: #2563eb;
  --primary-foreground: #ffffff;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --ring: #2563eb;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  overflow-x: hidden;
  background: var(--ac-bg);
  color: var(--ac-navy);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body.is-menu-open {
  overflow: hidden;
}

button,
a,
input,
select,
textarea {
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .3);
  outline-offset: 3px;
}

.ac-container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.ac-section {
  padding-block: 104px;
}

.ac-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(248, 250, 252, .88);
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.ac-header.is-scrolled {
  border-color: rgba(226, 232, 240, .9);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 28px rgba(15, 23, 42, .06);
}

.ac-header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.mcf-brand-logo {
  display: block;
  width: 184px;
  height: auto;
}

.ac-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.ac-nav > a {
  position: relative;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.ac-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ac-blue);
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale .2s ease;
}

.ac-nav > a:hover,
.ac-nav > a:focus-visible {
  color: var(--ac-blue-dark);
}

.ac-nav > a:hover::after,
.ac-nav > a:focus-visible::after {
  scale: 1 1;
  transform-origin: left;
}

.ac-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding-inline: 22px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, translate .2s ease;
}

.ac-button:hover {
  translate: 0 -2px;
}

.ac-button svg,
.ac-carousel-button svg,
.ac-step-icon svg,
.ac-eyebrow svg,
.ac-caption-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ac-button-small {
  min-height: 42px;
  border-radius: 7px;
  background: var(--ac-blue);
  color: #fff;
  padding-inline: 18px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .2);
}

.ac-button-small:hover,
.ac-button-primary:hover {
  background: var(--ac-blue-dark);
  color: #fff;
}

.ac-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--ac-border);
  border-radius: 7px;
  background: #fff;
  color: var(--ac-navy);
  cursor: pointer;
}

.ac-menu-button span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: rotate .2s ease, translate .2s ease, opacity .2s ease;
}

.ac-menu-button[aria-expanded="true"] span:first-child {
  translate: 0 7px;
  rotate: 45deg;
}

.ac-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ac-menu-button[aria-expanded="true"] span:last-child {
  translate: 0 -7px;
  rotate: -45deg;
}

.ac-hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background:
    linear-gradient(100deg, #f8fafc 0%, #f8fafc 42%, rgba(248, 250, 252, .9) 57%, rgba(239, 246, 255, .2) 100%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.ac-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 99, 235, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 0%, #000 62%, #000 100%);
  pointer-events: none;
}

.ac-hero-mark {
  position: absolute;
  right: -25px;
  bottom: -165px;
  color: rgba(37, 99, 235, .045);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 500px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ac-hero-grid {
  position: relative;
  display: grid;
  min-height: 630px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: 58px;
  padding-block: 70px 78px;
}

.ac-hero-copy {
  position: relative;
  z-index: 2;
}

.ac-eyebrow,
.ac-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ac-blue-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.ac-eyebrow {
  min-height: 30px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  padding: 5px 11px;
}

.ac-eyebrow svg {
  width: 15px;
  height: 15px;
}

.ac-hero h1,
.ac-section-heading h2,
.ac-final-cta h2 {
  margin: 0;
  color: var(--ac-navy);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.ac-hero h1 {
  max-width: 650px;
  margin-top: 22px;
  font-size: 54px;
  line-height: 1.06;
}

.ac-hero h1 span {
  color: var(--ac-blue);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.ac-hero-description {
  max-width: 600px;
  margin-top: 24px;
  color: var(--ac-muted);
  font-size: 17px;
  line-height: 1.75;
}

.ac-hero-action {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px 20px;
}

.ac-button-primary {
  background: var(--ac-blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, .24);
}

.ac-hero-action > p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--ac-muted);
  font-size: 12px;
  line-height: 1.5;
}

.ac-hero-action > p > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px #dcfce7;
}

.ac-hero-action b {
  color: #94a3b8;
  font-weight: 400;
}

.ac-hero-visual {
  position: relative;
  z-index: 1;
}

.ac-image-frame {
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
  box-shadow: 0 28px 65px rgba(15, 23, 42, .16);
}

.ac-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, .22) 100%);
  content: "";
  pointer-events: none;
}

.ac-image-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ac-image-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 35px rgba(15, 23, 42, .12);
  padding: 11px 14px;
  backdrop-filter: blur(14px);
}

.ac-caption-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ac-soft-blue);
  color: var(--ac-blue);
}

.ac-caption-icon svg {
  width: 18px;
  height: 18px;
}

.ac-image-caption > span:last-child {
  display: grid;
  gap: 3px;
  color: var(--ac-muted);
  font-size: 11px;
  line-height: 1.35;
}

.ac-image-caption strong {
  color: var(--ac-navy);
  font-size: 13px;
}

.ac-image-line {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 112px;
  height: 112px;
  border-top: 2px solid rgba(37, 99, 235, .32);
  border-right: 2px solid rgba(37, 99, 235, .32);
  border-radius: 0 8px 0 0;
}

.ac-indicators {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--ac-border);
  background: #fff;
}

.ac-indicator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ac-indicator-grid article {
  position: relative;
  display: grid;
  min-height: 124px;
  align-content: center;
  gap: 7px;
  padding: 24px 30px;
}

.ac-indicator-grid article + article::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 1px;
  background: var(--ac-border);
  content: "";
}

.ac-indicator-grid strong {
  color: var(--ac-blue);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.ac-indicator-grid span {
  color: var(--ac-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.ac-process {
  background: var(--ac-bg);
}

.ac-section-heading {
  max-width: 720px;
}

.ac-section-heading h2,
.ac-final-cta h2 {
  margin-top: 10px;
  font-size: 42px;
  line-height: 1.14;
}

.ac-section-heading > p,
.ac-final-cta p {
  margin-top: 14px;
  color: var(--ac-muted);
  font-size: 15px;
  line-height: 1.7;
}

.ac-process-grid {
  position: relative;
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ac-process-grid::before {
  position: absolute;
  top: 46px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bfdbfe 12%, #bfdbfe 88%, transparent);
  content: "";
}

.mcf-card.ac-step {
  position: relative;
  z-index: 1;
  min-height: 260px;
  border: 1px solid var(--ac-border) !important;
  border-radius: 8px;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .045) !important;
  padding: 25px 22px;
  transition: border-color .25s ease, box-shadow .25s ease, translate .25s ease;
}

.mcf-card.ac-step:hover {
  border-color: #bfdbfe !important;
  box-shadow: var(--ac-shadow-hover) !important;
  translate: 0 -5px;
}

.ac-step-number {
  position: absolute;
  top: 22px;
  right: 20px;
  color: #cbd5e1;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.ac-step-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: var(--ac-soft-blue);
  color: var(--ac-blue);
}

.ac-step-icon svg {
  width: 22px;
  height: 22px;
}

.ac-step h3 {
  margin-top: 30px;
  color: var(--ac-navy);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.ac-step p {
  margin-top: 10px;
  color: var(--ac-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ac-testimonials {
  overflow: hidden;
  border-top: 1px solid var(--ac-border);
  background: #fff;
}

.ac-testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.ac-testimonials-head .ac-section-heading {
  max-width: 760px;
}

.ac-carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
  padding-bottom: 4px;
}

.ac-carousel-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ac-border);
  border-radius: 7px;
  background: #fff;
  color: var(--ac-navy);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.ac-carousel-button:hover:not(:disabled),
.ac-carousel-button:focus-visible {
  border-color: var(--ac-blue);
  background: var(--ac-soft-blue);
  color: var(--ac-blue);
}

.ac-carousel-button:disabled {
  cursor: not-allowed;
  opacity: .38;
}

.ac-carousel {
  --per-view: 3;
  --carousel-gap: 18px;
  margin-top: 46px;
  outline: none;
}

.ac-carousel-viewport {
  overflow: hidden;
  padding: 4px 0 28px;
}

.ac-carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.mcf-card.ac-testimonial {
  display: flex;
  min-width: calc((100% - (var(--carousel-gap) * (var(--per-view) - 1))) / var(--per-view));
  min-height: 224px;
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--per-view) - 1))) / var(--per-view));
  flex-direction: column;
  border: 1px solid var(--ac-border) !important;
  border-radius: 8px;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .055) !important;
  padding: 25px;
  transition: border-color .25s ease, box-shadow .25s ease, translate .25s ease;
}

.mcf-card.ac-testimonial:hover {
  border-color: #bfdbfe !important;
  box-shadow: var(--ac-shadow-hover) !important;
  translate: 0 -4px;
}

.mcf-stars {
  color: var(--ac-blue);
  font-size: 14px;
  line-height: 1;
}

.ac-testimonial p {
  margin: 24px 0 22px;
  color: #334155;
  font-size: 14px;
  line-height: 1.75;
}

.ac-testimonial strong {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  color: var(--ac-navy);
  font-size: 13px;
}

.ac-testimonial strong::before {
  width: 20px;
  height: 2px;
  background: var(--ac-blue);
  content: "";
}

.ac-carousel-dots {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.ac-carousel-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: width .2s ease, border-radius .2s ease, background-color .2s ease;
}

.ac-carousel-dot.is-active {
  width: 24px;
  border-radius: 5px;
  background: var(--ac-blue);
}

.ac-final-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #0f172a 0%, #172554 62%, #1e3a8a 100%);
}

.ac-final-section::before {
  position: absolute;
  top: -140px;
  right: 4%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(147, 197, 253, .16);
  rotate: 45deg;
  content: "";
}

.ac-final-cta {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 280px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
}

.ac-final-cta .ac-kicker {
  color: #93c5fd;
}

.ac-final-cta h2 {
  max-width: 720px;
  color: #fff;
}

.ac-final-cta p {
  color: #cbd5e1;
}

.mcf-cta-btn.ac-button-light {
  background: #fff !important;
  color: var(--ac-blue-dark) !important;
  box-shadow: 0 16px 35px rgba(2, 6, 23, .24);
}

.mcf-cta-btn.ac-button-light:hover {
  background: #dbeafe !important;
  color: var(--ac-blue-dark) !important;
}

.ac-final-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 3px;
  background: #60a5fa;
}

.has-js [data-reveal] {
  opacity: 1;
  translate: 0 0;
}

.has-js [data-reveal].is-visible {
  animation: ac-reveal .65s ease both;
}

@keyframes ac-reveal {
  from {
    opacity: .25;
    translate: 0 18px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 1050px) {
  .ac-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
    gap: 46px;
  }

  .ac-hero h1 {
    font-size: 49px;
  }

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

  .ac-process-grid::before {
    display: none;
  }

  .ac-carousel {
    --per-view: 2;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  .ac-container {
    width: min(100% - 32px, 720px);
  }

  .ac-section {
    padding-block: 78px;
  }

  .ac-header-inner {
    min-height: 70px;
  }

  .mcf-brand-logo {
    width: 154px;
  }

  .ac-menu-button {
    display: inline-flex;
  }

  .ac-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    opacity: 0;
    padding-inline: 16px;
    pointer-events: none;
    transition: max-height .28s ease, opacity .2s ease, padding .28s ease, border-color .2s ease;
  }

  .ac-nav.is-open {
    max-height: 270px;
    border-color: var(--ac-border);
    opacity: 1;
    padding-block: 14px 18px;
    pointer-events: auto;
  }

  .ac-nav > a {
    padding: 13px 8px;
  }

  .ac-nav > a::after {
    display: none;
  }

  .ac-nav .ac-button {
    width: 100%;
    margin-top: 8px;
  }

  .ac-hero,
  .ac-hero-grid {
    min-height: auto;
  }

  .ac-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 54px 60px;
  }

  .ac-hero-copy {
    max-width: 680px;
  }

  .ac-hero h1 {
    font-size: 47px;
  }

  .ac-hero-description {
    font-size: 16px;
  }

  .ac-hero-visual {
    width: min(100%, 620px);
  }

  .ac-image-frame {
    aspect-ratio: 1.55;
  }

  .ac-hero-mark {
    right: -60px;
    bottom: -105px;
    font-size: 330px;
  }

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

  .ac-indicator-grid article:nth-child(3)::before {
    display: none;
  }

  .ac-indicator-grid article:nth-child(n+3) {
    border-top: 1px solid var(--ac-border);
  }

  .ac-testimonials-head {
    align-items: flex-start;
  }

  .ac-final-cta {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ac-final-cta .ac-button {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .ac-container {
    width: min(100% - 28px, 560px);
  }

  .ac-section {
    padding-block: 64px;
  }

  .ac-hero-grid {
    gap: 32px;
    padding-block: 42px 46px;
  }

  .ac-eyebrow {
    min-height: 28px;
    font-size: 10px;
  }

  .ac-hero h1 {
    margin-top: 18px;
    font-size: 38px;
    line-height: 1.1;
  }

  .ac-hero-description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .ac-hero-action {
    display: grid;
    margin-top: 24px;
    gap: 14px;
  }

  .ac-hero-action .ac-button {
    width: 100%;
  }

  .ac-hero-action > p {
    justify-content: center;
    font-size: 11px;
  }

  .ac-image-frame {
    aspect-ratio: 1.55;
    border-radius: 8px;
  }

  .ac-image-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 58px;
    padding: 9px 11px;
  }

  .ac-caption-icon {
    width: 32px;
    height: 32px;
  }

  .ac-image-line {
    display: none;
  }

  .ac-indicator-grid article {
    min-height: 100px;
    padding: 18px 12px;
  }

  .ac-indicator-grid strong {
    font-size: 21px;
  }

  .ac-indicator-grid span {
    font-size: 9px;
  }

  .ac-section-heading h2,
  .ac-final-cta h2 {
    font-size: 32px;
  }

  .ac-section-heading > p,
  .ac-final-cta p {
    font-size: 14px;
  }

  .ac-process-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .mcf-card.ac-step {
    min-height: 0;
  }

  .ac-testimonials-head {
    display: grid;
  }

  .ac-carousel-controls {
    justify-self: end;
  }

  .ac-carousel {
    --per-view: 1;
    margin-top: 30px;
  }

  .mcf-card.ac-testimonial {
    min-height: 220px;
    padding: 22px;
  }

  .ac-final-section::before {
    right: -180px;
  }

  .ac-final-cta .ac-button {
    width: 100%;
  }

}

@media (max-width: 360px) {
  .mcf-brand-logo {
    width: 140px;
  }

  .ac-hero h1 {
    font-size: 34px;
  }

  .ac-hero-action > p {
    gap: 5px;
  }

  .ac-indicator-grid strong {
    font-size: 19px;
  }
}

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

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

  .has-js [data-reveal] {
    opacity: 1;
    translate: 0 0;
  }
}
