:root {
  --ink: #101828;
  --muted: #667085;
  --green: #003b8e;
  --green-soft: #f4f6f8;
  --blue: #003b8e;
  --blue-dark: #001e4d;
  --blue-ink: #061a3f;
  --blue-soft: #eaf0f8;
  --red: #e52529;
  --red-dark: #b71924;
  --gold: #e52529;
  --paper: #f4f6f8;
  --line: #dfe4ea;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 30, 77, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(0, 30, 77, 0.06), transparent 360px),
    var(--paper);
}

button,
input,
select {
  font: inherit;
}

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

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero-media {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media {
    transform: none !important;
  }
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 94px;
  padding: 10px clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: var(--white);
  box-shadow:
    inset 0 4px 0 var(--blue-dark),
    0 1px 0 var(--line);
}

.site-header.is-solid {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(7, 29, 93, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  display: block;
  width: 112px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.87rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.header-action,
.contact-band a,
.search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.header-action {
  gap: 8px;
  min-height: 44px;
  background: var(--red);
  box-shadow: 0 10px 22px rgba(216, 18, 32, 0.22);
}

.header-action span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 0;
}

.header-action span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(-45deg) translate(-1px, 1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 460px;
  display: block;
  margin-bottom: 70px;
  overflow-x: clip;
  overflow-y: visible;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  z-index: 0;
  opacity: 0.9;
}

.hero-video {
  z-index: 1;
  opacity: 0.94;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 30, 77, 0.94) 0%, rgba(0, 30, 77, 0.82) 36%, rgba(0, 30, 77, 0.36) 72%),
    linear-gradient(0deg, rgba(0, 30, 77, 0.78) 0%, rgba(0, 30, 77, 0.18) 48%),
    rgba(0, 30, 77, 0.16);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 118px;
}

.hero h1 {
  max-width: 560px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 430px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(2.75rem, 5vw, 4.55rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 460px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.48;
  font-weight: 600;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(216, 18, 32, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 30, 77, 0.58);
  font-weight: 900;
}

.hero-lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.14)),
    rgba(0, 30, 77, 0.38);
  box-shadow:
    0 24px 70px rgba(0, 30, 77, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
}

.hero-lead-form h2 {
  margin: -2px 0 6px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  line-height: 1.02;
}

.hero-lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-lead-form input,
.hero-lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
  outline: 0;
  font-size: 0.94rem;
  font-weight: 750;
}

.hero-lead-form input::placeholder {
  color: #667085;
}

.hero-lead-form input:focus,
.hero-lead-form select:focus {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(229, 37, 41, 0.18);
}

.hero-lead-form button {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(229, 37, 41, 0.28);
  font-weight: 950;
  cursor: pointer;
}

.hero-lead-form small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 700;
}

.search-panel {
  position: absolute;
  right: 0;
  bottom: -36px;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(190px, auto);
  gap: 0;
  width: min(1120px, calc(100% - 72px));
  min-height: 86px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 30, 77, 0.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(0, 30, 77, 0.2);
}

.search-panel label {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 18px 24px;
  background: var(--white);
}

.search-panel label + label {
  border-left: 1px solid var(--line);
}

.search-panel svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-panel label > span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.search-panel strong {
  color: #1d263b;
  font-size: 0.78rem;
  font-weight: 900;
}

.search-panel span {
  color: var(--muted);
}

.search-panel input,
.search-panel select {
  width: 100%;
  border: 0;
  color: var(--muted);
  background: transparent;
  outline: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.search-panel button {
  gap: 10px;
  min-height: calc(100% - 20px);
  align-self: center;
  margin: 10px;
  border-radius: 8px;
  padding-inline: 26px;
  background: var(--blue-dark);
  white-space: nowrap;
}

.search-panel button svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 59, 142, 0.56), transparent 34%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-ink));
  box-shadow: 0 20px 44px rgba(0, 30, 77, 0.16);
}

.metrics div {
  padding: 30px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.metrics span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.section,
.split-section,
.contact-band {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.section-heading a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 6px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 32, 28, 0.06);
}

.property-media {
  min-height: 238px;
  background-size: cover;
  background-position: center;
}

.media-one {
  background:
    linear-gradient(135deg, rgba(23, 61, 50, 0.15), rgba(200, 155, 79, 0.15)),
    url("assets/hero-nova-america.png?v=2") center / cover;
}

.media-two {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(23, 61, 50, 0.32)),
    url("assets/hero-nova-america.png?v=2") 70% 58% / 140% auto;
}

.media-three {
  background:
    linear-gradient(135deg, rgba(200, 155, 79, 0.28), rgba(23, 61, 50, 0.18)),
    url("assets/hero-nova-america.png?v=2") 42% 36% / 150% auto;
}

.property-info {
  padding: 24px;
}

.property-info span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-info h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.property-info p {
  min-height: 72px;
  color: var(--muted);
  line-height: 1.55;
}

.property-info strong {
  color: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 7vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  color: var(--gold);
  font-weight: 900;
}

.service-list h3 {
  margin-bottom: 8px;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.neighborhoods {
  padding-bottom: 60px;
}

.neighborhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neighborhood-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.contact-band .eyebrow {
  color: #e6c781;
}

.contact-band p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.contact-band a {
  background: var(--white);
  color: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.category-section,
.listing-section,
.brand-section,
.about-section,
.invest-section,
.payment-section,
.social-proof-section,
.faq-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.category-section {
  padding: 86px 0 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(0, 30, 77, 0.1);
}

.category-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 180ms ease, opacity 180ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 30, 77, 0.82), rgba(0, 30, 77, 0.04) 58%);
}

.category-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.category-card:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.home-featured,
.region-section,
.internal-hero {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.home-featured {
  width: min(1200px, calc(100% - 36px));
  margin-top: 32px;
  padding: 58px 40px 64px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 4%, rgba(0, 59, 142, 0.44), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-ink));
  box-shadow: 0 20px 48px rgba(0, 30, 77, 0.14);
}

.home-featured .section-heading h2 {
  color: var(--white);
}

.home-featured .section-heading a {
  color: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.invest-section,
.payment-section,
.social-proof-section,
.faq-section {
  padding: 84px 0;
}

.invest-section,
.payment-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.invest-section h2,
.payment-section h2,
.social-proof-section h2,
.faq-section h2 {
  color: var(--blue-dark);
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.03;
}

.invest-section p,
.payment-section p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.invest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.invest-grid article,
.social-proof-grid article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(0, 30, 77, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 30, 77, 0.06);
}

.invest-grid strong,
.social-proof-grid strong {
  display: block;
  margin-bottom: 26px;
  color: var(--blue-dark);
  font-size: 1.12rem;
}

.invest-grid span,
.social-proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.build-section {
  margin-top: 16px;
}

.payment-section {
  width: min(1200px, calc(100% - 36px));
  padding: 54px 40px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(0, 59, 142, 0.5), transparent 32%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-ink));
  box-shadow: 0 20px 48px rgba(0, 30, 77, 0.16);
}

.payment-section h2 {
  color: var(--white);
}

.payment-section p {
  color: rgba(255, 255, 255, 0.76);
}

.simulation-card,
.final-contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.simulation-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.simulation-card input,
.simulation-card select,
.final-contact-form input,
.final-contact-form select,
.final-contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(0, 30, 77, 0.12);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--white);
  font: inherit;
  font-weight: 750;
  outline: 0;
}

.final-contact-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.simulation-card button,
.final-contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.simulation-card a,
.final-contact-form a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 900;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(0, 30, 77, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 30, 77, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.final-contact {
  grid-template-columns: 0.9fr 1.1fr;
}

.region-section {
  padding: 42px 0 84px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.region-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(0, 30, 77, 0.05);
}

.region-grid article:nth-child(2) {
  border-color: transparent;
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.region-grid article:nth-child(2) strong {
  color: var(--white);
}

.region-grid article:nth-child(2) span {
  color: rgba(255, 255, 255, 0.78);
}

.region-grid strong {
  display: block;
  margin-bottom: 42px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.region-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.internal-hero {
  width: min(1160px, calc(100% - 36px));
  margin-top: 32px;
  padding: 46px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 59, 142, 0.54), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-ink));
}

.internal-hero h1 {
  max-width: 760px;
  color: var(--white);
}

.internal-hero p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.6;
}

.listing-page {
  padding-top: 28px;
}

.listing-section {
  padding: 76px 0 96px;
}

.page-title {
  margin-bottom: 24px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.breadcrumb span {
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.page-title h2,
.brand-section h2,
.about-section h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.listing-layout {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 30, 77, 0.08);
  border-top: 5px solid var(--blue-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 30, 77, 0.07);
}

.filter-card h3 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: 1rem;
}

.filter-card label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-card select {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px !important;
  font-weight: 700 !important;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.clear-button,
.filter-button {
  min-height: 40px;
  border: 0;
  border-radius: 7px;
  font-weight: 900;
  cursor: pointer;
}

.clear-button {
  color: var(--blue-dark);
  background: transparent;
}

.filter-button {
  color: var(--white);
  background: var(--blue-dark);
}

.listing-content {
  min-width: 0;
}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.listing-toolbar strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.listing-toolbar select {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #344054;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.listing-card {
  overflow: hidden;
  border: 1px solid rgba(0, 30, 77, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 30, 77, 0.08);
}

.listing-media {
  position: relative;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
}

.listing-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.listing-media span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.listing-info {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.listing-info h3 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.listing-info p,
.listing-info small {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
}

.listing-info small {
  color: var(--muted);
  font-weight: 700;
}

.property-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 28px;
  margin: 3px 0 2px;
  padding: 0;
  list-style: none;
}

.property-highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.listing-info strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.listing-info b {
  color: var(--red);
}

.listing-info a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  border: 1px solid var(--blue-dark);
  border-radius: 7px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 8px;
  margin-top: 5px;
}

.listing-info .card-actions a {
  margin-top: 0;
}

.listing-info .card-actions .whatsapp-link {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.brand-section {
  padding: 88px 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.pillar-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(234, 240, 248, 0.58), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: 0 12px 24px rgba(0, 30, 77, 0.05);
}

.pillar-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--red);
}

.pillar-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 58px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.pillar-grid h3 {
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1.05;
}

.pillar-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: start;
  width: min(1200px, calc(100% - 36px));
  margin-bottom: 88px;
  padding: 52px 40px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 100%, rgba(0, 59, 142, 0.4), transparent 28%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-ink));
  box-shadow: 0 20px 44px rgba(0, 30, 77, 0.14);
}

.about-section h2 {
  color: var(--white);
}

.about-copy p:last-child {
  max-width: 650px;
  margin-top: 22px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.proof-list strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.proof-list span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-band {
  background: var(--blue-dark);
}

.contact-band .eyebrow {
  color: var(--white);
}

.contact-band h2 {
  color: var(--white);
}

.contact-band a {
  color: var(--white);
  background: var(--red);
}

.site-footer {
  border-top: 4px solid var(--blue-dark);
  background: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(0, 30, 77, 0.18);
  border-radius: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.footer-brand img {
  display: block;
  width: 142px;
  height: auto;
  object-fit: contain;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  gap: 18px;
  width: min(680px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.not-found-page h1 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.not-found-page p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-page,
.academy-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.detail-hero {
  margin-top: 32px;
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 59, 142, 0.52), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-ink));
}

.detail-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.property-type {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.detail-title-row h1 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--white);
}

.detail-title-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.detail-price {
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 34px rgba(0, 30, 77, 0.24);
}

.detail-price small {
  opacity: 0.8;
  font-weight: 800;
}

.detail-price strong {
  font-size: 1.9rem;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 14px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 42px;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.detail-gallery .gallery-main {
  grid-row: span 2;
  min-height: 462px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 34px;
  padding-bottom: 86px;
}

.detail-content,
.lead-panel {
  border: 1px solid rgba(0, 30, 77, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 30, 77, 0.06);
}

.detail-content {
  padding: 34px;
}

.detail-content h2,
.detail-content h3,
.lead-panel h2 {
  color: var(--blue-dark);
}

.detail-content p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.detail-specs div {
  padding: 18px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.detail-specs span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-specs strong {
  color: var(--blue-dark);
}

.feature-list,
.lead-benefits,
.academy-panels ul,
.lesson-notes ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.8;
}

.detail-trust {
  margin-top: 32px;
}

.detail-trust > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.detail-trust article {
  padding: 18px;
  border: 1px solid rgba(0, 30, 77, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(234, 240, 248, 0.8), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.detail-trust strong,
.detail-trust span {
  display: block;
}

.detail-trust strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.detail-trust span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.location-card {
  margin-top: 28px;
  padding: 24px;
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: var(--paper);
}

.legal-note {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--red-dark) !important;
  font-weight: 900;
}

.lead-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border-top: 5px solid var(--blue-dark);
}

.lead-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.lead-benefits {
  padding-left: 18px;
  color: var(--blue-dark);
  font-weight: 800;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-cta {
  color: var(--white);
  background: var(--red);
}

.secondary-cta {
  border: 1px solid var(--blue-dark);
  color: var(--white);
  background: var(--blue-dark);
}

.academy-body,
.academy-login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 59, 142, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(0, 30, 77, 0.08), transparent 380px),
    var(--paper);
}

.academy-login-page {
  display: grid;
  place-items: center;
  padding: 28px;
}

.academy-login-card {
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 8px;
  border-top: 5px solid var(--blue-dark);
  background: var(--white);
  box-shadow: var(--shadow);
}

.academy-logo img {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}

.academy-login-card .academy-logo img {
  margin-bottom: 28px;
}

.academy-login-card h1,
.academy-welcome h1,
.lesson-page h1 {
  max-width: none;
  color: var(--blue-dark);
}

.academy-login-card p {
  color: var(--muted);
  line-height: 1.55;
}

.academy-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.academy-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.academy-form input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.academy-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.academy-back {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.academy-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 72px);
  background: var(--white);
  box-shadow:
    inset 0 4px 0 var(--blue-dark),
    0 1px 0 var(--line);
}

.academy-topbar > a:last-child {
  color: var(--blue-dark);
  font-weight: 900;
}

.academy-shell {
  padding: 46px 0 86px;
}

.academy-welcome,
.lesson-current,
.academy-panels,
.lesson-layout,
.lesson-notes {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.academy-welcome {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 59, 142, 0.58), transparent 32%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-ink));
}

.academy-welcome h1,
.academy-welcome p {
  color: var(--white);
}

.lesson-current {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 26px;
  border-radius: 8px;
  border-left: 6px solid var(--blue-dark);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 30, 77, 0.06);
}

.lesson-current span {
  color: var(--red);
  font-weight: 900;
}

.lesson-current h2,
.module-grid h3,
.academy-panels h2,
.lesson-sidebar h2,
.lesson-notes h2 {
  color: var(--blue-dark);
}

.lesson-current p,
.module-grid p,
.academy-panels p,
.lesson-sidebar p {
  color: var(--muted);
  line-height: 1.55;
}

.lesson-current a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.module-grid article,
.academy-panels article,
.lesson-sidebar,
.lesson-notes {
  padding: 24px;
  border: 1px solid rgba(0, 30, 77, 0.09);
  border-radius: 8px;
  background: var(--white);
}

.module-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 900;
}

.academy-panels {
  grid-template-columns: 1fr 1fr;
}

.lesson-layout {
  grid-template-columns: 1fr 330px;
  align-items: start;
}

.video-placeholder {
  display: grid;
  min-height: 430px;
  align-content: end;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 30, 77, 0.9), rgba(0, 59, 142, 0.72)),
    url("assets/property-lot.png") center / cover;
}

.video-placeholder span {
  color: var(--red);
  font-weight: 900;
}

.video-placeholder h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.lesson-sidebar {
  display: grid;
  gap: 12px;
}

.lesson-sidebar a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
}

.academy-topbar nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.academy-topbar nav a {
  color: var(--blue-dark);
  font-weight: 900;
}

.lesson-description {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.lesson-buttons {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.dashboard-events {
  margin-top: 34px;
}

.event-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.event-mini-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.event-mini-grid strong,
.event-mini-grid span {
  display: block;
}

.event-mini-grid strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.event-mini-grid span {
  color: var(--muted);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-card {
  overflow: hidden;
  border: 1px solid rgba(0, 30, 77, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 30, 77, 0.08);
}

.event-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.event-card div {
  padding: 24px;
}

.event-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 900;
}

.event-card h2 {
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1.1;
}

.event-card p {
  color: var(--muted);
  line-height: 1.58;
}

.event-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 82px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 0;
    margin-bottom: 42px;
  }

  .hero-media {
    transform: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 54px 0 22px;
  }

  .hero-lead-form {
    width: min(100%, 560px);
  }

  .search-panel {
    position: relative;
    bottom: auto;
    width: min(100% - 36px, 560px);
    min-height: 0;
  }

  .metrics,
  .category-grid,
  .property-grid,
  .featured-grid,
  .invest-section,
  .invest-grid,
  .payment-section,
  .social-proof-grid,
  .region-grid,
  .listing-layout,
  .listing-grid,
  .pillar-grid,
  .about-section,
  .detail-title-row,
  .detail-gallery,
  .detail-layout,
  .detail-specs,
  .detail-trust > div,
  .academy-welcome,
  .lesson-current,
  .module-grid,
  .academy-panels,
  .lesson-layout,
  .events-grid,
  .event-mini-grid,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .filter-card,
  .lead-panel {
    position: static;
  }

  .listing-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .academy-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .detail-gallery .gallery-main {
    grid-row: auto;
    min-height: 280px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel label + label {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .search-panel button {
    min-height: 58px;
  }

  .metrics div + div {
    border-left: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 20px;
  }

  .contact-band {
    padding: 32px 24px;
  }

  .home-featured,
  .about-section,
  .payment-section,
  .internal-hero,
  .detail-hero {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 92px;
  }

  .hero-content {
    width: min(100% - 28px, 1160px);
    padding-top: 42px;
    padding-bottom: 18px;
  }

  .hero-lead-form {
    padding: 22px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-copy {
    max-width: 320px;
  }

  .hero-action {
    min-height: 48px;
  }

  .section,
  .split-section,
  .category-section,
  .listing-section,
  .home-featured,
  .invest-section,
  .payment-section,
  .social-proof-section,
  .faq-section,
  .region-section,
  .brand-section,
  .about-section,
  .contact-band {
    width: min(100% - 28px, 1160px);
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .home-featured,
  .about-section,
  .payment-section,
  .internal-hero,
  .detail-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .metrics {
    width: min(100% - 28px, 1160px);
  }

  .property-info p {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-brand img {
    width: 112px;
  }

  .listing-section {
    padding-top: 52px;
  }

  .page-title h2,
  .brand-section h2,
  .about-section h2 {
    font-size: 2.2rem;
  }

  .pillar-grid article {
    min-height: 0;
  }

  .pillar-grid span {
    margin-bottom: 34px;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .property-highlights {
    min-height: auto;
  }

  .event-card img {
    height: 190px;
  }

  .academy-login-card {
    padding: 26px 20px;
  }
}
