:root {
  --bg-cream: #f7f1e8;
  --bg-sand: #f0dfc4;
  --brand-green: #1d6b52;
  --brand-forest: #124536;
  --brand-orange: #d46b2d;
  --text-main: #1c1f1f;
  --text-soft: #4d5658;
  --surface: #fffdfa;
  --line: #d9cdb8;
  --shadow: 0 18px 40px rgba(13, 45, 35, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 107, 45, 0.16), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(29, 107, 82, 0.2), transparent 34%),
    linear-gradient(180deg, var(--bg-cream) 0%, #f6efe4 35%, #f2ebdf 100%);
}

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 0.34rem 4vw;
  background: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 69, 54, 0.1);
  animation: topbar-enter 0.42s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: var(--brand-forest);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

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

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.26rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 69, 54, 0.16);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 8px 20px rgba(13, 45, 35, 0.08);
}

.main-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.38rem 0.92rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  background: rgba(29, 107, 82, 0.14);
  color: var(--brand-forest);
  transform: translateY(-1px);
}

.main-nav .nav-current {
  background: linear-gradient(145deg, var(--brand-green), #0c503b);
  color: #fff;
  box-shadow: 0 6px 14px rgba(12, 80, 59, 0.28);
}

.cta-nav {
  text-decoration: none;
  padding: 0.56rem 0.92rem;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-green);
  font-size: 0.88rem;
  font-weight: 600;
}

.topbar-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.cta-nav-secondary {
  color: var(--brand-forest);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 69, 54, 0.22);
}

.map-layout-wide {
  grid-template-columns: 1.65fr 1fr;
}

@keyframes topbar-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding-bottom: 4.5rem;
}

section {
  margin-top: 3.4rem;
}

.hero {
  position: relative;
  padding: 4.6rem 3rem 3rem;
  background:
    linear-gradient(150deg, rgba(7, 32, 25, 0.6), rgba(7, 32, 25, 0.2)),
    linear-gradient(160deg, rgba(29, 107, 82, 0.12), rgba(212, 107, 45, 0.12)),
    url("output/imagegen/hero-nova-terra.webp") center/cover no-repeat;
  border: 1px solid rgba(18, 69, 54, 0.16);
  border-radius: 2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -48% auto;
  width: 410px;
  height: 410px;
  border-radius: 55% 45% 63% 37%;
  background: linear-gradient(170deg, rgba(212, 107, 45, 0.34), rgba(29, 107, 82, 0.08));
  animation: floaty 8s ease-in-out infinite;
}

.eyebrow {
  margin: 0;
  color: var(--brand-green);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero .eyebrow {
  color: #f5bf96;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  max-width: 16ch;
  margin: 0.9rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  color: #f7f7f3;
}

.hero-copy {
  max-width: 64ch;
  margin: 0;
  color: rgba(247, 247, 243, 0.92);
  font-size: 1.05rem;
}

.hero-search {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.7rem;
  align-items: end;
}

.search-field {
  display: grid;
  gap: 0.32rem;
}

.search-step label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.field-hint {
  margin: 0;
  font-size: 0.74rem;
  color: rgba(247, 247, 243, 0.82);
}

.field-hint-light {
  color: var(--text-soft);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(247, 247, 243, 0.2);
  border: 1px solid rgba(247, 247, 243, 0.4);
  color: rgba(247, 247, 243, 0.95);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  padding: 0.1rem 0.45rem;
}

.search-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.hero .search-field label {
  color: rgba(247, 247, 243, 0.9);
}

.search-field input,
.search-field select {
  width: 100%;
  border: 1px solid rgba(18, 69, 54, 0.24);
  border-radius: 0.75rem;
  padding: 0.72rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffef9;
}

.search-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(18, 69, 54, 0.65) 50%),
    linear-gradient(135deg, rgba(18, 69, 54, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.search-field select[multiple] {
  appearance: auto;
  background-image: none;
  min-height: 120px;
  padding-right: 0.8rem;
}

.check-dropdown {
  position: relative;
}

.check-trigger {
  width: 100%;
  border: 1px solid rgba(18, 69, 54, 0.24);
  border-radius: 0.75rem;
  padding: 0.72rem 0.8rem;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background: #fffef9;
  cursor: pointer;
}

.check-trigger::after {
  content: "▾";
  float: right;
  color: rgba(18, 69, 54, 0.7);
}

.check-dropdown.open .check-trigger::after {
  content: "▴";
}

.check-menu {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  background: #fffef9;
  border: 1px solid rgba(18, 69, 54, 0.22);
  border-radius: 0.75rem;
  padding: 0.45rem;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 14px 28px rgba(13, 45, 35, 0.15);
}

.check-dropdown.open .check-menu {
  display: block;
}

.check-menu #heroStateOptions,
.check-menu #catalogStateOptions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.12rem;
}

.check-option {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  column-gap: 0.28rem;
  width: 100%;
  padding: 0.38rem 0.34rem;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  color: var(--text-main);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.check-option:hover {
  background: rgba(29, 107, 82, 0.1);
}

.check-option-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.check-option-disabled:hover {
  background: transparent;
}

.check-option-disabled span {
  color: #6f7677;
}

.check-option span {
  color: var(--text-main);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.check-option input[type="checkbox"] {
  accent-color: var(--brand-green);
  margin: 0;
  width: 14px;
  height: 14px;
}

.check-option input[type="checkbox"]:disabled {
  accent-color: #aab3b4;
  cursor: not-allowed;
}

.check-trigger-light {
  background: #fffef9;
}

.check-menu-light {
  background: #fffef9;
}

.search-field input:disabled {
  cursor: not-allowed;
  color: rgba(77, 86, 88, 0.7);
  background: #f4f0e7;
}

.search-field select:disabled {
  cursor: not-allowed;
  color: rgba(77, 86, 88, 0.7);
  background: #f4f0e7;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 0.9rem;
  padding: 0.8rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--brand-green), #0c503b);
}

.btn-outline {
  color: var(--brand-forest);
  border: 1px solid rgba(18, 69, 54, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.btn-soft {
  color: #f7f7f3;
  border: 1px solid rgba(247, 247, 243, 0.4);
  background: rgba(12, 80, 59, 0.36);
}

.hero-metrics {
  margin-top: 2.1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.95rem;
  padding: 1rem;
}

.hero-metrics h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

.hero-metrics p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0.5rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.step-card span {
  font-family: "Sora", sans-serif;
  color: var(--brand-orange);
  font-weight: 700;
}

.step-card h3 {
  margin: 0.5rem 0 0.3rem;
  font-family: "Sora", sans-serif;
}

.step-card p {
  margin: 0;
  color: var(--text-soft);
}

.map-section {
  padding: 1.8rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 250, 243, 0.93));
  border: 1px solid rgba(18, 69, 54, 0.14);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.chip {
  border: 1px solid rgba(18, 69, 54, 0.2);
  background: #fffcf7;
  color: var(--brand-forest);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.chip.active {
  background: var(--brand-green);
  color: #fff;
}

.map-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: start;
}

#map {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 420px;
  border-radius: 1rem;
  border: 1px solid rgba(18, 69, 54, 0.16);
}

.listing-panel {
  position: relative;
  background: #fffefb;
  border: 1px solid rgba(18, 69, 54, 0.14);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.listing-panel h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.property-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.62rem;
  overflow-y: auto;
  min-height: 0;
  flex: 1;
  padding-right: 0.25rem;
}

.property-list.is-scrollable {
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 69, 54, 0.55) rgba(18, 69, 54, 0.12);
}

.property-list.is-scrollable::-webkit-scrollbar {
  width: 10px;
}

.property-list.is-scrollable::-webkit-scrollbar-track {
  background: rgba(18, 69, 54, 0.1);
  border-radius: 999px;
}

.property-list.is-scrollable::-webkit-scrollbar-thumb {
  background: rgba(18, 69, 54, 0.55);
  border-radius: 999px;
  border: 2px solid rgba(255, 252, 246, 0.95);
}

.listing-panel.is-scrollable::after {
  content: "Desliza";
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(18, 69, 54, 0.75);
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(18, 69, 54, 0.2);
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  pointer-events: none;
}

.property-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(18, 69, 54, 0.16);
  border-radius: 0.8rem;
  padding: 0.72rem;
  background: #fffcf6;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.property-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(12, 80, 59, 0.12);
}

.property-item h4 {
  margin: 0;
  font-size: 0.95rem;
  font-family: "Sora", sans-serif;
}

.property-item p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.price {
  color: var(--brand-green);
  font-weight: 800;
  margin-top: 0.4rem;
}

.finance-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

.finance-controls,
.finance-result {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.finance-controls label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-forest);
}

.finance-controls input[type="range"] {
  width: 100%;
  margin: 0 0 1rem;
  accent-color: var(--brand-orange);
}

.enhanced-controls {
  display: grid;
  gap: 1rem;
}

.control-group {
  display: grid;
  gap: 0.45rem;
}

.control-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.control-head output {
  font-weight: 700;
  color: var(--brand-green);
  font-size: 0.9rem;
}

.control-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.enhanced-controls input[type="number"] {
  width: 100%;
  border: 1px solid rgba(18, 69, 54, 0.2);
  border-radius: 0.7rem;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffef9;
}

.finance-result p {
  margin: 0;
  color: var(--text-soft);
}

.finance-result h3 {
  margin: 0.4rem 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brand-green);
}

.finance-result ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.55rem;
}

.signup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.signup-info,
.signup-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.signup-info h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.signup-info ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.58rem;
}

.signup-form {
  display: grid;
  gap: 0.55rem;
}

.signup-form label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--brand-forest);
}

.signup-form input,
.signup-form select {
  width: 100%;
  border: 1px solid rgba(18, 69, 54, 0.2);
  border-radius: 0.7rem;
  padding: 0.72rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffef9;
}

.enterprise-card {
  background:
    linear-gradient(130deg, rgba(8, 40, 31, 0.92), rgba(8, 40, 31, 0.82)),
    radial-gradient(circle at 84% 18%, rgba(255, 231, 209, 0.14), transparent 35%),
    url("output/imagegen/enterprise-b2b.webp") center/cover no-repeat;
  color: #f8f7f2;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.enterprise-card .eyebrow {
  color: #f5bf96;
}

.enterprise-card h2 {
  margin: 0.55rem 0 0.7rem;
  font-family: "Sora", sans-serif;
}

.enterprise-card p {
  max-width: 72ch;
  color: rgba(248, 247, 242, 0.9);
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0 1.35rem;
}

.enterprise-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.95rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.enterprise-grid h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.enterprise-grid p {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: rgba(248, 247, 242, 0.86);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-visual {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 100%;
}

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

.contact-form label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--brand-forest);
}

.contact-form input,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(18, 69, 54, 0.2);
  border-radius: 0.7rem;
  padding: 0.72rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffef9;
}

.footer {
  text-align: center;
  padding: 1rem 0 2rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.catalog-hero {
  padding: 2.3rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(29, 107, 82, 0.18), rgba(212, 107, 45, 0.14));
  border: 1px solid rgba(18, 69, 54, 0.16);
}

.catalog-hero h1 {
  margin: 0.65rem 0 0.6rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.catalog-hero p {
  margin: 0;
  color: var(--text-soft);
  max-width: 64ch;
}

.catalog-panel {
  padding: 1.6rem;
  border-radius: 1.3rem;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(18, 69, 54, 0.14);
}

.catalog-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto auto;
  gap: 0.7rem;
  align-items: end;
}

.price-range-field {
  min-width: 260px;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.price-range-sliders {
  display: grid;
  gap: 0.35rem;
}

.price-range-sliders input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: var(--brand-orange);
}

.catalog-summary p {
  margin: 1rem 0 0.8rem;
  color: var(--text-soft);
  font-weight: 700;
}

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

.catalog-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: #fffdf8;
  border: 1px solid rgba(18, 69, 54, 0.14);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 170px;
}

.catalog-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-content {
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.48rem;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.catalog-city {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.catalog-region {
  border: 1px solid rgba(18, 69, 54, 0.2);
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-forest);
  padding: 0.18rem 0.5rem;
  background: #fff7ea;
}

.catalog-content h3 {
  margin: 0;
  font-size: 1.03rem;
  font-family: "Sora", sans-serif;
}

.catalog-stats {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.catalog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
}

.catalog-price {
  margin: 0;
  color: var(--brand-green);
  font-size: 1rem;
  font-weight: 800;
}

.catalog-empty {
  background: #fffdfa;
  border: 1px solid rgba(18, 69, 54, 0.16);
  border-radius: 1rem;
  padding: 1rem;
}

.catalog-empty h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.catalog-empty p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.property-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff !important;
  margin-left: -7px !important;
  margin-top: -7px !important;
  background: var(--brand-orange);
  box-shadow: 0 0 0 5px rgba(212, 107, 45, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-18px, -16px) rotate(5deg);
  }
}

@media (max-width: 1040px) {
  .main-nav {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding: 3.3rem 1.5rem 2rem;
  }

  .steps-grid,
  .enterprise-grid,
  .signup-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-search,
  .catalog-filter-row {
    grid-template-columns: 1fr;
  }

  .map-layout,
  .finance-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  #map {
    min-height: 340px;
  }
}

@media (max-width: 700px) {
  .topbar {
    padding: 0.55rem 1rem;
    grid-template-columns: 1fr;
  }

  main {
    width: min(1180px, 95vw);
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-metrics,
  .steps-grid,
  .enterprise-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    display: none;
  }

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

  .catalog-thumb {
    max-height: 220px;
  }
}
