:root {
  --bg: #0f1012;
  --panel: #16181c;
  --text: #f0ece6;
  --muted: #79838c;
  --muted2: #52585f;
  --accent: #fc8a7d;
  --blue: #9cc4cd;
  --purple: #cab8ec;
  --green: #bdceb4;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  height: auto;
  background: var(--bg);
  color: var(--text);
}

.viewport {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.page {
  position: relative;
  width: 1728px;
  height: auto;
  min-height: 0;
  background: var(--bg);
  overflow-x: hidden;
  overflow-y: visible;
  margin: 0 auto;
  zoom: 0.8;
}

/* Background lottie images (right side) */
.bg-lottie {
  position: absolute;
  width: 497px;
  height: 813px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.bg-lottie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: normal;
  filter: none;
}

.bg-lottie--a {
  left: 975px;
  top: -158px;
  transform: rotate(180deg) scaleY(-1);
}

.bg-lottie--b {
  left: 1472px;
  top: 10px;
  width: 495px;
  height: 810px;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 1728px;
  height: 73px;
  padding: 20px 0 20px 144px;
  background: transparent;
  z-index: 5;
}

.navbar__logos {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__logo {
  display: block;
}

.navbar__logo--tech {
  width: 144px;
  height: 60px;
}

.navbar__logo--emergent {
  height: 35px;
  width: auto;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 73px;
  background: var(--panel);
  border-bottom: 1px solid rgba(240, 236, 230, 0.1);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-header--visible {
  transform: translateY(0);
}

.sticky-header__content {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 20px 144px 20px 144px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-header__logos {
  display: flex;
  align-items: center;
  gap: 36px;
}

.sticky-header__logo {
  display: block;
}

.sticky-header__logo--tech {
  width: 144px;
  height: 60px;
}

.sticky-header__logo--emergent {
  height: 35px;
  width: auto;
}

.sticky-header__search-btn {
  position: relative;
  width: 168px;
  height: 48px;
  border: none;
  padding: 0;
  border-radius: 5px;
  background: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sticky-header__search-arrow {
  position: absolute;
  left: 24px;
  top: 4px;
  width: 36px;
  height: 40px;
}

.sticky-header__search-text {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 500;
  font-size: 18px;
  text-transform: lowercase;
  color: var(--bg);
  transform: translateX(10px);
}

@media (max-width: 1728px) {
  .sticky-header__content {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .sticky-header__logo--tech {
    width: 120px;
    height: 50px;
  }
  
  .sticky-header__logo--emergent {
    height: 30px;
  }
  
  .sticky-header__content {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .sticky-header__search-btn {
    width: 140px;
    height: 40px;
  }
  
  .sticky-header__search-arrow {
    width: 30px;
    height: 34px;
    left: 20px;
    top: 3px;
  }
  
  .sticky-header__search-text {
    font-size: 16px;
    margin-left: 42px;
  }
}

/* Hero */
.hero-title {
  position: absolute;
  left: 263px;
  top: 362px;
  width: 620px;
  margin: 0;
  font-family: "Funnel Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 0.99;
  letter-spacing: -1.0005px;
  text-transform: lowercase;
  white-space: normal;
  z-index: 2;
}

.hero-title__content {
  display: inline;
}

.hero-title__cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s infinite;
  margin-left: 0;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.hero-title__accent {
  color: var(--accent);
  margin-right: 0;
  padding-right: 0;
}

.hero-title__line {
  display: inline-block;
  white-space: nowrap;
}

.hero-title__like {
  position: relative;
  display: inline-block;
}

.hero-copy {
  position: absolute;
  left: 266px;
  top: 485px;
  width: 509px;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0.04px;
  color: var(--muted);
  z-index: 2;
}

.hero-copy p {
  margin: 0;
}

.hero-legal {
  position: absolute;
  left: 266px;
  top: 860px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: -0.28px;
  color: var(--muted);
  white-space: nowrap;
  z-index: 2;
}

.hero-legal p {
  margin: 0;
}

.hero-legal__accent {
  color: var(--accent);
}

/* Search */
.search {
  position: absolute;
  left: 266px;
  top: 584px;
  width: 610px;
  height: 58px;
  z-index: 3;
}

.search__field {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  padding-right: 210px;
  border-radius: 5px;
  background: var(--text);
  cursor: text;
}

.search__icon {
  width: 19px;
  height: 19px;
}

.search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--bg);
  caret-color: var(--bg);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  line-height: 25px;
  text-transform: lowercase;
  padding: 0;
}

.search__input::placeholder {
  color: var(--muted);
}

.search__btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 168px;
  height: 48px;
  border: none;
  padding: 0;
  border-radius: 5px;
  background: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.search__arrow {
  position: absolute;
  left: 24px;
  top: 4px;
  width: 36px;
  height: 40px;
}

.search__btnText {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 500;
  font-size: 18px;
  text-transform: lowercase;
  color: var(--bg);
  transform: translateX(34px);
}

/* Mid heading + copy */
.why {
  position: absolute;
  left: 0;
  top: 0;
  width: 1728px;
}

.why__title {
  position: absolute;
  left: 50%;
  top: 1110px;
  transform: translateX(-50%);
  width: 907px;
  margin: 0;
  font-family: "Funnel Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0.228px;
  text-align: center;
  text-transform: lowercase;
}

.why__accent {
  color: var(--purple);
}

.why__copy {
  position: absolute;
  left: 50%;
  top: 1216px;
  transform: translateX(-50%);
  width: 661px;
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.37;
  letter-spacing: 0.561px;
  text-align: center;
  color: var(--muted);
}

/* Logos row */
.logos {
  position: absolute;
  left: 50%;
  top: 1371px;
  transform: translateX(-50%);
  width: 1724px;
  height: 73px;
  overflow: hidden;
}

.logos__track {
  position: absolute;
  left: 0;
  top: 0;
  height: 73px;
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logos-marquee 38s linear infinite;
}

.logos__set {
  display: flex;
  align-items: center;
  gap: 100px;
  height: 73px;
  padding-right: 100px;
}

.logos__fade {
  position: absolute;
  top: -32px;
  width: 303px;
  height: 136px;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(
    270deg,
    rgba(15, 16, 18, 0) 0%,
    rgba(15, 16, 18, 0.6) 7.7237%,
    rgba(15, 16, 18, 0.95) 14.435%,
    rgb(15, 16, 18) 23.662%,
    rgb(15, 16, 18) 100%
  );
}

.logos__fade--left {
  left: -20px;
}

.logos__fade--right {
  right: -20px;
  transform: scaleX(-1);
}

.logoCard {
  position: relative;
  height: 73px;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.logoCard__logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
  object-fit: contain;
}

.logoCard__chip {
  position: absolute;
  left: 50%;
  top: 47px;
  transform: translateX(-50%);
  padding: 6px 12px;
  background: var(--panel);
  border: 1px solid rgba(240, 236, 230, 0.1);
  border-radius: 8px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  letter-spacing: -0.24px;
  color: var(--muted2);
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  min-width: fit-content;
}

.logoCard__chipMuted {
  color: var(--muted);
  line-height: 1;
}

.dot {
  color: var(--text);
  line-height: 1;
}

.dot--green {
  color: var(--green);
}

@keyframes logos-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Testimonials */
.testimonials {
  position: absolute;
  left: 0;
  top: 0;
  width: 1728px;
}

.testimonials__title {
  position: absolute;
  left: calc(50% - 598px);
  top: 1608px;
  width: 372px;
  margin: 0;
  font-family: "Funnel Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0.228px;
  text-transform: lowercase;
}

.testimonials__accent {
  color: var(--blue);
}

.testimonials__copy {
  position: absolute;
  left: calc(50% - 598px);
  top: 1757px;
  width: 372px;
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.37;
  letter-spacing: 0.561px;
  color: var(--muted);
}

.cards {
  position: absolute;
  left: 731px;
  top: 1608px;
  display: flex;
  gap: 19px;
  max-width: calc(1728px - 731px - 40px);
  overflow-x: visible;
}

.card {
  width: 356px;
  min-height: 345px;
  border-radius: 30px;
  background: rgba(38, 44, 50, 0.3);
  border: 1px solid rgba(240, 236, 230, 0.5);
  padding: 40px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card__quote {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.37;
  color: var(--muted);
}

.card__person {
  position: static;
  margin-top: auto;
}

.card__name {
  font-family: "Funnel Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.5653px;
}

.card__role {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.7px;
  color: var(--muted2);
  margin-top: 6px;
}

.card__url {
  position: static;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.card__shape {
  width: 10px;
  height: 10px;
}

.card__domain {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  font-size: 14px;
}

.card__domain .muted {
  color: var(--green);
}

/* FAQ */
.faq {
  position: absolute;
  left: 0;
  top: 0;
  width: 1728px;
}

.faq__title {
  position: absolute;
  left: calc(50% - 598px);
  top: 2153px;
  z-index: 2;
  margin: 0;
  font-family: "Funnel Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0.228px;
  text-transform: lowercase;
}

.faq__titleQ {
  color: var(--green);
}

.faq__container {
  position: absolute;
  left: 770px;
  top: 2153px;
  width: 692px;
  min-height: 410px;
  padding-bottom: 40px;
  z-index: 2;
}

.faq__bg {
  display: none;
}

.faq__list {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  list-style: none;
  z-index: 1;
}

.faq__list li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(240, 236, 230, 0.1);
}

.faq__list li:last-child {
  border-bottom: none;
}

.faq__item--hidden {
  display: none;
}

.faq__item--hidden.show {
  display: block;
}

.faq__item {
  width: 100%;
  min-height: 68px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  color: var(--muted);
  padding: 0 24px;
  text-align: left;
}

.faq__question {
  flex: 1;
  padding-right: 20px;
}

.faq__plus {
  font-family: "Funnel Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq__item[aria-expanded="true"] .faq__plus {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, margin-bottom 0.3s ease;
  padding: 0 24px;
  margin-bottom: 0;
}

.faq__item[aria-expanded="true"] + .faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
  margin-bottom: 8px;
}

.faq__answer p {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  padding-top: 12px;
}

.showMore {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  height: 44px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid rgba(240, 236, 230, 0.3);
  padding: 20px 25px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-transform: lowercase;
  color: var(--text);
  cursor: pointer;
  z-index: 1;
}

.showMore img {
  width: 8px;
  height: 12px;
}

/* Footer */
.footer {
  position: absolute;
  left: 50%;
  top: 3000px;
  transform: translateX(-50%);
  width: 1440px;
  max-width: calc(100% - 40px);
  height: 30px;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0.39px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.footer__left {
  flex: 0 0 auto;
}

.footer__mid {
  flex: 0 0 auto;
}

.footer__links {
  display: flex;
  gap: 30px;
  text-transform: lowercase;
  align-items: center;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--text);
}

/* Scale down further on narrow screens where 80% of 1728px doesn't fit */
@media (max-width: 1400px) {
  .page {
    zoom: calc(100vw / 1728);
  }
}

/* ===================================================================
   TABLET & MOBILE: Switch from absolute positioning to flow layout
   =================================================================== */
@media (max-width: 1024px) {
  .page {
    width: 100%;
    zoom: 1;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0 24px;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
  }

  .bg-lottie { display: none; }

  /* Navbar */
  .navbar {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
  .navbar__logos { gap: 20px; }
  .navbar__logo--tech { width: 100px; height: 42px; }
  .navbar__logo--emergent { height: 24px; }

  /* Sticky Header */
  .sticky-header { height: 56px; }
  .sticky-header__content { padding: 10px 20px; }
  .sticky-header__logo--tech { width: 90px; height: 38px; }
  .sticky-header__logo--emergent { height: 22px; }
  .sticky-header__logos { gap: 16px; }
  .sticky-header__search-btn { width: 110px; height: 36px; }
  .sticky-header__search-arrow { width: 24px; height: 28px; left: 14px; top: 4px; }
  .sticky-header__search-text { font-size: 13px; transform: translateX(6px); margin-left: 0; }

  /* Hero Title */
  .hero-title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 60px;
    font-size: 40px;
  }

  /* Hero Copy */
  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 24px;
    font-size: 16px;
  }

  /* Search */
  .search {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 58px;
    margin-top: 40px;
  }
  .search__field {
    padding-right: 150px;
  }
  .search__btn {
    width: 130px;
  }
  .search__btnText {
    transform: translateX(22px);
  }

  /* Legal */
  .hero-legal {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 20px;
    white-space: normal;
    font-size: 13px;
    line-height: 1.7;
  }

  /* Why Section */
  .why {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 100px;
  }
  .why__title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 0;
    font-size: 30px;
  }
  .why__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }

  /* Logos Carousel - extend full width past padding */
  .logos {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-top: 48px;
  }

  /* Testimonials */
  .testimonials {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 100px;
  }
  .testimonials__title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 0;
    font-size: 30px;
  }
  .testimonials__copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }
  .cards {
    position: relative;
    left: auto;
    top: auto;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    gap: 16px;
  }
  .card {
    width: 100%;
    min-height: auto;
  }

  /* FAQ */
  .faq {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 100px;
  }
  .faq__title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 0;
    font-size: 30px;
  }
  .faq__container {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: auto;
    margin-top: 40px;
  }

  /* Footer */
  .footer {
    position: relative;
    left: auto;
    top: auto !important;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    padding-bottom: 32px;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }
}

/* ===================================================================
   MOBILE: Further adjustments for small screens
   =================================================================== */
@media (max-width: 600px) {
  .page {
    padding: 0 20px;
  }

  /* Sticky Header */
  .sticky-header__search-btn { width: 90px; height: 32px; }
  .sticky-header__search-arrow { width: 20px; height: 24px; left: 12px; top: 4px; }
  .sticky-header__search-text { font-size: 12px; }

  /* Hero */
  .hero-title {
    font-size: 34px;
    margin-top: 50px;
  }
  .hero-copy {
    font-size: 15px;
    margin-top: 20px;
  }

  /* Search: stack input and button vertically */
  .search {
    height: auto;
    margin-top: 36px;
  }
  .search__field {
    position: relative;
    inset: auto;
    padding-right: 20px;
    border-radius: 5px;
    height: 52px;
  }
  .search__btn {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 48px;
    margin-top: 10px;
  }
  .search__btnText {
    transform: translateX(10px);
  }
  .search__arrow {
    left: calc(50% - 52px);
  }

  /* Legal */
  .hero-legal {
    font-size: 12px;
    margin-top: 16px;
  }

  /* Why */
  .why { margin-top: 80px; }
  .why__title { font-size: 26px; }
  .why__copy { font-size: 15px; }
  .logos {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 36px;
  }
  .logos__fade { width: 60px; }

  /* Testimonials */
  .testimonials { margin-top: 80px; }
  .testimonials__title { font-size: 26px; }
  .testimonials__copy { font-size: 15px; }
  .cards { margin-top: 32px; }
  .card {
    padding: 30px 24px 24px;
    border-radius: 20px;
  }
  .card__quote { font-size: 15px; }

  /* FAQ */
  .faq { margin-top: 80px; }
  .faq__title { font-size: 26px; }
  .faq__container { margin-top: 32px; }
  .faq__item {
    font-size: 15px;
    padding: 0 12px;
    min-height: 56px;
  }
  .faq__answer { padding: 0 12px; }
  .faq__item[aria-expanded="true"] + .faq__answer {
    padding: 0 12px 16px;
  }
  .faq__answer p { font-size: 14px; }
  .showMore {
    font-size: 14px;
    padding: 16px 20px;
    height: 40px;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-top: 48px;
    padding-bottom: 24px;
  }
  .footer__links { gap: 16px; }
}

