* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #eef1f6;
  background: #07090d;
}
a {
  text-decoration: none;
  color: inherit;
}
:focus-visible {
  outline: 2px solid #d7b66a;
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  border-bottom: 1px solid #1b2029;
  background: rgba(7, 9, 13, 0.88);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 14px;
}
.brand b {
  color: #a7adb9;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d7b66a;
  border-radius: 10px;
  color: #d7b66a;
  font-family: Manrope;
}
.nav nav {
  display: flex;
  gap: 30px;
  color: #aeb5c1;
  font-size: 14px;
}
@media (min-width: 901px) {
  .nav nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.nav nav a:hover,
.text-link:hover {
  color: #d7b66a;
}
.nav-cta {
  border: 1px solid #303641;
  padding: 11px 17px;
  border-radius: 10px;
  font-size: 13px;
  transition:
    transform 0.2s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.nav-cta:hover {
  border-color: #d7b66a;
  background: rgba(215, 182, 106, 0.08);
  transform: translateY(-2px);
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 24px;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 75px 8%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 75% 35%,
    #202015 0,
    #0a0c10 35%,
    #07090d 65%
  );
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  right: -180px;
  top: 40px;
  background: #d7b66a;
  filter: blur(170px);
  opacity: 0.1;
  z-index: 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #07090d 20%,
    rgba(7, 9, 13, 0.9) 42%,
    rgba(7, 9, 13, 0.62) 62%,
    rgba(7, 9, 13, 0.3) 100%
  );
}
@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-2%, -1.5%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo img {
    animation: none;
  }
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow,
.kicker {
  font-size: 18px;
  letter-spacing: 2px;
  color: #e1a72e;
  font-weight: 700;
}
.pulse,
.online {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7bd88f;
  margin-right: 8px;
}
.hero h1 {
  font: 800 clamp(48px, 6vw, 82px)/0.98 Manrope;
  margin: 18px 0 24px;
  letter-spacing: -3px;
}
.hero h1 em {
  font-style: normal;
  color: #d7b66a;
}
.hero-copy > p {
  max-width: 570px;
  color: #9ea6b4;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 34px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  padding: 14px 21px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.btn:active {
  transform: scale(0.97);
}
.primary {
  background: #d7b66a;
  color: #111;
}
.primary:hover {
  background: #e7c879;
  box-shadow: 0 10px 30px rgba(215, 182, 106, 0.25);
}
.ghost,
.outline {
  background: transparent;
  border-color: #353b46;
  color: #eef1f6;
}
.ghost:hover,
.outline:hover {
  border-color: #d7b66a;
  color: #d7b66a;
}
.trust-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
.trust-row div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.trust-row strong {
  font: 800 22px Manrope;
}
.trust-row span {
  font-size: 10px;
  line-height: 1.3;
  color: #7e8795;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-visual {
  min-height: 500px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid #262b32;
  border-radius: 50%;
  width: 430px;
  height: 430px;
}
.orbit2 {
  width: 550px;
  height: 550px;
  border-style: dashed;
  opacity: 0.45;
}
.property-card {
  width: min(380px, 85%);
  background: #11151c;
  border: 1px solid #2b3039;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 35px 90px #0009;
  position: relative;
  z-index: 2;
}
.floating {
  animation: float 5s ease-in-out infinite;
}
.property-img {
  height: 245px;
  background: linear-gradient(135deg, #252a25, #706f62 45%, #181b20);
  position: relative;
}
.property-img:after {
  content: "";
  position: absolute;
  inset: 28px 35px 0;
  background: linear-gradient(160deg, #4b5148, #9c9578 48%, #20252a);
  clip-path: polygon(0 100%, 0 35%, 48% 0, 100% 30%, 100% 100%);
  opacity: 0.8;
}
.card-body {
  padding: 20px;
}
.tag {
  font-size: 9px;
  color: #d7b66a;
  border: 1px solid #695b37;
  padding: 5px 8px;
  border-radius: 5px;
}
.verified {
  float: right;
  font-size: 9px;
  color: #78d18b;
}
.card-body h3 {
  font: 700 23px Manrope;
  margin: 17px 0 5px;
}
.card-body p {
  color: #8f97a5;
  font-size: 12px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.price-row strong {
  font-size: 20px;
}
.price-row span {
  font-size: 10px;
  color: #d7b66a;
}
.ai-badge {
  position: absolute;
  right: 4%;
  top: 24%;
  z-index: 3;
  background: #161b1b;
  border: 1px solid #3a4238;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 9px;
  color: #8e988d;
  box-shadow: 0 15px 40px #0007;
}
.ai-badge span {
  color: #d7b66a;
}
.ai-badge b {
  color: #d7b66a;
  font-size: 20px;
}
.search-panel {
  margin: -35px 8% 0;
  position: relative;
  z-index: 4;
  background: #11151b;
  border: 1px solid #282e37;
  border-radius: 16px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 25px 70px #0007;
}
.search-panel small {
  color: #6f7784;
  letter-spacing: 1.5px;
  font-size: 9px;
}
.search-panel h2 {
  font: 700 23px Manrope;
  margin: 7px 0 0;
}
.filters {
  display: flex;
  gap: 8px;
}
.filters label {
  background: #191e26;
  border: 1px solid #2a3039;
  padding: 8px 12px;
  border-radius: 8px;
  color: #727b89;
  font-size: 9px;
}
.filters select {
  display: block;
  background: transparent;
  color: #e7e9ed;
  border: 0;
  outline: 0;
  margin-top: 3px;
  font-size: 12px;
}
.search-btn {
  border: 0;
  border-radius: 9px;
  background: #d7b66a;
  color: #111;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}
.section {
  padding: 110px 8%;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head h2 {
  font: 800 clamp(30px, 4vw, 48px) Manrope;
  margin: 10px 0 0;
  letter-spacing: -1.5px;
}
.section-head > p {
  max-width: 430px;
  color: #7b7b7b;
  line-height: 1.6;
}
.ai-demo {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border: 1px solid #282e37;
  border-radius: 20px;
  overflow: hidden;
  background: #0e1218;
}
.ai-side {
  padding: 50px;
  background: radial-gradient(circle at 0 0, #242316, #0e1218 55%);
}
.ai-logo {
  width: 58px;
  height: 58px;
  border: 1px solid #766338;
  color: #d7b66a;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 25px;
}
.ai-side h3 {
  font: 700 27px Manrope;
  margin: 25px 0 10px;
}
.ai-side p {
  color: #8b93a0;
  line-height: 1.7;
  margin-bottom: 30px;
}
.chat-window {
  min-height: 380px;
  background: #090c11;
}
.chat-top {
  padding: 17px 22px;
  border-bottom: 1px solid #222832;
  font-weight: 700;
}
.chat-top small {
  color: #6e7785;
  margin-left: 6px;
  font-weight: 400;
}
.messages {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 275px;
}
.bubble {
  max-width: 75%;
  padding: 13px 16px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.5;
}
.bubble.bot {
  background: #171c23;
  color: #cfd4dc;
  align-self: flex-start;
}
.bubble.user {
  background: #d7b66a;
  color: #111;
  align-self: flex-end;
}
.chat-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid #222832;
  gap: 8px;
}
.chat-input input {
  flex: 1;
  background: #151a21;
  border: 1px solid #2a3039;
  color: white;
  border-radius: 9px;
  padding: 12px;
  outline: 0;
}
.chat-input button {
  width: 45px;
  border: 0;
  border-radius: 9px;
  background: #d7b66a;
}
.light {
  background: #f3f2ee;
  color: #101318;
}
.center {
  display: block;
  text-align: center;
}
.center p {
  margin: 12px auto;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.features article {
  background: #fff;
  border: 1px solid #ddd9ce;
  padding: 28px;
  border-radius: 15px;
  min-height: 220px;
}
.features article > span {
  color: #aa8b42;
  font-size: 24px;
}
.features h3 {
  font: 700 18px Manrope;
  margin: 24px 0 9px;
}
.features p {
  color: #68707b;
  line-height: 1.6;
  font-size: 13px;
}
.listings {
  background: #0a0d12;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.listing {
  background: #12161d;
  border: 1px solid #282e37;
  border-radius: 15px;
  overflow: hidden;
}
.listing-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #171b21;
}
.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.listing:hover .listing-img img {
  transform: scale(1.06);
}
.listing-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 9, 13, 0.05) 55%,
    rgba(7, 9, 13, 0.55) 100%
  );
  pointer-events: none;
}
.listing-img span {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 15px;
  background: #d7b66a;
  color: #111;
  font-size: 9px;
  font-weight: 800;
  padding: 7px 9px;
  border-radius: 5px;
}
.listing-body {
  padding: 22px;
}
.listing-body small {
  color: #7f8794;
}
.listing-body h3 {
  font: 700 19px Manrope;
  margin: 9px 0;
}
.meta {
  color: #9ca4b0;
  font-size: 11px;
  margin-bottom: 18px;
}
.listing-body strong {
  font-size: 17px;
}
.cta {
  margin: 0 8% 100px;
  border-radius: 20px;
  padding: 65px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(110deg, #25251e, #12151b);
  border: 1px solid #34362e;
}
.cta h2 {
  font: 800 clamp(28px, 4vw, 48px) Manrope;
  margin: 10px 0 0;
}
.cta-actions {
  display: flex;
  gap: 10px;
}
.white {
  background: #f5f2ea;
  color: #101216;
}
.outline {
  border-color: #555a61;
}
.full {
  width: 100%;
}
footer {
  padding: 45px 8%;
  border-top: 1px solid #1d222a;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  color: #707987;
}
footer p {
  font-size: 12px;
}
footer small {
  grid-column: 1/-1;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  margin-top: 0;
  width: auto;
}
.modal {
  position: fixed;
  inset: 0;
  background: #000b;
  display: none;
  place-items: center;
  z-index: 50;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal.show {
  display: grid;
  opacity: 1;
}
.modal-card {
  width: min(550px, 100%);
  background: #11151c;
  border: 1px solid #303640;
  border-radius: 18px;
  padding: 32px;
  position: relative;
  box-shadow: 0 30px 100px #000;
  transform: translateY(14px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s ease;
}
.modal.show .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-card h2 {
  font: 800 30px Manrope;
  margin: 10px 0;
}
.modal-card p {
  color: #8c95a2;
  line-height: 1.6;
}
.close {
  position: absolute;
  right: 17px;
  top: 14px;
  background: none;
  border: 0;
  color: #aab1bd;
  font-size: 27px;
  cursor: pointer;
}
.modal textarea {
  width: 100%;
  height: 130px;
  background: #191e25;
  border: 1px solid #303640;
  color: white;
  border-radius: 10px;
  padding: 14px;
  resize: vertical;
  margin: 15px 0;
  outline: 0;
}
.ai-result {
  margin-top: 15px;
  color: #d7b66a;
  line-height: 1.6;
}
.text-link {
  font-size: 13px;
  color: #d7b66a;
}
@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}
@media (max-width: 900px) {
  .nav nav,
  .nav-cta {
    display: none;
  }
  .menu {
    display: block;
  }
  .nav {
    justify-content: flex-end;
  }
  .nav .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .trust-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 40px;
  }
  .hero-visual {
    margin-top: 35px;
  }
  .search-panel,
  .section-head {
    display: block;
  }
  .filters {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .search-btn {
    height: 45px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .ai-demo {
    grid-template-columns: 1fr;
  }
  .cta {
    display: block;
  }
  .cta-actions {
    margin-top: 25px;
  }

  /* ===== Center all headings/text on mobile ===== */
  .section-head,
  .section-head > div,
  .section-head h2,
  .section-head > p,
  .section-head .kicker {
    text-align: center;
  }
  .section-head > p {
    margin: 0 auto;
  }
  .about-card,
  .mission-card {
    text-align: center;
  }
  .about-card p,
  .mission-card p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-pills,
  .mini-stats {
    justify-content: center;
  }
  .service-title {
    text-align: center;
  }
  .service-card {
    text-align: center;
  }
  .service-icon {
    margin: 0 auto;
  }
  .service-card p {
    margin-left: auto;
    margin-right: auto;
  }
  .process > div:first-child {
    text-align: center;
  }
  .process-steps > div {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #353b44;
    padding-top: 18px;
  }
  .cta {
    text-align: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .cta-actions .btn {
    white-space: nowrap;
  }
  .location-info {
    text-align: center;
  }
  .rating-badge,
  .location-actions {
    justify-content: center;
  }
  .review-card {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .nav {
    padding: 0 5%;
  }
  .hero {
    padding-left: 5%;
    padding-right: 5%;
  }
  .hero h1 {
    letter-spacing: -2px;
  }
  .trust-row {
    gap: 18px;
  }
  .trust-row strong {
    font-size: 18px;
  }
  .search-panel {
    margin-left: 5%;
    margin-right: 5%;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 75px 5%;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .cta {
    margin-left: 5%;
    margin-right: 5%;
  }
  .hero-visual {
    min-height: 430px;
  }
  .orbit {
    width: 320px;
    height: 320px;
  }
  .orbit2 {
    width: 390px;
    height: 390px;
  }
  .property-card {
    width: 330px;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-bottom: 85px;
}
.about-card,
.mission-card {
  border: 1px solid #d9d6cc;
  border-radius: 18px;
  padding: 38px;
  background: #fff;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s;
}
.about-card:hover,
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px #00000014;
}
.about-number {
  font: 800 12px Manrope;
  color: #aa8b42;
  letter-spacing: 2px;
}
.about-card h3 {
  font: 800 30px Manrope;
  margin: 12px 0 18px;
}
.about-card p,
.mission-card p {
  color: #69717c;
  line-height: 1.75;
  font-size: 14px;
}
.about-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.about-pills span {
  font-size: 10px;
  border: 1px solid #d8d4c8;
  border-radius: 30px;
  padding: 8px 11px;
  color: #5d6470;
}
.mission-card {
  background: #171a1e;
  color: #f3f0e7;
  border-color: #30332f;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-card h3 {
  font: 800 31px/1.18 Manrope;
  margin: 15px 0;
}
.mission-card p {
  color: #a4a9ad;
}
.mini-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid #343832;
  padding-top: 23px;
  margin-top: 25px;
}
.mini-stats strong {
  display: block;
  font: 800 20px Manrope;
  color: #d7b66a;
}
.mini-stats small {
  color: #8e969e;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-title {
  margin-bottom: 28px;
}
.service-title h2 {
  font: 800 34px Manrope;
  margin: 10px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  background: #fff;
  border: 1px solid #ddd9ce;
  border-radius: 15px;
  padding: 25px;
  min-height: 250px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px #00000014;
  border-color: #d7b66a;
}
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #f2eee4;
  color: #aa8b42;
  font-size: 21px;
  transition:
    transform 0.35s,
    background 0.35s;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
  background: #eadfc0;
}
.service-card h3 {
  font: 700 17px Manrope;
  margin: 20px 0 9px;
}
.service-card p {
  font-size: 12px;
  line-height: 1.65;
  color: #6d7480;
  min-height: 78px;
}
.service-card a {
  font-size: 11px;
  color: #a07f35;
  font-weight: 800;
  display: inline-block;
  transition:
    transform 0.25s,
    color 0.25s;
}
.service-card a:hover {
  color: #7a5f28;
  transform: translateX(3px);
}
.process {
  margin-top: 90px;
  padding: 40px;
  border-radius: 18px;
  background: #11151b;
  color: #eef1f6;
}
.process h2 {
  font: 800 32px Manrope;
  margin: 10px 0 30px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-steps > div {
  border-left: 1px solid #353b44;
  padding-left: 18px;
}
.process-steps b {
  color: #d7b66a;
  font-size: 11px;
}
.process-steps h3 {
  font: 700 16px Manrope;
  margin: 12px 0 5px;
}
.process-steps p {
  font-size: 11px;
  color: #8e97a3;
  line-height: 1.6;
}
.service-strip {
  margin: 0 8%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #15191f;
  border: 1px solid #292f38;
  border-radius: 14px;
  overflow: hidden;
}
.service-strip div {
  padding: 20px 22px;
  border-right: 1px solid #292f38;
}
.service-strip div:last-child {
  border-right: 0;
}
.service-strip span {
  display: block;
  color: #d7b66a;
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 800;
}
.service-strip b {
  display: block;
  margin-top: 7px;
  font: 600 12px Manrope;
  color: #dfe3e8;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .service-strip {
    grid-template-columns: 1fr 1fr;
  }
  .service-strip div:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .service-strip {
    margin: 0 5%;
    grid-template-columns: 1fr;
  }
  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid #292f38;
  }
  .service-strip div:last-child {
    border-bottom: 0;
  }
}

/* =========================================
   LOCATION & REVIEWS
   ========================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.location-info {
  background: #fff;
  border: 1px solid #ddd9ce;
  border-radius: 18px;
  padding: 34px;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.rating-badge .stars {
  color: #e1a72e;
  font-size: 15px;
  letter-spacing: 2px;
}
.rating-badge strong {
  font: 800 20px Manrope;
}
.rating-badge > span:last-child {
  font-size: 11px;
  color: #7b7b7b;
}
.location-info h3 {
  font: 800 22px Manrope;
  margin: 0 0 8px;
}
.location-address {
  color: #6d7480;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.location-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 18px;
  font-size: 12px;
  color: #555b63;
  border-top: 1px solid #eee;
  padding-top: 18px;
  margin-bottom: 26px;
}
.location-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.location-actions .outline {
  border-color: #d7c9a5;
  color: #292c31;
}
.location-actions .outline:hover {
  border-color: #aa8b42;
  color: #aa8b42;
}
.location-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ddd9ce;
  min-height: 320px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4px;
}
.review-card {
  background: #fff;
  border: 1px solid #ddd9ce;
  border-radius: 15px;
  padding: 24px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px #00000012;
}
.review-card .stars {
  display: block;
  color: #e1a72e;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 13px;
  color: #4a4f57;
  line-height: 1.65;
  margin-bottom: 12px;
}
.review-card .reviewer {
  font-size: 10px;
  color: #9aa0a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.see-reviews {
  display: inline-block;
  margin-top: 22px;
}
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.requirement-strip {
  margin: -20px 8% 0;
  position: relative;
  z-index: 4;
  background: #12171d;
  border: 1px solid #2a3039;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 25px 70px #0008;
}
.req-copy {
  max-width: 340px;
}
.req-copy h2 {
  font: 800 24px Manrope;
  margin: 8px 0;
}
.req-copy p {
  font-size: 12px;
  line-height: 1.6;
  color: #8c95a2;
}
.req-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
}
.req-choice {
  position: relative;
  border: 1px solid #2a3039;
  background: linear-gradient(160deg, #1b212b, #14171e 70%);
  color: #eef1f6;
  border-radius: 14px;
  text-align: left;
  padding: 34px 18px 20px;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s,
    box-shadow 0.35s,
    background 0.35s;
}
.req-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 25% 0%,
    rgba(215, 182, 106, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.req-choice:hover {
  border-color: #d7b66a;
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px #0006,
    0 0 0 1px rgba(215, 182, 106, 0.25);
}
.req-choice:hover::before {
  opacity: 1;
}
.req-choice span {
  position: relative;
  z-index: 1;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: rgba(215, 182, 106, 0.12);
  border: 1px solid rgba(215, 182, 106, 0.32);
  transition:
    transform 0.35s,
    background 0.35s;
}
.req-choice:hover span {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(215, 182, 106, 0.22);
}
.req-choice b {
  position: relative;
  z-index: 1;
  display: block;
  font: 700 13px Manrope;
  letter-spacing: 0.3px;
}
.req-choice small {
  position: relative;
  z-index: 1;
  display: block;
  color: #7e8794;
  font-size: 10px;
  margin-top: 6px;
  padding-right: 22px;
}
.req-choice::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 13px;
  color: #d7b66a;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}
.req-choice:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.req-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(215, 182, 106, 0.14);
  border: 1px solid rgba(215, 182, 106, 0.4);
  color: #d7b66a;
}
.req-choice[data-intent="buy"] span {
  background: rgba(123, 216, 143, 0.14);
  border-color: rgba(123, 216, 143, 0.35);
}
.req-choice[data-intent="buy"] .req-badge {
  background: rgba(123, 216, 143, 0.14);
  border-color: rgba(123, 216, 143, 0.4);
  color: #7bd88f;
}
.req-choice[data-intent="sell"] span {
  background: rgba(231, 167, 46, 0.16);
  border-color: rgba(231, 167, 46, 0.4);
}
.req-choice[data-intent="sell"] .req-badge {
  background: rgba(231, 167, 46, 0.16);
  border-color: rgba(231, 167, 46, 0.4);
  color: #e1a72e;
}
.req-choice[data-intent="service"] span {
  background: rgba(157, 140, 255, 0.16);
  border-color: rgba(157, 140, 255, 0.4);
}
.req-choice[data-intent="service"] .req-badge {
  background: rgba(157, 140, 255, 0.16);
  border-color: rgba(157, 140, 255, 0.4);
  color: #a99bff;
}
.ai-points {
  margin-top: 25px;
  display: grid;
  gap: 9px;
  color: #9ca4ae;
  font-size: 10px;
}
.chat-secure {
  float: right;
  color: #6d7784;
  font-size: 9px;
}
.quick-replies {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.quick-replies button {
  background: #1d232b;
  color: #d7b66a;
  border: 1px solid #343b45;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 10px;
  cursor: pointer;
}
.lead-progress {
  margin-bottom: 25px;
}
.lead-progress span {
  font-size: 9px;
  color: #7d8794;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lead-progress > div {
  height: 3px;
  background: #292f37;
  border-radius: 5px;
  margin-top: 8px;
}
.lead-progress i {
  display: block;
  height: 100%;
  width: 25%;
  background: #d7b66a;
  border-radius: 5px;
}
.lead-card {
  width: min(620px, 100%);
}
.lead-card h2 {
  margin-bottom: 5px;
}
.lead-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}
.lead-option {
  background: #191e25;
  border: 1px solid #303640;
  border-radius: 11px;
  padding: 15px;
  color: #e8ebef;
  text-align: left;
  cursor: pointer;
}
.lead-option:hover,
.lead-option.selected {
  border-color: #d7b66a;
  background: #211f18;
}
.lead-option b {
  display: block;
  font-size: 13px;
}
.lead-option small {
  display: block;
  color: #808996;
  margin-top: 5px;
  font-size: 10px;
}
.lead-field {
  margin: 14px 0;
}
.lead-field label {
  display: block;
  font-size: 10px;
  color: #89929f;
  margin-bottom: 6px;
}
.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  background: #191e25;
  border: 1px solid #303640;
  color: white;
  border-radius: 9px;
  padding: 12px;
  outline: 0;
}
.lead-field textarea {
  min-height: 90px;
}
.lead-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.lead-actions #leadBack {
  display: none;
}
@media (max-width: 900px) {
  .requirement-strip {
    display: block;
  }
  .req-actions {
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  .requirement-strip {
    margin-left: 5%;
    margin-right: 5%;
    padding: 22px;
  }
  .req-actions {
    grid-template-columns: 1fr;
  }
  .lead-options {
    grid-template-columns: 1fr;
  }
}
/* Vital Enterprises simplified 2026 branding */
.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 25px;
  color: #171a1f;
  margin-top: 15px;
}
.brand-name b {
  color: #555b63;
}
.nav {
  background: #f7f5ef;
  color: #171a1f;
}
.nav nav {
  color: #34383f;
}
.nav nav a {
  color: inherit;
}
.nav-cta {
  border-color: #d7c9a5;
  color: #292c31;
  background: #fff;
}
.menu {
  color: #171a1f;
}
.footer-brand img {
  width: 72px;
  height: 72px;
}
.footer-brand .brand-name {
  color: #eef1f6;
  font-size: 22px;
}
.footer-brand .brand-name b {
  color: #aeb5c1;
}
.journey-card {
  width: min(400px, 88%);
  background: #11151c;
  border: 1px solid #2b3039;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 35px 90px #0009;
  position: relative;
  z-index: 2;
}
.journey-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.journey-card h3 {
  font: 800 25px/1.2 Manrope;
  margin: 24px 0;
}
.journey-step {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid #272d35;
}
.journey-step > b {
  color: #d7b66a;
  font-size: 11px;
  min-width: 25px;
}
.journey-step strong {
  display: block;
  font-size: 13px;
}
.journey-step small {
  display: block;
  color: #7f8794;
  font-size: 10px;
  margin-top: 4px;
}

.linkedin-btn {
  display: inline-flex;
  margin-top: 10px;
  padding: 11px 16px;
  border: 1px solid #3c4650;
  border-radius: 9px;
  color: #eef1f6;
  font-size: 12px;
}
.linkedin-btn:hover {
  border-color: #d7b66a;
  color: #d7b66a;
}
.property-card {
  display: none;
}

/* =========================================
   CEO SECTION
   ========================================= */
.ceo-section {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #11151c;
  border: 1px solid #282e37;
  border-radius: 20px;
  padding: 44px;
  margin: 10px 0 80px;
}
.ceo-avatar {
  width: 200px;
  height: 240px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 25px 60px #0007;
}
.ceo-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}
.ceo-copy h1 {
  font: 800 28px Manrope;
  margin: 0 0 4px;
  color: #eef1f6;
  letter-spacing: -0.5px;
}
.ceo-copy h2 {
  font: 600 13px Manrope;
  color: #d7b66a;
  margin: 0 0 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ceo-copy h3 {
  font: 700 16px Manrope;
  margin: 0 0 10px;
  color: #eef1f6;
}
.ceo-copy p {
  color: #9ea6b4;
  line-height: 1.75;
  font-size: 14px;
  max-width: 640px;
}

/* =========================================
   MOBILE NAV
   ========================================= */
@media (max-width: 900px) {
  .nav nav.mobile-open {
    display: flex;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #f7f5ef;
    border-bottom: 1px solid #ddd6c7;
    padding: 18px 6%;
    flex-direction: column;
    gap: 16px;
    color: #222;
    animation: navSlideDown 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav nav.mobile-open a {
    color: #222;
  }
  .ceo-section {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 26px;
  }
}
@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   FOOTER - NAVIGATION + SOCIAL ICONS
   ========================================= */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: auto;
}

/* Social icons row - pushed a little below the nav links, shown bigger */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.footer-social-icons a {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
  color: #d7b66a;
  background: transparent;
  border: 1px solid #3a414b;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.2s;
}

.footer-social-icons a i {
  display: block;
  font-size: 19px;
  line-height: 1;
}

.footer-social-icons a:hover {
  background: #d7b66a;
  color: #11161c;
  border-color: #d7b66a;
  transform: translateY(-3px);
}

/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 800px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
  }
  footer p {
    margin: 0 auto;
  }
  .footer-right {
    align-items: center;
    margin-top: 26px;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .footer-social-icons {
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 56px;
    height: 56px;
  }
  .brand-name {
    font-size: 15px;
  }
  .footer-brand img {
    width: 62px;
    height: 62px;
  }
  .journey-card {
    width: 330px;
  }
  .ceo-section {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }
  .ceo-avatar {
    width: 150px;
    height: 180px;
  }
  .ceo-copy p {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .footer-social-icons a {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 17px;
  }
  .footer-social-icons a i {
    font-size: 17px;
  }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.55;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.5);
}
.wa-float-tip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: #11151c;
  color: #eef1f6;
  border: 1px solid #2a3039;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.wa-float:hover .wa-float-tip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media (max-width: 560px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .wa-float-tip {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before {
    animation: none;
  }
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================================
   CHAT REALISM — typing indicator, timestamps, handoff
   ========================================= */
.msg-time {
  font-size: 9px;
  color: #5a6270;
  margin: 3px 4px 0;
}
.bubble.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
}
.bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8f97a5;
  animation: chatBlink 1.2s infinite ease-in-out;
}
.bubble.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.bubble.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes chatBlink {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
.chat-input input:disabled {
  opacity: 0.55;
}
.chat-input button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quick-replies a {
  background: #d7b66a;
  color: #111;
  font-weight: 800;
  border: 1px solid #d7b66a;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: 10px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.quick-replies a:hover {
  background: #e7c879;
}
