/* =========================================================
   BRINGLIVE DIGITAL
   PROPERTY SYSTEM & PRIVACY PAGE ADDITIONS

   This stylesheet only adds new website features.
   It does not replace or redesign the original website.
========================================================= */


/* =========================================================
   DESKTOP SOLUTIONS DROPDOWN
========================================================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-arrow {
  display: inline-block;
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 1100;
  width: 280px;
  padding: 10px;
  border: 1px solid rgba(20, 92, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 70px rgba(3, 17, 47, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 18px;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background: var(--light-blue);
  transform: translateX(3px);
}

.nav-dropdown-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.09);
  font-size: 0.7rem;
  font-weight: 900;
}

.nav-dropdown-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-copy strong {
  color: var(--text-dark);
  font-size: 0.88rem;
}

.nav-dropdown-copy span {
  color: var(--text-medium);
  font-size: 0.72rem;
  line-height: 1.5;
}


/* =========================================================
   MOBILE NAVIGATION SUBLINK
========================================================= */

.mobile-sub-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin-left: 18px;
  padding: 0 18px;
  border-left: 2px solid var(--cyan);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-sub-link:hover,
.mobile-sub-link:focus {
  color: var(--white);
}


/* =========================================================
   HOMEPAGE FEATURED PROPERTY SOLUTION
========================================================= */

.featured-property-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(32, 215, 212, 0.09),
      transparent 30%
    ),
    var(--white);
}

.featured-property-shell {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(430px, 1.06fr);
  gap: 70px;
  align-items: center;
  overflow: hidden;
  padding: 64px;
  border: 1px solid rgba(20, 92, 255, 0.12);
  border-radius: 36px;
  background:
    linear-gradient(
      145deg,
      rgba(247, 251, 255, 0.98),
      rgba(255, 255, 255, 1)
    );
  box-shadow: 0 30px 90px rgba(4, 31, 79, 0.09);
}

.featured-property-shell::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(20, 92, 255, 0.08);
}

.featured-property-shell::after {
  content: "";
  position: absolute;
  right: 90px;
  bottom: -220px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(32, 215, 212, 0.1);
}

.featured-property-content,
.featured-property-visual {
  position: relative;
  z-index: 2;
}

.featured-property-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-property-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(32, 215, 212, 0.12);
}

.featured-property-content h2 {
  max-width: 650px;
  color: var(--text-dark);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.featured-property-content h2 span {
  display: block;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-property-content > p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--text-medium);
  font-size: 1.03rem;
  line-height: 1.85;
}

.featured-property-model {
  margin-top: 24px;
  padding: 18px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 16px 16px 0;
  background: var(--off-white);
}

.featured-property-model p {
  color: var(--text-dark);
  font-size: 0.94rem;
  line-height: 1.75;
}

.featured-property-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.featured-property-availability span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(32, 215, 212, 0.12);
}

.featured-property-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.featured-property-actions .btn {
  min-width: 210px;
}

.property-system-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(20, 92, 255, 0.35),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      var(--navy),
      var(--navy-dark)
    );
  box-shadow: 0 35px 90px rgba(3, 17, 47, 0.26);
}

.property-system-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.property-system-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.property-system-title img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.property-system-title div {
  display: flex;
  flex-direction: column;
}

.property-system-title span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.property-system-title strong {
  margin-top: 3px;
  font-size: 1.05rem;
}

.property-system-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  font-weight: 800;
}

.property-system-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(32, 215, 212, 0.8);
}

.property-operating-model {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.property-role-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.property-role-card > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 11px;
  color: var(--navy-dark);
  background: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
}

.property-role-card h3 {
  font-size: 1.05rem;
}

.property-role-card p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.65;
}

.property-feature-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.property-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
  font-weight: 700;
}

.property-feature-item span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(32, 215, 212, 0.09);
  font-size: 0.62rem;
}


/* =========================================================
   PROPERTY OPERATIONS PAGE
========================================================= */

.property-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding:
    150px
    0
    100px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(20, 92, 255, 0.32),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(32, 215, 212, 0.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      var(--navy-dark),
      #071d50
    );
}

.property-page-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 90%
  );
}

.property-page-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(410px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.property-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.property-page-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--cyan);
}

.property-page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.property-page-hero h1 span {
  display: block;
  color: var(--cyan);
}

.property-page-hero-copy {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.08rem;
  line-height: 1.85;
}

.property-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.property-page-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.property-page-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.property-hero-summary {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.property-hero-summary > span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.property-hero-summary h2 {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.property-summary-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.property-summary-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.property-summary-item span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: var(--navy-dark);
  background: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
}

.property-summary-item strong {
  font-size: 0.84rem;
}

.property-audience-grid,
.property-capabilities-grid,
.property-problems-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.property-info-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(4, 31, 79, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.property-info-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 92, 255, 0.24);
  box-shadow: var(--shadow-card);
}

.property-info-number {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
}

.property-info-card h3 {
  margin-top: 54px;
  color: var(--text-dark);
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.property-info-card p {
  margin-top: 13px;
  color: var(--text-medium);
  line-height: 1.75;
}

.property-problems-section {
  background: var(--off-white);
}

.property-problem-card {
  min-height: 250px;
  padding: 25px;
  border: 1px solid rgba(20, 92, 255, 0.11);
  border-radius: 22px;
  background: var(--white);
}

.property-problem-card span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
}

.property-problem-card h3 {
  margin-top: 34px;
  color: var(--text-dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.property-problem-card p {
  margin-top: 12px;
  color: var(--text-medium);
  line-height: 1.75;
}

.property-operating-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(20, 92, 255, 0.28),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      var(--navy-dark),
      #071d50
    );
}

.property-operating-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.75fr)
    minmax(0, 1.25fr);
  gap: 80px;
  align-items: center;
}

.property-operating-content h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.property-operating-content h2 span {
  display: block;
  color: var(--cyan);
}

.property-operating-content p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.property-operating-diagram {
  display: grid;
  gap: 15px;
}

.operating-diagram-card {
  display: grid;
  grid-template-columns:
    70px
    minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.operating-diagram-card > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--navy-dark);
  background: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
}

.operating-diagram-card h3 {
  font-size: 1.2rem;
}

.operating-diagram-card p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.86rem;
  line-height: 1.65;
}

.property-capabilities-grid {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.property-capability-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.property-capability-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
}

.property-capability-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--blue);
  background: rgba(20, 92, 255, 0.09);
  font-size: 0.7rem;
  font-weight: 900;
}

.property-capability-card h3 {
  margin-top: 42px;
  color: var(--text-dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.property-capability-card p {
  margin-top: 12px;
  color: var(--text-medium);
  line-height: 1.75;
}

.property-pilot {
  padding:
    30px
    0
    110px;
  background: var(--white);
}

.property-pilot-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  gap: 50px;
  align-items: center;
  padding: 58px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(32, 215, 212, 0.22),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      var(--blue),
      #0a3ec1
    );
  box-shadow: 0 35px 90px rgba(20, 92, 255, 0.24);
}

.property-pilot-content span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.property-pilot-content h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.property-pilot-content p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.property-pilot-shell .btn-light {
  margin-top: 0;
  white-space: nowrap;
}


/* =========================================================
   PRIVACY NOTICE PAGE
========================================================= */

.privacy-page-main {
  padding:
    150px
    0
    110px;
  background: var(--off-white);
}

.privacy-page-header {
  max-width: 840px;
  margin-bottom: 52px;
}

.privacy-page-header span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.privacy-page-header h1 {
  margin-top: 14px;
  color: var(--text-dark);
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.privacy-page-header p {
  margin-top: 22px;
  color: var(--text-medium);
  font-size: 1.03rem;
  line-height: 1.85;
}

.privacy-document {
  max-width: 980px;
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.privacy-document section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
}

.privacy-document h2 {
  color: var(--text-dark);
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.privacy-document p,
.privacy-document li {
  color: var(--text-medium);
  line-height: 1.85;
}

.privacy-document p {
  margin-top: 14px;
}

.privacy-document ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.privacy-document li {
  position: relative;
  padding-left: 22px;
}

.privacy-document li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--cyan);
}

.privacy-contact-card {
  margin-top: 42px;
  padding: 24px;
  border-radius: 20px;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      var(--navy),
      var(--navy-dark)
    );
}

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

.privacy-contact-card p,
.privacy-contact-card a {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-contact-card a {
  font-weight: 800;
}


/* =========================================================
   FORM PRIVACY LINK
========================================================= */

.form-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


/* =========================================================
   RESPONSIVE ADDITIONS
========================================================= */

@media (max-width: 1180px) {

  .featured-property-shell {
    gap: 44px;
    padding: 50px;
  }

  .property-audience-grid,
  .property-problems-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 1020px) {

  .nav-dropdown {
    display: none;
  }

  .featured-property-shell,
  .property-page-hero-layout,
  .property-operating-layout {
    grid-template-columns: 1fr;
  }

  .featured-property-shell {
    gap: 46px;
  }

  .property-page-hero-layout {
    gap: 46px;
  }

  .property-operating-layout {
    gap: 46px;
  }

  .property-capabilities-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .property-pilot-shell {
    grid-template-columns: 1fr;
  }

  .property-pilot-shell .btn-light {
    justify-self: start;
  }

}


@media (max-width: 760px) {

  .featured-property-shell {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .featured-property-content h2 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .featured-property-actions {
    flex-direction: column;
  }

  .featured-property-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .property-system-card {
    padding: 20px;
    border-radius: 24px;
  }

  .property-system-top {
    flex-direction: column;
  }

  .property-operating-model,
  .property-feature-grid {
    grid-template-columns: 1fr;
  }

  .property-page-hero {
    min-height: auto;
    padding:
      120px
      0
      84px;
  }

  .property-page-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .property-page-hero-actions {
    flex-direction: column;
  }

  .property-page-hero-actions .btn {
    width: 100%;
  }

  .property-hero-summary {
    padding: 22px;
  }

  .property-audience-grid,
  .property-capabilities-grid,
  .property-problems-grid {
    grid-template-columns: 1fr;
  }

  .property-info-card,
  .property-problem-card,
  .property-capability-card {
    min-height: auto;
  }

  .property-operating-section {
    padding:
      86px
      0;
  }

  .operating-diagram-card {
    grid-template-columns:
      55px
      minmax(0, 1fr);
    gap: 13px;
  }

  .operating-diagram-card > span {
    width: 48px;
    height: 48px;
  }

  .property-pilot {
    padding-bottom: 80px;
  }

  .property-pilot-shell {
    padding: 38px 24px;
    border-radius: 27px;
  }

  .privacy-page-main {
    padding:
      120px
      0
      80px;
  }

  .privacy-document {
    padding: 28px 22px;
    border-radius: 24px;
  }

}


@media (max-width: 480px) {

  .featured-property-shell {
    padding:
      26px
      18px;
  }

  .featured-property-model {
    padding: 15px;
  }

  .property-system-card {
    padding: 17px;
  }

  .property-system-title {
    align-items: flex-start;
  }

  .property-page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .property-hero-summary h2 {
    font-size: 1.7rem;
  }

  .operating-diagram-card {
    padding: 15px;
  }

}