:root {
  --blue: #159ed0;
  --blue-dark: #087fa9;
  --ink: #0a0d0f;
  --muted: #5f666b;
  --line: #d9dde0;
  --soft: #f3f5f6;
  --white: #ffffff;
  --container: 1180px;
  --reading: 850px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container,
.narrow,
.reading-width {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 980px;
}

.reading-width {
  max-width: var(--reading);
}

.section {
  padding: clamp(90px, 10vw, 150px) 0;
  text-align: center;
}

.section-soft {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 17%, var(--soft) 83%, #fff 100%);
}

.section-dark {
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #dce3e6 6%, #35454c 14%, var(--ink) 23%, var(--ink) 77%, #35454c 86%, #dce3e6 94%, #fff 100%);
}

.section-blue {
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #d5edf5 6%, #59abc7 14%, var(--blue-dark) 23%, var(--blue-dark) 77%, #59abc7 86%, #d5edf5 94%, #fff 100%);
}

h1,
h2,
h3,
p,
blockquote,
figcaption {
  text-align: center;
}

h1,
h2,
h3 {
  margin-top: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 34px;
  overflow-wrap: anywhere;
  font-size: clamp(54px, 7.8vw, 108px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.055em;
}

h1 span {
  color: var(--blue);
}

h2 {
  max-width: 1000px;
  margin-right: auto;
  margin-bottom: 32px;
  margin-left: auto;
  overflow-wrap: anywhere;
  font-size: clamp(43px, 5.8vw, 78px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

h3 {
  overflow-wrap: anywhere;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.kicker,
.small-label,
.updated,
.case-label,
.path-number {
  margin: 0 0 24px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.kicker-light {
  color: #bfeeff;
}

.section-copy,
.hero-copy {
  max-width: 800px;
  margin: 0 auto 42px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.6;
}

.light-copy {
  color: rgba(255, 255, 255, .78);
}

.button,
.email-form button {
  min-height: 60px;
  padding: 18px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue-dark);
  border: 2px solid var(--blue-dark);
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
}

.button:hover,
.email-form button:hover {
  color: var(--blue-dark);
  background: #fff;
}

.button-light {
  color: var(--blue-dark);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: #fff;
  background: transparent;
}

.button-small {
  min-height: 46px;
  padding: 13px 20px;
  font-size: 12px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.logo img {
  width: clamp(215px, 19vw, 255px);
  height: auto;
  filter: brightness(0);
}

.header-contact {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}

.header-contact:hover {
  color: var(--blue-dark);
}

.header-menu {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  position: relative;
}

.header-menu summary {
  min-width: 92px;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.header-menu summary::-webkit-details-marker {
  display: none;
}

.header-menu summary::after {
  content: "+";
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 500;
}

.header-menu[open] summary::after {
  content: "−";
}

.header-menu[open] summary {
  border-color: var(--ink);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: min(430px, calc(100vw - 48px));
  max-height: calc(100vh - 110px);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow-y: auto;
  color: var(--ink);
  background: rgba(255, 255, 255, .99);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(10, 13, 15, .16);
}

.menu-panel a {
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.menu-panel a:hover {
  color: var(--blue-dark);
}

.menu-divider {
  height: 18px;
  grid-column: 1 / -1;
}

.menu-panel .menu-cta {
  margin-top: 18px;
  padding: 17px 18px;
  grid-column: 1 / -1;
  color: #fff;
  background: var(--blue-dark);
  border: 1px solid var(--blue-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.menu-panel .menu-cta:hover {
  color: var(--blue-dark);
  background: #fff;
}

.hero {
  padding-top: clamp(100px, 10vw, 150px);
  padding-bottom: 0;
}

.hero-copy {
  margin-bottom: 40px;
}

.email-form {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid var(--ink);
}

.email-form input {
  min-width: 0;
  min-height: 66px;
  padding: 18px 22px;
  color: var(--ink);
  background: #fff;
  border: 0;
  outline: 0;
}

.email-form button {
  min-height: 66px;
  border: 0;
  border-left: 2px solid var(--ink);
}

.form-note {
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-photo {
  width: min(100%, 610px);
  margin: clamp(64px, 8vw, 100px) auto 0;
}

.hero-photo img {
  width: 100%;
  height: clamp(520px, 66vw, 760px);
  object-fit: cover;
  object-position: center 28%;
}

.hero-photo figcaption,
.story-image figcaption {
  padding: 18px 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
}

.hero-photo figcaption strong,
.hero-photo figcaption span {
  display: block;
}

.hero-photo figcaption strong {
  color: var(--ink);
}

.logo-bar {
  padding: 48px 0;
  border-block: 1px solid var(--line);
  text-align: center;
}

.small-label {
  color: var(--muted);
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logos {
  display: flex;
  flex: 0 0 auto;
  gap: 0;
  align-items: center;
}

.logos img {
  width: clamp(220px, 20vw, 300px);
  max-height: 62px;
  padding-inline: clamp(30px, 4vw, 58px);
  object-fit: contain;
  filter: grayscale(1) contrast(1.25);
  opacity: .58;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.letter {
  position: relative;
  background:
    radial-gradient(circle at 92% 15%, rgba(21, 158, 208, .09), transparent 32%),
    linear-gradient(180deg, #f0f1f2 0%, #f5f6f7 45%, #edf7fa 76%, #ffffff 100%);
}

.letter .reading-width {
  width: min(calc(100% - 64px), 1160px);
  max-width: 1160px;
}

.letter h2 {
  max-width: none;
  margin: 0 0 58px;
  font-size: clamp(48px, 5.2vw, 76px);
  text-align: left;
}

.updated {
  margin-bottom: 0;
  color: var(--muted);
  text-align: left;
}

.author-chip {
  margin: 34px 0 74px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-chip img {
  width: 92px;
  height: 92px;
  margin: 0;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
}

.author-chip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.author-chip strong,
.author-chip span {
  display: block;
}

.author-chip span {
  color: var(--muted);
}

.letter-copy p,
.center-copy p {
  margin: 0 0 1.55em;
  color: #2a3034;
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.8;
}

.letter-copy p {
  max-width: 1120px;
  margin: 0 0 1.7em;
  color: #090b0c;
  font-size: clamp(29px, 2.35vw, 43px);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -.018em;
  text-align: left;
}

.letter-copy .large-copy {
  color: var(--ink);
  font-size: clamp(34px, 2.9vw, 52px);
  font-weight: 400;
  line-height: 1.4;
}

.letter-copy .strong-line {
  margin-block: 2.2em;
  color: var(--ink);
  font-size: clamp(34px, 2.9vw, 52px);
  font-weight: 700;
  line-height: 1.4;
}

.letter-copy h3 {
  max-width: 1050px;
  margin: 2.35em 0 .8em;
  font-size: clamp(45px, 5.1vw, 78px);
  line-height: 1.03;
  text-align: left;
}

.letter-copy blockquote {
  margin: clamp(70px, 8vw, 110px) 0;
  padding: clamp(48px, 6vw, 78px);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(21, 158, 208, .15), rgba(255, 255, 255, .58));
  border-left: 7px solid var(--blue);
  font-size: clamp(37px, 4.3vw, 66px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -.035em;
  text-align: left;
}

.story-image {
  width: min(100vw - 48px, 1050px);
  margin: clamp(70px, 9vw, 120px) 50%;
  transform: translateX(-50%);
}

.story-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.signature {
  margin-top: 70px !important;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.letter .signature,
.story-image figcaption {
  text-align: left;
}

.signature strong,
.signature span {
  display: block;
}

.signature strong {
  color: var(--ink);
  font-size: 25px;
}

.signature span {
  color: var(--muted);
  font-size: 14px;
}

.path-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.path {
  padding: clamp(48px, 6vw, 80px);
}

.path + .path {
  border-left: 1px solid var(--line);
}

.path p:not(.path-number) {
  color: var(--muted);
}

.path-number {
  color: var(--blue-dark);
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue-dark);
  font-weight: 800;
  text-underline-offset: 5px;
}

.number-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .45);
  border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.number-grid div {
  padding: 55px 34px;
}

.number-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.number-grid strong,
.number-grid span {
  display: block;
}

.number-grid strong {
  margin-bottom: 18px;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 900;
  line-height: 1;
}

.number-grid span {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.55;
}

.case-list {
  margin: 70px 0 55px;
  border-top: 2px solid var(--ink);
}

.case {
  padding: clamp(50px, 7vw, 85px) 0;
  border-bottom: 1px solid var(--line);
}

.case-label {
  margin-bottom: 18px;
}

.case h3 {
  margin-bottom: 20px;
}

.case-metric {
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
}

.case > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.wide-photo {
  width: min(100%, 720px);
  margin: 0 auto 70px;
}

.wide-photo img {
  width: 100%;
  height: clamp(480px, 64vw, 760px);
  object-fit: cover;
}

.numbers,
.image-story {
  padding-top: clamp(190px, 15vw, 240px);
  padding-bottom: clamp(190px, 15vw, 240px);
}

.process-photo {
  width: min(100%, 960px);
  margin: 70px auto;
}

.process-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.step-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}

.step {
  padding: clamp(48px, 6vw, 76px) 0;
  border-bottom: 1px solid var(--line);
}

.step > span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
}

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

.personal-photo {
  width: min(100%, 520px);
  margin: 0 auto 65px;
}

.personal-photo img {
  width: 100%;
  height: clamp(560px, 75vw, 800px);
  object-fit: cover;
  object-position: center 30%;
}

.center-copy {
  max-width: 790px;
  margin: 0 auto;
}

.personal-quote {
  margin: 65px auto 32px;
  padding-block: 32px;
  color: var(--ink);
  border-block: 2px solid var(--ink);
  font-size: clamp(27px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.25;
}

.name-line strong,
.name-line span {
  display: block;
}

.name-line span {
  color: var(--muted);
  font-size: 14px;
}

.guarantee .button,
.report .button,
.final-cta .button {
  margin-top: 14px;
}

.report-cover {
  width: min(100%, 470px);
  margin: 0 auto 65px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .14);
}

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

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.photo-grid figure:first-child img {
  object-position: center 28%;
}

.photo-grid figcaption {
  padding: 16px 8px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.faq-list {
  margin-top: 65px;
  border-top: 2px solid var(--ink);
}

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

.faq summary {
  padding: 30px 44px 30px 0;
  position: relative;
  list-style: none;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--blue-dark);
  font-size: 28px;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0 auto;
  padding: 0 18px 34px;
  color: var(--muted);
  font-size: 18px;
}

.cta-portrait {
  width: 130px;
  height: 130px;
  margin: 0 auto 34px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
}

.final-cta {
  padding-bottom: clamp(120px, 12vw, 180px);
  background: linear-gradient(180deg, #fff 0%, #f6f7f8 24%, #eef3f4 100%);
}

.site-footer {
  padding: clamp(115px, 10vw, 145px) 0 30px;
  color: rgba(255, 255, 255, .76);
  background: linear-gradient(180deg, #eef3f4 0%, #a8bac1 7%, #35464e 15%, var(--ink) 24%, var(--ink) 100%);
  text-align: left;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  width: clamp(235px, 23vw, 285px);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-main {
  padding-bottom: 66px;
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: clamp(55px, 8vw, 100px);
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.footer-brand p {
  max-width: 390px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.footer-nav-group {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-nav-group strong {
  margin-bottom: 10px;
  color: #7fd5f2;
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-nav-group a {
  width: fit-content;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.45;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-nav-group a:hover,
.footer-links a:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

.footer-address {
  margin: 7px 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.65;
}

.footer-nav-group .footer-analysis {
  margin-top: 7px;
  color: #7fd5f2;
  font-weight: 800;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.footer-bottom > span {
  text-align: left;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, .78);
  text-underline-offset: 4px;
}

@media (max-width: 950px) {
  .path-grid,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .path + .path,
  .number-grid div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .number-grid div + div {
    border-top-color: rgba(255, 255, 255, .35);
  }

  .photo-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .photo-grid img {
    height: 620px;
  }

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

  .footer-brand p {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .container,
  .narrow,
  .reading-width {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .numbers,
  .image-story {
    padding-top: 145px;
    padding-bottom: 145px;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .header-contact {
    visibility: hidden;
  }

  .logo img {
    width: 180px;
  }

  .header-menu summary {
    min-width: 68px;
    min-height: 39px;
    padding: 0 11px;
    font-size: 10px;
  }

  .menu-panel {
    width: calc(100vw - 30px);
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .menu-divider,
  .menu-panel .menu-cta {
    grid-column: 1;
  }

  h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  h2 {
    font-size: clamp(40px, 12.5vw, 58px);
  }

  .hero {
    padding-top: 78px;
    padding-bottom: 0;
  }

  .email-form {
    grid-template-columns: 1fr;
    border: 0;
  }

  .email-form input,
  .email-form button {
    width: 100%;
    border: 2px solid var(--ink);
  }

  .email-form button {
    margin-top: 10px;
    border-color: var(--blue-dark);
  }

  .hero-photo img,
  .personal-photo img,
  .wide-photo img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .logos {
    gap: 0;
  }

  .logos img {
    width: 190px;
    max-height: 46px;
    padding-inline: 28px;
  }

  .letter .reading-width {
    width: min(calc(100% - 30px), 1160px);
  }

  .letter-copy p {
    font-size: 25px;
    line-height: 1.52;
  }

  .letter-copy .large-copy,
  .letter-copy .strong-line {
    font-size: 31px;
  }

  .letter-copy h3 {
    font-size: 42px;
  }

  .letter-copy blockquote {
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 34px;
  }

  .story-image {
    width: 100%;
  }

  .path {
    padding: 50px 22px;
  }

  .process-photo img {
    aspect-ratio: 4 / 3;
  }

  .photo-grid img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .faq summary {
    padding-right: 38px;
    text-align: left;
  }

  .faq details p {
    padding-right: 0;
    padding-left: 0;
    text-align: left;
  }

  .site-footer {
    padding-top: 120px;
  }

  .footer-main {
    padding-bottom: 48px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

  .logo-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
