    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      /* Brand palette (kept) + refinements */
      --black: #1a1a1a;
      --ink: #211d18;           /* warm near-black for dark surfaces */
      --white: #ffffff;
      --off-white: #f7f5f2;
      --gold: #b5482c;
      --gold-hover: #d4674f;
      --gold-deep: #a8412a;
      --gold-soft: rgba(181, 72, 44, 0.10);
      --text-muted: #6b635b;
      --text-soft: #8a817a;
      --border: #e6e1db;
      --border-dark: #d0cbc5;
      --success: #5cb85c;
      --surface: #faf8f5;
      --surface-dark: #f0ece8;
      --card-bg: #ffffff;
      --roi-bar-bg: #f0ece8;

      /* Spacing scale (4px base) */
      --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
      --space-4: 1rem;     --space-5: 1.5rem;  --space-6: 2rem;
      --space-8: 3rem;     --space-10: 4rem;   --space-12: 6rem;
      --section-y: clamp(4.5rem, 9vw, 7.5rem);

      /* Radius scale */
      --r-sm: 8px;  --r-md: 12px;  --r-lg: 18px;  --r-xl: 24px;  --r-pill: 100px;

      /* Shadow scale (warm-tinted) */
      --shadow-sm: 0 1px 2px rgba(40,30,24,0.06), 0 1px 3px rgba(40,30,24,0.05);
      --shadow-md: 0 6px 18px rgba(40,30,24,0.08), 0 2px 6px rgba(40,30,24,0.05);
      --shadow-lg: 0 20px 50px rgba(40,30,24,0.13), 0 6px 16px rgba(40,30,24,0.07);
      --shadow-gold: 0 10px 26px rgba(181, 72, 44,0.30);

      /* Motion */
      --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --dur: 0.22s;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--black);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    section {
      scroll-margin-top: 80px;
    }

    /* Respect reduced-motion: disable reveals, count-ups, smooth scroll */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      .fade-in { opacity: 1 !important; transform: none !important; }
    }

    h1 {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 400;
      line-height: 1.08;
      color: var(--black);
      letter-spacing: -0.01em;
    }

    h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--black);
    }

    h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.3;
      color: var(--black);
    }

    .label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .text-muted {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    /* Buttons */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9375rem;
      border-radius: var(--r-pill);
      padding: 0.9rem 2.25rem;
      cursor: pointer;
      transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                  transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
      text-decoration: none;
      line-height: 1;
    }
    .btn-primary:hover {
      background: var(--gold);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }
    .btn-primary:active { transform: translateY(0); }

    .btn-filled {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--gold-hover), var(--gold-deep));
      border: 1.5px solid transparent;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9375rem;
      border-radius: var(--r-pill);
      padding: 0.9rem 2.25rem;
      cursor: pointer;
      transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease),
                  box-shadow var(--dur) var(--ease);
      text-decoration: none;
      line-height: 1;
      box-shadow: var(--shadow-sm);
    }
    .btn-filled:hover {
      filter: brightness(1.06);
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }
    .btn-filled:active { transform: translateY(0); }

    /* Scroll animation — hidden state is scoped to .js-enabled (set by an
       inline head script) so content stays visible if JS fails or is off. */
    .fade-in {
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
      will-change: opacity, transform;
    }
    .js-enabled .fade-in {
      opacity: 0;
      transform: translateY(28px);
    }
    .js-enabled .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================
       NAVBAR
    ============================ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      height: 72px;
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .navbar-logo .logo-mark {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }

    .navbar-logo .logo-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--black);
    }

    /* Two-tone wordmark: the "FLOW" carries the accent colour */
    .logo-text-accent { color: var(--gold); }
    .footer-brand-name .logo-text-accent { color: var(--lime); }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }

    .navbar-links a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--black);
      text-decoration: none;
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      transition: border-color 0.2s ease;
    }

    .navbar-links a:hover {
      border-bottom-color: var(--gold);
    }

    .navbar-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 28px;
      height: 28px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--black);
      transition: all 0.3s ease;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--white);
      z-index: 2000;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu a {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--black);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .mobile-menu a:hover {
      color: var(--gold);
    }

    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: var(--black);
      font-size: 2rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    /* ============================
       HERO
    ============================ */
    .hero {
      position: relative;
      min-height: 88vh;
      background:
        radial-gradient(120% 80% at 85% 0%, rgba(181, 72, 44,0.20) 0%, transparent 55%),
        radial-gradient(90% 70% at 0% 100%, rgba(181, 72, 44,0.10) 0%, transparent 50%),
        linear-gradient(150deg, #14100c 0%, #1d1610 45%, #281b13 100%);
      color: #fff;
      display: flex;
      align-items: center;
      padding-top: 72px;
      overflow: hidden;
    }

    /* Subtle grid texture over the hero */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 80%);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-top: 2.25rem;
    }

    .hero-trust {
      display: flex;
      gap: 2rem;
      margin-top: 2.75rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .hero-trust-item {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.6);
    }
    .hero-trust-item svg {
      color: var(--gold-hover);
      flex-shrink: 0;
    }

    .navbar-phone {
      font-size: 0.875rem;
      color: var(--black);
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color var(--dur) var(--ease);
    }
    .navbar-phone:hover { color: var(--gold); }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: var(--gold);
      color: #fff;
      text-transform: uppercase;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 100px;
      padding: 0.4rem 1rem;
      margin-bottom: 2rem;
      letter-spacing: 0.04em;
    }
    .live-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #34d399;
      border-radius: 50%;
      animation: pulse-dot 1.8s ease-in-out infinite;
      box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    }
    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
      50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    }

    .hero h1 {
      color: #fff;
      max-width: 700px;
    }

    .hero-subtitle {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.75);
      max-width: 520px;
      margin-top: 1.5rem;
      line-height: 1.7;
    }

    .hero-body {
      max-width: 600px;
      margin-top: 1.5rem;
    }

    .hero-body p {
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      margin-bottom: 0.75rem;
    }

    .hero-body p:last-child {
      margin-bottom: 0;
    }

    .hero .btn-hero {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--gold-hover), var(--gold-deep));
      border: 1.5px solid transparent;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9375rem;
      border-radius: var(--r-pill);
      padding: 0.95rem 2.4rem;
      cursor: pointer;
      transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease),
                  box-shadow var(--dur) var(--ease);
      text-decoration: none;
      line-height: 1;
      box-shadow: var(--shadow-gold);
    }

    .hero .btn-hero:hover {
      filter: brightness(1.08);
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(181, 72, 44,0.42);
    }
    .hero .btn-hero:active { transform: translateY(0); }

    /* Secondary hero action (ghost) */
    .hero .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.85);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9375rem;
      text-decoration: none;
      padding: 0.95rem 0.5rem;
      transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
    }
    .hero .btn-hero-secondary:hover { color: #fff; gap: 0.75rem; }
    .hero .btn-hero-secondary svg { transition: transform var(--dur) var(--ease); }
    .hero .btn-hero-secondary:hover svg { transform: translateX(3px); }

    /* ============================
       SEARCH SECTION
    ============================ */
    .search-section {
      background: var(--off-white);
      padding: 7rem 0;
    }

    .search-section .label,
    .search-section h2 {
      text-align: center;
    }

    .search-section h2 {
      margin-bottom: 3rem;
    }

    .search-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0;
      overflow: hidden;
      max-width: 720px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
    }

    .search-top-row {
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--border);
    }

    .search-field {
      flex: 1;
      padding: 1.25rem 1.5rem;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .search-field:last-of-type {
      border-right: 1px solid var(--border);
    }

    .search-field label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
      display: block;
    }

    .search-field select,
    .search-field input:not(.range-slider) {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--black);
      border: none;
      outline: none;
      background: transparent;
      width: 100%;
      padding: 0;
    }

    .search-submit-wrap {
      display: flex;
      justify-content: center;
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border);
    }

    .search-submit-wrap .btn-filled {
      white-space: nowrap;
    }

    .search-sliders {
      padding: 1.75rem 1.5rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .slider-row {
      width: 100%;
    }

    .slider-row label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
      display: block;
    }

    .slider-wrap {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .slider-wrap .range-slider {
      flex: 1;
    }

    .slider-min, .slider-max {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      color: var(--text-muted);
      white-space: nowrap;
      min-width: 2.5rem;
    }

    .slider-min { text-align: right; }
    .slider-max { text-align: left; }

    /* Range slider */
    .range-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      border-radius: 3px;
      background: var(--border);
      outline: none;
      margin-top: 0.5rem;
      cursor: pointer;
    }

    .range-slider::-webkit-slider-runnable-track {
      height: 6px;
      border-radius: 3px;
    }

    .range-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold);
      cursor: pointer;
      border: 3px solid #fff;
      box-shadow: 0 1px 6px rgba(0,0,0,0.25);
      margin-top: -8px;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .range-slider::-webkit-slider-thumb:hover {
      background: var(--gold-hover);
      transform: scale(1.15);
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .range-slider::-moz-range-track {
      height: 6px;
      border-radius: 3px;
      background: var(--border);
    }

    .range-slider::-moz-range-progress {
      height: 6px;
      border-radius: 3px;
      background: var(--gold);
    }

    .range-slider::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold);
      cursor: pointer;
      border: 3px solid #fff;
      box-shadow: 0 1px 6px rgba(0,0,0,0.25);
    }

    .slider-field label span {
      font-weight: 600;
      color: var(--black);
      font-size: 0.9375rem;
    }

    .more-filters-toggle {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--text-muted);
      background: none;
      border: none;
      cursor: pointer;
      padding: 1rem 1.5rem;
      text-decoration: underline;
      transition: color 0.2s ease;
    }

    .more-filters-toggle:hover {
      color: var(--black);
    }

    .more-filters {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 1.5rem;
    }

    .more-filters.open {
      max-height: 800px;
      padding: 1rem 1.5rem 1.5rem;
    }

    .filter-category {
      margin-bottom: 1.25rem;
    }

    .filter-category:last-child {
      margin-bottom: 0;
    }

    .filter-category-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 0.5rem;
    }

    .filters-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 2rem;
    }

    .filters-grid label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--black);
      cursor: pointer;
    }

    .filters-grid input[type="checkbox"] {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      min-width: 20px;
      border: 1.5px solid var(--border-dark);
      border-radius: 5px;
      background: #fff;
      cursor: pointer;
      position: relative;
      transition: all 0.2s ease;
    }

    .filters-grid input[type="checkbox"]:hover {
      border-color: var(--gold);
      background: rgba(181, 72, 44, 0.08);
    }

    .filters-grid input[type="checkbox"]:checked {
      background: var(--gold);
      border-color: var(--gold);
    }

    .filters-grid input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    /* Month Range Slider */
    .month-range {
      margin-top: 0.25rem;
    }

    .month-range-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--black);
      margin-bottom: 0.75rem;
      display: block;
    }

    .month-range-label span {
      color: var(--gold);
      font-weight: 600;
    }

    .dual-range-wrap {
      position: relative;
      height: 36px;
      display: flex;
      align-items: center;
    }

    .dual-range-track {
      position: absolute;
      width: 100%;
      height: 4px;
      background: var(--border);
      border-radius: 2px;
      pointer-events: none;
    }

    .dual-range-fill {
      position: absolute;
      height: 4px;
      background: var(--gold);
      border-radius: 2px;
      pointer-events: none;
    }

    .dual-range-wrap input[type="range"] {
      -webkit-appearance: none;
      appearance: none;
      position: absolute;
      width: 100%;
      height: 4px;
      background: transparent;
      pointer-events: none;
      margin: 0;
    }

    .dual-range-wrap input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid #fff;
      cursor: pointer;
      pointer-events: auto;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 0 1px var(--gold);
    }

    .dual-range-wrap input[type="range"]::-moz-range-thumb {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid #fff;
      cursor: pointer;
      pointer-events: auto;
      box-shadow: 0 0 0 1px var(--gold);
    }

    .month-ticks {
      display: flex;
      justify-content: space-between;
      margin-top: 0.25rem;
      padding: 0 2px;
    }

    .month-ticks span {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      color: var(--text-muted);
      text-align: center;
      width: 0;
      display: flex;
      justify-content: center;
    }

    .search-message {
      display: none;
      text-align: center;
      padding: 2rem 1.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
    }

    .search-results {
      display: none;
      padding: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .search-results-heading {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 1rem;
    }

    .mock-listing {
      display: flex;
      gap: 1.25rem;
      padding: 1.25rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      margin-bottom: 0.75rem;
      transition: border-color 0.2s ease;
      align-items: center;
    }

    .mock-listing:last-child {
      margin-bottom: 0;
    }

    .mock-listing:hover {
      border-color: var(--gold);
    }

    .mock-listing-img {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      background: var(--surface-dark);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
    }

    .mock-listing-info {
      flex: 1;
      min-width: 0;
    }

    .mock-listing-title {
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9375rem;
      color: var(--black);
      margin-bottom: 0.25rem;
    }

    .mock-listing-details {
      font-size: 0.8125rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .mock-listing-price {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1.125rem;
      color: var(--gold);
      white-space: nowrap;
    }

    .mock-listing-unit {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 400;
    }

    .search-results-cta {
      text-align: center;
      margin-top: 1.25rem;
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .search-results-cta a {
      color: var(--gold);
      text-decoration: underline;
    }

    @media (max-width: 640px) {
      .mock-listing {
        flex-direction: column;
        align-items: flex-start;
      }
      .mock-listing-img {
        width: 100%;
        height: 60px;
      }
    }

    /* ============================
       SPACE CARDS (Dynamic Listings)
    ============================ */
    .listing-count {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .listing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    @media (max-width: 768px) {
      .listing-grid { grid-template-columns: 1fr; }
    }

    .space-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s;
    }

    .space-card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

    .space-card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.25rem 1.25rem 0;
    }

    .space-card-header .mock-listing-img {
      width: 48px;
      height: 48px;
      border-radius: 8px;
    }

    .space-card-type {
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gold);
    }

    .space-card-avail {
      display: block;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .space-card-avail-now {
      color: #5cb85c;
      font-weight: 500;
    }

    .space-card-body {
      padding: 0.75rem 1.25rem;
      flex: 1;
    }

    .space-card-title {
      font-weight: 600;
      font-size: 1rem;
      color: var(--black);
      margin-bottom: 0.375rem;
    }

    .space-card-desc {
      font-size: 0.8125rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 0.75rem;
    }

    .space-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.375rem;
    }

    .space-card-tag {
      display: inline-block;
      font-size: 0.6875rem;
      font-weight: 500;
      background: var(--off-white);
      color: var(--text-muted);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }

    .space-card-footer {
      padding: 0.75rem 1.25rem 1.25rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .space-card-footer .btn-filled {
      font-size: 0.8125rem;
      padding: 0.5rem 1rem;
      white-space: nowrap;
    }

    /* ============================
       ENQUIRY MODAL
    ============================ */
    .enquiry-modal {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.55);
      z-index: 3000;
      justify-content: center;
      align-items: flex-start;
      overflow-y: auto;
      padding: 3rem 1rem;
    }

    .enquiry-modal.active {
      display: flex;
    }

    .enquiry-modal-card {
      background: var(--white);
      border-radius: 12px;
      width: 100%;
      max-width: 520px;
      padding: 2rem;
      position: relative;
    }

    .enquiry-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-muted);
      line-height: 1;
    }

    .enquiry-modal-card h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 0.25rem;
    }

    .enquiry-modal-card .enquiry-listing-label {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .enquiry-modal-card .form-group {
      margin-bottom: 0.875rem;
    }

    .enquiry-modal-card label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .enquiry-modal-card input,
    .enquiry-modal-card select,
    .enquiry-modal-card textarea {
      width: 100%;
      padding: 0.5rem 0.75rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--black);
    }

    .enquiry-modal-card textarea {
      resize: vertical;
      min-height: 70px;
    }

    .enquiry-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    @media (max-width: 480px) {
      .enquiry-form-row { grid-template-columns: 1fr; }
    }

    /* ============================
       HOW IT WORKS — 4 STEPS
    ============================ */
    .four-steps {
      background: var(--off-white);
      padding: 7rem 0;
      text-align: center;
    }

    .four-steps h2 {
      margin-bottom: 1rem;
    }

    .four-steps > .container > p {
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto 4rem;
    }

    .steps-row {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      max-width: 900px;
      margin: 0 auto 2.5rem;
    }

    .steps-row::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(12.5% + 18px);
      right: calc(12.5% + 18px);
      height: 2px;
      background: var(--border-dark);
    }

    .step-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .step-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.75rem;
      color: var(--gold);
      margin-bottom: 1.25rem;
      position: relative;
      box-shadow: var(--shadow-sm);
      transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
    }

    .step-num {
      position: absolute;
      top: -7px;
      right: -7px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--gold);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-sm);
    }

    .step-item:hover .step-circle {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      background: var(--gold);
      color: #fff;
    }

    .step-item h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .step-item p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 200px;
      margin: 0 auto;
    }

    @media (max-width: 640px) {
      .steps-row {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
      }
      .steps-row::before {
        top: 0;
        bottom: 0;
        left: 36px;
        right: auto;
        width: 2px;
        height: auto;
      }
      .step-item {
        flex-direction: row;
        gap: 1.25rem;
        text-align: left;
      }
      .step-circle {
        min-width: 72px;
        margin-bottom: 0;
      }
      .step-item p {
        max-width: none;
      }
    }

    /* ============================
       HOW IT WORKS — TABS
    ============================ */
    .how-it-works {
      background: var(--off-white);
      padding: 7rem 0;
    }

    .tab-bar {
      display: flex;
      gap: 2.5rem;
      border-bottom: 1px solid var(--border);
      margin-top: 2rem;
      margin-bottom: 3.5rem;
    }

    .tab-btn {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      background: none;
      border: none;
      padding: 0.75rem 0;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -1px;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .tab-btn.active {
      color: var(--black);
      border-bottom-color: var(--gold);
    }

    .tab-btn:hover {
      color: var(--black);
    }

    .tab-panel {
      display: none;
    }

    .tab-panel.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .tab-content .label {
      margin-bottom: 0.5rem;
    }

    .tab-content h2 {
      margin-bottom: 1.25rem;
    }

    .tab-content p {
      color: var(--text-muted);
      margin-bottom: 2rem;
      max-width: 480px;
    }

    .tab-steps {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .tab-steps .step {
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .tab-steps .step strong {
      font-weight: 600;
    }

    .tab-image-placeholder {
      background: #eae6e1;
      border-radius: 12px;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    /* ============================
       USE CASES
    ============================ */
    .use-cases {
      background: var(--white);
      padding: 7rem 0;
    }

    .use-cases h2 {
      margin-bottom: 0.75rem;
    }

    .use-cases > .container > p {
      color: var(--text-muted);
      max-width: 560px;
      margin-bottom: 3.5rem;
    }

    .use-cases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
    }

    .use-case-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 1.75rem 1.75rem 1.75rem 2rem;
      box-shadow: var(--shadow-sm);
      transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
      overflow: hidden;
    }

    .use-case-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--gold);
      transform: scaleY(0.35);
      transform-origin: top;
      transition: transform var(--dur) var(--ease-out);
    }

    .use-case-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-dark);
    }

    .use-case-card:hover::before { transform: scaleY(1); }

    .use-case-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      margin-bottom: 1.1rem;
      border-radius: var(--r-sm);
      background: rgba(151, 96, 29, 0.08);
      color: var(--gold);
      transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease-out);
    }

    .use-case-icon svg {
      width: 22px;
      height: 22px;
    }

    .use-case-card:hover .use-case-icon {
      background: var(--gold);
      color: #fff;
      transform: translateY(-2px);
    }

    .use-case-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.4rem;
    }

    .use-case-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    /* ============================
       SOCIAL PROOF
    ============================ */
    .social-proof {
      background: var(--white);
      padding: 5rem 0;
      border-top: 1px solid var(--border);
    }

    .social-proof h2 {
      text-align: center;
      margin-bottom: 0.75rem;
    }

    .social-proof > .container > p {
      text-align: center;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto 3rem;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
    }

    .testimonial-card {
      background: var(--off-white);
      border-radius: 12px;
      padding: 2rem;
    }

    .testimonial-card blockquote {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--black);
      margin-bottom: 1.25rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gold);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .testimonial-name {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--black);
    }

    .testimonial-role {
      font-size: 0.8125rem;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================
       FAQ
    ============================ */
    .faq-section {
      background: var(--off-white);
      padding: 7rem 0;
    }

    .faq-section h2 {
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--black);
      text-align: left;
      line-height: 1.4;
    }

    .faq-question:hover {
      color: var(--gold);
    }

    .faq-icon {
      font-size: 1.25rem;
      color: var(--text-muted);
      flex-shrink: 0;
      margin-left: 1rem;
      transition: transform 0.2s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer-inner {
      padding-bottom: 1.25rem;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
    }

    /* ============================
       PRICING
    ============================ */
    .pricing-section {
      background: var(--off-white);
      padding: 7rem 0;
    }

    .pricing-section h2 {
      margin-bottom: 0.75rem;
    }

    .pricing-section > .container > p {
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 3.5rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .pricing-card {
      background: #fff;
      border: 1px solid var(--border);
      border-top: 3px solid var(--gold);
      border-radius: var(--r-md);
      padding: 2.5rem;
      box-shadow: var(--shadow-sm);
      transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .pricing-card h3 {
      margin-bottom: 1rem;
    }

    .pricing-amount {
      font-family: 'DM Sans', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--black);
      line-height: 1.1;
    }

    .pricing-unit {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-left: 0.25rem;
    }

    .pricing-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

    .pricing-footnote {
      font-size: 0.8125rem;
      color: var(--text-muted);
      font-style: italic;
    }

    /* Rate card */
    .rate-card-section {
      margin-top: 3rem;
    }

    .rate-card-toggle {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--gold);
      background: none;
      border: 1.5px solid var(--gold);
      border-radius: 100px;
      padding: 0.875rem 2.25rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .rate-card-toggle:hover {
      background: var(--gold);
      color: #fff;
    }

    .rate-card-toggle.active {
      background: var(--gold);
      color: #fff;
    }

    .rate-card {
      display: none;
      margin-top: 2rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .rate-card.open {
      display: block;
    }

    .rate-card-search {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .rate-card-search input {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--black);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      width: 100%;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .rate-card-search input:focus {
      border-color: var(--gold);
    }

    .rate-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--border);
      overflow-x: auto;
    }

    .rate-tab {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-muted);
      background: none;
      border: none;
      padding: 0.75rem 1.25rem;
      cursor: pointer;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .rate-tab.active {
      color: var(--black);
      border-bottom-color: var(--gold);
    }

    .rate-tab:hover {
      color: var(--black);
    }

    .rate-table {
      width: 100%;
      border-collapse: collapse;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
    }

    .rate-table thead th {
      text-align: left;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border);
      background: var(--roi-bar-bg);
    }

    .rate-table tbody tr {
      border-bottom: 1px solid var(--border);
      transition: background 0.15s ease;
    }

    .rate-table tbody tr:last-child {
      border-bottom: none;
    }

    .rate-table tbody tr:hover {
      background: var(--off-white);
    }

    .rate-table tbody tr.hidden {
      display: none;
    }

    .rate-table td {
      padding: 0.75rem 1.5rem;
      color: var(--black);
      vertical-align: top;
    }

    .rate-table td:nth-child(2) {
      font-weight: 600;
      white-space: nowrap;
    }

    .rate-table td:nth-child(3) {
      color: var(--text-muted);
      white-space: nowrap;
    }

    .rate-table td:nth-child(4) {
      color: var(--text-muted);
      font-size: 0.8125rem;
    }

    .rate-card-note {
      padding: 1rem 1.5rem;
      font-size: 0.8125rem;
      color: var(--text-muted);
      font-style: italic;
      border-top: 1px solid var(--border);
    }

    /* ============================
       FOR BUILDING OWNERS
    ============================ */
    .owners-section {
      background: var(--off-white);
      padding: 7rem 0;
    }

    .owners-hero {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 5rem;
    }

    .owners-hero .label {
      text-align: center;
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
    }

    .owners-hero h2 {
      font-size: clamp(2.75rem, 7vw, 4.5rem);
      line-height: 1.05;
      margin-bottom: 1.5rem;
    }

    .owners-hero > p {
      color: var(--text-muted);
      font-size: 1.125rem;
      line-height: 1.8;
      max-width: 640px;
      margin: 0 auto 3.5rem;
    }

    .owners-stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .owners-stat {
      text-align: center;
    }

    .owners-stat-number {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(3rem, 6vw, 4.5rem);
      font-weight: 400;
      color: var(--gold);
      line-height: 1.1;
    }

    .owners-stat-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .comparison-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 2.5rem 2.5rem 2.5rem 2rem;
      box-shadow: var(--shadow-sm);
      transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    }

    .comparison-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .comparison-card.without {
      border-left: 4px solid var(--gold);
    }

    .comparison-card.with {
      border-left: 4px solid var(--success);
    }

    /* Check / cross markers for the with/without lists */
    .comparison-card.with li::before {
      content: '\2713';
      color: var(--success);
      font-weight: 700;
    }
    .comparison-card.without li::before {
      content: '\2715';
      color: var(--gold);
      font-weight: 700;
    }

    /* Owners narrative block */
    .owners-narrative {
      max-width: 720px;
      margin: 3.5rem auto 0;
      text-align: center;
    }
    .owners-narrative h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--black);
    }
    .owners-narrative p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 3rem;
    }
    .owners-narrative p strong { color: var(--black); }
    .owners-narrative .owners-afterpay {
      font-size: 0.9rem;
      margin-bottom: 0;
    }
    .owners-cta {
      text-align: center;
      margin-top: 1.5rem;
    }

    /* Listing form — step 1 layout */
    .listing-intro {
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .listing-intro > p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }
    .listing-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      max-width: 480px;
      margin: 0 auto;
    }
    .listing-grid-2 + .listing-grid-2 { margin-top: 0.75rem; }
    @media (max-width: 480px) {
      .listing-grid-2 { grid-template-columns: 1fr; }
    }

    .comparison-card h3 {
      font-size: 1.35rem;
      margin-bottom: 1.5rem;
    }

    .comparison-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .comparison-card li {
      font-size: 0.9375rem;
      color: var(--text-muted);
      padding-left: 1.25rem;
      position: relative;
    }

    .comparison-card li::before {
      content: '\2014';
      position: absolute;
      left: 0;
      color: var(--text-muted);
    }

    /* ============================
       LISTING FORM
    ============================ */
    .listing-section {
      background: var(--white);
      padding: 7rem 0;
    }

    .listing-section .label,
    .listing-section h2 {
      text-align: center;
    }

    .listing-section h2 {
      margin-bottom: 3rem;
    }

    .listing-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0;
      overflow: hidden;
      max-width: 720px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
    }

    .listing-top-row {
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--border);
    }

    .listing-field {
      flex: 1;
      padding: 1.25rem 1.5rem;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .listing-field:last-child {
      border-right: none;
    }

    .listing-field label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
      display: block;
    }

    .listing-field select,
    .listing-field input {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--black);
      border: none;
      outline: none;
      background: transparent;
      width: 100%;
      padding: 0;
    }

    .listing-sliders {
      padding: 1.75rem 1.5rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .listing-contact {
      padding: 0 1.5rem 1.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
    }

    .listing-contact .form-group.full-width {
      grid-column: 1 / -1;
    }

    .listing-submit-wrap {
      display: flex;
      justify-content: center;
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border);
    }

    .listing-step2-intro {
      padding: 1.75rem 1.5rem 0.5rem;
      text-align: center;
    }
    .listing-step2-intro h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--black);
    }
    .listing-step2-intro p {
      font-size: 0.9375rem;
      color: var(--text-muted);
      margin: 0;
    }
    .listing-step2-actions {
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .listing-step2-actions .btn-outline {
      background: transparent;
      color: var(--black);
      border: 1px solid var(--border-dark);
    }
    .listing-step2-actions .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-group label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      color: var(--black);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      outline: none;
      background: #f7f5f2;
      transition: border-color 0.2s ease;
      width: 100%;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .form-group textarea {
      resize: vertical;
    }

    .form-submit-wrap {
      grid-column: 1 / -1;
      margin-top: 0.5rem;
    }

    .listing-success {
      display: none;
      border-left: 4px solid var(--success);
      background: #e8f5e8;
      border-radius: 8px;
      padding: 2rem;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .listing-error {
      display: none;
      border-left: 4px solid #b5482c;
      background: #fbeae5;
      border-radius: 8px;
      padding: 1.25rem 1.5rem;
      margin-top: 1rem;
      font-size: 0.9375rem;
      line-height: 1.6;
      color: #6b2417;
    }
    .listing-error a { color: inherit; }

    .listing-tag {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      color: var(--text-muted);
      border: 1px solid var(--border);
      padding: 0.35rem 0.75rem;
      border-radius: 100px;
    }

    /* ============================
       FOOTER
    ============================ */
    .site-footer {
      background: #1a1510;
      padding: 5rem 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
    }

    .footer-brand-name {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #faf7f2;
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    .footer-col-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 1.25rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-col a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 4rem;
      padding: 1.5rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.4);
      margin: 0;
    }

    .footer-payments {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.5;
    }
    .footer-payments span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

    /* ============================
       ROI CALCULATOR (Improved)
    ============================ */
    .roi-section {
      background: var(--white);
      padding: 7rem 0;
    }

    .roi-calc {
      background: #1a1510;
      border-radius: 16px;
      max-width: 760px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 80px rgba(26,21,16,0.25);
    }

    .roi-calc .roi-grid-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(26,24,22,0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(26,24,22,0.6) 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: 0.4;
      pointer-events: none;
    }

    .roi-inner {
      position: relative;
      padding: 2.5rem 2.25rem 2rem;
    }

    .roi-inner h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(24px, 4vw, 34px);
      font-weight: 400;
      margin: 0 0 1.75rem;
      line-height: 1.15;
    }

    .roi-inner h2 { color: #faf7f2; }
    .roi-inner h2 .accent { color: var(--gold); }

    .roi-input-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #5c5650;
      margin-bottom: 0.5rem;
      font-family: 'DM Sans', sans-serif;
    }

    .roi-type-buttons {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

    .roi-type-btn {
      padding: 9px 16px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.15s;
    }

    .roi-type-btn:hover { border-color: rgba(255,255,255,0.25); color: #a09a94; }

    .roi-type-btn.active {
      border-color: #faf7f2;
      background: #faf7f2;
      color: #1a1510;
    }

    .roi-inputs-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 1.75rem;
    }

    .roi-qty-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .roi-qty-wrap input[type="range"] {
      flex: 1;
      accent-color: var(--gold);
      height: 4px;
    }

    .roi-qty-wrap input[type="number"] {
      width: 56px;
      padding: 8px;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.08);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      text-align: center;
      font-family: 'DM Sans', sans-serif;
    }

    .roi-qty-wrap input[type="number"]:focus {
      outline: none;
      border-color: var(--gold);
    }

    .roi-months-grid {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
    }

    .roi-month-btn {
      width: 34px;
      height: 34px;
      border-radius: 6px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: #5c5650;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.15s;
      padding: 0;
    }

    .roi-month-btn:hover { border-color: rgba(255,255,255,0.25); color: #a09a94; }

    .roi-month-btn.active {
      border-color: var(--gold);
      background: var(--gold);
      color: #fff;
    }

    .roi-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, #2a2725, transparent);
      margin-bottom: 1.5rem;
    }

    /* Rate comparison bar */
    .roi-rate-comparison {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
      padding: 0.75rem 1rem;
      background: rgba(255,255,255,0.04);
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .roi-rate-badge { text-align: center; }

    .roi-rate-badge .roi-rate-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #5c5650;
      margin-bottom: 2px;
    }

    .roi-rate-badge .roi-rate-value {
      font-family: 'DM Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #faf7f2;
    }

    .roi-rate-badge .roi-rate-value .roi-rate-unit {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .roi-rate-badge.overflow .roi-rate-value { color: var(--success); }

    .roi-rate-vs {
      font-size: 12px;
      font-weight: 700;
      color: #5c5650;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .roi-rate-save-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      background: rgba(181, 72, 44,0.15);
      padding: 3px 8px;
      border-radius: 4px;
    }

    /* Result cards */
    .roi-results-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .roi-result-card {
      padding: 1.25rem;
      border-radius: 10px;
      text-align: center;
    }

    .roi-result-card.lease {
      background: rgba(181, 72, 44,0.08);
      border: 1px solid rgba(181, 72, 44,0.15);
    }

    .roi-result-card.flex {
      background: rgba(47, 143, 91,0.08);
      border: 1px solid rgba(47, 143, 91,0.15);
    }

    .roi-result-card .roi-result-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .roi-result-card.lease .roi-result-title { color: #b5482c; }
    .roi-result-card.flex .roi-result-title { color: var(--success); }

    .roi-result-card .roi-result-amount {
      font-family: 'DM Sans', sans-serif;
      font-size: 30px;
      font-weight: 400;
      margin-bottom: 0.25rem;
    }

    .roi-result-card.lease .roi-result-amount {
      color: var(--text-muted);
      text-decoration: line-through;
      text-decoration-color: rgba(181, 72, 44,0.3);
    }

    .roi-result-card.flex .roi-result-amount { color: #faf7f2; }

    .roi-result-card .roi-result-detail {
      font-size: 12px;
      color: #5c5650;
      line-height: 1.4;
    }

    /* Savings banner */
    .roi-savings-banner {
      background: linear-gradient(135deg, rgba(47, 143, 91,0.12), rgba(181, 72, 44,0.08));
      border: 1px solid rgba(47, 143, 91,0.2);
      border-radius: 12px;
      padding: 1.25rem;
      text-align: center;
      margin-bottom: 1.25rem;
    }

    .roi-savings-banner .roi-savings-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--success);
      margin-bottom: 0.25rem;
    }

    .roi-savings-banner .roi-savings-amount {
      font-family: 'DM Sans', sans-serif;
      font-size: 38px;
      font-weight: 400;
      color: var(--success);
      margin-bottom: 0.25rem;
    }

    .roi-savings-banner .roi-savings-breakdown {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .roi-savings-banner .roi-savings-breakdown strong { color: #faf7f2; }

    .roi-bar-track {
      background: #2a2520;
      border-radius: 8px;
      height: 8px;
      overflow: hidden;
      margin-bottom: 0.5rem;
    }

    .roi-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--success));
      border-radius: 8px;
      transition: width 0.5s ease;
    }

    .roi-bar-label {
      margin: 0 0 1.5rem;
      font-size: 13px;
      color: #5c5650;
      text-align: center;
    }

    .roi-cta-row {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .roi-footnote {
      margin: 0;
      font-size: 11px;
      color: #5c5650;
      text-align: center;
      line-height: 1.5;
    }

    .roi-footnote a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* Lead capture overlay */
    .roi-lead-overlay {
      display: none;
      position: absolute;
      inset: 0;
      background: rgba(26,21,16,0.95);
      z-index: 10;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      border-radius: 16px;
    }

    .roi-lead-overlay.active { display: flex; }

    .roi-lead-form {
      max-width: 380px;
      width: 100%;
      text-align: center;
    }

    .roi-lead-form h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 24px;
      font-weight: 400;
      color: #faf7f2;
      margin-bottom: 0.5rem;
    }

    .roi-lead-form p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }

    .roi-lead-form .roi-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .roi-lead-form input,
    .roi-lead-form select {
      width: 100%;
      padding: 10px 14px;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.06);
      color: #fff;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
    }

    .roi-lead-form input::placeholder { color: #5c5650; }
    .roi-lead-form input:focus, .roi-lead-form select:focus {
      outline: none;
      border-color: var(--gold);
    }

    .roi-lead-form select {
      appearance: none;
      color: #5c5650;
    }

    .roi-lead-form select option {
      background: #1a1510;
      color: #faf7f2;
    }

    .roi-lead-form .roi-form-full { margin-bottom: 1rem; }

    .roi-lead-form .btn-filled {
      width: 100%;
      justify-content: center;
      padding: 14px;
    }

    .roi-lead-form .roi-back-link {
      display: inline-block;
      margin-top: 0.75rem;
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
      border: none;
      background: none;
      font-family: 'DM Sans', sans-serif;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .roi-lead-form .roi-back-link:hover { color: #faf7f2; }

    /* Social proof below calculator */
    .roi-social-proof {
      max-width: 760px;
      margin: 1.75rem auto 0;
      padding: 1.25rem 1.5rem;
      background: #fff;
      border-radius: 12px;
      border: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .roi-social-proof-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(181, 72, 44,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .roi-social-proof-text { flex: 1; }

    .roi-social-proof-stars {
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 2px;
      margin-bottom: 0.25rem;
    }

    .roi-social-proof-quote {
      font-size: 14px;
      color: #4a453f;
      line-height: 1.6;
      margin-bottom: 0.5rem;
      font-style: italic;
    }

    .roi-social-proof-attr {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 600;
    }

    @media (max-width: 640px) {
      .roi-inner { padding: 1.75rem 1.25rem 1.5rem; }
      .roi-inputs-row { grid-template-columns: 1fr; }
      .roi-results-grid { grid-template-columns: 1fr; }
      .roi-rate-comparison { flex-direction: column; gap: 0.5rem; }
      .roi-cta-row { flex-direction: column; }
      .roi-cta-row .btn-filled,
      .roi-cta-row .btn-outline { width: 100%; justify-content: center; text-align: center; }
      .roi-social-proof { flex-direction: column; text-align: center; align-items: center; }
      .roi-lead-form .roi-form-row { grid-template-columns: 1fr; }
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 12px 24px;
      border-radius: 8px;
      background: transparent;
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      font-weight: 600;
      border: 1.5px solid rgba(255,255,255,0.2);
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.15s;
    }

    .btn-outline:hover {
      border-color: rgba(255,255,255,0.4);
      color: rgba(255,255,255,0.85);
    }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 1024px) {
      .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .use-cases-grid {
        grid-template-columns: 1fr 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr 1fr;
      }

      .listing-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 1.25rem;
      }

      section {
        scroll-margin-top: 72px;
      }

      .navbar-links,
      .navbar-right {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        min-height: auto;
        padding-top: 72px;
      }

      .hero .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
      }

      .search-section,
      .how-it-works,
      .use-cases,
      .pricing-section,
      .owners-section,
      .listing-section {
        padding: 4rem 0;
      }

      .search-top-row {
        flex-direction: column;
      }

      .search-field {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.25rem;
      }

      .search-sliders {
        padding: 1.25rem;
      }

      .search-submit-wrap {
        padding: 1.25rem;
      }

      .search-submit-wrap .btn-filled {
        width: 100%;
        text-align: center;
      }

      .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .tab-image-placeholder {
        order: -1;
      }

      .use-cases-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .comparison-grid {
        grid-template-columns: 1fr;
      }

      .listing-top-row {
        flex-direction: column;
      }

      .listing-field {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.25rem;
      }

      .listing-sliders {
        padding: 1.25rem;
      }

      .listing-contact {
        grid-template-columns: 1fr;
        padding: 1.25rem;
      }

      .listing-contact .form-group.full-width {
        grid-column: auto;
      }

      .listing-submit-wrap {
        padding: 1.25rem;
      }

      .listing-submit-wrap .btn-filled {
        width: 100%;
        text-align: center;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .roi-calc { border-radius: 12px; }
    }
    /* ============================
       STATS BANNER
    ============================ */
    .stats-banner {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 2.5rem 0;
    }

    .stats-banner-row {
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: 'DM Sans', sans-serif;
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--gold);
      line-height: 1.1;
    }

    .stat-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    @media (max-width: 640px) {
      .stats-banner-row {
        gap: 2rem;
      }
      .stat-number {
        font-size: 1.75rem;
      }
    }

    /* ============================
       RENTER COMPARISON
    ============================ */
    .renter-comparison {
      background: var(--white);
      padding: 5rem 0;
    }

    .renter-comparison h2 {
      text-align: center;
      margin-bottom: 0.75rem;
    }

    .renter-comparison > .container > p {
      text-align: center;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto 3rem;
    }

    .compare-table {
      max-width: 720px;
      margin: 0 auto;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-md);
    }

    .compare-table table {
      width: 100%;
      border-collapse: collapse;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
    }

    .compare-table thead th {
      padding: 1rem 1.5rem;
      font-size: 0.8125rem;
      font-weight: 600;
      text-align: left;
      border-bottom: 1px solid var(--border);
      background: var(--off-white);
    }

    .compare-table thead th:first-child {
      color: var(--text-muted);
    }

    .compare-table thead th:nth-child(2) {
      color: var(--text-muted);
    }

    .compare-table thead th:nth-child(3) {
      color: var(--gold);
    }

    .compare-table tbody td {
      padding: 0.875rem 1.5rem;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }

    .compare-table tbody tr:last-child td {
      border-bottom: none;
    }

    .compare-table tbody td:first-child {
      font-weight: 600;
      color: var(--black);
    }

    .compare-table tbody td:nth-child(2) {
      color: var(--text-muted);
    }

    .compare-table tbody td:nth-child(3) {
      color: var(--black);
    }

    @media (max-width: 640px) {
      .compare-table table {
        font-size: 0.8125rem;
      }
      .compare-table thead th,
      .compare-table tbody td {
        padding: 0.75rem 0.75rem;
      }
    }

    @media (max-width: 768px) {
      .owner-benefits-grid {
        grid-template-columns: 1fr !important;
      }
    }

    /* ============================
       ACCESSIBILITY
    ============================ */
    *:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    .skip-to-content {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--gold);
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 0 0 8px 8px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.875rem;
      z-index: 9999;
      text-decoration: none;
      transition: top 0.2s ease;
    }

    .skip-to-content:focus {
      top: 0;
    }

    /* ============================
       INTERACTIONS & POLISH (Phase 4)
    ============================ */

    /* Navbar gains depth once the page scrolls */
    .navbar {
      transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
    }
    .navbar.scrolled {
      box-shadow: var(--shadow-md);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: saturate(1.1) blur(8px);
      -webkit-backdrop-filter: saturate(1.1) blur(8px);
    }

    /* Staggered reveal for the stat items */
    .stats-banner .stat-item {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    }
    .stats-banner.visible .stat-item { opacity: 1; transform: none; }
    .stats-banner.visible .stat-item:nth-child(1) { transition-delay: 0.05s; }
    .stats-banner.visible .stat-item:nth-child(2) { transition-delay: 0.14s; }
    .stats-banner.visible .stat-item:nth-child(3) { transition-delay: 0.23s; }
    .stats-banner.visible .stat-item:nth-child(4) { transition-delay: 0.32s; }

    /* Sticky mobile CTA bar */
    .mobile-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1500;
      display: none;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.95rem 1.25rem;
      background: linear-gradient(135deg, var(--gold-hover), var(--gold-deep));
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 -6px 20px rgba(40,30,24,0.18);
      transform: translateY(110%);
      transition: transform 0.3s var(--ease-out);
      padding-bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
    }
    @media (max-width: 768px) {
      .mobile-cta { display: flex; }
      .mobile-cta.visible { transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .stats-banner .stat-item { opacity: 1 !important; transform: none !important; }
      .mobile-cta { transition: none; }
    }

    /* ============================================================
       FLEXE-AUTHENTIC "EARTHY" THEME (v5) — appended layer.
       Built from Flexe's real palette + type: cream + near-black,
       amber/bronze accent, dark-olive feature bands, lime-green pop;
       Fraunces serif heads + DM Sans (Swiss-grotesque) body, with
       dramatic light/dark section rhythm. Delete to return to v1.
       ============================================================ */
    :root {
      /* ---- REFINED WARM EDITORIAL palette (2026-06-09) ----
         Ivory + espresso, clay-terracotta warm accent, teal cool accent.
         Terracotta is used on light surfaces (AA), teal as the bright pop
         on the dark statement bands; green for "available" status. */
      --black: #211d18;
      --ink: #211d18;             /* espresso ink / dark surfaces */
      --off-white: #faf7f2;       /* warm ivory canvas */
      --surface: #ffffff;
      --surface-dark: #f3eee6;    /* sand section tint */
      --olive: #23201b;           /* deep warm statement bands */
      --olive-soft: #322c24;
      --lime: #7fd1c6;            /* bright teal POP — for dark bands */
      --teal: #0e6b63;            /* deep teal — secondary on light */
      --teal-soft: rgba(14,107,99,0.10);
      --gold: #b5482c;            /* clay terracotta — primary warm accent */
      --gold-hover: #c5553a;
      --gold-deep: #9a3d23;       /* darker terracotta for fine text on light */
      --gold-soft: rgba(181,72,44,0.10);
      --text-muted: #6b6258;      /* warm grey */
      --text-soft: #938a80;
      --border: #e7e0d6;
      --border-dark: #d8cfc2;
      --success: #2f8f5b;         /* available / positive */
      --serif: 'DM Sans', sans-serif;   /* headings now use DM Sans (was Fraunces) */
      --shadow-sm: 0 1px 2px rgba(33,29,24,0.05);
      --shadow-md: 0 8px 26px rgba(33,29,24,0.08);
      --shadow-lg: 0 26px 60px rgba(33,29,24,0.12);
      --shadow-gold: 0 10px 26px rgba(181,72,44,0.24);
      --section-y: clamp(5rem, 10vw, 8.5rem);
    }

    .search-section, .four-steps, .use-cases, .pricing-section,
    .owners-section, .listing-section, .faq-section, .roi-section {
      padding-top: var(--section-y);
      padding-bottom: var(--section-y);
    }

    /* ---- Type: DM Sans throughout (heads + body) ---- */
    h1, h2, h3, .hero h1, .roi-inner h2, .owners-hero h2,
    .stat-number, .owners-stat-number, .step-circle,
    .enquiry-modal-card h2, .listing-step2-intro h3,
    .roi-result-amount, .roi-savings-amount {
      font-family: var(--serif);
    }
    h1, h2, .hero h1, .owners-hero h2 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
    h3 { font-weight: 700; letter-spacing: -0.01em; text-transform: none; }
    .hero h1 { font-size: clamp(2.9rem, 6.5vw, 5rem); }
    .owners-hero h2 { font-size: clamp(3rem, 8vw, 5.25rem); }
    .label, .footer-col-label {
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--gold-deep);
    }

    /* ---- Buttons: solid near-black, amber/lime on hover ---- */
    .btn-primary, .btn-filled, .hero .btn-hero {
      border-radius: var(--r-pill);
      font-weight: 600;
      letter-spacing: 0;
    }
    .btn-filled, .hero .btn-hero {
      background: var(--ink);
      border: 1.5px solid var(--ink);
      color: #fff;
      box-shadow: none;
    }
    .btn-filled:hover, .hero .btn-hero:hover {
      filter: none;
      background: var(--gold);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }
    .btn-primary { border-color: var(--ink); color: var(--ink); }
    .btn-primary:hover { background: var(--ink); color: #fff; box-shadow: none; }

    /* ---- HERO: bright cream, editorial ---- */
    .hero {
      background:
        radial-gradient(90% 70% at 92% -10%, rgba(181, 72, 44,0.14) 0%, transparent 55%),
        radial-gradient(70% 60% at 0% 110%, rgba(127, 209, 198,0.18) 0%, transparent 55%),
        linear-gradient(180deg, #f5f4f0 0%, #efede7 100%);
      color: var(--ink);
      border-bottom: 1px solid var(--border-dark);
    }
    .hero::before {
      background-image:
        linear-gradient(rgba(25,25,25,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25,25,25,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero h1 { color: var(--ink); }
    .hero-subtitle { color: #3a3f37; }
    .hero-body p { color: var(--text-muted); }
    .hero .btn-hero-secondary { color: var(--text-muted); }
    .hero .btn-hero-secondary:hover { color: var(--ink); }
    .hero-trust-item { color: var(--text-muted); }
    .hero-trust-item svg { color: var(--gold); }
    .hero-badge {
      background: var(--teal);
      color: var(--off-white);
      border: 1px solid rgba(33,29,24,0.10);
      font-weight: 600;
    }
    .hero-badge .live-dot { background: var(--lime); box-shadow: none; }

    /* ---- Stats: lime keyline ---- */
    .stat-number { color: var(--ink); }
    .stats-banner { border-bottom: 1px solid var(--border-dark); }

    /* ---- Cards: warm, soft, amber accents ---- */
    .pricing-card, .comparison-card, .search-card, .listing-card,
    .compare-table, .use-case-card {
      border: 1px solid var(--border-dark);
      border-radius: var(--r-lg);
      box-shadow: none;
    }
    .pricing-card { border-top: 3px solid var(--gold); }
    .pricing-card:hover, .comparison-card:hover, .use-case-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }
    .pricing-amount, .stat-number, .owners-stat-number { color: var(--ink); }
    .use-case-card::before { background: var(--gold); }
    .step-circle { border-color: var(--gold); color: var(--gold); border-radius: 50%; box-shadow: var(--shadow-sm); }
    .step-item:hover .step-circle { background: var(--gold); color: #fff; }
    .step-num { background: var(--ink); }

    /* ---- Comparison: amber column + lime tick row accent ---- */
    .compare-table thead th { background: var(--off-white); }
    .compare-table thead th:nth-child(3) { color: var(--gold-deep); }

    /* ---- OWNERS: dramatic dark-olive statement band ---- */
    .owners-section { background: var(--olive); color: #efeee8; }
    .owners-section .label { color: var(--lime); }
    .owners-hero h2 { color: #f6f5ef; }
    .owners-hero > p { color: rgba(255,255,255,0.72); }
    .owners-section .comparison-card { background: var(--olive-soft); border-color: rgba(255,255,255,0.14); }
    .owners-section .comparison-card h3 { color: #fff; }
    .owners-section .comparison-card li { color: rgba(255,255,255,0.78); }
    .owners-section .comparison-card.without { border-left-color: var(--gold-hover); }
    .owners-section .comparison-card.with { border-left-color: var(--lime); }
    .owners-section .comparison-card.with li::before { color: var(--lime); }
    .owners-section .comparison-card.without li::before { color: var(--gold-hover); }
    .owners-section .comparison-card:hover { border-color: rgba(255,255,255,0.3); box-shadow: none; }
    .owners-narrative h3 { color: #f6f5ef; }
    .owners-narrative p { color: rgba(255,255,255,0.72); }
    .owners-narrative p strong, .owners-narrative .owners-afterpay strong { color: var(--lime); }
    .owners-section .btn-filled { background: var(--lime); border-color: var(--lime); color: var(--ink); }
    .owners-section .btn-filled:hover { background: #e6f08a; border-color: #e6f08a; color: var(--ink); }

    /* ---- ROI calculator: near-black with lime savings ---- */
    .roi-calc { background: #15150f; border: 1px solid #2c2c20; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
    .roi-inner h2 .accent { color: var(--lime); }
    .roi-type-btn.active { background: var(--lime); border-color: var(--lime); color: var(--ink); }
    .roi-month-btn.active { background: var(--lime); border-color: var(--lime); color: var(--ink); }
    .roi-rate-badge.overflow .roi-rate-value { color: var(--lime); }
    .roi-rate-save-tag { color: var(--lime); background: rgba(127, 209, 198,0.14); }
    .roi-result-card.flex { background: rgba(127, 209, 198,0.12); border-color: rgba(127, 209, 198,0.28); }
    .roi-result-card.flex .roi-result-amount { color: var(--lime); }
    .roi-savings-banner { background: linear-gradient(135deg, rgba(127, 209, 198,0.16), rgba(181, 72, 44,0.10)); border-color: rgba(127, 209, 198,0.3); }
    .roi-savings-banner .roi-savings-label,
    .roi-savings-banner .roi-savings-amount { color: var(--lime); }
    .roi-bar-fill { background: linear-gradient(90deg, var(--gold), var(--lime)); }
    .roi-section .btn-filled { background: var(--lime); border-color: var(--lime); color: var(--ink); }
    .roi-section .btn-filled:hover { background: #e6f08a; border-color: #e6f08a; }

    /* ---- Footer: near-black ---- */
    .site-footer { background: #15150f; }
    .footer-col a:hover { color: var(--lime); }

    /* ============================================================
       v5 — UI/UX AUDIT FIXES (UI/UX Pro Max)
       WCAG contrast + tap-target + tap-delay fixes. All measured.
       ============================================================ */

    /* [A11y/Contrast] Amber-as-text on cream was 3.6:1 (FAIL).
       Deepen the accent so every amber text hits >=4.5:1 (now 4.7:1),
       while staying amber for borders/icons/fills. */
    :root { --gold: #b5482c; }

    /* [A11y/Contrast] ROI dark-panel secondary text was ~2.5–2.8:1 (FAIL).
       Lighten to warm/cool greys at ~6:1 on the near-black panel. */
    .roi-input-label,
    .roi-footnote,
    .roi-bar-label,
    .roi-result-card .roi-result-detail,
    .roi-rate-vs,
    .roi-rate-badge .roi-rate-label,
    .roi-savings-banner .roi-savings-breakdown {
      color: #9a948a;
    }
    .roi-type-btn,
    .roi-month-btn { color: #9aa0a8; }
    .roi-footnote a { color: var(--lime); }

    /* [Touch] Remove the 300ms tap delay on interactive elements. */
    a, button, label, input, select, textarea,
    .btn-primary, .btn-filled, .hero .btn-hero, .mobile-cta {
      touch-action: manipulation;
    }

    /* [Touch] Mobile menu close was 40px; bump to 44px min target. */
    .mobile-menu-close { width: 44px; height: 44px; }

    /* [Touch] Give filter checkboxes a comfortable hit row. */
    .filters-grid label { min-height: 32px; padding: 2px 0; }

    /* ============================================================
       v5 — POLISH PASS (craft details for a premium finish)
       ============================================================ */

    /* Editorial italic serif accent in headlines */
    .hero h1 em,
    .cta-band h2 em,
    .search-section h2 em {
      font-style: italic;
      font-weight: 500;
      color: var(--gold);
    }

    /* ---- Search section: "search the network" framing ---- */
    .search-section h2 { margin-bottom: 1rem; }
    .search-intro {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 1.5rem;
      color: var(--text-muted);
      font-size: 1.0625rem;
      line-height: 1.65;
    }
    /* Eyebrow labels: refined lime/amber tick + spacing */
    .label {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
    }
    .label::before {
      content: '';
      width: 22px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }
    /* Centered-label sections keep the tick inline (already centered via flex) */

    /* Staggered reveal for card grids when their section becomes visible */
    .use-cases-grid > *,
    .pricing-grid > *,
    .steps-row > .step-item,
    .comparison-grid > * {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    }
    .fade-in.visible .use-cases-grid > *,
    .fade-in.visible .pricing-grid > *,
    .fade-in.visible .steps-row > .step-item,
    .fade-in.visible .comparison-grid > * {
      opacity: 1;
      transform: none;
    }
    .fade-in.visible .use-cases-grid > *:nth-child(1),
    .fade-in.visible .pricing-grid > *:nth-child(1),
    .fade-in.visible .steps-row > .step-item:nth-child(1),
    .fade-in.visible .comparison-grid > *:nth-child(1) { transition-delay: 0.04s; }
    .fade-in.visible .use-cases-grid > *:nth-child(2),
    .fade-in.visible .pricing-grid > *:nth-child(2),
    .fade-in.visible .steps-row > .step-item:nth-child(2),
    .fade-in.visible .comparison-grid > *:nth-child(2) { transition-delay: 0.12s; }
    .fade-in.visible .use-cases-grid > *:nth-child(3),
    .fade-in.visible .pricing-grid > *:nth-child(3),
    .fade-in.visible .steps-row > .step-item:nth-child(3) { transition-delay: 0.20s; }
    .fade-in.visible .use-cases-grid > *:nth-child(4),
    .fade-in.visible .pricing-grid > *:nth-child(4),
    .fade-in.visible .steps-row > .step-item:nth-child(4) { transition-delay: 0.28s; }
    .fade-in.visible .use-cases-grid > *:nth-child(5) { transition-delay: 0.36s; }
    .fade-in.visible .use-cases-grid > *:nth-child(6) { transition-delay: 0.44s; }

    @media (prefers-reduced-motion: reduce) {
      .use-cases-grid > *, .pricing-grid > *, .steps-row > .step-item,
      .comparison-grid > * { opacity: 1 !important; transform: none !important; }
    }

    /* ---- Closing CTA band: dark-olive statement closer ---- */
    .cta-band {
      background:
        radial-gradient(80% 120% at 100% 0%, rgba(127, 209, 198,0.10) 0%, transparent 55%),
        radial-gradient(70% 120% at 0% 100%, rgba(181, 72, 44,0.12) 0%, transparent 55%),
        #23201b;
      padding: var(--section-y) 0;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .cta-band-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }
    .cta-band .label {
      justify-content: center;
      color: var(--lime);
      margin-bottom: 1.25rem;
    }
    .cta-band .label::before,
    .owners-section .label::before { background: var(--lime); }
    .cta-band h2 {
      color: #f6f5ef;
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      margin-bottom: 1.25rem;
    }
    .cta-band h2 em { color: var(--lime); }
    .cta-band-sub {
      color: rgba(255,255,255,0.72);
      font-size: 1.0625rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 2.25rem;
    }
    .cta-band-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-band-actions .btn-filled {
      background: var(--lime);
      border-color: var(--lime);
      color: var(--ink);
    }
    .cta-band-actions .btn-filled:hover {
      background: #e6f08a;
      border-color: #e6f08a;
      box-shadow: 0 10px 26px rgba(127, 209, 198,0.25);
    }
    .cta-band-actions .btn-primary {
      border-color: rgba(255,255,255,0.5);
      color: #f6f5ef;
    }
    .cta-band-actions .btn-primary:hover {
      background: #f6f5ef;
      border-color: #f6f5ef;
      color: var(--ink);
    }
    .cta-band-foot {
      margin-top: 1.75rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.02em;
    }

    /* Nav scrolled state tuned for the cream theme */
    .navbar.scrolled {
      background: rgba(243,242,238,0.9);
      border-bottom-color: var(--border-dark);
    }

    /* ============================================================
       v5 — MOTION ENHANCEMENTS (pure CSS, reduced-motion safe)
       transform/opacity only; ease-out enter; one-time reveals.
       ============================================================ */

    /* 1) Hero entrance — choreographed fade-up on first paint */
    @keyframes heroRise {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: none; }
    }
    .hero-badge, .hero h1, .hero-subtitle, .hero-body,
    .hero-cta-row, .hero-trust {
      animation: heroRise 0.7s var(--ease-out) backwards;
    }
    .hero-badge    { animation-delay: 0.05s; }
    .hero h1       { animation-delay: 0.15s; }
    .hero-subtitle { animation-delay: 0.28s; }
    .hero-body     { animation-delay: 0.38s; }
    .hero-cta-row  { animation-delay: 0.48s; }
    .hero-trust    { animation-delay: 0.58s; }

    /* 2) Living hero glow — slow ambient drift */
    .hero::after {
      content: '';
      position: absolute;
      top: -18%; right: -8%;
      width: 48vw; height: 48vw;
      max-width: 720px; max-height: 720px;
      background: radial-gradient(circle, rgba(181, 72, 44,0.16) 0%, transparent 62%);
      pointer-events: none;
      z-index: 0;
      animation: glowDrift 20s ease-in-out infinite alternate;
    }
    @keyframes glowDrift {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(-5%, 5%) scale(1.1); }
    }

    /* 3) Eyebrow tick draws in as its section reveals */
    .label::before {
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s var(--ease-out) 0.12s;
    }
    .fade-in.visible .label::before { transform: scaleX(1); }

    /* 4) Extend staggered reveal to FAQ rows */
    .faq-list > .faq-item {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    }
    .fade-in.visible .faq-list > .faq-item { opacity: 1; transform: none; }
    .fade-in.visible .faq-list > .faq-item:nth-child(1) { transition-delay: 0.04s; }
    .fade-in.visible .faq-list > .faq-item:nth-child(2) { transition-delay: 0.10s; }
    .fade-in.visible .faq-list > .faq-item:nth-child(3) { transition-delay: 0.16s; }
    .fade-in.visible .faq-list > .faq-item:nth-child(4) { transition-delay: 0.22s; }
    .fade-in.visible .faq-list > .faq-item:nth-child(5) { transition-delay: 0.28s; }
    .fade-in.visible .faq-list > .faq-item:nth-child(6) { transition-delay: 0.34s; }

    /* 5) CTA band — choreographed inner reveal (its own block) */
    .cta-band-inner > * {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    }
    .fade-in.visible .cta-band-inner > * { opacity: 1; transform: none; }
    .fade-in.visible .cta-band-inner > h2 { transition-delay: 0.08s; }
    .fade-in.visible .cta-band-inner > .cta-band-sub { transition-delay: 0.16s; }
    .fade-in.visible .cta-band-inner > .cta-band-actions { transition-delay: 0.24s; }
    .fade-in.visible .cta-band-inner > .cta-band-foot { transition-delay: 0.32s; }

    /* ---- HERO VISUAL: live-availability panel (desktop) ---- */
    .hero-grid { display: block; }
    .hero-visual { display: none; }
    @media (min-width: 980px) {
      .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3.5rem;
        align-items: center;
      }
      .hero-visual {
        display: block;
        position: relative;
        animation: heroRise 0.8s var(--ease-out) 0.5s backwards;
      }
    }
    .hero-panel {
      position: relative;
      z-index: 1;
      background: #fffdfa;
      border: 1px solid var(--border-dark);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
      padding: 1.1rem 1.1rem 0.9rem;
      animation: panelFloat 7s ease-in-out infinite alternate;
    }
    @keyframes panelFloat {
      from { transform: translateY(0); }
      to   { transform: translateY(-12px); }
    }
    .hero-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 0.85rem;
      margin-bottom: 0.35rem;
      border-bottom: 1px solid var(--border);
    }
    .hero-panel-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-family: var(--font-mono, 'DM Sans');
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink);
    }
    .hero-panel-eyebrow .live-dot { background: #3a9d4e; }
    .hero-panel-loc {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .hero-space {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--border);
    }
    .hero-space-mark {
      flex-shrink: 0;
      width: 38px; height: 38px;
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      background: var(--gold-soft);
      color: var(--gold);
    }
    .hero-space-info { flex: 1; min-width: 0; line-height: 1.3; }
    .hero-space-info strong {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ink);
    }
    .hero-space-info span {
      font-size: 0.72rem;
      color: var(--text-muted);
    }
    .hero-space-meta { text-align: right; flex-shrink: 0; }
    .hero-space-price {
      display: block;
      font-family: var(--serif, 'DM Sans');
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
    }
    .hero-space-price small {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.6rem;
      font-weight: 500;
      color: var(--text-muted);
    }
    .hero-space-tag {
      display: inline-block;
      margin-top: 0.3rem;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #2f7d40;
      background: rgba(58,157,78,0.12);
      padding: 0.12rem 0.4rem;
      border-radius: 4px;
    }
    .hero-panel-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 0.85rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .hero-panel-foot strong { color: var(--ink); }
    .hero-panel-link { color: var(--gold); font-weight: 600; }
    .hero-chip {
      position: absolute;
      z-index: 2;
      background: var(--ink);
      color: #f6f5ef;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.45rem 0.85rem;
      border-radius: var(--r-pill);
      box-shadow: var(--shadow-md);
      white-space: nowrap;
    }
    .hero-chip-1 {
      top: -14px; left: -18px;
      background: var(--lime); color: var(--ink);
      animation: panelFloat 5.5s ease-in-out infinite alternate;
    }
    .hero-chip-2 {
      bottom: -16px; right: 28px;
      animation: panelFloat 6.5s ease-in-out 0.4s infinite alternate-reverse;
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-panel, .hero-chip-1, .hero-chip-2, .hero-visual { animation: none; }
    }

    /* 6) Animated nav underline (grows from left) */
    .navbar-links a {
      position: relative;
      border-bottom-color: transparent !important;
    }
    .navbar-links a::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s var(--ease);
    }
    .navbar-links a:hover::after { transform: scaleX(1); }

    /* 7) Card press feel — gentle scale on active (transform only) */
    .pricing-card:active, .use-case-card:active, .comparison-card:active { transform: translateY(-1px) scale(0.997); }

    /* 8) Section reveal is OPACITY-ONLY — all movement comes from the
       staggered children (cards/faq/stats/cta), avoiding double-travel. */
    .fade-in { transform: none; }
    .fade-in.visible { transform: none; }

    /* Respect reduced-motion: no entrances, drifts, or choreography */
    @media (prefers-reduced-motion: reduce) {
      .hero-badge, .hero h1, .hero-subtitle, .hero-body,
      .hero-cta-row, .hero-trust { animation: none; }
      .hero::after { animation: none; }
      .label::before { transform: scaleX(1); transition: none; }
      .faq-list > .faq-item,
      .fade-in .container > .label,
      .fade-in .container > h2,
      .fade-in .container > p,
      .owners-hero > .label, .owners-hero > h2, .owners-hero > p,
      .cta-band-inner > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* ============================
       v5 — STATS BAND ELEVATION
       Turns the flat 4-stat text strip into a defined panel:
       cream band + crisp white card, hairline dividers, a signature
       lime top keyline, stronger type, and a soft per-stat hover.
    ============================ */
    .stats-banner {
      background: var(--off-white);     /* warm cream band so the white panel reads as deliberate */
      padding: 3.25rem 0;
      border-bottom: 1px solid var(--border-dark);
    }

    .stats-banner-row {
      position: relative;
      gap: 0;                           /* dividers handle the separation now */
      max-width: 940px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid var(--border-dark);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    /* signature keyline across the top of the panel */
    .stats-banner-row::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
    }

    .stats-banner .stat-item {
      flex: 1 1 0;
      padding: 1.9rem 1.25rem;
      position: relative;
      transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
                  background-color var(--dur) var(--ease);
    }

    /* hairline dividers between adjacent stats */
    .stats-banner .stat-item + .stat-item::after {
      content: '';
      position: absolute;
      left: 0; top: 24%; bottom: 24%;
      width: 1px;
      background: var(--border-dark);
    }

    .stats-banner .stat-number {
      font-size: 2.6rem;
      color: var(--ink);
    }

    .stats-banner .stat-label {
      font-size: 0.74rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.45rem;
    }

    .stats-banner .stat-item:hover {
      background: rgba(127, 209, 198, 0.12);   /* faint lime wash on hover */
    }

    /* Mobile: clean 2×2 grid with internal hairlines */
    @media (max-width: 760px) {
      .stats-banner { padding: 2.5rem 0; }
      .stats-banner-row { flex-wrap: wrap; max-width: 420px; }
      .stats-banner .stat-item { flex: 0 0 50%; padding: 1.4rem 0.75rem; }
      .stats-banner .stat-item + .stat-item::after { display: none; }
      .stats-banner .stat-item:nth-child(n+3) { border-top: 1px solid var(--border-dark); }
      .stats-banner .stat-item:nth-child(even) { border-left: 1px solid var(--border-dark); }
      .stats-banner .stat-number { font-size: 2.1rem; }
    }

    /* ============================
       v5 — LOGO MARK REDESIGN
       Replaces the old terracotta/teal stack (a leftover from the v1
       theme) with an on-brand mark: an ascending stack (capacity
       filling) whose top tier spills past the edge in signature lime —
       literally "over-flow". Stack uses currentColor so one mark adapts
       to the light nav (ink) and the dark footer (cream).
    ============================ */
    .navbar-logo .logo-mark {
      color: var(--ink);
      transition: transform var(--dur) var(--ease-out);
    }
    .navbar-logo:hover .logo-mark {
      transform: translateY(-1px);
    }
    .logo-mark--footer {
      color: var(--off-white);   /* light bars on the near-black footer */
    }
    /* the overflow chip carries the signature accent — token, so it tracks the live theme */
    .logo-mark rect:last-child {
      fill: var(--lime);
    }


    /* ============================
       USE-CASE BADGE ("By arrangement" — devanning card)
    ============================ */
    .use-case-badge {
      position: absolute;
      top: 1.1rem;
      right: 1.1rem;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gold-deep);
      background: var(--gold-soft);
      padding: 0.25rem 0.6rem;
      border-radius: 100px;
      white-space: nowrap;
    }

    /* ============================
       SANS-SERIF SWEEP (2026-06-10)
       The serif was dropped sitewide; big display numerals need bold
       weight to read as headline figures in DM Sans.
    ============================ */
    .roi-result-card .roi-result-amount,
    .roi-savings-banner .roi-savings-amount,
    .stat-number, .owners-stat-number,
    .enquiry-modal-card h2, .roi-lead-form h3 {
      font-weight: 700;
    }

    /* ============================
       ROI MODE TOGGLE (one-off vs seasonal peak)
       Mirrors .roi-type-btn so the two rows read as one control family.
    ============================ */
    .roi-mode-btn {
      padding: 9px 16px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.15s;
    }
    .roi-mode-btn:hover { border-color: rgba(255,255,255,0.25); color: #a09a94; }
    .roi-mode-btn.active {
      background: var(--lime);
      border-color: var(--lime);
      color: var(--ink);
    }

    /* ============================
       FORM FALLBACK + CONSENT LINE & HONEYPOT (audit fixes 2026-06-12)
    ============================ */
    .form-fallback {
      font-size: 0.8125rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-top: 0.85rem;
    }
    .form-fallback a {
      color: var(--gold-deep);
      font-weight: 600;
      text-decoration: none;
    }
    .form-fallback a:hover { text-decoration: underline; }

    /* Honeypot: visually gone, still in the DOM for bots to find */
    .hp-field {
      position: absolute !important;
      left: -9999px !important;
      width: 1px; height: 1px;
      overflow: hidden;
    }
