/* Static floor finder — Figma frame 9178:16886 / image 9292:6231. */
.floorFinderSection {
  display: block;
  width: 100%;
  height: 735px;
  margin: 0;
}

.floorFinderSection__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #363635;
}

.floorFinderSection__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 71%;
  transform: scaleX(-1);
  z-index: 0;
}

/* Figma Ellipse 216 (9178:16889) — soft dark glow behind headline + copy. */
.floorFinderSection__media::before {
  content: "";
  position: absolute;
  top: 109px;
  left: 50%;
  width: min(961px, 88%);
  height: 490px;
  border-radius: 50%;
  background: #020202;
  filter: blur(160px);
  opacity: 0.6;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.floorFinderSection__content {
  position: absolute;
  top: 254px;
  left: 50%;
  display: flex;
  width: 752px;
  max-width: calc(100% - 48px);
  flex-direction: column;
  align-items: center;
  color: #e6f4ef;
  text-align: center;
  transform: translateX(-50%);
  z-index: 2;
}

.floorFinderSection__content h2 {
  margin: 0 0 16px;
  color: #e6f4ef;
  font-family: "Noto Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.2px;
}

.floorFinderSection__content p {
  margin: 0 0 40px;
  color: #e6f4ef;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.52px;
}

.floorFinderActions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.floorFinderBtn {
  display: inline-flex;
  min-height: 63px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floorFinderBtn--light {
  color: #1f8462;
  background: #f5fbf9;
}

.floorFinderBtn--brand {
  color: #fff;
  background: #1f8462;
}

.floorFinderBtn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

@media (min-width: 981px) and (max-width: 1400px) {
  .floorFinderSection {
    width: 100%;
    height: 600px;
    margin: 0;
  }

  .floorFinderSection__media::before {
    top: 89px;
    width: min(820px, 90%);
    height: 400px;
  }

  .floorFinderSection__content {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 980px) {
  .floorFinderSection__media::before {
    display: none;
  }

  .floorFinderSection {
    width: 100%;
    height: 520px;
    margin: 0;
  }

  .floorFinderSection__content {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .floorFinderSection__content h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .floorFinderSection__content p {
    font-size: 18px;
    line-height: 28px;
  }

  .floorFinderBtn {
    min-height: 56px;
    font-size: 17px;
  }
}

@media (max-width: 599px) {
  .floorFinderSection {
    width: 100%;
    height: 480px;
    margin: 0;
  }

  .floorFinderSection__content {
    max-width: calc(100% - 32px);
  }

  .floorFinderSection__content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .floorFinderSection__content p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 24px;
  }

  .floorFinderActions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .floorFinderBtn {
    width: 100%;
    min-height: 52px;
  }
}
