/* Rootworks consultancy homepage */

body.index-page {
  --ink: #101b1e;
  --ink-soft: #3f5054;
  --paper: #ffffff;
  --paper-soft: #f2f5f4;
  --line: #d9e0de;
  --dark: #071113;
  --dark-soft: #0d1d20;
  --teal: #16b8ad;
  --teal-dark: #087e78;
  --amber: #edb04b;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

body.index-page::before {
  display: none;
}

.index-page * {
  letter-spacing: 0;
}

.index-page h1,
.index-page h2,
.index-page h3,
.index-page h4,
.index-page h5,
.index-page h6 {
  color: inherit;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

.index-page a {
  color: inherit;
}

.index-page section,
.index-page .section {
  padding: 112px 0;
  scroll-margin-top: 72px;
  overflow: hidden;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-offwhite {
  color: var(--ink);
  background: var(--paper-soft);
}

.section-dark {
  color: #f4f8f7;
  background: var(--dark);
}

.index-page .header {
  height: 76px;
  padding: 0;
  color: #fff;
  background: rgba(7, 17, 19, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease;
}

.index-page.scrolled .header {
  height: 68px;
  background: rgba(7, 17, 19, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-page .header .logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.index-page .header .logo img {
  width: 148px;
  max-width: 36vw;
  max-height: 32px;
  margin: 0;
}

@media (min-width: 1200px) {
  .index-page .navmenu ul {
    gap: 3px;
  }

  .index-page .navmenu a,
  .index-page .navmenu a:focus {
    padding: 10px 13px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
  }

  .index-page .navmenu li:last-child a {
    padding-right: 15px;
  }

  .index-page .navmenu a:hover,
  .index-page .navmenu .active,
  .index-page .navmenu .active:focus {
    color: #fff;
  }

  .index-page .navmenu .nav-contact,
  .index-page .navmenu .nav-contact:focus {
    min-height: 40px;
    margin-left: 12px;
    color: #071113;
    background: var(--teal);
    border: 1px solid var(--teal);
    border-radius: 3px;
    font-weight: 600;
  }

  .index-page .navmenu .nav-contact:hover {
    color: #071113;
    background: #35c9bf;
    border-color: #35c9bf;
  }

  .index-page .navmenu .nav-contact i {
    margin: 0 8px 0 0;
    font-size: 14px;
  }
}

.consultancy-hero {
  width: 100%;
  height: calc(100svh - 32px);
  min-height: 680px;
  max-height: 840px;
  padding: 0 !important;
  position: relative;
  color: #fff;
  background: var(--dark) url("../img/bg.jpg") center 40% / cover no-repeat;
}

.consultancy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 15, 0.98) 0%, rgba(4, 13, 15, 0.9) 48%, rgba(4, 13, 15, 0.48) 100%),
    linear-gradient(0deg, rgba(4, 13, 15, 0.72) 0%, transparent 42%);
}

.consultancy-hero::after {
  content: "";
  position: absolute;
  top: 76px;
  right: 0;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-content {
  height: 100%;
  padding-top: 148px;
  padding-bottom: 42px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-light {
  color: var(--teal);
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.04;
}

.hero-intro {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions,
.autorecon-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: #061214 !important;
  background: var(--teal);
  border-color: var(--teal);
}

.button-primary:hover {
  background: #35c9bf;
  border-color: #35c9bf;
}

.button-ghost {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.62);
}

.button-dark {
  color: #fff !important;
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.hero-proof {
  width: 100%;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item {
  min-width: 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item:first-child {
  padding-left: 0;
}

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

.proof-item strong {
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 600;
}

.proof-item:first-child strong {
  color: var(--amber);
  font-size: 28px;
}

.proof-item span {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.intro-band {
  border-bottom: 1px solid var(--line);
}

.intro-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 90px;
  align-items: end;
}

.intro-layout h2,
.contact-layout h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.12;
}

.intro-copy {
  padding-bottom: 5px;
}

.intro-copy p,
.contact-details > p {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--teal-dark) !important;
  font-size: 15px;
  font-weight: 600;
}

.text-link:hover {
  gap: 15px;
}

.section-heading {
  margin-bottom: 58px;
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.heading-row h2,
.expertise-intro h2,
.autorecon-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.14;
}

.heading-row p {
  max-width: 500px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.service-list {
  border-top: 1px solid #bdc8c5;
}

.service-item {
  min-height: 176px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 54px 62px minmax(300px, 1fr) minmax(220px, 0.46fr);
  gap: 26px;
  align-items: start;
  border-bottom: 1px solid #bdc8c5;
  transition: background 160ms ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.58);
}

.service-number,
.process-number {
  color: var(--teal-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  background: #e2ece9;
  border: 1px solid #c7d8d4;
  border-radius: 3px;
  font-size: 22px;
}

.service-body h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
}

.service-body p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.service-outcome {
  min-height: 48px;
  padding-left: 18px;
  color: #35464a;
  border-left: 2px solid var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
}

.approach-section {
  position: relative;
}

.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 50%, transparent 95%);
}

.approach-section .container-xl {
  position: relative;
  z-index: 1;
}

.section-heading-dark .heading-row h2 {
  color: #fff;
}

.section-heading-dark .heading-row p {
  color: rgba(255, 255, 255, 0.59);
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li {
  min-height: 280px;
  padding: 28px 30px 24px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list li > i {
  margin: 46px 0 25px;
  display: block;
  color: var(--teal);
  font-size: 28px;
}

.process-list h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.process-list p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.6;
}

.expertise-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(560px, 1.24fr);
  gap: 100px;
  align-items: start;
}

.expertise-intro {
  position: sticky;
  top: 105px;
}

.expertise-intro h2 {
  margin-bottom: 24px;
}

.expertise-intro > p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.capability-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-group {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-group h3 {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
}

.capability-group h3 i {
  color: var(--teal-dark);
  font-size: 20px;
}

.capability-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-group li {
  padding: 8px 0 8px 18px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
  border-bottom: 1px solid #edf0ef;
}

.capability-group li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 17px;
  left: 0;
  background: var(--amber);
}

.autorecon-section {
  min-height: 790px;
  padding: 0 !important;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: #050d12;
}

.autorecon-visual {
  position: absolute;
  inset: 0;
}

.autorecon-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 16, 0.99) 0%, rgba(4, 12, 16, 0.93) 37%, rgba(4, 12, 16, 0.32) 72%, rgba(4, 12, 16, 0.08) 100%);
}

.autorecon-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.autorecon-content-wrap {
  position: relative;
  z-index: 1;
}

.autorecon-content {
  max-width: 540px;
}

.autorecon-wordmark {
  width: 160px;
  height: auto;
  margin: 0 0 36px;
}

.autorecon-content h2 {
  margin-bottom: 22px;
  color: #fff;
}

.autorecon-content > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.autorecon-points {
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.autorecon-points li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.autorecon-points i {
  color: var(--teal);
  font-size: 18px;
}

.contact-section {
  border-bottom: 1px solid #213033;
}

.contact-details {
  padding-bottom: 4px;
}

.phone-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
}

.phone-link:hover {
  color: var(--teal-dark) !important;
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--dark);
}

.footer-main {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  width: 170px;
  max-width: 100%;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.footer-block h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-block p,
.footer-block address,
.footer-block > a {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}

.footer-block > a {
  display: block;
}

.footer-block > a:hover,
.footer-bottom a:hover {
  color: var(--teal);
}

.footer-social {
  margin-top: 19px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
}

.footer-social a:hover {
  color: #081416;
  background: var(--teal);
  border-color: var(--teal);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

.index-page .scroll-top {
  width: 42px;
  height: 42px;
  right: 18px;
  color: #071113;
  background: var(--teal);
  border-radius: 3px;
}

.index-page .scroll-top i {
  color: #071113;
}

.index-page #preloader {
  background: var(--dark);
}

.index-page #preloader::before {
  border-color: var(--teal) transparent var(--teal) transparent;
}

.index-page :focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .index-page .header {
    height: 68px;
  }

  .index-page .mobile-nav-toggle {
    margin: 0;
    color: #fff;
  }

  .index-page .navmenu ul {
    inset: 68px 18px auto 18px;
    padding: 10px;
    color: #fff;
    background: #102124;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
  }

  .index-page .navmenu a,
  .index-page .navmenu a:focus {
    min-height: 46px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-size: 15px;
  }

  .index-page .navmenu .nav-contact {
    margin-top: 6px;
    color: #071113;
    background: var(--teal);
    border-radius: 3px;
  }

  .index-page .navmenu .nav-contact i {
    width: auto;
    height: auto;
    margin-right: 8px;
    color: inherit;
    background: none;
  }

  .consultancy-hero::after {
    top: 68px;
  }

  .expertise-layout {
    gap: 60px;
  }
}

@media (max-width: 991px) {
  .index-page section,
  .index-page .section {
    padding: 88px 0;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-intro {
    max-width: 620px;
    font-size: 18px;
  }

  .proof-item {
    padding: 0 18px;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .intro-layout,
  .contact-layout,
  .heading-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-layout h2,
  .contact-layout h2 {
    font-size: 40px;
  }

  .heading-row h2,
  .expertise-intro h2,
  .autorecon-content h2 {
    font-size: 38px;
  }

  .service-item {
    grid-template-columns: 45px 54px 1fr;
  }

  .service-outcome {
    grid-column: 3;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-list li:first-child,
  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .expertise-layout {
    grid-template-columns: 1fr;
  }

  .expertise-intro {
    max-width: 650px;
    position: static;
  }

  .autorecon-section {
    min-height: 720px;
  }

  .autorecon-visual::after {
    background: linear-gradient(90deg, rgba(4, 12, 16, 0.98) 0%, rgba(4, 12, 16, 0.88) 55%, rgba(4, 12, 16, 0.4) 100%);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .index-page section,
  .index-page .section {
    padding: 72px 0;
  }

  .index-page .header .logo img {
    width: 136px;
    max-width: 62vw;
  }

  .consultancy-hero {
    height: calc(100svh - 24px);
    min-height: 650px;
    max-height: 780px;
  }

  .consultancy-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 13, 15, 0.96), rgba(4, 13, 15, 0.7)),
      linear-gradient(0deg, rgba(4, 13, 15, 0.86), transparent 55%);
  }

  .hero-grid {
    background-size: 44px 44px;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .hero-proof {
    padding-top: 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .proof-item {
    padding: 0 10px;
    display: block;
  }

  .proof-item strong,
  .proof-item:first-child strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .proof-item span {
    display: block;
    font-size: 10px;
    line-height: 1.35;
  }

  .intro-layout h2,
  .contact-layout h2 {
    font-size: 34px;
  }

  .heading-row h2,
  .expertise-intro h2,
  .autorecon-content h2 {
    font-size: 33px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .service-item {
    min-height: 0;
    padding: 27px 0;
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .service-number {
    grid-column: 1;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    grid-column: 1;
    grid-row: 2;
  }

  .service-body {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .service-outcome {
    min-height: 0;
    grid-column: 2;
    padding-left: 13px;
  }

  .service-body h3 {
    font-size: 20px;
  }

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

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(3) {
    min-height: 0;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list li > i {
    margin: 25px 0 18px;
  }

  .process-list p {
    max-width: 420px;
  }

  .capability-matrix {
    grid-template-columns: 1fr;
  }

  .capability-group {
    min-height: 0;
    padding: 27px;
  }

  .autorecon-section {
    min-height: 760px;
    align-items: flex-end;
  }

  .autorecon-visual img {
    object-position: 58% center;
  }

  .autorecon-visual::after {
    background: linear-gradient(0deg, rgba(4, 12, 16, 0.99) 8%, rgba(4, 12, 16, 0.92) 48%, rgba(4, 12, 16, 0.22) 100%);
  }

  .autorecon-content-wrap {
    padding-bottom: 60px;
  }

  .autorecon-wordmark {
    width: 148px;
    margin-bottom: 24px;
  }

  .autorecon-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 479px) {
  .consultancy-hero {
    min-height: 670px;
  }

  .hero-copy h1 {
    font-size: 35px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 5px;
  }

  .proof-item {
    padding: 0 6px;
  }

  .proof-item span {
    font-size: 9px;
  }

  .intro-layout h2,
  .contact-layout h2,
  .heading-row h2,
  .expertise-intro h2,
  .autorecon-content h2 {
    font-size: 30px;
  }

  .autorecon-actions .button,
  .contact-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .index-page *,
  .index-page *::before,
  .index-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
