/* Findsy portal — Rentola-style listing browse */
:root {
  /* Findsy huisstijl */
  --fs-pink: #FD3A9D;
  --fs-purple: #9D34EB;
  --fs-blue: #5547FE;
  --fs-purple-dark: #7B22C9;
  --fs-pink-dark: #E02885;
  --fs-blue-dark: #4338D4;
  --fs-brand-gradient: linear-gradient(135deg, var(--fs-blue) 0%, var(--fs-purple) 52%, var(--fs-pink) 100%);
  --fs-brand-gradient-h: linear-gradient(90deg, var(--fs-blue), var(--fs-purple), var(--fs-pink));
  --fs-led-border-linear: linear-gradient(
    90deg,
    rgba(85, 71, 254, 0.95) 0%,
    rgba(157, 52, 235, 0.88) 16.67%,
    rgba(253, 58, 157, 0.95) 33.33%,
    rgba(85, 71, 254, 0.95) 50%,
    rgba(157, 52, 235, 0.88) 66.67%,
    rgba(253, 58, 157, 0.95) 83.33%,
    rgba(85, 71, 254, 0.95) 100%
  );
  --fs-led-border-static: linear-gradient(
    90deg,
    rgba(85, 71, 254, 0.58) 0%,
    rgba(157, 52, 235, 0.34) 50%,
    rgba(253, 58, 157, 0.58) 100%
  );
  --fs-led-border-duration: 6.5s;
  --fs-led-border-duration-linear: 5.5s;
  --fs-try-app-title-duration: 14s;
  --fs-green: var(--fs-blue);
  --fs-green-dark: var(--fs-blue-dark);
  --fs-red: var(--fs-pink);
  --fs-bg: #f7f5fc;
  --fs-text: #111827;
  --fs-muted: #6b7280;
  --fs-border: #e8e4f0;
  --fs-radius: 12px;
  --fs-header-h: 68px;
  --fs-shadow: 0 4px 20px rgba(85, 71, 254, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.fs-portal {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fs-text);
  background: var(--fs-bg);
  line-height: 1.5;
}
/* Scoped to portal pages only — marketing loads portal.css for header but not body.fs-portal */
body.fs-portal a {
  color: inherit;
  text-decoration: none;
}
body.fs-portal img {
  max-width: 100%;
  display: block;
}
body.fs-portal img.fs-hero-wrap__bg {
  max-width: none;
  max-height: none;
}

/* Header */
.fs-portal-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--fs-border);
  overflow: visible;
}
.fs-portal-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.fs-portal-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.fs-portal-logo img {
  height: 32px;
  width: auto;
  max-width: 148px;
  display: block;
}
.fs-portal-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f4f6;
  border: 1px solid var(--fs-border);
  border-radius: 999px;
  padding: 10px 18px;
}
.fs-portal-search svg { flex-shrink: 0; color: var(--fs-muted); }
.fs-portal-search input {
  border: none;
  background: transparent;
  flex: 1;
  font: inherit;
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.fs-portal-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
  min-width: 0;
}
.fs-portal-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.fs-portal-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.fs-portal-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--fs-text);
  white-space: nowrap;
}
.fs-portal-nav__link:hover { color: var(--fs-purple); }
.fs-portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform 0.15s, filter 0.15s;
}
.fs-portal-btn:hover { filter: brightness(0.95); }
.fs-portal-btn--primary {
  background: var(--fs-brand-gradient-h);
  color: #fff;
  box-shadow: 0 4px 14px rgba(157, 52, 235, 0.28);
}
.fs-portal-btn--primary:hover {
  filter: brightness(1.04);
  box-shadow: 0 6px 18px rgba(157, 52, 235, 0.34);
}
.fs-portal-btn--outline {
  background: #fff;
  border: 1px solid var(--fs-border);
  color: var(--fs-text);
}
.fs-portal-btn--ghost {
  background: transparent;
  border: 1px solid rgba(157, 52, 235, 0.22);
  color: var(--fs-text);
  padding: 9px 18px;
  box-shadow: none;
}
.fs-portal-btn--ghost:hover {
  border-color: rgba(157, 52, 235, 0.45);
  background: rgba(157, 52, 235, 0.04);
  filter: none;
}
.fs-portal-btn--green { background: var(--fs-green); color: #fff; }
.fs-portal-btn--green:hover { background: var(--fs-green-dark); }
.fs-portal-btn--red { background: var(--fs-red); color: #fff; }

.fs-portal-main { max-width: 1320px; margin: 0 auto; padding: 32px 24px 64px; }

/* Homepage — transparent header over hero photo */
body.fs-portal--home .fs-portal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background:
    linear-gradient(
      105deg,
      rgba(85, 71, 254, 0.2) 0%,
      rgba(157, 52, 235, 0.1) 42%,
      rgba(253, 58, 157, 0.14) 100%
    ),
    rgba(8, 12, 28, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
body.fs-portal--home .fs-portal-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
}
body.fs-portal--home .fs-portal-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: 0;
  min-width: 0;
}
body.fs-portal--home .fs-portal-nav__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
body.fs-portal--home .fs-portal-nav__link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  letter-spacing: 0.01em;
}
body.fs-portal--home .fs-portal-nav__link:hover {
  color: #fff;
}
body.fs-portal--home .fs-portal-btn--primary {
  background: #fff;
  color: var(--fs-text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
body.fs-portal--home .fs-portal-btn--primary:hover {
  background: #f8f9fc;
  filter: none;
}
body.fs-portal--home .fs-portal-btn--ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: rgba(255, 255, 255, 0.94);
}
body.fs-portal--home .fs-portal-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
body.fs-portal--home .fs-portal-globe-btn {
  color: rgba(255, 255, 255, 0.92);
}
body.fs-portal--home .fs-portal-globe-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
body.fs-portal--home .fs-portal-menu-btn {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.96);
}

/* Hero — cinematic banner, editorial typography */
body.fs-portal--home .fs-hero-wrap {
  min-height: clamp(440px, 56vh, 560px);
}
body.fs-portal--home .fs-hero {
  padding: 104px 24px 52px;
}
body.fs-portal--home .fs-trust-strip--hero {
  margin-top: 20px;
}
body.fs-portal--home .fs-hero__secondary {
  margin-top: 18px;
}
body.fs-portal--home .fs-portal-main {
  padding-top: 28px;
}
.fs-hero-wrap {
  position: relative;
  margin: 0;
  min-height: clamp(580px, 82vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fs-hero-wrap__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.fs-hero-wrap__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  filter: contrast(1.08) saturate(0.92) brightness(0.92);
  transform: scale(1.02);
}
.fs-hero-wrap__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      158deg,
      rgba(6, 8, 20, 0.88) 0%,
      rgba(12, 16, 36, 0.62) 32%,
      rgba(18, 22, 48, 0.28) 58%,
      rgba(15, 23, 42, 0.06) 100%
    ),
    radial-gradient(ellipse 70% 55% at 12% 88%, rgba(85, 71, 254, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 92% 12%, rgba(253, 58, 157, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.fs-hero-wrap__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.fs-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 128px 24px 72px;
}
.fs-hero__content {
  text-align: left;
  color: #fff;
  max-width: 860px;
}
.fs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 7px 16px 7px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.fs-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fs-pink);
  box-shadow: 0 0 10px rgba(253, 58, 157, 0.7);
  flex-shrink: 0;
}
.fs-hero__content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5.4vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  max-width: 15ch;
}
.fs-hero__lead {
  margin: 0 0 32px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 40ch;
}
.fs-hero__search-card {
  background: rgba(235, 230, 245, 0.92);
  border: 1px solid rgba(157, 52, 235, 0.14);
  border-radius: 20px;
  padding: 0 20px 18px;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(85, 71, 254, 0.08);
  text-align: left;
  max-width: 800px;
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}
.fs-hero__search-card-head {
  margin-bottom: 0;
}
.fs-hero__mode {
  display: inline-flex;
  gap: 4px;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid #eceef4;
  border-radius: 0;
}
.fs-hero__mode-btn {
  border: none;
  background: transparent;
  color: #94a3b8;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 22px 14px;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
.fs-hero__mode-btn:hover {
  color: #64748b;
}
.fs-hero__mode-btn.is-on {
  background: transparent;
  color: var(--fs-text);
  box-shadow: none;
}
.fs-hero__mode-btn.is-on::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -1px;
  height: 2px;
  background: var(--fs-brand-gradient-h);
  border-radius: 2px 2px 0 0;
}
.fs-hero__search-form {
  margin: 0;
  padding-top: 16px;
}
.fs-hero__search-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid #e4e7f0;
  border-radius: 14px;
  padding: 3px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fs-hero__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding: 10px 16px;
}
.fs-hero__field--grow {
  flex: 1 1 200px;
}
.fs-hero__field--country {
  flex: 0 0 152px;
}
.fs-hero__field-divider {
  display: none;
  width: 1px;
  align-self: stretch;
  margin: 12px 0;
  background: #e8ebf2;
  flex-shrink: 0;
}
.fs-hero__field-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fs-text);
  padding-left: 1px;
  line-height: 1.2;
}
.fs-hero__field input,
.fs-hero__field select {
  width: 100%;
  padding: 1px 0 0;
  border: none;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--fs-text);
  background: transparent;
  outline: none;
  box-shadow: none;
  min-height: 26px;
  letter-spacing: -0.01em;
}
.fs-hero__field select {
  cursor: pointer;
  padding-right: 4px;
}
.fs-hero__country-select {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
}
.fs-hero__country-icon {
  display: none;
  flex-shrink: 0;
  color: var(--fs-purple);
}
.fs-hero__field input::placeholder {
  color: #b0b8c8;
  font-weight: 400;
}
.fs-hero__field input:focus,
.fs-hero__field select:focus {
  outline: none;
  box-shadow: none;
}
.fs-hero__search-bar {
  display: block;
  min-width: 0;
}
.fs-hero__search-icon {
  display: none;
}
.fs-hero__search-fields:focus-within {
  border-color: rgba(85, 71, 254, 0.4);
  box-shadow: 0 0 0 3px rgba(85, 71, 254, 0.08);
}
body.fs-portal--home .fs-hero__submit.fs-portal-btn--primary {
  flex-shrink: 0;
  align-self: center;
  min-height: 50px;
  margin: 3px;
  padding: 0 32px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--fs-purple);
  box-shadow: 0 4px 16px rgba(157, 52, 235, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
body.fs-portal--home .fs-hero__submit.fs-portal-btn--primary:hover {
  background: var(--fs-purple-dark);
  box-shadow: 0 6px 20px rgba(157, 52, 235, 0.45);
  filter: none;
  transform: translateY(-1px);
}
@media (min-width: 901px) {
  .fs-hero__field-divider {
    display: block;
  }
  .fs-hero__search-fields {
    flex-wrap: nowrap;
    align-items: center;
  }
  .fs-hero__field {
    padding: 12px 18px;
  }
  .fs-hero__field--country {
    flex: 0 0 168px;
  }
  .fs-hero__field--country .fs-hero__field-label {
    padding-left: 0;
  }
  .fs-hero__field--country .fs-hero__country-select {
    display: block;
  }
  .fs-hero__field--country .fs-hero__country-select::after {
    display: none;
  }
  .fs-hero__field--country select {
    padding-left: 0;
    padding-right: 0;
    -webkit-appearance: none;
    appearance: none;
    background: none;
  }
}
.fs-hero__secondary {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.fs-hero__signup-link {
  display: inline-block;
  margin-left: 6px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid var(--fs-pink);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.fs-hero__signup-link:hover {
  color: var(--fs-pink);
  border-color: var(--fs-pink);
}

/* Trust strip — frosted stat bar (hero) */
.fs-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fs-trust-strip--hero {
  margin-top: 28px;
  justify-content: stretch;
  max-width: 800px;
  padding: 0;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.fs-trust-strip--hero .fs-trust-strip__item {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  padding: 14px 12px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  white-space: normal;
  text-align: center;
  gap: 6px;
  flex-direction: column;
}
.fs-trust-strip--hero .fs-trust-strip__item + .fs-trust-strip__item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.fs-trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
  font-size: 13px;
  font-weight: 600;
  color: var(--fs-text);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fs-trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(85, 71, 254, 0.1), rgba(253, 58, 157, 0.1));
  color: var(--fs-purple);
  flex-shrink: 0;
}
.fs-trust-strip--hero .fs-trust-strip__icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0.85;
}
.fs-trust-strip--hero .fs-trust-strip__icon--shield {
  position: relative;
}
.fs-trust-shield-svg {
  display: block;
  overflow: visible;
}
.fs-trust-shield-check {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}
.fs-trust-strip__text {
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.fs-trust-strip__text--count {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.28em;
}
.fs-trust-count-wrap {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.fs-trust-count {
  font-variant-numeric: tabular-nums;
}
.fs-trust-count__plus {
  font-weight: 700;
}
.fs-trust-strip__icon--bell {
  transform-origin: 50% 0%;
}
@media (prefers-reduced-motion: no-preference) {
  .fs-trust-strip__icon--bell {
    animation: fs-bell-ring 2.2s ease-in-out infinite;
  }
  .fs-trust-shield-check {
    animation: fs-shield-check-draw-once 1.2s ease-out 0.35s forwards;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fs-trust-shield-check {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes fs-bell-ring {
  0%, 68%, 100% {
    transform: rotate(0deg);
  }
  72% {
    transform: rotate(14deg);
  }
  76% {
    transform: rotate(-12deg);
  }
  80% {
    transform: rotate(9deg);
  }
  84% {
    transform: rotate(-7deg);
  }
  88% {
    transform: rotate(4deg);
  }
  92% {
    transform: rotate(-2deg);
  }
  96% {
    transform: rotate(0deg);
  }
}
@keyframes fs-shield-check-draw-once {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* Section headers */
.fs-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.fs-section-title {
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.fs-portal-main > .fs-section-title {
  margin-bottom: clamp(12px, 3vw, 16px);
}
.fs-section-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--fs-purple);
}

/* Recent listings — highlighted panel */
.fs-recent-section {
  position: relative;
  margin: 12px 0 40px;
  padding: 24px 22px 26px;
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 252, 0.96) 48%, rgba(255, 248, 252, 0.98) 100%);
  border: 1px solid rgba(157, 52, 235, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 44px rgba(85, 71, 254, 0.09),
    0 0 72px rgba(157, 52, 235, 0.07);
  overflow: hidden;
}
.fs-recent-section__glow {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 90%);
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(157, 52, 235, 0.14) 0%,
    rgba(253, 58, 157, 0.07) 38%,
    transparent 72%
  );
  pointer-events: none;
}
.fs-recent-section .fs-section-head,
#recentListings {
  position: relative;
  z-index: 1;
}
.fs-recent-section .fs-section-head {
  margin-bottom: 18px;
}

/* Property type row */
.fs-type-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 36px;
}
body.fs-portal a.fs-type-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--fs-border);
  border-radius: 11px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
body.fs-portal a.fs-type-chip .fs-type-chip__text {
  font-weight: 800;
  background: linear-gradient(90deg, var(--fs-blue) 0%, var(--fs-purple) 48%, var(--fs-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body.fs-portal a.fs-type-chip:hover {
  border-color: var(--fs-purple);
  box-shadow: 0 2px 8px rgba(157, 52, 235, 0.18);
}

/* Cities horizontal scroll */
.fs-city-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.fs-city-scroll::-webkit-scrollbar { height: 6px; }
.fs-city-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

/* Horizontal scroll indicator (mobile) */
.fs-hscroll-indicator {
  display: none;
}
.fs-hscroll-indicator__track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(157, 52, 235, 0.12);
  overflow: hidden;
}
.fs-hscroll-indicator__thumb {
  display: block;
  height: 100%;
  min-width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fs-blue) 0%, var(--fs-purple) 52%, var(--fs-pink) 100%);
  width: 35%;
  margin-left: 0;
  transition: margin-left 0.15s ease-out, width 0.15s ease-out;
}
.fs-hscroll-indicator.is-static .fs-hscroll-indicator__thumb {
  width: 100%;
  margin-left: 0 !important;
}

.fs-city-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--fs-radius);
  overflow: hidden;
  border: 1px solid var(--fs-border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fs-city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fs-shadow);
}
.fs-city-card__img {
  height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background-size: cover;
  background-position: center;
}
.fs-city-card__img span {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.fs-city-card__body { padding: 14px 16px; }
.fs-city-card__count { margin: 0; font-size: 14px; color: var(--fs-muted); font-weight: 600; }

/* Listing grid — Rentola cards */
.fs-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fs-listing-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Homepage — recent listings: denser grid */
#recentListings .fs-listing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
#recentListings .fs-listing-card {
  border-radius: 14px;
}
#recentListings .fs-listing-card__media {
  aspect-ratio: 4 / 3;
}
#recentListings .fs-listing-card__body {
  padding: 8px 10px 10px;
}
#recentListings .fs-listing-card__title {
  font-size: 12px;
  margin-bottom: 2px;
  -webkit-line-clamp: 2;
}
#recentListings .fs-listing-card__meta {
  font-size: 11px;
  margin-bottom: 4px;
}
#recentListings .fs-listing-card__price {
  font-size: 1.05rem;
}
#recentListings .fs-listing-card__fav {
  width: 30px;
  height: 30px;
  top: 6px;
  right: 6px;
}
#recentListings .fs-listing-card__fav svg {
  width: 15px;
  height: 15px;
}
#recentListings .fs-listing-card__badge {
  top: 8px;
  right: 40px;
  font-size: 9px;
  padding: 3px 6px;
}
#recentListings .fs-listing-card__counter {
  top: 8px;
  left: 8px;
  font-size: 10px;
  padding: 3px 6px;
}
#recentListings .fs-carousel-btn {
  width: 28px;
  height: 28px;
}
@media (max-width: 1280px) {
  #recentListings .fs-listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  #recentListings .fs-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.fs-listing-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(232, 228, 240, 0.85);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(85, 71, 254, 0.06);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.fs-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(85, 71, 254, 0.12);
}
.fs-listing-card__link { display: block; color: inherit; }
.fs-listing-card__media {
  position: relative;
  aspect-ratio: 5/4;
  background: #e5e7eb;
  overflow: hidden;
}
.fs-carousel-viewport { overflow: hidden; width: 100%; height: 100%; }
.fs-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}
.fs-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.fs-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fs-listing-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}
.fs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--fs-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s;
}
.fs-listing-card:hover .fs-carousel-btn { opacity: 1; }
.fs-carousel-btn--prev { left: 8px; }
.fs-carousel-btn--next { right: 8px; }
.fs-listing-card__counter {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
}
.fs-listing-card__badge {
  position: absolute;
  top: 10px;
  right: 48px;
  background: var(--fs-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
  text-transform: uppercase;
}
.fs-listing-card__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: var(--fs-muted);
}
.fs-listing-card__fav:hover { color: var(--fs-red); }
.fs-listing-card__body { padding: 12px 14px 14px; }
.fs-listing-card__title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fs-listing-card__meta {
  font-size: 12px;
  color: var(--fs-muted);
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fs-listing-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

/* CTA stack — photo carousel + banner */
@property --fs-led-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes fs-led-border-flow {
  to { --fs-led-border-angle: 360deg; }
}
@keyframes fs-led-border-flow-linear {
  to { background-position: 320% 50%; }
}
.fs-cta-stack {
  margin: 0 0 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(85, 71, 254, 0.14);
}
.fs-cta-stack__frame {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  border-top: 1px solid rgba(157, 52, 235, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 252, 0.98) 100%);
}
.fs-cta-stack__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0 2.5px 2.5px;
  --fs-led-border-angle: 0deg;
  background: conic-gradient(
    from var(--fs-led-border-angle) at 50% 50%,
    rgba(85, 71, 254, 0.95) 0deg,
    rgba(85, 71, 254, 0.95) 48deg,
    rgba(157, 52, 235, 0.88) 96deg,
    rgba(253, 58, 157, 0.95) 144deg,
    rgba(253, 58, 157, 0.95) 192deg,
    rgba(157, 52, 235, 0.88) 240deg,
    rgba(85, 71, 254, 0.95) 288deg,
    rgba(85, 71, 254, 0.95) 360deg
  );
  animation: fs-led-border-flow var(--fs-led-border-duration) linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .fs-cta-stack__frame::before {
    background: var(--fs-led-border-linear);
    background-size: 320% 100%;
    animation: fs-led-border-flow-linear var(--fs-led-border-duration-linear) linear infinite;
  }
}
.fs-store-ratings-mount--cta {
  padding: 14px 20px 12px;
  background: transparent;
}
.fs-store-ratings-mount--download {
  margin: 0 0 20px;
}
.fs-store-ratings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
}
.fs-store-ratings__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.fs-store-ratings__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fs-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.fs-store-ratings__stars,
.fs-store-ratings__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.fs-store-ratings__stars--gold {
  color: #ffb800;
}
.fs-store-ratings__star {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.fs-store-ratings__star-half {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.fs-store-ratings__star-half .fs-store-ratings__star {
  position: absolute;
  inset: 0;
}
.fs-store-ratings__star--empty {
  color: #e5e7eb;
}
.fs-store-ratings__star--fill {
  color: #ffb800;
  clip-path: inset(0 50% 0 0);
}
.fs-store-ratings__tp-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #00b67a;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}
.fs-cta-carousel {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 16px 0;
  --carousel-slide: 148px;
  --carousel-radius: 18px;
  --carousel-gap: 24px;
  --carousel-segment-count: 11;
  --carousel-loop: calc(var(--carousel-segment-count) * var(--carousel-slide) + (var(--carousel-segment-count) - 1) * var(--carousel-gap));
  --carousel-ref-loop: calc(11 * 148px + 10 * 24px);
  --carousel-duration: calc(var(--carousel-loop) * 45s / var(--carousel-ref-loop));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.fs-cta-stack__frame .fs-store-ratings-mount,
.fs-cta-stack__frame .fs-cta-carousel__track {
  position: relative;
  z-index: 1;
}
.fs-cta-carousel__track {
  display: flex;
  align-items: center;
  gap: var(--carousel-gap);
  width: max-content;
  animation: fs-cta-carousel-scroll var(--carousel-duration) linear infinite;
  will-change: transform;
}
.fs-cta-carousel:hover .fs-cta-carousel__track {
  animation-play-state: paused;
}
@keyframes fs-cta-carousel-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--carousel-loop)), 0, 0); }
}
.fs-cta-carousel__slide {
  margin: 0;
  flex-shrink: 0;
  overflow: hidden;
  padding: 2px;
  border: none;
  border-radius: var(--carousel-radius);
  background: linear-gradient(135deg, var(--fs-blue) 0%, var(--fs-purple) 52%, var(--fs-pink) 100%);
  box-shadow:
    0 4px 14px rgba(85, 71, 254, 0.1),
    0 2px 8px rgba(17, 24, 39, 0.06);
}
.fs-cta-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--carousel-radius) - 2px);
  background: #fff;
}
.fs-cta-carousel__slide--tile {
  width: var(--carousel-slide);
  height: var(--carousel-slide);
  border-radius: var(--carousel-radius);
}
.fs-cta-carousel__slide[data-crop="accent"] img { object-position: center 50%; }
.fs-cta-carousel__slide[data-crop="default"] img { object-position: center 48%; }
.fs-cta-carousel__slide[data-crop="portrait"] img { object-position: center 58%; }
.fs-cta-carousel__slide[data-crop="high"] img { object-position: center 38%; }
.fs-cta-carousel__slide[data-crop="lift"] img { object-position: center 28%; }
@media (prefers-reduced-motion: reduce) {
  .fs-cta-stack__frame::before {
    animation: none;
    --fs-led-border-angle: 0deg;
    background: var(--fs-led-border-static);
    background-size: 100% 100%;
  }
  .fs-try-app__title {
    animation: none;
    background: linear-gradient(90deg, var(--fs-blue) 0%, var(--fs-purple) 48%, var(--fs-pink) 100%);
    background-size: 100% 100%;
  }
  .fs-sources-hub__line {
    animation: none;
  }
  .fs-sources-hub__phone-stack .fs-sources-hub__phone-img--list,
  .fs-sources-hub__phone-stack .fs-sources-hub__phone-img--map {
    animation: none;
  }
  .fs-sources-hub__phone-img--map {
    opacity: 0;
  }
  .fs-cta-carousel__track {
    animation: none;
    width: auto;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
  }
  .fs-cta-carousel__slide[aria-hidden="true"] {
    display: none;
  }
}

/* CTA banner + happy customers */
.fs-cta-banner {
  background: var(--fs-brand-gradient-h);
  color: #fff;
  border-radius: 0;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 270px) auto;
  align-items: center;
  gap: 36px;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.fs-cta-banner__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 16px;
}
.fs-cta-banner__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fs-cta-banner__copy h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}
.fs-cta-banner__copy p {
  margin: 0;
  opacity: 0.95;
  max-width: 560px;
  font-size: 13px;
  line-height: 1.4;
}
.fs-cta-banner__btn {
  background: #fff !important;
  color: var(--fs-purple) !important;
  font-weight: 800;
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
}
.fs-cta-banner__showcase {
  width: 100%;
  max-width: 270px;
  justify-self: center;
}
.fs-cta-polaroids {
  position: relative;
  width: 244px;
  height: 148px;
  margin: 0 auto;
}
.fs-cta-polaroid {
  position: absolute;
  margin: 0;
  background: #fff;
  padding: 7px 7px 26px;
  border-radius: 3px;
  box-shadow:
    0 2px 4px rgba(17, 24, 39, 0.12),
    0 12px 28px rgba(17, 24, 39, 0.28);
  transition: transform 0.25s ease;
}
.fs-cta-polaroid img {
  display: block;
  width: 118px;
  height: 88px;
  object-fit: cover;
  object-position: center center;
}
.fs-cta-polaroid--back {
  left: 2px;
  top: 16px;
  transform: rotate(-5deg);
  z-index: 1;
}
.fs-cta-polaroid--front {
  right: 2px;
  top: 4px;
  transform: rotate(4deg);
  z-index: 2;
}
.fs-cta-banner:hover .fs-cta-polaroid--back { transform: rotate(-6deg) translateY(-2px); }
.fs-cta-banner:hover .fs-cta-polaroid--front { transform: rotate(5deg) translateY(-3px); }
@media (prefers-reduced-motion: reduce) {
  .fs-cta-polaroid--back { transform: rotate(-2deg); }
  .fs-cta-polaroid--front { transform: rotate(2deg); }
  .fs-cta-banner:hover .fs-cta-polaroid--back,
  .fs-cta-banner:hover .fs-cta-polaroid--front { transform: none; }
}

/* International — compact EU country picker */
.fs-intl-section {
  position: relative;
  margin-top: 40px;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 248, 255, 0.98) 42%, rgba(255, 247, 252, 0.97) 100%);
  border: 1px solid rgba(157, 52, 235, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 40px rgba(85, 71, 254, 0.07);
  overflow: hidden;
}
.fs-intl-section__glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 58, 157, 0.16) 0%, rgba(157, 52, 235, 0.07) 42%, transparent 72%);
  pointer-events: none;
}
.fs-intl-section__head {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-bottom: 16px;
}
.fs-intl-section__eyebrow {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--fs-brand-gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fs-intl-section__title {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.fs-intl-section__hint {
  margin: 0;
  color: var(--fs-muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 480px;
}
.fs-intl-countries {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}
.fs-country-picker {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.fs-country-picker--active {
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  width: 100%;
}
.fs-country-picker--soon {
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  margin-top: 14px;
}
.fs-intl-more {
  margin: 14px 0 0;
  padding: 0;
  width: auto;
}
.fs-intl-more__toggle {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 12px 16px;
  min-height: 48px;
  width: auto;
  max-width: 100%;
  border-radius: 11px;
  background: #fff;
  border: 1px solid var(--fs-border);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--fs-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.fs-intl-more__toggle::-webkit-details-marker {
  display: none;
}
.fs-intl-more__toggle::marker {
  content: "";
}
.fs-intl-more__toggle:hover {
  border-color: var(--fs-purple);
  box-shadow: 0 2px 8px rgba(157, 52, 235, 0.18);
}
.fs-intl-more__label,
.fs-intl-more__count,
.fs-intl-more__chev {
  font-weight: 800;
  color: var(--fs-text);
}
.fs-intl-more__count {
  white-space: nowrap;
}
.fs-intl-more__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  margin-top: -1px;
  transition: transform 0.22s ease;
}
.fs-intl-more[open] .fs-intl-more__chev {
  transform: rotate(90deg);
}
body.fs-portal .fs-country-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 24px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
  animation: fs-country-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.fs-portal .fs-country-card:nth-child(1) { animation-delay: 0.02s; }
body.fs-portal .fs-country-card:nth-child(2) { animation-delay: 0.04s; }
body.fs-portal .fs-country-card:nth-child(3) { animation-delay: 0.06s; }
body.fs-portal .fs-country-card:nth-child(4) { animation-delay: 0.08s; }
body.fs-portal .fs-country-card:nth-child(5) { animation-delay: 0.1s; }
body.fs-portal .fs-country-card:nth-child(6) { animation-delay: 0.12s; }
@keyframes fs-country-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body.fs-portal a.fs-country-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 40px rgba(17, 24, 39, 0.08);
}
.fs-country-card--locked {
  cursor: not-allowed;
  opacity: 0.92;
}
.fs-country-card--locked .fs-country-card__flag {
  filter: grayscale(0.2) saturate(0.9);
}
.fs-country-card--locked:hover {
  transform: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 24px rgba(17, 24, 39, 0.05);
}
.fs-country-card--locked .fs-country-card__name {
  color: var(--fs-muted);
}
.fs-country-card__lock {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(85, 71, 254, 0.42) 0%,
    rgba(157, 52, 235, 0.48) 48%,
    rgba(253, 58, 157, 0.44) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.fs-country-card__lock-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(157, 52, 235, 0.14);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.1);
  color: var(--fs-purple);
}
.fs-country-card__lock-inner svg {
  color: var(--fs-purple);
}
.fs-country-card__lock-inner strong {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fs-country-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fs-country-card__status--soon {
  color: var(--fs-muted);
}
.fs-country-card__status--soon svg {
  width: 14px;
  height: 14px;
  color: var(--fs-purple);
  opacity: 0.75;
}
.fs-country-card--spotlight .fs-country-card__visual {
  aspect-ratio: 16 / 9;
}
.fs-country-picker--active .fs-country-card__visual {
  aspect-ratio: 16 / 9;
}
.fs-country-picker--soon .fs-country-card__visual {
  aspect-ratio: 16 / 8;
}
.fs-country-card__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eceaf4;
}
.fs-country-card__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
body.fs-portal a.fs-country-card:hover .fs-country-card__flag {
  transform: scale(1.06);
}
body.fs-portal a.fs-country-card .fs-country-card__visual-fade,
body.fs-portal a.fs-country-card .fs-country-card__visual::after {
  display: none;
}
.fs-country-card__visual-fade {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(85, 71, 254, 0.1) 28%,
    rgba(157, 52, 235, 0.24) 58%,
    rgba(253, 58, 157, 0.32) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.fs-country-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(85, 71, 254, 0.14) 0%,
    rgba(157, 52, 235, 0.1) 42%,
    rgba(253, 58, 157, 0.16) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.fs-country-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #15803d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fs-country-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
}
.fs-country-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 12px 12px;
  width: 100%;
}
.fs-country-picker--soon .fs-country-card__body {
  padding: 8px 10px 10px;
}
.fs-country-picker--soon .fs-country-card__code,
.fs-country-picker--soon .fs-country-card__status {
  display: none;
}
.fs-country-picker--soon .fs-country-card__lock-inner strong {
  display: none;
}
.fs-country-picker--soon .fs-country-card__lock-inner {
  padding: 7px;
  border-radius: 12px;
}
.fs-country-picker--soon .fs-country-card__name {
  font-size: 13px;
}
.fs-country-card__code {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(157, 52, 235, 0.55);
}
.fs-country-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--fs-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
body.fs-portal a.fs-country-card:hover .fs-country-card__name {
  color: var(--fs-purple);
}
.fs-country-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--fs-pink);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}
.fs-country-card__action svg {
  transition: transform 0.22s ease;
}
body.fs-portal a.fs-country-card:hover .fs-country-card__action {
  opacity: 1;
  transform: none;
  color: var(--fs-purple);
}
body.fs-portal a.fs-country-card:hover .fs-country-card__action svg {
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .fs-intl-section {
    margin-left: -16px;
    margin-right: -16px;
    padding: 22px 16px 18px;
    border-radius: 18px;
  }
  .fs-intl-countries {
    max-width: none;
    width: 100%;
    align-items: stretch;
  }
  .fs-country-picker--active {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .fs-country-picker--active .fs-country-card {
    border-radius: 10px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 4px 14px rgba(17, 24, 39, 0.05);
  }
  .fs-country-picker--active .fs-country-card__visual {
    aspect-ratio: 4 / 3;
  }
  .fs-country-picker--active .fs-country-card__body {
    align-items: center;
    padding: 6px 4px 8px;
    gap: 0;
  }
  .fs-country-picker--active .fs-country-card__code,
  .fs-country-picker--active .fs-country-card__action {
    display: none;
  }
  .fs-country-picker--active .fs-country-card__name {
    font-size: 11px;
    text-align: center;
    line-height: 1.15;
  }
  body.fs-portal a.fs-country-card:hover {
    transform: none;
  }
}
@media (max-width: 600px) {
  .fs-country-picker--soon {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }
  .fs-country-picker--soon .fs-country-card {
    border-radius: 8px;
  }
  .fs-country-picker--soon .fs-country-card__visual {
    aspect-ratio: 4 / 3;
  }
  .fs-country-picker--soon .fs-country-card__body {
    padding: 5px 3px 6px;
  }
  .fs-country-picker--soon .fs-country-card__name {
    font-size: 10px;
    text-align: center;
    line-height: 1.1;
  }
  .fs-country-picker--soon .fs-country-card__lock-inner {
    padding: 5px;
    border-radius: 8px;
  }
  .fs-country-picker--soon .fs-country-card__lock-inner svg {
    width: 14px;
    height: 14px;
  }
  .fs-country-card__action {
    opacity: 1;
    transform: none;
  }
}

/* Search page */
.fs-search-page { padding-top: 24px; }
.fs-search-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}
.fs-filters {
  background: #fff;
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  padding: 22px;
  position: sticky;
  top: calc(var(--fs-header-h) + 12px);
}
.fs-filters h3 { margin: 0 0 18px; font-size: 1.05rem; }
.fs-filter-group { margin-bottom: 18px; }
.fs-filter-group > label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--fs-text);
  margin-bottom: 8px;
}
.fs-filter-group input,
.fs-filter-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--fs-border);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}
.fs-filter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fs-filter-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fs-filter-type {
  padding: 8px 12px;
  border: 1px solid var(--fs-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
}
.fs-filter-type.is-on {
  border-color: var(--fs-purple);
  background: rgba(157, 52, 235, 0.08);
  color: var(--fs-purple);
}
.fs-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.fs-results-head h1 { margin: 0; font-size: 1.65rem; letter-spacing: -0.02em; }
.fs-results-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fs-results-toolbar select {
  padding: 10px 14px;
  border: 1px solid var(--fs-border);
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  background: #fff;
}

/* Detail page */
.fs-breadcrumb {
  font-size: 13px;
  color: var(--fs-muted);
  margin-bottom: 20px;
}
.fs-breadcrumb a:hover { color: var(--fs-purple); }
.fs-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.fs-detail-gallery {
  background: #fff;
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.fs-detail-gallery__main {
  aspect-ratio: 16/10;
  background: #e5e7eb;
}
.fs-detail-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.fs-detail-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
}
.fs-detail-gallery__thumb {
  flex: 0 0 72px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
}
.fs-detail-gallery__thumb.is-active {
  border-color: var(--fs-purple);
  opacity: 1;
}
.fs-detail-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.fs-detail-title { font-size: 1.5rem; margin: 0 0 8px; letter-spacing: -0.02em; }
.fs-detail-address { color: var(--fs-muted); margin: 0 0 20px; }
.fs-detail-specs {
  background: #fff;
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  padding: 24px;
  margin-bottom: 24px;
}
.fs-detail-specs h2 { font-size: 1rem; margin: 0 0 16px; }
.fs-detail-specs dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin: 0;
}
.fs-detail-specs dt { font-size: 12px; color: var(--fs-muted); font-weight: 600; }
.fs-detail-specs dd { margin: 0; font-weight: 700; font-size: 15px; }
.fs-detail-desc {
  background: #fff;
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  padding: 24px;
  line-height: 1.65;
  color: #374151;
}
.fs-paywall {
  background: #fff;
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  padding: 28px;
  position: sticky;
  top: calc(var(--fs-header-h) + 12px);
  box-shadow: var(--fs-shadow);
}
.fs-paywall__label { font-size: 13px; color: var(--fs-muted); margin: 0 0 4px; }
.fs-paywall__price { font-size: 2rem; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.03em; }
.fs-paywall__hint {
  font-size: 14px;
  color: var(--fs-muted);
  margin: 0 0 16px;
  padding: 12px;
  background: #f0fdf4;
  border-radius: 8px;
  color: #166534;
}
.fs-paywall__blur {
  position: relative;
  margin: 16px 0;
  padding: 14px;
  background: #f9fafb;
  border-radius: 8px;
  max-height: 100px;
  overflow: hidden;
  font-size: 14px;
}
.fs-paywall__blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #f9fafb);
}
.fs-paywall ul {
  margin: 0 0 20px;
  padding-left: 18px;
  font-size: 14px;
  color: var(--fs-muted);
}
.fs-paywall .fs-portal-btn { width: 100%; margin-bottom: 8px; }

/* Try app — intro + sources hub + steps + download */
.fs-try-app {
  margin-top: clamp(56px, 5vw, 72px);
}
.fs-try-app__intro {
  text-align: center;
  margin-bottom: 28px;
}
.fs-try-app__title {
  margin: 0;
  display: inline-block;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: var(--fs-led-border-linear);
  background-size: 320% 100%;
  animation: fs-led-border-flow-linear var(--fs-try-app-title-duration) linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fs-sources-hub {
  position: relative;
  padding: 8px 0 12px;
}
.fs-sources-hub__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.fs-sources-hub__title {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fs-text);
}
.fs-sources-hub__accent {
  background: linear-gradient(90deg, var(--fs-purple) 0%, var(--fs-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fs-sources-hub__lead {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fs-muted);
}
.fs-sources-hub__lead--strong {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--fs-text);
}
.fs-sources-hub__lead + .fs-sources-hub__lead {
  margin-bottom: 32px;
}
.fs-sources-hub__diagram-scaler {
  display: contents;
}
.fs-sources-hub__diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px) minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(64px, auto));
  gap: 22px 32px;
  align-items: center;
  min-height: 420px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.fs-sources-hub__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.fs-sources-hub__lines--compact {
  display: none;
}
.fs-sources-hub__line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 10 8;
  animation: fs-sources-hub-line 2.4s linear infinite;
}
.fs-sources-hub__line--left {
  stroke: url(#fsHubGradLeft);
}
.fs-sources-hub__line--right {
  stroke: url(#fsHubGradRight);
}
@keyframes fs-sources-hub-line {
  to { stroke-dashoffset: -36; }
}
.fs-sources-hub__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}
.fs-sources-hub__list--left li:nth-child(1) { grid-column: 1; grid-row: 1; justify-self: end; }
.fs-sources-hub__list--left li:nth-child(2) { grid-column: 1; grid-row: 2; justify-self: end; }
.fs-sources-hub__list--left li:nth-child(3) { grid-column: 1; grid-row: 3; justify-self: end; }
.fs-sources-hub__list--right li:nth-child(1) { grid-column: 3; grid-row: 1; justify-self: start; }
.fs-sources-hub__list--right li:nth-child(2) { grid-column: 3; grid-row: 2; justify-self: start; }
.fs-sources-hub__list--right li:nth-child(3) { grid-column: 3; grid-row: 3; justify-self: start; }
.fs-sources-hub__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(100%, 320px);
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(157, 52, 235, 0.14);
  box-shadow: 0 4px 16px rgba(85, 71, 254, 0.06);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--fs-text);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.fs-sources-hub__pill-icon {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--fs-purple);
}
.fs-sources-hub__pill-icon svg {
  display: block;
}
.fs-sources-hub__pill-text {
  min-width: 0;
}
.fs-sources-hub__pill-label--short {
  display: none;
}
.fs-sources-hub__phone {
  grid-column: 2;
  grid-row: 1 / -1;
  justify-self: center;
  align-self: center;
  position: relative;
  z-index: 1;
}
.fs-sources-hub__phone-stack {
  position: relative;
  display: block;
  width: clamp(250px, 34vw, 340px);
  max-width: 100%;
  line-height: 0;
}
.fs-sources-hub__phone-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(85, 71, 254, 0.14));
}
.fs-sources-hub__phone-img--map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.fs-sources-hub__phone-stack .fs-sources-hub__phone-img--list {
  animation: fs-hub-phone-fade-list 6s ease-in-out infinite;
}
.fs-sources-hub__phone-stack .fs-sources-hub__phone-img--map {
  animation: fs-hub-phone-fade-map 6s ease-in-out infinite;
}
@keyframes fs-hub-phone-fade-list {
  0%, 42% { opacity: 1; }
  50%, 92% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fs-hub-phone-fade-map {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}
.fs-app-steps {
  margin-top: 28px;
  padding: 8px 0 4px;
}
.fs-app-steps__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fs-text);
}
.fs-app-steps__accent {
  background: var(--fs-brand-gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fs-app-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.fs-app-steps__card {
  border-radius: 18px;
  padding: 18px 16px 10px;
  color: #fff;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.fs-app-steps__card--purple { background: linear-gradient(160deg, #9D34EB 0%, #7B22C9 100%); }
.fs-app-steps__card--blue { background: linear-gradient(160deg, #5547FE 0%, #4338D4 100%); }
.fs-app-steps__card--pink { background: linear-gradient(160deg, #FD3A9D 0%, #E02885 100%); }
.fs-app-steps__label {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}
.fs-app-steps__name {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.fs-app-steps__preview {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 4px;
}
.fs-app-steps__preview img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: clamp(280px, 38vw, 360px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}
.fs-try-app .fs-app-download {
  margin-top: clamp(48px, 7vw, 80px);
}

/* App download — open layout on page background */
.fs-app-download {
  position: relative;
  margin: 40px 0 0;
  padding: 8px 0 clamp(24px, 4vw, 44px);
}
.fs-app-download__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.fs-app-download__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fs-purple);
}
.fs-app-download__badge svg {
  flex-shrink: 0;
  color: var(--fs-purple);
}
.fs-app-download__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fs-text);
}
.fs-app-download__lead {
  margin: 0 auto 20px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fs-muted);
}
.fs-app-download__bullets {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-width: 420px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: var(--fs-text);
}
.fs-app-download__bullets li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.45;
  text-align: center;
}
.fs-app-download__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fs-app-download__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 20px;
}
.fs-app-download__store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 20px 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #000;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.fs-portal a.fs-app-download__store,
body.fs-portal a.fs-app-download__store .fs-app-download__store-label,
body.fs-portal a.fs-app-download__store .fs-app-download__store-name {
  color: #fff;
}
body.fs-portal a.fs-app-download__store .fs-app-download__store-icon svg {
  color: #fff;
}
.fs-app-download__store:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.fs-app-download__store:focus-visible {
  outline: 3px solid rgba(157, 52, 235, 0.85);
  outline-offset: 3px;
}
.fs-app-download__store-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fs-app-download__store-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}
.fs-app-download__store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
}
.fs-app-download__store-label {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.02em;
}
.fs-app-download__store--google .fs-app-download__store-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.fs-app-download__store-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.fs-app-download__store--google .fs-app-download__store-name {
  font-weight: 500;
}
.fs-app-download__micro {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fs-muted);
}

/* Footer */
.fs-portal-footer {
  background: linear-gradient(160deg, #1a1030 0%, #2a1450 55%, #1f1848 100%);
  color: #fff;
  margin-top: 56px;
  padding: 48px 24px 28px;
}
.fs-portal-footer__inner { max-width: 1320px; margin: 0 auto; }
.fs-portal-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.fs-portal-footer a { color: #9ca3af; font-size: 14px; line-height: 2; }
.fs-portal-footer a:hover { color: #fff; }
.fs-portal-footer h4 {
  margin: 0 0 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fs-portal-footer__logo {
  font-size: 1.15rem;
}
.fs-portal-footer__tagline {
  color: #9ca3af;
  font-size: 14px;
  max-width: 280px;
  margin: 12px 0 0;
}
.fs-portal-footer__tagline + .fs-portal-footer__tagline {
  margin-top: 8px;
}
.fs-portal-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
}

.fs-loading, .fs-empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--fs-muted);
  background: #fff;
  border-radius: var(--fs-radius);
  border: 1px solid var(--fs-border);
}
.fs-error {
  padding: 24px;
  color: var(--fs-red);
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--fs-radius);
}
.fs-error code { font-size: 12px; }

/* Header: taal + menu (Rentola / Airbnb-style) */
.fs-portal-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
  flex-shrink: 0;
}
.fs-portal-globe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #222;
  cursor: pointer;
  transition: background 0.15s;
}
.fs-portal-globe-btn:hover { background: #f3f4f6; }
.fs-portal-menu-wrap {
  position: relative;
}
.fs-portal-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 42px;
  padding: 5px 6px 5px 14px;
  border: 1px solid #222;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.15s;
}
.fs-portal-menu-btn:hover,
.fs-portal-menu-btn.is-open {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.fs-portal-menu-btn__burger {
  width: 14px;
  height: 2px;
  background: #222;
  border-radius: 1px;
  box-shadow: 0 5px 0 #222, 0 -5px 0 #222;
}
.fs-portal-menu-btn__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6b7280;
  color: #fff;
  flex-shrink: 0;
}
body.fs-modal-open { overflow: hidden; }
.fs-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.fs-modal[hidden] {
  display: none !important;
}
.fs-modal--centered:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fs-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}
.fs-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.22);
  animation: fs-modal-in 0.22s ease-out;
}
@keyframes fs-modal-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fs-modal__panel--lang {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: min(520px, calc(100vw - 32px));
  max-height: min(88vh, 520px);
  padding: 24px 20px 20px;
}
.fs-modal__panel--lang .fs-modal__logo {
  margin: 0 0 12px;
}
.fs-modal__panel--lang .fs-modal__title {
  margin: 0 0 16px;
  font-size: 1.25rem;
}
.fs-lang-options-scroll {
  flex: 1 1 auto;
  min-height: 0;
  max-height: min(52vh, 340px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  margin: 0 -2px;
  padding: 2px 4px 6px;
  scrollbar-gutter: stable;
}
.fs-lang-options-scroll::-webkit-scrollbar {
  width: 6px;
}
.fs-lang-options-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}
.fs-lang-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}
.fs-lang-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 88px;
  padding: 12px 6px;
  border: 1px solid var(--fs-border);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--fs-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.12s;
}
.fs-lang-option:hover:not(:disabled) {
  border-color: rgba(157, 52, 235, 0.45);
  background: rgba(157, 52, 235, 0.06);
  transform: translateY(-1px);
}
.fs-lang-option.is-active {
  border-color: var(--fs-purple);
  background: rgba(157, 52, 235, 0.1);
  box-shadow: 0 0 0 1px var(--fs-purple);
}
.fs-lang-option--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fs-lang-option--disabled:hover {
  border-color: var(--fs-border);
  background: #fff;
  transform: none;
}
.fs-lang-option__flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.fs-lang-option__flag img {
  display: block;
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
}
.fs-lang-option__label {
  flex: none;
  line-height: 1.25;
  word-break: break-word;
  hyphens: auto;
}
.fs-lang-option__soon {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fs-muted);
  line-height: 1.2;
}

@media (max-width: 480px) {
  .fs-modal--centered:not([hidden]) {
    padding: 12px;
    align-items: center;
  }
  .fs-modal__panel--lang {
    max-width: min(100%, calc(100vw - 24px));
    max-height: min(90vh, 460px);
    padding: 18px 12px 14px;
  }
  .fs-lang-options-scroll {
    max-height: min(62vh, 320px);
  }
  .fs-lang-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }
  .fs-lang-option {
    min-height: 72px;
    padding: 8px 4px;
    border-radius: 12px;
    font-size: 0.65rem;
  }
  .fs-lang-option__flag {
    width: 30px;
    height: 20px;
  }
  .fs-lang-option__flag img {
    width: 24px;
    height: 18px;
  }
  .fs-lang-option__label {
    font-size: 0.625rem;
  }
  .fs-lang-option__soon {
    font-size: 0.55rem;
  }
}

@media (min-width: 481px) and (max-width: 560px) {
  .fs-lang-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.fs-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  color: var(--fs-muted);
}
.fs-modal__close:hover {
  background: #f3f4f6;
  color: var(--fs-text);
}
.fs-modal__logo {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}
.fs-modal__logo img {
  height: 36px;
  width: auto;
  margin: 0 auto;
}
.fs-modal__title {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2b4a;
  letter-spacing: -0.02em;
}

/* Signup modal */
.fs-modal__panel--signup {
  max-width: min(560px, calc(100vw - 24px));
  max-height: min(92vh, 860px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px 22px 22px;
  text-align: left;
}
.fs-modal__panel--signup .fs-modal__logo {
  margin: 0 0 18px;
}
.fs-signup-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.fs-signup-steps__item {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.fs-signup-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 16px);
  width: calc(100% - 32px);
  height: 2px;
  background: #e5e7eb;
  pointer-events: none;
}
.fs-signup-steps__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}
.fs-signup-steps__item.is-active .fs-signup-steps__num {
  background: #1a2b4a;
  color: #fff;
}
.fs-signup-steps__label {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 600;
  color: #9ca3af;
}
.fs-signup-steps__item.is-active .fs-signup-steps__label {
  color: #1a2b4a;
  font-weight: 800;
}
.fs-signup-modal__title {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 3.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1a2b4a;
  letter-spacing: -0.02em;
}
.fs-signup-modal__lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fs-muted);
}
.fs-signup-benefits {
  margin: 0 0 20px;
  padding: 18px 16px;
  list-style: none;
  border: 1px solid rgba(157, 52, 235, 0.12);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 252, 0.96) 100%);
}
.fs-signup-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.fs-signup-benefits__item + .fs-signup-benefits__item {
  margin-top: 18px;
}
.fs-signup-benefits__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(85, 71, 254, 0.14) 0%, rgba(157, 52, 235, 0.12) 52%, rgba(253, 58, 157, 0.12) 100%);
  color: var(--fs-purple);
  box-shadow: 0 0 0 1px rgba(157, 52, 235, 0.1);
}
.fs-signup-benefits__icon svg {
  display: block;
}
.fs-signup-benefits__text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--fs-text);
}
.fs-signup-benefits__text strong {
  font-weight: 800;
}
.fs-signup-social {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.fs-signup-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--fs-border);
  border-radius: 12px;
  background: #fff;
  color: var(--fs-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.fs-signup-social__btn:hover {
  border-color: #cbd5e1;
  background: #f9fafb;
}
.fs-signup-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.fs-signup-social__icon--apple {
  color: #111827;
}
.fs-signup-divider {
  position: relative;
  margin: 0 0 18px;
  text-align: center;
}
.fs-signup-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--fs-border);
}
.fs-signup-divider span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 12px;
  background: #fff;
  font-size: 13px;
  color: var(--fs-muted);
}
.fs-signup-form {
  display: grid;
  gap: 12px;
}
.fs-signup-field {
  position: relative;
  display: block;
}
.fs-signup-field__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}
.fs-signup-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px 12px 44px;
  border: 1px solid var(--fs-border);
  border-radius: 12px;
  background: #f3f4f6;
  font: inherit;
  font-size: 14px;
  color: var(--fs-text);
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.fs-signup-field input:focus {
  outline: none;
  border-color: rgba(157, 52, 235, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(157, 52, 235, 0.12);
}
.fs-signup-form__error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.4;
}
.fs-signup-form__submit {
  min-height: 48px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--fs-purple) 0%, var(--fs-pink) 100%);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
}
.fs-signup-form__submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.fs-signup-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--fs-muted);
  cursor: pointer;
}
.fs-signup-terms input {
  margin-top: 3px;
  flex-shrink: 0;
}
.fs-signup-terms a {
  color: var(--fs-purple);
  font-weight: 700;
  text-decoration: underline;
}
.fs-signup-login {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--fs-border);
  text-align: center;
  font-size: 14px;
  color: var(--fs-muted);
}
.fs-signup-login a {
  color: #1a2b4a;
  font-weight: 800;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .fs-modal__panel--signup {
    padding: 20px 16px 18px;
  }
  .fs-signup-steps__label {
    font-size: 9px;
  }
}

/* Account menu dropdown (Rentola-style, under pill button) */
.fs-menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 2100;
  min-width: min(320px, calc(100vw - 32px));
  padding: 8px 0 10px;
  background: #fff;
  border: 1px solid var(--fs-border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.14);
  animation: fs-menu-in 0.18s ease-out;
}
.fs-menu-dropdown[hidden] {
  display: none !important;
}
@keyframes fs-menu-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fs-menu-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1a3d5c;
  transition: background 0.12s;
}
.fs-menu-dropdown__item:hover {
  background: #f8fafc;
  color: var(--fs-purple);
}
.fs-menu-dropdown__icon {
  flex-shrink: 0;
  color: #1a3d5c;
}
.fs-menu-dropdown__item:hover .fs-menu-dropdown__icon {
  color: var(--fs-purple);
}
.fs-menu-dropdown__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 16px 6px;
  color: var(--fs-muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.fs-menu-dropdown__divider::before,
.fs-menu-dropdown__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--fs-border);
}
.fs-menu-dropdown__divider--mob-nav {
  display: none;
  padding: 0 16px;
  margin: 6px 0;
  font-size: 0;
  gap: 0;
}
.fs-menu-dropdown__divider--mob-nav::before,
.fs-menu-dropdown__divider--mob-nav::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--fs-border);
}
.fs-menu-dropdown__item--mob-nav {
  display: none;
}

@media (max-width: 1100px) {
  .fs-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-type-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .fs-type-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fs-cta-carousel {
    padding: 12px 0;
    --carousel-slide: min(108px, 31vw);
    --carousel-radius: 16px;
    --carousel-gap: 20px;
    --carousel-segment-count: 11;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }
  .fs-cta-carousel__slide {
    padding: 1.5px;
    box-shadow:
      0 3px 12px rgba(85, 71, 254, 0.08),
      0 2px 6px rgba(17, 24, 39, 0.06);
  }
  .fs-app-steps__card {
    flex-basis: min(86vw, 300px);
    min-height: 340px;
  }
  .fs-app-steps__preview img {
    max-height: min(270px, 56vw);
  }
  .fs-section-title {
    font-size: clamp(1.08rem, 4.8vw, 1.22rem);
  }
  .fs-try-app__title {
    font-size: clamp(1.35rem, 5.8vw, 1.55rem);
  }
  .fs-cta-banner__copy h2 {
    font-size: clamp(1.1rem, 5vw, 1.28rem);
  }
}
@media (max-width: 900px) {
  html,
  body.fs-portal {
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
  }
  .fs-hero-wrap {
    overflow-x: clip;
  }
  .fs-hero-wrap__bg {
    transform: none;
  }
  .fs-hero,
  .fs-hero__content,
  .fs-hero__search-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .fs-portal-main,
  .fs-cta-stack {
    max-width: 100%;
    min-width: 0;
  }
  .fs-cta-stack {
    position: relative;
  }
  .fs-cta-stack,
  .fs-cta-stack__frame,
  .fs-cta-carousel {
    overflow-x: clip;
  }
  body.fs-portal--home .fs-portal-header__inner {
    gap: 16px;
    padding-top: max(8px, env(safe-area-inset-top, 0px));
  }
  body.fs-portal--home .fs-portal-nav__links {
    position: static;
    transform: none;
  }
  body.fs-portal--home .fs-portal-nav {
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: flex-end;
  }
  body.fs-portal--home .fs-hero {
    padding-top: calc(76px + env(safe-area-inset-top, 0px));
  }
  .fs-hero {
    padding: 96px 16px 48px;
  }
  .fs-hero__content h1 {
    max-width: none;
  }
  .fs-hero-wrap {
    min-height: auto;
  }
  .fs-hero-wrap__bg {
    object-position: center 38%;
  }
  .fs-trust-strip--hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    max-width: 100%;
    border-radius: 12px;
  }
  .fs-trust-strip--hero .fs-trust-strip__item {
    flex: unset;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    padding: 12px 14px;
    gap: 8px;
    font-size: 11px;
  }
  .fs-trust-strip--hero .fs-trust-strip__item + .fs-trust-strip__item {
    border-left: none;
  }
  .fs-trust-strip--hero .fs-trust-strip__item:nth-child(2),
  .fs-trust-strip--hero .fs-trust-strip__item:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .fs-trust-strip--hero .fs-trust-strip__item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .fs-trust-strip--hero .fs-trust-strip__icon svg {
    width: 18px;
    height: 18px;
  }
  .fs-hero__search-card {
    padding: 0 12px 14px;
    border-radius: 16px;
  }
  .fs-hero__mode {
    width: 100%;
    display: flex;
    border-bottom-color: rgba(157, 52, 235, 0.14);
  }
  .fs-hero__mode-btn {
    flex: 1;
    text-align: center;
    padding: 14px 10px 12px;
  }
  .fs-hero__mode-btn.is-on::after {
    left: 10px;
    right: 10px;
  }
  .fs-hero__search-form {
    padding-top: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px;
    align-items: stretch;
  }
  .fs-hero__search-fields {
    display: contents;
  }
  .fs-hero__field--grow {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    gap: 0;
    min-height: 48px;
    padding: 0 14px 0 12px;
    border-radius: 999px;
  }
  .fs-hero__field--grow .fs-hero__field-label {
    display: none;
  }
  .fs-hero__search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    width: 100%;
  }
  .fs-hero__search-icon {
    display: block;
    flex-shrink: 0;
    color: var(--fs-purple);
  }
  .fs-hero__field--grow input {
    flex: 1;
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 12px 0;
    line-height: 1.25;
  }
  .fs-hero__field--country {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 8px;
    min-height: 42px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
  }
  .fs-hero__field--country .fs-hero__field-label {
    grid-column: 1;
    justify-self: start;
    display: block;
    text-transform: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    color: #64748b;
  }
  .fs-hero__field--country .fs-hero__field-label::after {
    content: ":";
  }
  .fs-hero__country-icon {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
    color: var(--fs-purple);
  }
  .fs-hero__country-select {
    grid-column: 2;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 30px 6px 10px;
    border-radius: 999px;
    background: rgba(157, 52, 235, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: auto;
    max-width: 100%;
    position: relative;
  }
  .fs-hero__country-select::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    pointer-events: none;
  }
  .fs-hero__field--country select {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--fs-text);
    padding: 0;
    background: none;
  }
  .fs-hero__field {
    padding: 10px 12px;
    gap: 4px;
    background: #fff;
    border: 1.5px solid #c5ced9;
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .fs-hero__field:focus-within {
    border-color: var(--fs-purple);
    box-shadow: 0 0 0 3px rgba(157, 52, 235, 0.14);
  }
  .fs-hero__field input,
  .fs-hero__field select {
    min-height: 0;
    padding: 0;
    line-height: 1.35;
    -webkit-appearance: none;
    appearance: none;
  }
  .fs-hero__field input[type="search"] {
    -webkit-appearance: none;
  }
  .fs-hero__field input::placeholder {
    color: #64748b;
    font-weight: 500;
  }
  .fs-hero__field-divider {
    display: none !important;
  }
  .fs-hero__submit {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 92px;
    margin: 0;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 15px;
    align-self: stretch;
  }
  .fs-hero__secondary {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
  }
  .fs-hero__signup-link {
    display: block;
    margin: 6px 0 0;
  }
  /* Mobile typography & section rhythm */
  .fs-portal-main {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: clamp(40px, 9vw, 56px);
  }
  .fs-section-title {
    font-size: clamp(1.12rem, 4.2vw, 1.32rem);
  }
  .fs-section-head {
    margin-bottom: clamp(14px, 3.5vw, 18px);
    gap: 10px;
  }
  .fs-section-link {
    font-size: 13px;
  }
  .fs-type-row {
    margin-bottom: clamp(24px, 6vw, 32px);
    gap: 8px;
  }
  body.fs-portal a.fs-type-chip {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .fs-city-scroll {
    margin-bottom: 0;
    gap: 12px;
    scrollbar-width: none;
  }
  .fs-city-scroll::-webkit-scrollbar {
    display: none;
  }
  .fs-hscroll-wrap {
    margin-bottom: clamp(24px, 6vw, 32px);
  }
  .fs-hscroll-wrap--recent {
    margin-bottom: 0;
  }
  .fs-hscroll-indicator {
    display: block;
    margin-top: 10px;
    padding: 0 2px;
  }
  .fs-recent-section .fs-hscroll-indicator__track {
    background: rgba(157, 52, 235, 0.16);
  }
  .fs-cta-stack {
    margin-bottom: clamp(28px, 7vw, 36px);
  }
  .fs-cta-banner__copy h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.35rem);
    line-height: 1.28;
  }
  .fs-cta-banner__copy p {
    font-size: clamp(13px, 3.5vw, 14px);
    max-width: none;
    line-height: 1.45;
  }
  .fs-cta-banner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: stretch;
    padding: 20px 18px 18px;
    gap: 16px;
    overflow: hidden;
    max-width: 100%;
  }
  .fs-cta-banner__content {
    padding-right: 0;
    order: 2;
  }
  .fs-cta-banner__copy {
    gap: 10px;
    text-align: left;
  }
  .fs-cta-banner__showcase {
    order: 3;
    max-width: 100%;
    justify-self: center;
    margin: 2px 0 4px;
  }
  .fs-cta-polaroids {
    width: min(220px, 72vw);
    height: 128px;
  }
  .fs-cta-polaroid img {
    width: 108px;
    height: 80px;
  }
  .fs-cta-polaroid--back {
    left: 0;
    top: 14px;
    transform: rotate(-4deg);
  }
  .fs-cta-polaroid--front {
    right: 0;
    top: 2px;
    transform: rotate(3deg);
  }
  .fs-cta-banner__btn {
    order: 4;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    align-self: stretch;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .fs-recent-section {
    margin: clamp(6px, 2vw, 10px) 0 clamp(24px, 6vw, 32px);
    padding: 20px 16px 22px;
    border-radius: 16px;
  }
  #recentListings .fs-listing-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
    scrollbar-width: none;
  }
  #recentListings .fs-listing-grid::-webkit-scrollbar {
    display: none;
  }
  #recentListings .fs-listing-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
  .fs-intl-section {
    margin-top: clamp(24px, 6vw, 32px);
  }
  .fs-try-app {
    margin-top: clamp(44px, 10vw, 64px);
  }
  .fs-try-app__title {
    font-size: clamp(1.72rem, 6.8vw, 2.05rem);
  }
  .fs-try-app__intro {
    margin-bottom: clamp(16px, 4vw, 20px);
  }
  .fs-sources-hub__title {
    font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  }
  .fs-sources-hub {
    padding: 4px 0 12px;
    overflow: visible;
  }
  .fs-sources-hub__lead + .fs-sources-hub__lead {
    margin-bottom: clamp(20px, 5vw, 28px);
  }
  .fs-sources-hub__diagram-scaler {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: auto;
    overflow: visible;
    padding-inline: 6px;
  }
  .fs-sources-hub__diagram {
    --fs-hub-icon: 42px;
    --fs-hub-gap: 22px;
    --fs-hub-phone: 252px;
    --fs-hub-w: calc(var(--fs-hub-icon) * 2 + var(--fs-hub-gap) * 2 + var(--fs-hub-phone));
    display: grid;
    grid-template-columns: var(--fs-hub-icon) var(--fs-hub-phone) var(--fs-hub-icon);
    grid-template-rows: repeat(3, minmax(var(--fs-hub-icon), auto));
    column-gap: var(--fs-hub-gap);
    row-gap: clamp(12px, 3.5vw, 18px);
    align-items: center;
    justify-items: center;
    width: var(--fs-hub-w);
    max-width: calc(100% - 12px);
    min-height: 300px;
    margin-inline: auto;
    transform: scale(min(1, calc((100vw - 24px) / var(--fs-hub-w))));
    transform-origin: center center;
    padding: clamp(8px, 2vw, 16px) 0;
    box-sizing: border-box;
  }
  .fs-sources-hub__list {
    display: contents;
  }
  .fs-sources-hub__list--left li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }
  .fs-sources-hub__list--left li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }
  .fs-sources-hub__list--left li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }
  .fs-sources-hub__list--right li:nth-child(1) {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
  }
  .fs-sources-hub__list--right li:nth-child(2) {
    grid-column: 3;
    grid-row: 2;
    justify-self: center;
  }
  .fs-sources-hub__list--right li:nth-child(3) {
    grid-column: 3;
    grid-row: 3;
    justify-self: center;
  }
  .fs-sources-hub__phone {
    grid-column: 2;
    grid-row: 1 / -1;
    justify-self: center;
    align-self: center;
  }
  .fs-sources-hub__lines--wide {
    display: none;
  }
  .fs-sources-hub__lines--compact {
    display: block;
    opacity: 0;
  }
  .fs-sources-hub__diagram.is-lines-synced .fs-sources-hub__lines--compact {
    opacity: 1;
  }
  .fs-sources-hub__lines--compact .fs-sources-hub__line {
    stroke-width: 2.5;
  }
  .fs-sources-hub__lines--compact .fs-sources-hub__line--left {
    stroke: url(#fsHubGradLeftCompact);
  }
  .fs-sources-hub__lines--compact .fs-sources-hub__line--right {
    stroke: url(#fsHubGradRightCompact);
  }
  .fs-sources-hub__phone-img {
    width: 100%;
    max-width: 100%;
  }
  .fs-sources-hub__phone-stack {
    width: var(--fs-hub-phone);
    max-width: 100%;
  }
  .fs-sources-hub__pill {
    width: var(--fs-hub-icon);
    height: var(--fs-hub-icon);
    max-width: none;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    gap: 0;
  }
  .fs-sources-hub__pill-icon {
    display: flex;
  }
  .fs-sources-hub__pill-icon svg {
    width: clamp(18px, 5vw, 22px);
    height: clamp(18px, 5vw, 22px);
  }
  .fs-sources-hub__pill-icon--www svg,
  .fs-sources-hub__pill-icon--key svg {
    width: clamp(20px, 5.5vw, 24px);
    height: clamp(20px, 5.5vw, 24px);
  }
  .fs-sources-hub__pill-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .fs-sources-hub__pill-label--full,
  .fs-sources-hub__pill-label--short {
    display: none;
  }
  .fs-app-download__title {
    font-size: clamp(1.18rem, 4.5vw, 1.42rem);
  }
  .fs-app-download__lead {
    font-size: clamp(14px, 3.6vw, 15px);
  }
  .fs-store-ratings-mount--cta {
    order: 1;
    position: static;
    padding: 0 2px 12px;
    max-width: 100%;
    overflow-x: clip;
    background: transparent;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__label {
    white-space: normal;
    color: rgba(255, 255, 255, 0.92);
  }
  .fs-cta-banner .fs-store-ratings-mount--cta .fs-store-ratings__item {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 2px;
    min-height: 0;
  }
  .fs-store-ratings-mount--download {
    margin-bottom: 14px;
  }
  .fs-store-ratings-mount--download .fs-store-ratings {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    flex-direction: unset;
    align-items: stretch;
  }
  .fs-store-ratings-mount--download .fs-store-ratings__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: auto;
    min-height: 0;
    padding: 4px 2px;
  }
  .fs-store-ratings-mount--download .fs-store-ratings__label {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    color: var(--fs-text);
    letter-spacing: -0.02em;
  }
  .fs-store-ratings-mount--download .fs-store-ratings__stars,
  .fs-store-ratings-mount--download .fs-store-ratings__trustpilot {
    gap: 1px;
    justify-content: center;
  }
  .fs-store-ratings-mount--download .fs-store-ratings__star,
  .fs-store-ratings-mount--download .fs-store-ratings__star-half {
    width: 13px;
    height: 13px;
  }
  .fs-store-ratings-mount--download .fs-store-ratings__tp-box {
    width: 13px;
    height: 13px;
    font-size: 8px;
    border-radius: 2px;
  }
  .fs-store-ratings {
    gap: clamp(10px, 2.5vw, 20px);
  }
  .fs-store-ratings__label {
    font-size: 14px;
  }
  .fs-cta-carousel {
    padding: 14px 0;
    --carousel-slide: 128px;
    --carousel-radius: 16px;
    --carousel-gap: 22px;
    --carousel-segment-count: 11;
    /* Iets langzamer dan desktop-proportie; desktop blijft 45s */
    --carousel-ref-loop: calc(11 * 128px + 10 * 22px);
    --carousel-duration: calc(var(--carousel-loop) * 39s / var(--carousel-ref-loop));
  }
  .fs-cta-carousel__slide {
    padding: 2px;
    box-shadow:
      0 4px 14px rgba(85, 71, 254, 0.1),
      0 2px 8px rgba(17, 24, 39, 0.06);
  }
  .fs-search-layout, .fs-detail-layout { grid-template-columns: 1fr; }
  .fs-filters, .fs-paywall { position: static; }
  .fs-portal-search { display: none; }
  .fs-portal-nav-hide-mob { display: none; }
  .fs-portal-header__inner {
    padding: 8px 16px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    gap: 10px;
  }
  .fs-portal-nav__links {
    display: none;
  }
  .fs-portal-nav__actions {
    display: flex;
    flex-shrink: 0;
  }
  .fs-portal-nav__actions .fs-portal-btn--primary {
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 800;
    min-height: 34px;
    box-shadow: 0 2px 10px rgba(157, 52, 235, 0.22);
  }
  .fs-menu-dropdown__item--mob-nav {
    display: flex;
  }
  .fs-menu-dropdown__divider--mob-nav {
    display: flex;
  }
  .fs-portal-nav {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 8px;
  }
  .fs-portal-tools {
    margin-left: 0;
  }
  .fs-portal-logo img {
    width: auto;
    max-height: 28px;
  }
  .fs-try-app .fs-app-download {
    margin-top: clamp(36px, 10vw, 56px);
    padding: 4px 0 clamp(20px, 5vw, 32px);
  }
  .fs-app-download__stores {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    max-width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
  .fs-app-download__store {
    flex: 1 1 140px;
    max-width: calc(50% - 5px);
    min-height: 44px;
    padding: 8px 12px 8px 10px;
    gap: 8px;
    border-radius: 10px;
    justify-content: flex-start;
  }
  .fs-app-download__store-icon {
    width: 22px;
    height: 22px;
  }
  .fs-app-download__store-icon svg {
    width: 22px;
    height: 22px;
  }
  .fs-app-download__store-name {
    font-size: 14px;
  }
  .fs-app-download__store-label {
    font-size: 9px;
  }
  .fs-app-download__store--google .fs-app-download__store-label {
    font-size: 8px;
  }
  .fs-portal-footer {
    margin-top: 40px;
    padding: 36px 20px 24px;
  }
  .fs-portal-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
  .fs-portal-footer__grid > div {
    text-align: center;
  }
  .fs-portal-footer__brand {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fs-portal-footer__tagline {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .fs-portal-footer h4 {
    margin-bottom: 12px;
    font-weight: 800;
    color: #fff;
  }
  .fs-portal-footer a {
    line-height: 2.1;
  }
}

/* Phone layout — structural only; desktop (641px+) uses base CSS unchanged */
@media (max-width: 640px) {
  .fs-store-ratings-mount--cta {
    padding: 6px 4px 8px;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: unset;
    align-items: stretch;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: auto;
    min-height: 0;
    padding: 4px 2px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__label {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.02em;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__stars,
  .fs-store-ratings-mount--cta .fs-store-ratings__trustpilot {
    gap: 1px;
    justify-content: center;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__star,
  .fs-store-ratings-mount--cta .fs-store-ratings__star-half {
    width: 13px;
    height: 13px;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__tp-box {
    width: 13px;
    height: 13px;
    font-size: 8px;
    border-radius: 2px;
  }
  .fs-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .fs-listing-card__title { font-size: 12px; }
  .fs-listing-card__price { font-size: 1.05rem; }
  .fs-listing-card__fav {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }
  .fs-listing-card__badge {
    top: 8px;
    right: 44px;
    font-size: 10px;
    padding: 3px 6px;
  }
  .fs-listing-card__counter {
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 3px 6px;
  }
  .fs-app-steps {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 0;
    padding-right: 0;
  }
  .fs-app-steps__title {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 16px;
  }
  .fs-app-steps__grid {
    display: flex;
    grid-template-columns: unset;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 16px 10px;
  }
  .fs-app-steps__grid::-webkit-scrollbar {
    display: none;
  }
  .fs-app-steps__card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: center;
    min-height: 360px;
  }
  .fs-app-steps__preview img {
    max-height: min(290px, 60vw);
  }
}

/* Desktop CTA banner — lock web layout (never inherit mobile rules above) */
@media (min-width: 901px) {
  .fs-cta-stack {
    position: relative;
  }
  .fs-cta-stack__frame {
    padding-top: 0;
  }
  .fs-store-ratings-mount--cta {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    order: unset;
    padding: 16px 24px 14px;
    background: transparent;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    margin: 0;
    gap: clamp(18px, 4vw, 44px);
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__label {
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    line-height: normal;
    letter-spacing: -0.01em;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__stars,
  .fs-store-ratings-mount--cta .fs-store-ratings__trustpilot {
    gap: 2px;
    justify-content: flex-start;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__star,
  .fs-store-ratings-mount--cta .fs-store-ratings__star-half {
    width: 18px;
    height: 18px;
  }
  .fs-store-ratings-mount--cta .fs-store-ratings__tp-box {
    width: 18px;
    height: 18px;
    font-size: 11px;
    border-radius: 3px;
  }
  .fs-cta-banner {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 270px) auto;
    grid-template-rows: unset;
    align-items: center;
    padding: 68px 28px 26px;
    gap: 36px;
    overflow: hidden;
  }
  .fs-cta-banner__content {
    padding-right: 16px;
    order: unset;
  }
  .fs-cta-banner__copy {
    gap: 8px;
    text-align: left;
  }
  .fs-cta-banner__copy p {
    max-width: 560px;
    line-height: 1.4;
  }
  .fs-cta-banner__showcase {
    order: unset;
    max-width: 270px;
    justify-self: center;
    margin: 0;
  }
  .fs-cta-polaroids {
    width: 244px;
    height: 148px;
  }
  .fs-cta-polaroid img {
    width: 118px;
    height: 88px;
  }
  .fs-cta-polaroid--back {
    left: 2px;
    top: 16px;
    transform: rotate(-5deg);
  }
  .fs-cta-polaroid--front {
    right: 2px;
    top: 4px;
    transform: rotate(4deg);
  }
  .fs-cta-banner__btn {
    order: unset;
    width: auto;
    max-width: none;
    justify-self: center;
    align-self: center;
    min-height: 50px;
    padding: 0 32px;
    border-radius: 11px;
    display: inline-flex;
  }
  .fs-sources-hub__diagram-scaler {
    display: contents;
  }
  .fs-sources-hub__lines--wide {
    display: block;
  }
  .fs-sources-hub__lines--compact {
    display: none;
  }
  .fs-sources-hub__diagram {
    display: grid;
    width: 100%;
    max-width: 1180px;
    min-height: 420px;
    transform: none;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px) minmax(0, 1fr);
    gap: 22px 32px;
  }
  .fs-sources-hub__list {
    display: contents;
  }
  .fs-sources-hub__phone {
    grid-column: 2;
    grid-row: 1 / -1;
  }
  .fs-sources-hub__diagram.is-lines-synced .fs-sources-hub__lines--compact {
    opacity: unset;
  }
  .fs-sources-hub__list--left li:nth-child(1),
  .fs-sources-hub__list--left li:nth-child(2),
  .fs-sources-hub__list--left li:nth-child(3) {
    justify-self: end;
  }
  .fs-sources-hub__list--right li:nth-child(1),
  .fs-sources-hub__list--right li:nth-child(2),
  .fs-sources-hub__list--right li:nth-child(3) {
    justify-self: start;
  }
  .fs-sources-hub__phone-stack {
    width: clamp(250px, 34vw, 340px);
    max-width: none;
  }
  .fs-sources-hub__phone-img {
    width: 100%;
    max-width: none;
  }
  .fs-sources-hub__pill {
    width: auto;
    height: auto;
    max-width: min(100%, 320px);
    padding: 11px 18px;
    border-radius: 999px;
    gap: 8px;
  }
  .fs-sources-hub__pill-icon {
    display: none;
  }
  .fs-sources-hub__pill-text {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }
  .fs-sources-hub__pill-label--full {
    display: inline;
  }
  .fs-sources-hub__pill-label--short {
    display: none;
  }
}
