:root {
  --navy: #0b1f3a;
  --navy-soft: #143562;
  --blue: #009cde;
  --blue-2: #38b9ee;
  --ink: #1f2d3d;
  --muted: #66788d;
  --paper: #f5f9fc;
  --white: #ffffff;
  --line: rgba(11, 31, 58, 0.14);
  --radius: 20px;
  --shadow: 0 18px 42px rgba(11, 31, 58, 0.14);
  --brand-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 150'%3E%3Cpath fill='%23009cde' d='M24 146V53L62 22l35 30v62H53z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #edf5fb 0%, #f8fbfd 100%);
  line-height: 1.62;
  animation: page-fade 520ms ease-out both;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image: var(--brand-mark);
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 420px;
  opacity: 0.035;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.bg-orb { position: fixed; pointer-events: none; z-index: -2; opacity: 0.08; }
.bg-orb-one,
.bg-orb-two {
  width: 320px;
  height: 320px;
  background-image: var(--brand-mark);
  background-repeat: no-repeat;
  background-size: contain;
}
.bg-orb-one { top: 80px; left: -80px; transform: rotate(-8deg); }
.bg-orb-two { bottom: 40px; right: -70px; transform: rotate(8deg); }
.bg-orb-one { animation: orb-float-one 9s ease-in-out infinite; }
.bg-orb-two { animation: orb-float-two 11s ease-in-out infinite; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  animation: slide-down 440ms ease-out both;
}

.nav-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand-wrap { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.brand-subtitle {
  margin: 0;
  font-size: 0.72rem;
  color: #6f8197;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: #284666;
  font-weight: 600;
}
.nav-links a { position: relative; padding-bottom: 3px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.menu-toggle__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--navy);
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.menu-toggle__bar:nth-child(1) {
  top: 0;
}

.menu-toggle__bar:nth-child(2) {
  top: 7px;
}

.menu-toggle__bar:nth-child(3) {
  top: 14px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  max-width: min(1180px, 92%);
  margin: 0 auto;
  min-height: 100dvh;
  padding: 0 0 max(28px, env(safe-area-inset-bottom));
}

.mobile-menu__eyebrow {
  margin: 0 0 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu__links a {
  display: block;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mobile-menu__links a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(56, 185, 238, 0.45);
  box-shadow: 0 16px 44px rgba(0, 100, 160, 0.2);
  transform: translateY(-2px);
}

.mobile-menu__links a:focus-visible {
  outline: 2px solid rgba(56, 185, 238, 0.85);
  outline-offset: 3px;
}

.mobile-menu__cta {
  margin-top: auto;
  padding-top: 28px;
}

.mobile-menu__cta-btn {
  box-shadow: 0 16px 36px rgba(0, 120, 190, 0.35);
}

.mobile-menu__cta-btn:hover {
  box-shadow: 0 20px 42px rgba(0, 120, 190, 0.42);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background-color 220ms ease, border-color 220ms ease;
  transform: translateY(0);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(0.96);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 120, 190, 0.28);
}
.btn-ghost {
  background: #fff;
  border: 1px solid #d3deea;
  color: #2c4867;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(44, 72, 103, 0.14);
  border-color: #bfd1e3;
}
.btn-outline-dark {
  border: 1px solid #c9d7e5;
  background: #fff;
  color: #284666;
}
.btn-outline-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(40, 70, 102, 0.14);
  border-color: #b8cbde;
}
.full { width: 100%; }

section { padding: 82px 0; }
.section-soft {
  background: linear-gradient(180deg, #f4f8fc 0%, #eef4fa 100%);
}
.section-surface {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5e7f9f;
}
.section-head { margin-bottom: 26px; }
.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  line-height: 1.17;
}

/* Scroll-triggered fade + slide — staggered parts (see script.js, html.js-reveal in <head>) */
html.js-reveal .reveal-stagger.reveal-on-scroll:not(.is-visible) .reveal-item {
  opacity: 0;
  transform: translateY(26px);
}
html.js-reveal .reveal-stagger.reveal-on-scroll.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.hero { padding-top: 58px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: stretch;
}
.hero-copy-wrap {
  background: linear-gradient(140deg, #fff 0%, #f8fcff 100%);
  border: 1px solid #dbe7f2;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lead {
  margin: 0 0 20px;
  color: #526981;
  font-size: 1.1rem;
  max-width: 48ch;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.micro-trust span {
  border: 1px solid #dce8f3;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.86rem;
  background: #f4faff;
  color: #4f6983;
}

.hero-media-card {
  position: relative;
  min-height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% center;
}
.hero-media-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(10, 35, 63, 0.92), rgba(8, 26, 48, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #eaf3ff;
}
.hero-media-overlay h3 { margin: 0 0 6px; font-size: 1.25rem; }
.hero-media-overlay p { margin: 0 0 10px; color: #cfdef2; }
.hero-media-overlay ul { margin: 0; padding-left: 18px; }
.hero-media-overlay .btn { margin-top: 12px; }

.proof-grid,
.services .card-grid,
.listings .listing-grid {
  display: grid;
  gap: 16px;
}
.proof-grid { grid-template-columns: repeat(3, 1fr); }
.services .card-grid { grid-template-columns: repeat(5, 1fr); }
.listings .listing-grid { grid-template-columns: repeat(4, 1fr); }

.proof-card,
.card,
.seeker-box,
.listing-card,
.results-main,
.results-cta,
.lead-form {
  background: #fff;
  border: 1px solid #dbe6f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.proof-card,
.card,
.results-main,
.results-cta,
.lead-form { padding: 22px; }

.proof-card:hover,
.card:hover,
.results-main:hover,
.results-cta:hover,
.lead-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(11, 31, 58, 0.16);
  border-color: #c9d8e7;
}

.proof-card h3,
.card h3 { margin: 0 0 8px; }
.proof-card p,
.card p { margin: 0; color: var(--muted); }
.card p { margin-bottom: 12px; }
.card a { color: var(--accent); font-weight: 700; }

.body-cta {
  padding-top: 34px;
  padding-bottom: 34px;
}

.cta-banner {
  border: 1px solid #d6e4f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(15, 110, 168, 0.08), rgba(56, 185, 238, 0.08)),
    #fff;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  align-items: center;
}

.cta-banner h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.2;
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seeker-box { overflow: hidden; }
.seeker-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #dbe6f0;
}
.seeker-tab {
  border: 0;
  border-right: 1px solid #dbe6f0;
  background: #edf5fd;
  color: #2f628e;
  padding: 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.seeker-tab:last-child { border-right: 0; }
.seeker-tab.is-active { background: #ddedff; }

.seeker-form {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.seeker-field-wide { grid-column: 1 / -1; }
.seeker-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #4f6881;
  font-weight: 600;
}
.seeker-form input,
.seeker-form select,
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #ced9e5;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.seeker-submit { margin-top: 8px; width: fit-content; min-width: 180px; }
.seeker-status { grid-column: 1 / -1; margin: 2px 0 0; color: #54708b; }

.listing-card { overflow: hidden; }
.listing-card.is-hidden { display: none; }
.listing-card img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  transition: transform 320ms ease;
}
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 36px rgba(11, 31, 58, 0.18);
}
.listing-card:hover img {
  transform: scale(1.04);
}
.listing-content { padding: 14px; }
.listing-content h3 { margin: 0 0 6px; }
.listing-content p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.center { text-align: center; margin-top: 24px; }

.mini-cta {
  margin-top: 18px;
  border: 1px solid #dce8f3;
  border-radius: 16px;
  background: #f5faff;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mini-cta p {
  margin: 0;
  color: #4e647b;
  font-weight: 600;
}

.results-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.results-main ul { margin: 0; padding-left: 18px; color: #4f6982; }
.results-cta h3 { margin: 0 0 8px; }
.results-cta p { margin: 0 0 14px; color: var(--muted); }

.contact {
  background: linear-gradient(180deg, #f2f7fc 0%, #f8fcff 100%);
}
.contact-copy { color: #4e647b; max-width: 56ch; }
.lead-form { display: flex; flex-direction: column; gap: 8px; }
.lead-form label { font-weight: 600; color: #4f6881; }
.small { margin: 0; font-size: 0.84rem; color: #7a8ea5; }

.contact-grid > div:first-child {
  position: relative;
  z-index: 1;
}

.contact-grid > div:first-child::before {
  content: "";
  position: absolute;
  inset: -10px 10px -10px auto;
  width: 180px;
  background-image: var(--brand-mark);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

.site-footer {
  background: linear-gradient(180deg, #0f2747 0%, #0a1c34 100%);
  color: #cbd8ea;
  padding: 40px 0 22px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(203, 216, 234, 0.25);
}
.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 10px;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 8px;
}
.footer-brand p { margin: 0 0 8px; max-width: 40ch; color: #c5d4e7; }
.footer-col h4 { margin: 0 0 10px; color: #f4f8ff; }
.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 8px;
  color: #c5d4e7;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@keyframes page-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-down {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes orb-float-one {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-10px) rotate(-6deg); }
}

@keyframes orb-float-two {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(10px) rotate(10deg); }
}

.wa-float-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  border: 0;
  border-radius: 999px;
  width: 60px;
  height: 60px;
  background: linear-gradient(140deg, var(--blue), var(--blue-2));
  color: #fff;
  padding: 0;
  box-shadow: 0 14px 28px rgba(0, 91, 150, 0.34);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.wa-float-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.wa-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M27.8 4.2A15.5 15.5 0 0 0 3.7 22.5L2 30l7.7-1.6a15.5 15.5 0 0 0 7.3 1.8h.1A15.6 15.6 0 0 0 27.8 4.2zm-10.7 23a13 13 0 0 1-6.6-1.8l-.5-.3-4.6 1 .9-4.5-.3-.5a13 13 0 1 1 11.1 6.1zm7.1-9.8c-.4-.2-2.6-1.3-3-1.4-.4-.2-.7-.2-1 .2s-1.1 1.4-1.4 1.7c-.2.2-.5.3-.9.1-.4-.2-1.7-.6-3.3-1.9-1.2-1.1-2.1-2.4-2.3-2.8-.2-.4 0-.6.2-.8l.6-.7c.2-.2.3-.4.4-.7.1-.2 0-.5 0-.7l-.9-2.2c-.2-.5-.5-.5-.8-.5h-.7c-.3 0-.7.1-1 .5-.4.4-1.5 1.5-1.5 3.7s1.6 4.3 1.8 4.6c.2.3 3.2 4.9 7.8 6.9 1.1.5 2 .8 2.7 1 .1 0 .3.1.4.1 1 .3 2 .2 2.7.1.8-.1 2.6-1.1 3-2.2.4-1.1.4-2 .3-2.2-.1-.2-.4-.3-.8-.5z'/%3E%3C/svg%3E");
}

.wa-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 38, 0.58);
  backdrop-filter: blur(6px);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wa-modal[data-open="true"] {
  display: flex;
}

.wa-modal-card {
  width: min(560px, 100%);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%),
    url("https://images.realworks.nl/servlets/images/crm.singlefileentity/3200007.png");
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: right -22px top -20px;
  border: 1px solid #d2e1ef;
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(9, 33, 59, 0.28);
  padding: 20px;
  position: relative;
}

.wa-modal-card h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  color: #153b60;
}

.wa-modal-card p {
  margin: 0 0 12px;
  color: #5b738b;
}

.wa-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #54708c;
}

.wa-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-form label {
  font-weight: 600;
  color: #3f6180;
}

.wa-form input,
.wa-form select,
.wa-form textarea {
  width: 100%;
  border: 1px solid #ccd9e6;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.wa-form input:focus-visible,
.wa-form select:focus-visible,
.wa-form textarea:focus-visible {
  outline: none;
  border-color: #7dbde4;
  box-shadow: 0 0 0 4px rgba(56, 185, 238, 0.2);
}

@media (max-width: 1200px) { .services .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1100px) {
  .hero-grid,
  .results-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .listings .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; }
}
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) {
  section { padding: 60px 0; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-wrap > .btn,
  .nav-links,
  .brand-subtitle { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu[data-open="true"] {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 100;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(168deg, #061526 0%, #0b1f3a 38%, #102f4d 72%, #0c2844 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: mobile-menu-in 0.38s ease-out both;
  }

  .mobile-menu[data-open="true"]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--brand-mark);
    background-repeat: repeat;
    background-position: 12% 8%;
    background-size: min(420px, 92vw);
    opacity: 0.09;
    pointer-events: none;
  }

  .mobile-menu[data-open="true"]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(ellipse 95% 65% at 50% -5%, rgba(0, 156, 222, 0.28), transparent 52%),
      radial-gradient(ellipse 70% 50% at 100% 100%, rgba(56, 185, 238, 0.14), transparent 55%),
      radial-gradient(ellipse 60% 45% at 0% 80%, rgba(0, 156, 222, 0.1), transparent 50%);
    pointer-events: none;
  }

  .mobile-menu[data-open="true"] .mobile-menu__inner {
    padding-top: max(92px, calc(56px + env(safe-area-inset-top)));
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .hero-copy-wrap { padding: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .proof-grid,
  .services .card-grid,
  .listings .listing-grid,
  .seeker-form { grid-template-columns: 1fr; }
  .mini-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .mini-cta .btn {
    width: 100%;
  }
  .seeker-field-wide { grid-column: auto; }
  .seeker-submit { width: 100%; }

  .wa-float-btn {
    right: 14px;
    bottom: 14px;
  }
}
@media (max-width: 640px) { .footer-main { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .container { width: 94%; }
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.45rem); }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { animation: none !important; transition: none !important; }
  html.js-reveal .reveal-on-scroll:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
  }
  html.js-reveal .reveal-stagger .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
