:root {
  --ink: #171717;
  --muted: #6b7280;
  --soft: #f7f7f4;
  --line: #e9e5de;
  --cream: #fffaf1;
  --gold: #c9a84c;
  --gold2: #f1d88a;
  --navy: #0b1736;
  --green: #143d35;
  --coral: #ff5a5f;
  --white: #fff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
   
    .brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:var(--primary);
    font-weight:800;
    font-size:1.45rem;
}

.brand-logo{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
}

.brand:hover .brand-logo{
    transform:rotate(-6deg) scale(1.06);
}

.brand:hover{
    color:var(--secondary);
}
    
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #393939;
  font-weight: 650;
  font-size: 0.95rem;
}
.desktop-nav a:hover,
.ghost-link:hover {
  color: var(--coral);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.btn-dark {
  background: #111;
  color: white;
}
.btn-dark:hover {
  background: var(--coral);
}
.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
}
.ghost-link {
  font-weight: 750;
  color: #333;
}
.menu-btn {
  display: none;
  border: 0;
  background: #111;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.mobile-menu {
  display: none;
}

/* =========================
   FIXED HOME HERO
   The search is now inside normal document flow.
   No absolute bottom positioning, so it cannot overlap text.
========================= */
.hero {
  position: relative;
  padding: 130px 24px 110px;
  overflow: hidden;
  min-height: auto;
}
.airbnb-hero {
  background: linear-gradient(180deg, #fff7ea 0%, #fff 78%);
}
.hero-bg-grid {
  position: absolute;
  z-index: 1;
  inset: 98px max(24px, calc((100vw - 1180px) / 2)) auto auto;
  width: min(580px, 45vw);
  height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  z-index: 1;
  top: 98px;
  right: max(0px, calc((100vw - 1180px) / 2) - 80px);
  width: 520px;
  height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.hero-bg-grid img:first-child {
  grid-row: span 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1030px, calc(100% - 32px));
  margin: 40px auto 0;
}
.hero-content .pill,
.hero-content h1,
.hero-content p {
  max-width: 560px;
}
.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  color: #474747;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero h1 {
  font-size: clamp(2.65rem, 4.7vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 22px 0 18px;
  max-width: 650px;
}
.hero p {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}
.floating-search {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  max-width: 1030px;
  margin: 100px 0 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  padding: 10px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 64px;
  align-items: center;
  z-index: 10;
}
.floating-search label {
  padding: 10px 20px;
  border-right: 1px solid var(--line);
}
.floating-search label:last-of-type {
  border-right: 1px solid var(--line);
}
.floating-search span {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  color: #111;
}
.floating-search input,
.floating-search select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #555;
  background: transparent;
  margin-top: 3px;
  min-width: 0;
}
.search-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--coral);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.search-circle:hover {
  filter: brightness(0.95);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}
.compact-top {
  padding-top: 30px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 950;
  color: var(--coral);
}
.eyebrow.light {
  color: var(--gold2);
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 8px 0;
}
.link-arrow {
  font-weight: 850;
  color: #111;
}
.link-arrow i {
  margin-left: 6px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.property-card {
  display: block;
  overflow: hidden;
}
.card-img {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: #eee;
}
.card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.55s ease;
}
.property-card:hover img {
  transform: scale(1.06);
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}
.badge.hot {
  background: var(--coral);
  color: #fff;
}
.badge.verified {
  background: #0e7a5f;
  color: #fff;
}
.badge.rent {
  background: var(--navy);
  color: #fff;
}
.card-body {
  padding: 13px 2px;
}
.card-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.card-row h3 {
  font-size: 1rem;
  margin: 0;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-row span {
  white-space: nowrap;
  font-weight: 800;
}
.card-row i {
  color: var(--coral);
}
.card-body p {
  margin: 5px 0;
  color: var(--muted);
}
.property-location {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-body strong {
  font-size: 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.story-card {
  padding: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #132c62, #0b1736);
  color: #fff;
}
.story-card p {
  color: #d9e2fb;
  line-height: 1.75;
  font-size: 1.04rem;
}
.ownership-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ownership-flow div,
.feature-card,
.trust-strip div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.ownership-flow i,
.feature-card i {
  font-size: 1.55rem;
  color: var(--coral);
  margin-bottom: 18px;
}
.ownership-flow span {
  display: block;
  font-size: 1.35rem;
  font-weight: 950;
}
.ownership-flow small {
  color: var(--muted);
}

.app-band {
  width: 100%;
  max-width: none;
  background: linear-gradient(135deg, #0b1736, #143d35);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 520px);
  justify-content: center;
  gap: 70px;
  padding: 100px 24px;
  overflow: hidden;
}
.app-copy p {
  color: #d9e2fb;
  font-size: 1.08rem;
  line-height: 1.7;
}
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 13px 18px;
  font-weight: 900;
}
.store i {
  font-size: 1.7rem;
}
.store small {
  display: block;
  font-size: 0.68rem;
  color: #666;
}
.phone-stack {
  position: relative;
  height: 450px;
}
.phone {
  position: absolute;
  width: 245px;
  height: 430px;
  border: 10px solid #111;
  border-radius: 40px;
  background: #fff;
  color: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: 12px;
}
.phone-one {
  left: 40px;
  top: 0;
  transform: rotate(-7deg);
}
.phone-two {
  right: 80px;
  top: 40px;
  transform: rotate(8deg);
}
.phone-top {
  width: 82px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: -12px auto 10px;
}
.phone img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
}
.phone h4 {
  margin: 14px 4px 4px;
  font-size: 1.1rem;
}
.phone p {
  margin: 0 4px;
  color: #666;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #111;
  color: #fff;
  border-radius: 36px;
  padding: 18px;
}
.trust-strip div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.trust-strip strong {
  display: block;
  font-size: 1.05rem;
}
.trust-strip span {
  color: #cfcfcf;
  font-size: 0.9rem;
}
.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  background: #111;
  color: #fff;
  padding: 60px max(24px, calc((100vw - 1180px) / 2));
}
.footer p,
.footer a {
  color: #ccc;
}
.footer a {
  display: block;
  margin: 10px 0;
}
.footer h4 {
  margin-top: 0;
}
.footer-brand {
  color: #fff;
}

.page-hero {
  padding: 140px 24px 56px;
  background: var(--cream);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 14px auto;
  max-width: 950px;
}
.page-hero p {
  max-width: 720px;
  margin: auto;
  color: #5d5d5d;
  font-size: 1.1rem;
  line-height: 1.7;
}
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.public-search {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  margin-bottom: 22px;
}
.public-search input,
.public-search select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  background: #fff;
}
.public-search button {
  min-height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  background: #091530;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.property-state,
.company-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 16px;
  color: #64748b;
}
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.load-more-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  background: #091530;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 850;
  cursor: pointer;
}
.chip.active,
.chip:hover {
  background: #111;
  color: #fff;
}
.detail-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 70px;
}
.detail-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 24px;
}
.detail-head h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}
.detail-meta {
  color: var(--muted);
  font-weight: 750;
}
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 10px;
  border-radius: 32px;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery img:first-child {
  grid-row: span 2;
}
.detail-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  margin-top: 42px;
}
.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 25px 0;
}
.amenity {
  padding: 18px;
  background: var(--soft);
  border-radius: 20px;
  font-weight: 850;
}
.booking-card {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  height: max-content;
}
.booking-card strong {
  font-size: 1.7rem;
}
.booking-card .btn {
  width: 100%;
  margin-top: 14px;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.company-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: block;
  color: inherit;
}
.company-card:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
}
.company-cover {
  height: 150px;
  background-size: cover;
  background-position: center;
}
.company-content {
  padding: 22px;
}
.company-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #111;
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-top: -52px;
  border: 4px solid #fff;
}
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.login-box h2 {
  margin-bottom: 24px;
}
.login-art {
  background:
    linear-gradient(135deg, rgba(11, 23, 54, 0.2), rgba(11, 23, 54, 0.75)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1300&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.login-art h3 {
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.login-panel {
  padding: 120px 70px;
  display: flex;
  align-items: center;
}

.login-box {
  width: 100%;
  max-width: 460px;
}

.input-group {
  margin: 16px 0;
}
.input-group label {
  display: block;
  font-weight: 850;
  margin-bottom: 8px;
}
.input-group input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  outline: 0;
}
.download-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}
.qr-box {
  padding: 35px;
  border-radius: 32px;
  background: var(--soft);
  text-align: center;
}
.qr {
  width: 190px;
  height: 190px;
  margin: 20px auto;
  background: repeating-linear-gradient(45deg, #111 0 8px, #fff 8px 16px);
  border: 18px solid #fff;
  box-shadow: var(--shadow);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.company-hero {
  background: linear-gradient(180deg, #fffaf1, #fff);
}
.tall-cards .feature-card {
  min-height: 260px;
}
.dashboard-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.dashboard-preview p {
  color: var(--muted);
  line-height: 1.8;
}
.dash-ui {
  background: #101827;
  color: #fff;
  border-radius: 34px;
  padding: 24px;
  box-shadow: 0 40px 100px rgba(16, 24, 39, 0.22);
}
.dash-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.dash-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dash-stat-row b {
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 22px;
  font-size: 2rem;
}
.dash-stat-row small {
  display: block;
  font-size: 0.78rem;
  color: #cbd5e1;
}
.dash-list {
  margin-top: 18px;
  background: #fff;
  color: #111;
  border-radius: 24px;
  padding: 18px;
}
.dash-list p {
  margin: 12px 0;
  color: #111;
}
.dash-list i {
  color: #0e7a5f;
  margin-right: 8px;
}
.mini-band {
  grid-template-columns: minmax(0, 620px) minmax(0, 420px);
  align-items: center;
}
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.journey-step {
  position: relative;
  min-height: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.journey-step b {
  color: #d1d5db;
  font-size: 2.7rem;
}
.journey-step i {
  display: block;
  font-size: 2rem;
  color: var(--coral);
  margin: 28px 0 18px;
}
.journey-step h3 {
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.journey-step p {
  color: var(--muted);
  line-height: 1.7;
}
.city-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 270px;
  gap: 18px;
}
.city-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.city-card.big {
  grid-row: span 2;
}
.city-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: 0.55s ease;
}
.city-card:hover img {
  transform: scale(1.06);
  opacity: 0.55;
}



.city-card span,
.city-card small {
  position: relative;
  z-index: 1;
}
.city-card span {
  font-size: 2rem;
  font-weight: 950;
}
.city-card small {
  color: #f1f5f9;
}
.company-profile-hero {
  min-height: 780px;
  position: relative;
  padding: 120px 24px 60px;
  display: grid;
  align-items: end;
}
.company-profile-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-profile-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}
.company-profile-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 38px;
  padding: 34px;
  width: min(520px, 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}
.company-logo.large {
  width: 78px;
  height: 78px;
  font-size: 1.6rem;
  margin: 0 0 14px;
}
.badge.inline {
  position: static;
  display: inline-block;
}
.company-profile-card h1 {
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 16px 0 8px;
}
.company-profile-card p {
  color: var(--muted);
  line-height: 1.7;
}
.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.company-stats b {
  background: var(--soft);
  border-radius: 20px;
  padding: 16px;
  font-size: 1.5rem;
}
.company-stats small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}
.contact-info {
  display: grid;
  gap: 16px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.input-group select,
.input-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  outline: 0;
  background: #fff;
  font: inherit;
}
.input-group textarea {
  min-height: 150px;
  resize: vertical;
}
.company-card-link {
  display: block;
  color: inherit;
}
.company-action {
  padding-top: 0;
}
.company-action .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 1100px) {
  .hero-bg-grid {
    opacity: 0.28;
    width: 48vw;
    right: 24px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .ghost-link {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .mobile-menu {
    position: fixed;
    z-index: 49;
    top: 84px;
    right: 16px;
    left: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 18px;
  }
  .mobile-menu.open {
    display: block;
  }
  .mobile-menu a {
    display: block;
    padding: 15px;
    font-weight: 850;
  }
  .hero {
    padding-top: 125px;
    padding-bottom: 80px;
  }
  .hero-bg-grid {
    opacity: 0.18;
    width: 90%;
    height: 520px;
    right: 5%;
    top: 125px;
  }
  .hero-content {
    margin-top: 55px;
    width: min(650px, calc(100% - 32px));
  }
  .hero-content .pill,
  .hero-content h1,
  .hero-content p {
    max-width: 650px;
  }
  .floating-search {
    grid-template-columns: 1fr;
    border-radius: 32px;
    margin-top: 34px;
    width: 100%;
  }
  .floating-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .floating-search label:last-of-type {
    border-right: 0;
  }
  .search-circle {
    width: 100%;
    border-radius: 20px;
  }
  .property-grid,
  .feature-grid,
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-section,
  .app-band,
  .detail-main,
  .download-layout,
  .login-page {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 180px 180px;
  }
  .gallery img:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
  .login-art {
    min-height: 420px;
  }
  .login-panel {
    padding: 50px 24px;
  }
  .dashboard-preview,
  .mini-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .journey {
    grid-template-columns: repeat(2, 1fr);
  }
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }
  .company-profile-card {
    margin-left: 0;
  }
  .company-profile-hero {
    align-items: end;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 0 0 22px 22px;
    padding: 8px 14px;
  }
  .brand {
    font-size: 1.05rem;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }
  .header-actions .btn {
    display: none;
  }
  .hero {
    padding: 96px 18px 54px;
  }
  .hero-bg-grid {
    display: none;
  }
  .hero-content {
    width: 100%;
    margin: 34px 0 0;
  }
  .pill {
    font-size: 0.88rem;
    padding: 9px 12px;
    max-width: 100%;
    white-space: normal;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin: 22px 0 16px;
  }
  .hero p {
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 100%;
  }
  .floating-search {
    border-radius: 28px;
    margin-top: 28px;
    padding: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
  }
  .floating-search label {
    padding: 12px 14px;
  }
  .search-circle {
    height: 52px;
  }
  .property-grid,
  .feature-grid,
  .company-grid,
  .trust-strip,
  .amenities {
    grid-template-columns: 1fr;
  }
  .card-img {
    height: 210px;
  }
  .public-search {
    grid-template-columns: 1fr;
  }
  .section {
    width: min(100% - 28px, 1180px);
    padding: 52px 0;
  }
  .section-head,
  .detail-head {
    display: block;
  }
  h2 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  .page-hero {
    padding: 116px 24px 48px;
  }
  .page-hero h1,
  .detail-head h1,
  .company-profile-card h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }
  .split-section {
    gap: 18px;
  }
  .story-card {
    padding: 30px;
    border-radius: 24px;
  }
  .ownership-flow {
    grid-template-columns: 1fr;
  }
  .app-band {
    padding: 70px 18px;
    gap: 35px;
  }
  .phone-stack {
    height: 440px;
  }
  .phone-two {
    display: none;
  }
  .phone-one {
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
  }
  .footer {
    grid-template-columns: 1fr;
    padding: 46px 24px;
  }
  .detail-wrap {
    padding-top: 120px;
  }
  .login-art h1 {
    font-size: 3rem;
  }
  .journey,
  .city-grid {
    grid-template-columns: 1fr;
  }
  .city-card.big {
    grid-row: auto;
  }
  .dash-stat-row,
  .company-stats {
    grid-template-columns: 1fr;
  }
  .company-profile-card h1 {
    font-size: 2.4rem;
  }
}


@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.35rem;
  }
  .pill {
    font-size: 0.8rem;
  }
}
