:root {
  --black: #050505;
  --ink: #10100d;
  --beige: #efe3cf;
  --paper: #f7efdf;
  --neon: #39ff14;
  --muted: rgba(247, 239, 223, 0.72);
  --dark-muted: #625c52;
  --line: rgba(5, 5, 5, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.cursor-glow {
  position: fixed;
  z-index: 2147482500;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(57, 255, 20, 0.22), transparent 66%);
  transition: opacity 0.25s ease;
}

.floating-call {
  position: fixed;
  z-index: 18;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  min-width: 156px;
  padding: 15px 18px;
  border: 1px solid rgba(57, 255, 20, 0.7);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.82);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  box-shadow: 0 0 48px rgba(57, 255, 20, 0.16);
  backdrop-filter: blur(16px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.floating-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-call.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.floating-call span {
  color: rgba(247, 239, 223, 0.72);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.floating-call strong {
  color: var(--neon);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.rer-site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: 230px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid rgba(247, 239, 223, 0.14);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    padding 0.28s ease,
    top 0.28s ease;
}

.rer-site-header.is-scrolled {
  top: 12px;
  left: 34px;
  right: 34px;
  grid-template-columns: 180px 1fr auto auto;
  padding: 6px 10px;
  background: rgba(5, 5, 5, 0.88);
  border-color: rgba(57, 255, 20, 0.28);
  transform: translateY(-4px);
}

.brand {
  width: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.brand img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
}

.rer-site-header.is-scrolled .brand {
  width: 174px;
}

.rer-site-header.is-scrolled .brand img {
  height: 42px;
}

.rer-site-header.is-scrolled .header-cta {
  min-height: 36px;
  padding-inline: 15px;
}

.rer-site-header.is-scrolled .language-toggle {
  min-height: 36px;
  min-width: 46px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--neon);
  transition: transform 0.24s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--neon);
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.12);
  color: var(--neon);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.language-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 78px;
  min-height: 42px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(247, 239, 223, 0.32);
  border-radius: 999px;
  background: rgba(247, 239, 223, 0.08);
  color: var(--paper);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.language-flag {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(247, 239, 223, 0.28);
}

.language-code {
  line-height: 1;
}

.language-toggle:hover,
.language-toggle.is-active {
  border-color: var(--neon);
  background: var(--neon);
  color: var(--black);
}

.mobile-menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(57, 255, 20, 0.55);
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon);
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.rer-site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.rer-site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.rer-site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(57, 255, 20, 0.18), transparent 22%),
    linear-gradient(115deg, #050505 0%, #050505 58%, #16110c 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 33vh;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.96), transparent);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  right: -11vw;
  top: 16vh;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(57, 255, 20, 0.45);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 13%;
  border: 1px solid rgba(247, 239, 223, 0.22);
}

.hero-orbit::after {
  top: 12%;
  left: 12%;
  width: 18px;
  height: 18px;
  background: var(--neon);
  box-shadow: 0 0 34px var(--neon);
}

.hero-team {
  position: absolute;
  right: clamp(18px, 5vw, 90px);
  bottom: 0;
  z-index: 1;
  width: min(38vw, 540px);
  height: min(88vh, 900px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero-team::before {
  content: "";
  position: absolute;
  inset: 14% 2% 0;
  border: 1px solid rgba(247, 239, 223, 0.18);
  border-radius: 999px 999px 0 0;
}

.hero-team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.08), transparent 38%, rgba(5, 5, 5, 0.24));
}

.hero-team img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: saturate(1.05) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 170px 0 122px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(57, 255, 20, 0.34);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.86);
  color: var(--neon);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow:
    0 0 28px rgba(57, 255, 20, 0.1),
    inset 0 0 18px rgba(57, 255, 20, 0.06);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7.6vw, 106px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--neon);
  background: var(--neon);
  color: var(--black);
  box-shadow: 0 0 36px rgba(57, 255, 20, 0.18);
}

.button-primary:hover {
  box-shadow: 0 0 56px rgba(57, 255, 20, 0.34);
}

.button-secondary {
  color: var(--paper);
  background: rgba(247, 239, 223, 0.06);
}

.button-tertiary {
  color: var(--neon);
  background: rgba(57, 255, 20, 0.08);
}

.hero-panel {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 72px;
  width: min(320px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(247, 239, 223, 0.18);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.66);
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  color: var(--neon);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-proof {
  position: absolute;
  z-index: 4;
  left: 28px;
  right: 28px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(247, 239, 223, 0.14);
  border-bottom: 1px solid rgba(247, 239, 223, 0.14);
  background: rgba(5, 5, 5, 0.42);
  backdrop-filter: blur(12px);
}

.hero-proof span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-right: 1px solid rgba(247, 239, 223, 0.14);
  color: rgba(247, 239, 223, 0.74);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  text-align: center;
}

.hero-proof span:last-child {
  border-right: 0;
}

.scroll-note {
  position: absolute;
  z-index: 4;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(247, 239, 223, 0.66);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.ticker {
  position: relative;
  height: clamp(72px, 6vw, 104px);
  contain: layout paint;
  overflow: hidden;
  border-block: 1px solid rgba(57, 255, 20, 0.36);
  background: var(--black);
  color: var(--neon);
}

.ticker-track,
.partner-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  display: flex;
  align-items: center;
  padding: 0 34px;
  font-size: clamp(32px, 4.6vw, 68px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.section-pad {
  padding: clamp(78px, 10vw, 146px) 28px;
}

.intro,
.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 12%, rgba(57, 255, 20, 0.18), transparent 18%),
    linear-gradient(180deg, var(--paper), #eadcc6);
}

.reviews.section-pad {
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}

.intro > div:first-child,
.intro-copy {
  width: min(100%, 620px);
}

.intro > div:first-child {
  justify-self: end;
}

.intro-copy {
  max-width: 560px;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: rgba(5, 5, 5, 0.14);
}

.reviews .section-heading,
.review-grid {
  position: relative;
  z-index: 1;
}

.review-grid {
  gap: 14px;
}

.review-grid blockquote {
  gap: 34px;
  overflow: hidden;
  border-color: rgba(5, 5, 5, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.46), rgba(247, 239, 223, 0.3)),
    rgba(247, 239, 223, 0.58);
  box-shadow: 0 26px 70px rgba(5, 5, 5, 0.08);
}

.review-grid p {
  max-width: 620px;
  color: rgba(16, 16, 13, 0.84);
}

.review-grid cite {
  font-size: 14px;
}

.review-grid blockquote:first-child {
  border-color: rgba(57, 255, 20, 0.48);
  background:
    radial-gradient(circle at 80% 18%, rgba(57, 255, 20, 0.22), transparent 24%),
    linear-gradient(145deg, #050505, #11110d);
  box-shadow: 0 30px 88px rgba(5, 5, 5, 0.18);
}

.review-grid blockquote::before {
  content: "Review";
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(57, 255, 20, 0.38);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.review-carousel {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.review-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 0 12px;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  flex: 0 0 min(690px, 76vw);
  min-height: 286px;
  margin: 0;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 14%, rgba(57, 255, 20, 0.18), transparent 26%),
    #fff8ea;
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.08);
}

.review-card:first-child {
  background:
    radial-gradient(circle at 78% 14%, rgba(57, 255, 20, 0.22), transparent 28%),
    linear-gradient(145deg, #050505, #11110d);
  border-color: rgba(57, 255, 20, 0.5);
  color: var(--paper);
}

.review-card span {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(57, 255, 20, 0.42);
  border-radius: 999px;
  color: var(--neon);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.review-card p {
  max-width: 690px;
  color: rgba(16, 16, 13, 0.86);
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.12;
}

.review-card:first-child p,
.review-card:first-child cite {
  color: var(--paper);
}

.review-card cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.review-controls button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(5, 5, 5, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.review-controls button:hover {
  border-color: var(--neon);
  background: var(--neon);
}

.review-proof {
  width: min(1180px, 100%);
  margin: -16px auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  align-items: stretch;
  border: 1px solid rgba(57, 255, 20, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(57, 255, 20, 0.18), transparent 24%),
    linear-gradient(145deg, #050505, #10100d);
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.16);
}

.review-proof > * {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 18px 22px;
  border-right: 1px solid rgba(247, 239, 223, 0.14);
}

.review-proof span {
  color: rgba(247, 239, 223, 0.7);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.review-proof strong {
  color: var(--paper);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.95;
  text-transform: uppercase;
}

.review-stars {
  color: var(--neon);
  font-style: normal;
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 0 22px rgba(57, 255, 20, 0.35);
}

.review-proof a {
  min-width: 180px;
  align-items: center;
  border-right: 0;
  background: var(--neon);
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.review-proof a:hover {
  background: var(--paper);
  color: var(--black);
}

.review-proof.is-live {
  border-color: rgba(57, 255, 20, 0.34);
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(36px, 7vw, 96px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-copy,
.method-copy {
  color: #4d473e;
  font-size: 20px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--neon);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.audience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(57, 255, 20, 0.16), transparent 18%),
    linear-gradient(180deg, #eadcc6, var(--paper));
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(5, 5, 5, 0.18);
  background: rgba(5, 5, 5, 0.18);
}

.audience-grid article {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 80% 12%, rgba(57, 255, 20, 0.16), transparent 22%),
    #fff8ea;
}

.audience-grid span {
  color: var(--neon);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.audience-grid h3 {
  max-width: 420px;
  margin: 52px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.98;
}

.audience-grid p {
  color: var(--dark-muted);
  line-height: 1.55;
}

.audience-grid ol {
  display: grid;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.audience-grid li {
  padding: 10px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.audience-grid .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.choice-lane {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--black);
  background: var(--black);
}

.choice-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(247, 239, 223, 0.16);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent 42%),
    #080806;
  transition:
    background 0.24s ease,
    color 0.24s ease;
}

.choice-card::after {
  content: "Open";
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.choice-card:hover {
  background: var(--neon);
  color: var(--black);
}

.choice-card span {
  color: var(--neon);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.choice-card:hover span {
  color: var(--black);
}

.choice-card strong {
  max-width: 420px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.98;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(57, 255, 20, 0.3);
  background: var(--black);
  color: var(--paper);
}

.stats article {
  min-height: 200px;
  padding: 30px;
  border-right: 1px solid rgba(247, 239, 223, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats strong {
  color: var(--neon);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

.stats strong.stat-phone {
  font-size: clamp(25px, 2.6vw, 42px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.stats span {
  color: rgba(247, 239, 223, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 42px;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article,
.review-grid blockquote {
  position: relative;
  min-height: 330px;
  margin: 0;
  padding: 28px;
  overflow: hidden;
  background: #fff8ea;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 68% 18%, rgba(57, 255, 20, 0.2), transparent 20%),
    linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent 38%),
    #fff8ea;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: -30% -20%;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.32), transparent 22%),
    linear-gradient(112deg, transparent 0 42%, rgba(57, 255, 20, 0.22) 48%, transparent 56% 100%);
  transform: translateX(-34%) rotate(8deg);
  animation: serviceScan 5.2s ease-in-out infinite;
}

.service-grid article > * {
  position: relative;
  z-index: 1;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--black);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: none;
}

.service-grid p,
.review-grid p {
  color: var(--dark-muted);
  line-height: 1.55;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 38px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(5, 5, 5, 0.28);
  border-radius: 999px;
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.service-cta:hover {
  border-color: var(--neon);
  background: var(--neon);
  color: var(--black);
}

@keyframes serviceScan {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-34%) rotate(8deg);
  }

  50% {
    opacity: 0.48;
    transform: translateX(24%) rotate(8deg);
  }
}

.showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  min-height: 62vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(57, 255, 20, 0.12), transparent 26%),
    var(--beige);
  border-block: 1px solid var(--black);
}

.showcase-copy {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 82px) 28px;
  border-right: 1px solid var(--black);
}

.showcase-copy > * {
  width: min(620px, 100%);
  margin-left: auto;
}

.showcase-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--dark-muted);
  font-size: 20px;
  line-height: 1.55;
}

.showcase-stack {
  align-self: start;
  display: grid;
  grid-template-rows: none;
}

.showcase-stack article {
  min-height: 220px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid var(--black);
  background: rgba(247, 239, 223, 0.48);
}

.showcase-stack article:last-child {
  border-bottom: 0;
}

.showcase-stack span {
  color: var(--neon);
  font-size: 32px;
  font-weight: 950;
  -webkit-text-stroke: 1px var(--black);
}

.showcase-stack h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 46px);
  text-transform: uppercase;
}

.showcase-stack p {
  grid-column: 2;
  max-width: 560px;
  margin-bottom: 0;
  color: var(--dark-muted);
  line-height: 1.5;
}

.split-signal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 68vh;
  background: var(--black);
  color: var(--paper);
}

.signal-copy,
.signal-item {
  padding: clamp(40px, 6vw, 86px) 28px;
}

.signal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(247, 239, 223, 0.16);
}

.signal-copy > * {
  width: min(560px, 100%);
  margin-left: auto;
}

.signal-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(190px, auto));
}

.signal-item {
  display: block;
  padding: clamp(34px, 4vw, 58px) clamp(30px, 4.4vw, 66px);
  border-bottom: 1px solid rgba(247, 239, 223, 0.16);
  background:
    radial-gradient(circle at 12% 36%, rgba(57, 255, 20, 0.16), transparent 20%),
    #050505;
  transition:
    background 0.24s ease,
    border-color 0.24s ease;
}

.signal-item[open] {
  border-color: rgba(57, 255, 20, 0.4);
  background:
    radial-gradient(circle at 12% 36%, rgba(57, 255, 20, 0.24), transparent 24%),
    #070806;
}

.signal-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: 96px;
  list-style: none;
  cursor: pointer;
}

.signal-item summary:focus {
  outline: none;
}

.signal-item summary:focus-visible {
  box-shadow: inset 0 -2px 0 var(--neon);
}

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

.signal-item summary::after {
  content: "+";
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(57, 255, 20, 0.58);
  border-radius: 999px;
  color: var(--neon);
  font-size: 22px;
  line-height: 1;
}

.signal-item[open] summary::after {
  content: "-";
}

.signal-list span {
  color: var(--neon);
  font-weight: 950;
}

.signal-list strong {
  display: block;
  min-width: 0;
  max-width: 780px;
  margin: 0;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.signal-item p {
  max-width: 680px;
  margin: 18px 0 0 calc(42px + clamp(18px, 2.4vw, 34px));
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.method-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(76px, 10vw, 140px) 28px;
  background: var(--paper);
  color: var(--black);
}

.method-copy {
  align-self: center;
  max-width: 620px;
  margin-left: auto;
  color: var(--dark-muted);
}

.method-copy h2 {
  color: var(--black);
}

.method-copy .button {
  margin-top: 18px;
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  align-self: center;
  max-width: 740px;
  background: var(--black);
  border: 1px solid var(--black);
}

.method-steps article {
  padding: 30px;
  background: #11110f;
  color: var(--paper);
}

.method-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--neon);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.method-steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.team-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 140px) 28px;
  border-top: 1px solid rgba(57, 255, 20, 0.22);
  background:
    radial-gradient(circle at 18% 18%, rgba(57, 255, 20, 0.12), transparent 24%),
    radial-gradient(circle at 84% 42%, rgba(57, 255, 20, 0.1), transparent 22%),
    var(--black);
  color: var(--paper);
}

.team-heading {
  width: min(1180px, 100%);
  margin: 0 auto clamp(30px, 5vw, 62px);
}

.team-heading .eyebrow {
  margin: 0;
}

.team-heading h2 {
  max-width: 840px;
  color: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(57, 255, 20, 0.24);
  background: rgba(57, 255, 20, 0.24);
}

.team-card {
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(57, 255, 20, 0.08), transparent 34%),
    #0b0b09;
}

.team-card figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #11110f;
}

.team-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card div {
  padding: clamp(22px, 3vw, 32px);
}

.team-card span {
  color: var(--neon);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 16px 0 10px;
  color: var(--paper);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.team-email {
  display: inline-flex;
  max-width: 100%;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--neon);
  color: var(--neon);
  font-size: 13px;
  font-weight: 950;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.team-email:hover {
  color: var(--paper);
}

.team-action {
  width: min(1180px, 100%);
  margin: 28px auto 0;
}

.partners {
  background: var(--beige);
  overflow: hidden;
}

.partner-marquee {
  position: relative;
  height: clamp(130px, 15vw, 230px);
  width: 100%;
  border-block: 1px solid var(--black);
  background: var(--black);
  overflow: hidden;
}

.partner-track {
  animation-duration: 26s;
}

.partner-track a {
  display: grid;
  place-items: center;
  min-width: 25vw;
  padding: 0 34px;
  border-right: 1px solid rgba(247, 239, 223, 0.16);
  background: #11110f;
  color: var(--paper);
  transition: background 0.22s ease;
}

.partner-track a:hover {
  background: var(--neon);
}

.partner-track img {
  width: min(68%, 360px);
  max-height: 96px;
  object-fit: contain;
  filter: grayscale(0) contrast(1);
  transition:
    filter 0.22s ease,
    transform 0.22s ease;
}

.partner-track img.partner-huurwoningen {
  width: min(86%, 470px);
  max-height: 86px;
}

.partner-track img.partner-vastgoedcert {
  width: min(94%, 430px);
  max-height: 132px;
}

.partner-track a:hover img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.04);
}

.partner-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 26px;
  border-radius: 8px;
  background: #ffffff;
  color: #111;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.funda-live {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(57, 255, 20, 0.16), transparent 21%),
    linear-gradient(180deg, var(--paper), #eadcc6);
  border-top: 1px solid rgba(5, 5, 5, 0.16);
}

.funda-live-copy {
  width: min(620px, 100%);
}

.funda-live-copy p:not(.eyebrow) {
  color: var(--dark-muted);
  font-size: 20px;
  line-height: 1.55;
}

.funda-live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.funda-live-panel {
  border: 1px solid rgba(5, 5, 5, 0.18);
  background:
    radial-gradient(circle at 82% 16%, rgba(57, 255, 20, 0.18), transparent 24%),
    #080807;
  color: var(--paper);
}

.funda-live-top {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(247, 239, 223, 0.14);
}

.funda-live-top img {
  width: min(210px, 48%);
  max-height: 74px;
  object-fit: contain;
}

.funda-live-top span,
.funda-offer-card span {
  color: var(--neon);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.funda-offer-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.26fr) minmax(0, 0.44fr) minmax(0, 0.3fr);
  gap: clamp(16px, 3vw, 30px);
  align-items: center;
  min-height: 136px;
  padding: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(247, 239, 223, 0.14);
  color: var(--paper);
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.funda-offer-card:last-child {
  border-bottom: 0;
}

.funda-offer-card strong {
  color: var(--paper);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

.funda-offer-card small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.funda-offer-card:hover {
  background: rgba(57, 255, 20, 0.1);
}

.owned-platform {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: stretch;
  padding: clamp(72px, 10vw, 138px) 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(57, 255, 20, 0.18), transparent 24%),
    linear-gradient(135deg, #050505, #11110d);
  color: var(--paper);
  border-block: 1px solid rgba(57, 255, 20, 0.32);
}

.platform-copy {
  width: min(720px, 100%);
  justify-self: end;
  align-self: center;
}

.platform-copy h2 {
  max-width: 720px;
  font-size: clamp(44px, 4.35vw, 72px);
  line-height: 0.96;
}

.platform-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.platform-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(57, 255, 20, 0.2), transparent 28%),
    rgba(247, 239, 223, 0.06);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  transition:
    border-color 0.24s ease,
    transform 0.24s ease,
    background 0.24s ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 43%, rgba(57, 255, 20, 0.16) 50%, transparent 58% 100%);
  transform: translateX(-30%);
  animation: serviceScan 5.8s ease-in-out infinite;
}

.platform-card > * {
  position: relative;
  z-index: 1;
}

.platform-card:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 70% 20%, rgba(57, 255, 20, 0.26), transparent 30%),
    rgba(247, 239, 223, 0.09);
}

.platform-card span {
  color: var(--neon);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-card img {
  width: min(360px, 86%);
  height: auto;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.35));
}

.platform-card strong {
  max-width: 520px;
  color: var(--paper);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.02;
  text-transform: uppercase;
}

.booking-strip {
  padding: clamp(70px, 10vw, 138px) 28px;
  background:
    radial-gradient(circle at 78% 20%, rgba(57, 255, 20, 0.18), transparent 24%),
    var(--black);
  color: var(--paper);
}

.booking-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid rgba(247, 239, 223, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 239, 223, 0.08), rgba(57, 255, 20, 0.08));
}

.booking-inner span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--neon);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-inner h2 {
  max-width: 900px;
}

.booking-inner p {
  max-width: 650px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.booking-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-actions {
  margin-top: clamp(26px, 3.5vw, 46px);
}

.review-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  background: transparent;
  border: 0;
}

.review-grid blockquote {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.1), transparent 42%),
    #fff8ea;
}

.review-grid p {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.22;
}

.review-grid cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.review-grid blockquote:first-child {
  background: var(--black);
  color: var(--paper);
}

.review-grid blockquote:first-child p,
.review-grid blockquote:first-child cite {
  color: var(--paper);
}

.review-grid blockquote::before {
  content: "“";
  color: var(--neon);
  font-size: 62px;
  font-weight: 950;
  line-height: 0.7;
}

.contact-cta {
  width: auto;
  max-width: none;
  margin: 0;
  gap: clamp(22px, 4.4vw, 58px);
  padding: clamp(26px, 3vw, 38px) 28px 0;
  background: var(--black);
  color: var(--paper);
}

.contact-cta > div:first-child {
  width: min(740px, 100%);
  justify-self: end;
}

.contact-cta h2 {
  max-width: 720px;
  font-size: clamp(44px, 4.2vw, 62px);
  line-height: 0.9;
}

.contact-panel {
  display: grid;
  align-content: end;
  gap: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 18px;
}

.contact-details a:hover,
.text-link:hover {
  color: var(--neon);
}

.office-map {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border: 1px solid rgba(57, 255, 20, 0.42);
  border-radius: 8px;
  background: #10110e;
  box-shadow: 0 22px 70px rgba(57, 255, 20, 0.12);
}

.office-map iframe {
  display: block;
  width: 100%;
  min-height: 178px;
  height: 100%;
  border: 0;
}

.map-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--neon);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--neon);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-link:hover {
  background: var(--neon);
  color: var(--black);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--black);
  color: rgba(247, 239, 223, 0.62);
  border-top: 1px solid rgba(57, 255, 20, 0.2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-footer-bar {
  grid-column: 1 / -1;
  margin: 12px -28px 0;
  padding: 20px 28px;
  border-top-color: rgba(57, 255, 20, 0.26);
  background:
    radial-gradient(circle at 56% 50%, rgba(57, 255, 20, 0.08), transparent 28%),
    #050505;
}

.site-footer img {
  width: 150px;
  height: auto;
}

.footer-hours {
  justify-self: center;
  display: grid;
  gap: 5px;
  text-align: center;
}

.footer-hours span {
  color: var(--neon);
  font-size: 11px;
}

.footer-hours strong {
  color: var(--paper);
  font-size: 13px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(57, 255, 20, 0.55);
  border-radius: 999px;
  color: var(--paper);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social:hover {
  border-color: var(--neon);
  background: var(--neon);
  color: var(--black);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-team {
    width: min(44vw, 500px);
    opacity: 0.86;
  }

  h1 {
    max-width: 700px;
  }
}

@media (max-width: 980px) {
  .rer-site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .rer-site-header.is-scrolled {
    left: 12px;
    right: 12px;
    top: 8px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(57, 255, 20, 0.26);
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.94);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
  }

  .rer-site-header.is-menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(57, 255, 20, 0.14);
    color: var(--neon);
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-team {
    right: 50%;
    transform: translateX(50%);
    width: min(84vw, 520px);
    height: 64vh;
    opacity: 0.5;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero-panel {
    display: none;
  }

  .intro,
  .contact-cta,
  .method-band,
  .split-signal,
  .owned-platform,
  .funda-live,
  .showcase,
  .choice-lane {
    grid-template-columns: 1fr;
  }

  .intro > div:first-child,
  .intro-copy {
    width: min(100%, 720px);
    max-width: none;
    justify-self: start;
  }

  .method-copy,
  .signal-copy > *,
  .platform-copy,
  .funda-live-copy,
  .showcase-copy > * {
    margin-left: 0;
  }

  .platform-copy {
    justify-self: start;
  }

  .funda-live-copy {
    width: min(100%, 720px);
  }

  .funda-offer-card {
    grid-template-columns: minmax(100px, 0.24fr) minmax(0, 1fr);
  }

  .funda-offer-card small {
    grid-column: 2;
  }

  .signal-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 239, 223, 0.16);
  }

  .showcase-copy {
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .choice-card {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 239, 223, 0.16);
  }

  .stats,
  .service-grid,
  .review-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-heading,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-heading .eyebrow {
    grid-column: auto;
  }

  .team-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1fr);
  }

  .team-card figure {
    min-height: 340px;
    height: 100%;
  }

  .review-proof {
    grid-template-columns: 1fr;
  }

  .review-proof > * {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 239, 223, 0.14);
  }

  .review-proof a {
    align-items: flex-start;
    border-bottom: 0;
  }

  .partner-track a {
    min-width: 66vw;
  }

  .contact-cta > div:first-child {
    justify-self: start;
  }

  .contact-panel {
    width: min(100%, 720px);
  }
}

@media (max-width: 640px) {
  body {
    min-width: 0;
  }

  main,
  section,
  footer,
  .rer-site-header,
  .hero,
  .section-pad,
  .intro,
  .audience,
  .stats,
  .services,
  .showcase,
  .method-band,
  .split-signal,
  .team-section,
  .partners,
  .funda-live,
  .owned-platform,
  .booking,
  .reviews,
  .contact-cta,
  .site-footer {
    max-width: 100%;
  }

  .rer-site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 7px;
  }

  .brand {
    width: min(132px, 100%);
    min-width: 0;
    padding: 4px 6px;
    justify-content: flex-start;
  }

  .brand img {
    height: 34px;
    max-width: 120px;
  }

  .header-cta {
    display: none;
  }

  .language-toggle {
    min-width: 58px;
    min-height: 38px;
    padding: 0 9px 0 7px;
    font-size: 12px;
    gap: 6px;
  }

  .language-flag {
    width: 22px;
    height: 22px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: clamp(540px, 65svh, 640px);
    height: clamp(540px, 65svh, 640px);
    display: block;
    padding: 0;
  }

  .hero::after {
    display: none;
  }

  .cursor-glow,
  .hero-orbit {
    display: none;
  }

  .hero-team {
    position: absolute;
    inset: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    opacity: 1;
    overflow: hidden;
  }

  .hero-team::before {
    display: none;
  }

  .hero-team::after {
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.08) 36%, rgba(5, 5, 5, 0.78) 76%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.26) 48%, rgba(5, 5, 5, 0.48) 100%);
  }

  .hero-team img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 34px;
    z-index: 4;
    width: auto;
    max-width: calc(100% - 40px);
    min-height: 0;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
  }

  .floating-call {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(31px, 9.6vw, 42px);
    line-height: 0.94;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(32px, 10.5vw, 48px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.15;
  }

  .hero-copy,
  .intro-copy,
  .method-copy {
    font-size: 19px;
    line-height: 1.62;
  }

  .hero-copy {
    max-width: 350px;
    color: rgba(247, 239, 223, 0.84);
    font-size: clamp(14.5px, 3.7vw, 16.5px);
    line-height: 1.35;
  }

  .hero-title {
    max-width: min(100%, 360px);
  }

  .hero-actions {
    width: min(100%, 330px);
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 16px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
    text-align: center;
  }

  .hero-actions .button-tertiary {
    width: auto;
    min-height: auto;
    align-self: flex-start;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(57, 255, 20, 0.9);
    border-radius: 0;
    background: transparent;
    color: var(--neon);
    box-shadow: none;
  }

  .choice-lane,
  .showcase {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .choice-lane > *,
  .showcase > *,
  .showcase-copy > *,
  .showcase-stack > * {
    min-width: 0;
  }

  .choice-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 36px 20px;
  }

  .showcase-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 64px 20px;
  }

  .showcase-copy > * {
    width: 100%;
    max-width: 100%;
  }

  .showcase-stack {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .section-pad,
  .method-band,
  .contact-cta,
  .funda-live,
  .team-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-cta {
    padding-top: 28px;
    padding-bottom: 0;
  }

  .reviews.section-pad {
    padding-top: 48px;
    padding-bottom: 22px;
  }

  .review-track {
    padding-bottom: 10px;
  }

  .review-card {
    min-height: 270px;
    padding: 24px;
  }

  .contact-cta h2 {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .intro,
  .choice-lane,
  .audience,
  .services,
  .showcase,
  .method-band,
  .split-signal,
  .team-section,
  .partners,
  .funda-live,
  .owned-platform,
  .reviews,
  .contact-cta,
  .site-footer,
  .contact-panel,
  .platform-card,
  .review-shell,
  .review-track,
  .partner-marquee,
  .service-grid,
  .audience-grid,
  .team-grid,
  .funda-live-stack {
    width: 100%;
    max-width: 100%;
  }

  .stats,
  .service-grid,
  .review-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .stats article,
  .service-grid article,
  .review-grid blockquote,
  .audience-grid article {
    min-height: auto;
  }

  .team-card {
    display: block;
  }

  .team-card figure {
    min-height: 0;
    height: auto;
  }

  .office-map,
  .office-map iframe {
    min-height: 190px;
  }

  .map-link {
    left: 12px;
    right: 12px;
    justify-content: center;
  }

  .service-grid span {
    margin-bottom: 38px;
  }

  .audience-grid h3 {
    margin-top: 36px;
  }

  .funda-live-actions {
    flex-direction: column;
  }

  .funda-live-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .funda-live-top img {
    width: min(230px, 100%);
  }

  .funda-offer-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .funda-offer-card small {
    grid-column: auto;
  }

  .team-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .signal-item summary {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .signal-item summary::after {
    justify-self: start;
  }

  .signal-item p {
    margin-left: 0;
  }

  .showcase-stack article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-inner div {
    display: grid;
  }

  .partner-track a {
    min-width: 86vw;
    padding: 0 26px;
  }

  .partner-track img {
    width: min(78%, 280px);
    max-height: 74px;
  }

  .partner-track img.partner-vastgoedcert {
    width: min(92%, 360px);
    max-height: 96px;
  }

  .platform-card {
    min-height: 340px;
  }

  .scroll-note {
    display: none;
  }

  .ticker {
    width: 100%;
    max-width: 100vw;
    height: 72px;
    overflow: hidden;
  }

  .ticker-track {
    position: absolute;
    inset: 0 auto 0 0;
    display: flex;
    width: max-content;
    justify-content: flex-start;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    animation: ticker-mobile 28s linear infinite;
    will-change: transform;
  }

  .ticker-track span,
  .ticker-track span:first-child {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    align-items: center;
    justify-content: flex-start;
    padding: 0 18px;
    white-space: nowrap;
    text-align: left;
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    text-align: center;
  }

  .contact-footer-bar {
    margin: 8px -20px 0;
    padding: 18px 20px;
  }

  .site-footer img {
    justify-self: center;
    width: 130px;
  }

  .footer-hours {
    justify-self: center;
  }
}

@keyframes ticker-mobile {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final review polish overrides */
.review-grid {
  gap: 14px;
}

.review-grid blockquote {
  gap: 34px;
  overflow: hidden;
  border-color: rgba(5, 5, 5, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.46), rgba(247, 239, 223, 0.3)),
    rgba(247, 239, 223, 0.58);
  box-shadow: 0 26px 70px rgba(5, 5, 5, 0.08);
}

.review-grid p {
  max-width: 620px;
  color: rgba(16, 16, 13, 0.84);
}

.review-grid cite {
  font-size: 14px;
}

.review-grid blockquote:first-child {
  border-color: rgba(57, 255, 20, 0.48);
  background:
    radial-gradient(circle at 80% 18%, rgba(57, 255, 20, 0.22), transparent 24%),
    linear-gradient(145deg, #050505, #11110d);
  box-shadow: 0 30px 88px rgba(5, 5, 5, 0.18);
}

.review-grid blockquote:first-child p,
.review-grid blockquote:first-child cite {
  color: var(--paper);
}

.review-grid blockquote::before {
  content: "Review";
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(57, 255, 20, 0.38);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}


/* Real Estate Ro header isolation: prevent Houzez/Elementor CSS collisions */
.rer-site-header {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  z-index: 99999 !important;
}

@media (max-width: 980px) {
  .rer-site-header {
    display: grid !important;
  }
}

/* WordPress safety: keep the custom header above plugin/admin layers. */
body.real-estate-ro-front .site-header.rer-site-header {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  z-index: 2147483000 !important;
  pointer-events: auto !important;
}

body.real-estate-ro-front .site-header.rer-site-header:not(.is-scrolled) {
  top: 18px !important;
  left: 24px !important;
  right: 24px !important;
  transform: translateY(0) !important;
}

body.real-estate-ro-front .site-header.rer-site-header.is-scrolled {
  top: 12px !important;
  left: 34px !important;
  right: 34px !important;
  transform: translateY(-4px) !important;
}

body.real-estate-ro-front .cursor-glow {
  display: block !important;
  position: fixed !important;
  z-index: 2147482500 !important;
  pointer-events: none !important;
}

body.admin-bar.real-estate-ro-front .site-header.rer-site-header:not(.is-scrolled) {
  top: calc(18px + var(--wp-admin--admin-bar--height, 32px)) !important;
}

body.admin-bar.real-estate-ro-front .site-header.rer-site-header.is-scrolled {
  top: calc(12px + var(--wp-admin--admin-bar--height, 32px)) !important;
}

@media (max-width: 640px) {
  body.real-estate-ro-front .site-header.rer-site-header,
  body.real-estate-ro-front .site-header.rer-site-header:not(.is-scrolled),
  body.real-estate-ro-front .site-header.rer-site-header.is-scrolled {
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: calc(100vw - 20px) !important;
    transform: translateY(0) !important;
  }

  body.real-estate-ro-front .cursor-glow {
    display: none !important;
  }

  body.admin-bar.real-estate-ro-front .site-header.rer-site-header,
  body.admin-bar.real-estate-ro-front .site-header.rer-site-header:not(.is-scrolled),
  body.admin-bar.real-estate-ro-front .site-header.rer-site-header.is-scrolled {
    top: calc(10px + var(--wp-admin--admin-bar--height, 46px)) !important;
  }
}
