/* ============================================
   Homepage Styles — LUVBOTICS Redesign Preview
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Source Han Sans SC",
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* --- Navbar links: universal horizontal centering --- */
.navbar-a .navbar-links,
.navbar-scroll .navbar-links {
  left: 50%;
  transform: translateX(-50%);
}

/* --- Common Typography --- */
.text-tag {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #f07c44;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}

.text-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.8px;
  color: #333;
  margin-bottom: 32px;
}

.text-body {
  font-size: 24px;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.highlight {
  color: #f07c44;
}

.mobile-break {
  display: none;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: #fff;
  backdrop-filter: blur(20px);
  font-size: 14px;
  font-weight: 400;
  color: #333;
  transition: background 0.2s, color 0.2s, font-weight 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(20px);
}
.btn-primary:active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
  transform: scale(0.97);
}

.btn-ghost {
  display: inline-flex;
  padding: 14px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.6px;
  transition: background 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn-ghost--sm {
  padding: 14px 20px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 12px;
}

/* ========================
   Section 1: Hero
   ======================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 180px;
}

.hero-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.hero-title-zh {
  font-family: "Source Han Sans SC", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.hero-title-dot {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}
.hero-title-en {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-top: 8px;
  margin-bottom: 24px;
}

/* ========================
   Section 2: Terrain Video + Text
   ======================== */
.section-text-video {
  position: relative;
  background: #ffffff;
  padding-top: 180px;
}

.video-scroll-area {
  position: relative;
  width: 92%;
  max-width: 1104px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 48px;
  overflow: hidden;
}
.video-scroll-area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-floating-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 5;
  pointer-events: none;
  will-change: transform, opacity;
}
.video-floating-text svg {
  width: 21px;
  height: 40px;
  flex-shrink: 0;
}
.video-floating-label {
  font-family: "Source Han Sans SC", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 40px;
  white-space: nowrap;
}

.video-cta-btn {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  height: 52px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  color: #fff;
  font-weight: 400;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
}
.video-cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(20px);
}
.video-cta-btn:active {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-weight: 500;
  transform: translateX(-50%) scale(0.97);
}

.text-block {
  text-align: center;
  padding: 180px 272px 80px;
}
/* Override padding for text blocks in video section */
.section-text-video .text-block {
  padding-top: 180px;
  padding-bottom: 80px;
}
/* Wide screen: scale text-block padding-top proportionally beyond 1660px viewport */
@media (min-width: 1661px) {
  .text-block {
    padding-top: calc(180px + (100vw - 1660px) * 0.1);
  }
  .section-text-video .text-block {
    padding-top: calc(180px + (100vw - 1660px) * 0.1);
  }
}

/* ========================
   Section 3: Video Carousel (with blur)
   ======================== */
.video-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-carousel-inner {
  position: relative;
  width: 100%;
}

.video-carousel-mask {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

/* Blur variant: top/bottom edge feathering via CSS mask */
.video-carousel--blur .carousel-video {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.carousel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.carousel-snapshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  display: none;
  pointer-events: none;
}
.video-carousel--blur .carousel-snapshot {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}
.carousel-video.active {
  opacity: 1;
}

/* Play/Pause button */
.play-pause-btn {
  position: absolute;
  top: 80px;
  right: 24px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-pause-btn svg {
  position: absolute;
}
.play-pause-btn .icon-play,
.play-pause-btn .icon-pause {
  position: relative;
  z-index: 2;
}

.play-pause-btn--compact {
  top: 24px;
  right: 24px;
}

/* Progress ring */
.progress-ring-track {
  transition: stroke-dashoffset 0.1s linear;
}

/* Bottom nav pill */
.carousel-nav-pill {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.video-carousel--clean .carousel-nav-pill {
  bottom: 44px;
}

.carousel-nav-title {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  line-height: 150%;
}

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #fff;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.2s;
}
.carousel-arrow:hover {
  opacity: 0.7;
}

/* ========================
   Section 4, 7: Text Blocks
   ======================== */
.section-text {
  background: #ffffff;
}

/* ========================
   Section 6: Image Carousel
   ======================== */
.image-carousel-section {
  padding: 124px 0 24px;
  background: #ffffff;
  overflow: visible;
}

.image-carousel {
  position: relative;
  width: 100%;
}

.image-viewport {
  position: relative;
  width: 100%;
  min-height: 648px;
  overflow: visible;
}

.image-slide {
  position: absolute;
  top: 50%;
  border-radius: 48px;
  overflow: hidden;
  will-change: transform, opacity, left, width, height;
  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease,
    left 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Center slide: min(60.24%, 1000px) x min(100%, 648px) */
.image-slide--pos0 {
  left: calc(50% - min(30.12%, 500px));
  width: min(60.24%, 1000px);
  height: min(100%, 648px);
  transform: translateY(-50%);
  opacity: 1;
  z-index: 7;
}

/* Position 1: immediate neighbors — min(34.94%, 580px) x min(57.87%, 375px) */
.image-slide--pos1L {
  left: calc(50% - min(30.12%, 500px) - 20px - min(34.94%, 580px));
  width: min(34.94%, 580px);
  height: min(57.87%, 375px);
  transform: translateY(-50%);
  opacity: 0.85;
  z-index: 6;
}
.image-slide--pos1R {
  left: calc(50% + min(30.12%, 500px) + 20px);
  width: min(34.94%, 580px);
  height: min(57.87%, 375px);
  transform: translateY(-50%);
  opacity: 0.85;
  z-index: 6;
}

/* Position 2: second from center */
.image-slide--pos2L {
  left: calc(
    50% - min(30.12%, 500px) - 20px - min(34.94%, 580px) - 16px -
      min(26%, 435px)
  );
  width: min(26%, 435px);
  height: min(43%, 282px);
  transform: translateY(-50%);
  opacity: 0.6;
  z-index: 5;
}
.image-slide--pos2R {
  left: calc(50% + min(30.12%, 500px) + 20px + min(34.94%, 580px) + 16px);
  width: min(26%, 435px);
  height: min(43%, 282px);
  transform: translateY(-50%);
  opacity: 0.6;
  z-index: 5;
}

/* Position 3: outermost */
.image-slide--pos3L {
  left: calc(
    50% - min(30.12%, 500px) - 20px - min(34.94%, 580px) - 16px -
      min(26%, 435px) - 12px - min(19%, 318px)
  );
  width: min(19%, 318px);
  height: min(32%, 207px);
  transform: translateY(-50%);
  opacity: 0.4;
  z-index: 4;
}
.image-slide--pos3R {
  left: calc(
    50% + min(30.12%, 500px) + 20px + min(34.94%, 580px) + 16px +
      min(26%, 435px) + 12px
  );
  width: min(19%, 318px);
  height: min(32%, 207px);
  transform: translateY(-50%);
  opacity: 0.4;
  z-index: 4;
}

/* Hidden */
.image-slide--offscreen {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  width: min(19%, 318px);
  height: min(32%, 207px);
  left: calc(
    50% - min(30.12%, 500px) - 20px - min(34.94%, 580px) - 16px -
      min(26%, 435px) - 12px - min(19%, 318px)
  );
  top: 50%;
  transform: translateY(-50%);
}

/* Image carousel arrow positioning (page-specific) */
.carousel-arrow-btn--left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  z-index: 10;
}
.carousel-arrow-btn--right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  z-index: 10;
}

/* Homepage Area6 only: white glass arrows on top of images.
   Scoped to .image-carousel-section so robot_companion's 8 carousel-arrow-btn
   instances (on white backgrounds) keep their default dark style from carousel-arrow.css. */
.image-carousel-section .carousel-arrow-btn {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.image-carousel-section .carousel-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.image-carousel-section .carousel-arrow-btn:active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.image-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  opacity: 0.1;
  transition: opacity 0.3s;
  cursor: pointer;
}
.dot.active {
  opacity: 0.5;
}

/* ========================
   Section 9-11: Bottom (single background)
   ======================== */
.bottom-section {
  position: relative;
  overflow: hidden;
}
.bottom-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 1;
  pointer-events: none;
}

.bottom-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bottom-section-bg img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: blur(40px);
  transform: scale(1.2);
}

.bottom-section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bottom-cta-content {
  padding-top: 416px;
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
}

.bottom-intro {
  margin-top: 64px;
}

.bottom-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.4px;
  line-height: 48px;
  margin-bottom: 40px;
}

.bottom-desc {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 1px;
  padding: 0 16.39%;
}

.bottom-join {
  margin-top: 160px;
}

.bottom-join-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.4px;
  margin-bottom: 40px;
}

.bottom-join-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 64px;
}

.bottom-divider {
  width: 40%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  margin-top: 56px;
}

.bottom-partners {
  margin-top: 56px;
  padding: 56px 0;
  align-self: stretch;
}

.partners-title {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 56px;
}

.partners-logos {
  display: inline-flex;
  padding-top:14px;
  padding-bottom: 14px;
  padding-left: 36px;
  padding-right: 12px;
  align-items: center;
  gap: 56px;
  border-radius: 48px;
  border: 0.8px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  align-self: center;
}
.partners-logos img {
  width: 160px;
  height: auto;
  filter: brightness(1);
  transition: opacity 0.2s;
  object-fit: contain;
}



.partners-logos img:hover {
  opacity: 0.7;
}
.partners-logos .partner-logo--sm {
  transform: scale(0.75);
}

.partners-logos .partner-logo--s {
  transform: scale(0.6);
}

/* Home footer (inside bottom-section) */
.home-footer {
  width: 100%;
  margin-top: 80px;
  padding: 80px 2.41% 60px;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 250;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  text-align: left;
}

.footer-icp {
  color: #fff;
  text-decoration: underline;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   Video Modal
   ======================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.video-modal-content {
  position: relative;
  width: min(90vw, 1000px);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.video-modal-content video {
  width: 100%;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.video-modal-close:hover {
  opacity: 0.7;
}

/* ============================================
   Mobile Responsive — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

  /* --- Section 1: Hero --- */
  .hero-content {
    padding-top: 87px;
  }
  .hero-title {
    gap: 8px;
  }
  .hero-title-zh {
    font-weight: 500;
  }

  /* --- Section 2: Terrain Video + Text --- */
  .section-text-video {
    padding-top: 52px;
  }

  .video-scroll-area {
    width: calc(100% - 40px);
    max-width: none;
    aspect-ratio: unset;
    border-radius: 0;
    overflow: visible;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video-scroll-area video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 24px;
    object-fit: cover;
    order: 2;
  }

  .video-floating-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    z-index: auto;
    pointer-events: auto;
    will-change: auto;
    order: 0;
  }
  .video-floating-text svg {
    width: auto;
    height: 20px;
  }
  .video-floating-text svg path {
    fill: #333;
  }
  .video-floating-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: #333;
  }

  .video-cta-btn {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: inline-flex;
    margin: 0 auto 20px;
    z-index: auto;
    background: rgba(51, 51, 51, 0.05);
    backdrop-filter: blur(20px);
    color: #333;
    border: 0.8px solid rgba(51, 51, 51, 0.2);
    order: 1;
  }
  .video-cta-btn:hover {
    background: rgba(51, 51, 51, 0.1);
    color: #333;
    backdrop-filter: blur(20px);
  }
  .video-cta-btn:active {
    color: rgba(51, 51, 51, 0.7);
    transform: scale(0.97);
  }

  .text-block {
    padding: 72px 20px;
  }
  .section-text-video .text-block {
    padding-top: 72px;
    padding-bottom: 40px;
  }
  .text-tag {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .text-heading {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 1.6px;
    margin-bottom: 40px;
  }
  .text-body {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.7px;
  }

  /* --- Section 3: Video Carousel (blur) --- */
  .video-carousel--blur .carousel-video,
  .video-carousel--blur .carousel-snapshot {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 30px, calc(100% - 30px) black, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0px, black 30px, calc(100% - 30px) black, transparent 100%);
  }

  .play-pause-btn {
    top: 30px;
    right: 8px;
    width: 24px;
    height: 24px;
  }
  .carousel-nav-pill {
    bottom: 12px;
    padding: 14px 20px;
    gap: 14px;
  }
  .carousel-nav-title {
    font-size: 14px;
  }

  /* --- Section 6: Image Carousel --- */
  .image-carousel-section {
    padding: 24px 0;
  }
  .image-viewport {
    min-height: 118px;
  }
  .image-slide {
    border-radius: 24px;
  }
  .image-slide--pos0 {
    left: calc(50% - 91px);
    width: 182px;
    height: 118px;
  }
  .image-slide--pos1L {
    left: calc(50% - 227px);
    width: 120px;
    height: 78px;
    opacity: 0.85;
  }
  .image-slide--pos1R {
    left: calc(50% + 107px);
    width: 120px;
    height: 78px;
    opacity: 0.85;
  }
  .image-slide--pos2L,
  .image-slide--pos2R,
  .image-slide--pos3L,
  .image-slide--pos3R {
    opacity: 0;
    pointer-events: none;
  }
  .image-slide--offscreen {
    opacity: 0;
    pointer-events: none;
    width: 120px;
    height: 78px;
    left: calc(50% - 227px);
  }
  .carousel-arrow-btn {
    width: 24px;
    height: 24px;
  }
  .carousel-arrow-btn svg {
    width: 24px;
    height: 24px;
  }

  /* --- Section 9-11: Bottom (CTA + Partners + Footer) --- */
  .bottom-cta-content {
    padding-top: 160px;
  }
  .bottom-intro {
    margin-top: 40px;
  }
  .bottom-title {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 1.6px;
    margin-bottom: 24px;
  }
  .bottom-desc {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.7px;
    padding: 0;
    margin: 0 32px;
  }
  .mobile-break {
    display: block;
  }
  .bottom-join {
    margin-top: 52px;
  }
  .bottom-join-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
  }
  .bottom-join-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .bottom-divider {
    margin-top: 24px;
  }

  /* --- Partners --- */
  .bottom-partners {
    margin-top: 24px;
    margin-bottom: 12px;
    padding: 0;
  }
  .partners-title {
    margin-bottom: 24px;
    font-size: 14px;
  }
  .partners-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    row-gap: 14px;
    column-gap: 20px;
    padding: 0;
  }
  .partners-logos img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .partners-logos .partner-logo--sm {
    transform: none;
  }

  /* --- Footer --- */
  .home-footer {
    margin-top: 0;
    padding: 56px 0 56px 20px;
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-brand {
    gap: 12px;
    margin-bottom: 36px;
  }
  .footer-actions {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 56px;
  }
}
