/* =========================================================
   luergo3 — PROPERTY MANAGEMENT
========================================================= */

/* =========================================================
   1. ROOT
========================================================= */

:root {
  --primary: #0c6b4f;
  --primary-dark: #07513c;
  --primary-light: #e9f5f0;

  --accent: #b9e769;
  --accent-dark: #96c84c;

  --dark: #0b1713;
  --dark-2: #10201a;
  --text: #1c2924;
  --text-light: #64736d;

  --white: #ffffff;
  --off-white: #f8faf9;
  --cream: #f4f7f5;

  --border: #dfe8e3;
  --border-dark: rgba(255, 255, 255, 0.12);

  --success: #22a06b;
  --warning: #e29a24;
  --danger: #dc5b5b;

  --shadow-sm: 0 6px 20px rgba(9, 31, 23, 0.06);
  --shadow-md: 0 15px 45px rgba(9, 31, 23, 0.09);
  --shadow-lg: 0 30px 80px rgba(9, 31, 23, 0.14);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1200px;

  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  line-height: 1.15;
}

::selection {
  background: var(--accent);
  color: var(--dark);
}

p {
font-size:17px!important;
}



/* =========================================================
   2. GLOBAL UTILITIES
========================================================= */

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-padding {
  padding: 120px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 10px;
}

.section-kicker.light {
  color: var(--accent);
}

.section-kicker.light::before {
  background: var(--accent);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}

.section-heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 400px;
  margin: 0;
  color: var(--text-light);
  font-size: 16px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.section-heading.centered > p {
  margin: 22px auto 0;
}

/* =========================================================
   3. BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 100px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn i {
  font-size: 12px;
  transition: transform var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(12, 107, 79, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 15px 35px rgba(12, 107, 79, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--cream);
  border-color: #cbd8d2;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--accent);
  color: var(--dark);
}

/* =========================================================
   4. HEADER
========================================================= */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(7, 31, 23, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

/* Logo */


.logo img {
  width: 150px;
  height: auto;
  display: block;
}




@media (max-width: 768px) {
  .logo img {
    width: 125px;
  }
}



.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}

.logo-mark {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 31px;
  height: 30px;
}

.logo-mark span {
  display: block;
  width: 7px;
  border-radius: 3px 3px 1px 1px;
  background: var(--primary);
}

.logo-mark span:nth-child(1) {
  height: 14px;
}

.logo-mark span:nth-child(2) {
  height: 23px;
}

.logo-mark span:nth-child(3) {
  height: 30px;
  background: var(--accent-dark);
}

.logo-text {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.logo-text > span {
  color: var(--primary);
}

/* Desktop navigation */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 45px;
}

.desktop-nav a {
  position: relative;
  color: #53615b;
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav a:hover {
  color: var(--primary);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 100px;
  background: var(--dark);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  transition:
    background var(--transition),
    transform var(--transition);
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.nav-cta i {
  font-size: 10px;
}

/* Menu toggle */

.menu-toggle {
  display: none;
  position: relative;
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 19px;
  height: 2px;
  background: var(--dark);
  border-radius: 10px;
  transition:
    transform var(--transition),
    top var(--transition);
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle.active span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

/* Mobile menu */

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px 25px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 13px 4px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  padding: 14px 20px;
  border-radius: 100px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

/* =========================================================
   5. HERO
========================================================= */

.hero {
  position: relative;
  min-height: 850px;
  padding: 170px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(185, 231, 105, 0.18),
      transparent 25%
    ),
    linear-gradient(180deg, #f8fbf9 0%, #f4f8f6 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 8px 13px;
  border: 1px solid #dbe7e1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-dark);
  box-shadow: 0 0 0 5px rgba(150, 200, 76, 0.15);
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--dark);
  font-size: clamp(54px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero-description {
  max-width: 540px;
  margin-bottom: 35px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.trust-avatars {
  display: flex;
  padding-left: 5px;
}

.trust-avatars span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.trust-avatars span:nth-child(2) {
  background: #809f78;
}

.trust-avatars span:nth-child(3) {
  background: #243f35;
}

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
}

.hero-trust small {
  margin-top: 2px;
  color: var(--text-light);
  font-size: 11px;
}

/* Hero visual */

.hero-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.glow-one {
  top: 150px;
  right: 6%;
  width: 400px;
  height: 400px;
  background: rgba(185, 231, 105, 0.18);
}

.glow-two {
  bottom: 0;
  left: 45%;
  width: 250px;
  height: 250px;
  background: rgba(12, 107, 79, 0.08);
}

/* Property card */

.property-card {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.property-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  padding: 7px 6px 16px;
}

.property-card-top small {
  display: block;
  margin-bottom: 5px;
  color: #85918c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.property-card-top h3 {
  margin: 0;
  color: var(--dark);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 100px;
  background: #eff9f2;
  color: var(--success);
  font-size: 9px;
  font-weight: 800;
}

.live-badge span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

/* Fake property image */

.property-image {
  position: relative;
  height: 245px;
  overflow: hidden;
  border-radius: 21px;
  background:
    linear-gradient(
      140deg,
      rgba(8, 53, 40, 0.12),
      rgba(8, 53, 40, 0.55)
    ),
    linear-gradient(130deg, #dbe7e0 0%, #b5c7be 42%, #77988b 100%);
}

.property-image::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 75%;
  height: 70%;
  border-radius: 5px 5px 0 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 0 6%,
      transparent 6% 17%,
      rgba(255, 255, 255, 0.8) 17% 23%,
      transparent 23% 34%,
      rgba(255, 255, 255, 0.8) 34% 40%,
      transparent 40% 51%,
      rgba(255, 255, 255, 0.8) 51% 57%,
      transparent 57% 68%,
      rgba(255, 255, 255, 0.8) 68% 74%,
      transparent 74%
    ),
    linear-gradient(
      180deg,
      #78958a 0%,
      #56786a 100%
    );
  box-shadow: -30px 0 50px rgba(0, 0, 0, 0.08);
}

.property-image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(3, 26, 19, 0.5),
    transparent
  );
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, 0.4),
      transparent 20%
    );
}

.image-location {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 100px;
  background: rgba(8, 25, 19, 0.7);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.image-location i {
  color: var(--accent);
}

/* Property details */

.property-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 17px 3px 10px;
}

.property-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 10px;
  padding: 13px 14px;
  border-radius: 15px;
  background: var(--cream);
}

.property-stat small {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #7d8984;
  font-size: 9px;
}

.property-stat strong {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.property-stat .positive {
  color: var(--success);
  font-size: 9px;
  font-weight: 800;
}

/* Mini chart */

.mini-chart {
  padding: 15px 8px 7px;
}

.chart-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--text-light);
  font-size: 9px;
}

.chart-label strong {
  color: var(--success);
}

.chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 72px;
  padding: 5px 3px 0;
  border-bottom: 1px solid #dce5e0;
}

.chart span {
  flex: 1;
  min-width: 5px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(
    to top,
    var(--primary),
    #4b9d7d
  );
  opacity: 0.9;
}

/* Floating cards */

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
}

.maintenance-card {
  top: 105px;
  left: -20px;
  animation: floatOne 5s ease-in-out infinite;
}

.rent-card {
  right: -22px;
  bottom: 90px;
  animation: floatTwo 5.5s ease-in-out infinite;
}

.floating-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
}

.floating-icon.green {
  background: #e9f7ef;
  color: var(--success);
}

.floating-icon.dark {
  background: #eaf0ee;
  color: var(--primary);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 1px;
  color: #83908a;
  font-size: 8px;
}

.floating-card strong {
  color: var(--dark);
  font-size: 11px;
}

.check-icon {
  margin-left: auto;
  color: var(--success);
  font-size: 14px;
}

@keyframes floatOne {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* =========================================================
   6. TRUST STRIP
========================================================= */

.trust-strip {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.trust-strip-inner > span {
  color: #99a49f;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.trust-strip-inner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 38px;
}

.trust-strip strong {
  color: #77837e;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
   7. INTRO / WHY US
========================================================= */

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: start;
}

.intro h2 {
  max-width: 750px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(40px, 5vw, 65px);
  letter-spacing: -0.055em;
}

.intro h2 em {
  color: var(--primary);
  font-family: Georgia, serif;
  font-weight: 400;
}

.intro-copy {
  padding-top: 8px;
}

.intro-copy p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.text-link i {
  transition: transform var(--transition);
}

.text-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   8. SERVICES
========================================================= */

.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(12, 107, 79, 0.25);
  box-shadow: var(--shadow-md);
}

.service-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #c3cec8;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.3);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 70px;
  place-items: center;
  border-radius: 15px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 17px;
}

.featured .service-icon {
  background: rgba(185, 231, 105, 0.15);
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.featured h3 {
  color: var(--white);
}

.service-card p {
  margin-bottom: 25px;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.7;
}

.featured p {
  color: #a6b6af;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

.featured a {
  color: var(--accent);
}

.service-card a i {
  transition: transform var(--transition);
}

.service-card a:hover i {
  transform: translateX(5px);
}

/* =========================================================
   9. STATS
========================================================= */

.stats-section {
  padding: 60px 0;
  background: var(--primary);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 10px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat-item > span {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.stat-item p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

/* =========================================================
   10. HOW IT WORKS
========================================================= */

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 70px;
}

.process-step {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.step-top > span {
  color: #a0aca7;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  margin-bottom: 13px;
  color: var(--dark);
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.7;
}

.process-line {
  position: relative;
  top: 57px;
  height: 1px;
  background: var(--border);
}

.process-line::after {
  content: "→";
  position: absolute;
  top: -12px;
  right: -4px;
  color: var(--primary);
  font-size: 17px;
}

/* =========================================================
   11. DASHBOARD SECTION
========================================================= */

.dashboard-section {
  background: var(--cream);
  overflow: hidden;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.dashboard-copy {
  max-width: 500px;
}

.dashboard-copy h2 {
  margin-bottom: 24px;
  color: var(--dark);
  font-size: clamp(40px, 4.5vw, 58px);
  letter-spacing: -0.055em;
}

.dashboard-copy h2 span {
  color: var(--primary);
}

.dashboard-copy > p {
  margin-bottom: 30px;
  color: var(--text-light);
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
}

.feature-list li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 9px;
}

/* Dashboard UI */

.dashboard-ui {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--border);
}

.dashboard-header small,
.dashboard-header strong {
  display: block;
}

.dashboard-header small {
  margin-bottom: 5px;
  color: #8b9892;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.dashboard-header strong {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.user-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.dashboard-balance {
  padding: 27px 0;
}

.dashboard-balance small,
.dashboard-balance strong,
.dashboard-balance span {
  display: block;
}

.dashboard-balance small {
  margin-bottom: 5px;
  color: #85918b;
  font-size: 9px;
}

.dashboard-balance strong {
  margin-bottom: 7px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  letter-spacing: -0.045em;
}

.dashboard-balance span {
  color: var(--success);
  font-size: 10px;
  font-weight: 800;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.dashboard-metrics > div {
  padding: 14px;
  border-radius: 14px;
  background: var(--cream);
}

.dashboard-metrics small,
.dashboard-metrics strong {
  display: block;
}

.dashboard-metrics small {
  margin-bottom: 3px;
  color: #8b9792;
  font-size: 8px;
}

.dashboard-metrics strong {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

.dashboard-list {
  display: grid;
  gap: 9px;
}

.dashboard-list-item {
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--white);
}

.dashboard-property-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
}

.dashboard-list-item strong,
.dashboard-list-item small {
  display: block;
}

.dashboard-list-item strong {
  margin-bottom: 2px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.dashboard-list-item small {
  color: #929c97;
  font-size: 8px;
}

.dashboard-list-item > span {
  padding: 5px 8px;
  border-radius: 100px;
  font-size: 8px;
  font-weight: 800;
}

.dashboard-list-item .success {
  background: #eaf7ef;
  color: var(--success);
}

.dashboard-list-item .warning {
  background: #fff5e4;
  color: var(--warning);
}

/* =========================================================
   12. DIASPORA SECTION
========================================================= */

.diaspora-section {
  background: var(--white);
}

.diaspora-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  padding: 75px;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(185, 231, 105, 0.13),
      transparent 28%
    ),
    var(--dark);
}

.diaspora-content {
  position: relative;
  z-index: 3;
  max-width: 590px;
}

.diaspora-content h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -0.06em;
}

.diaspora-content h2 span {
  display: block;
  color: var(--accent);
}

.diaspora-content p {
  max-width: 520px;
  margin-bottom: 30px;
  color: #9baea6;
  line-height: 1.8;
}

/* Orbit */

.diaspora-orbit {
  position: relative;
  width: 390px;
  height: 390px;
  margin-left: auto;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(185, 231, 105, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 220px;
  height: 220px;
}

.ring-two {
  width: 330px;
  height: 330px;
  border-style: dashed;
  animation: rotateOrbit 25s linear infinite;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 0 60px rgba(12, 107, 79, 0.6);
  transform: translate(-50%, -50%);
}

.orbit-node {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: #142820;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.node-london {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.node-toronto {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.node-atlanta {
  bottom: 25px;
  left: 20%;
}

.node-lagos {
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
}

@keyframes rotateOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* =========================================================
   13. TESTIMONIAL
========================================================= */

.testimonial {
  background: var(--off-white);
  text-align: center;
}

.testimonial .container {
  max-width: 900px;
}

.quote-mark {
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 0.7;
}

.testimonial blockquote {
  margin: 35px auto;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.author-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.quote-author strong,
.quote-author span {
  display: block;
}

.quote-author strong {
  color: var(--dark);
  font-size: 12px;
}

.quote-author span {
  margin-top: 2px;
  color: var(--text-light);
  font-size: 10px;
}

/* =========================================================
   14. FAQ
========================================================= */

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-intro h2 {
  max-width: 450px;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: clamp(38px, 4.5vw, 58px);
  letter-spacing: -0.055em;
}

.faq-intro p {
  color: var(--text-light);
  font-size: 14px;
}

.faq-intro a {
  color: var(--primary);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 25px 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  padding-right: 30px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.faq-question i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary);
  font-size: 10px;
  transition:
    transform var(--transition),
    background var(--transition);
}

.faq-item.active .faq-question i {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer > p {
  padding-bottom: 25px;
}

/* =========================================================
   15. CONTACT
========================================================= */

.contact-section {
  background: var(--cream);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 75px;
  border-radius: 38px;
  background: var(--dark);
}

.contact-content {
  align-self: center;
}

.contact-content h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -0.06em;
}

.contact-content h2 span {
  display: block;
  color: var(--accent);
}

.contact-content > p {
  max-width: 470px;
  margin-bottom: 30px;
  color: #9eafa8;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 13px;
}

.contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c6d2cd;
  font-size: 12px;
}

.contact-details i {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  font-size: 11px;
}

/* Contact form */

.contact-form {
  padding: 30px;
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 12px;
  background: #fafcfb;
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-group input,
.form-group select {
  height: 48px;
  padding: 0 14px;
}

.form-group textarea {
  min-height: 110px;
  padding: 13px 14px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8b1ad;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(12, 107, 79, 0.08);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: #98a19d;
  font-size: 9px;
  text-align: center;
}

/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
  padding-top: 75px;
  background: #07130f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 65px;
}

.footer-logo {
  color: var(--white);
}

.footer-brand > p {
  max-width: 250px;
  margin: 18px 0 22px;
  color: #82938c;
  font-size: 12px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #9aa9a3;
  font-size: 12px;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--dark);
}

.footer-column h4 {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column a {
  margin-bottom: 11px;
  color: #82938c;
  font-size: 11px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #687a72;
  font-size: 9px;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* =========================================================
   17. BACK TO TOP
========================================================= */

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 25px;
  bottom: 25px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
}

/* =========================================================
   18. TOAST
========================================================= */

.toast {
  position: fixed;
  z-index: 2000;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 290px;
  padding: 14px 17px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: #e9f7ef;
  color: var(--success);
}

.toast strong,
.toast span {
  display: block;
}

.toast strong {
  color: var(--dark);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.toast span {
  margin-top: 2px;
  color: var(--text-light);
  font-size: 10px;
}

/* =========================================================
   19. ANIMATION HELPERS
========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp 0.7s ease both;
}

.hero-content .eyebrow {
  animation-delay: 0.05s;
}

.hero-content h1 {
  animation-delay: 0.12s;
}

.hero-content .hero-description {
  animation-delay: 0.19s;
}

.hero-content .hero-buttons {
  animation-delay: 0.26s;
}

.hero-content .hero-trust {
  animation-delay: 0.33s;
}

.property-card {
  animation: fadeUp 0.8s 0.2s ease both;
}

.service-card,
.process-step {
  will-change: transform;
}

/* =========================================================
   20. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .desktop-nav {
    gap: 20px;
    margin-right: 25px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(52px, 7vw, 74px);
  }

  .hero-visual {
    min-height: 500px;
  }

  .floating-card {
    transform: scale(0.9);
  }

  .maintenance-card {
    left: -10px;
  }

  .rent-card {
    right: -10px;
  }

  .intro-grid {
    gap: 60px;
  }

  .dashboard-grid {
    gap: 50px;
  }

  .diaspora-box,
  .contact-box {
    padding: 55px;
  }

  .faq-grid {
    gap: 60px;
  }
}

/* =========================================================
   21. RESPONSIVE — TABLET / MOBILE NAV
========================================================= */

@media (max-width: 900px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    max-width: 650px;
    width: 100%;
    min-height: 530px;
    margin: 10px auto 0;
  }

  .property-card {
    width: min(100%, 530px);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    min-height: 230px;
  }

  .step-top {
    margin-bottom: 35px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-copy {
    max-width: 700px;
  }

  .diaspora-box {
    grid-template-columns: 1fr;
  }

  .diaspora-orbit {
    width: 320px;
    height: 320px;
    margin: 40px auto 0;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    max-width: 600px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   22. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {
  :root {
    --radius-lg: 22px;
    --radius-xl: 27px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-padding {
    padding: 80px 0;
  }

  .nav-container {
    min-height: 72px;
  }

  .logo-text {
    font-size: 21px;
  }

  .logo-mark {
    width: 27px;
    height: 27px;
  }

  .logo-mark span {
    width: 6px;
  }

  .logo-mark span:nth-child(1) {
    height: 12px;
  }

  .logo-mark span:nth-child(2) {
    height: 20px;
  }

  .logo-mark span:nth-child(3) {
    height: 27px;
  }

  .hero {
    padding: 125px 0 75px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 14vw, 67px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust {
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 20px;
  }

  .property-card {
    padding: 12px;
    border-radius: 23px;
  }

  .property-image {
    height: 185px;
  }

  .property-card-top {
    padding-bottom: 12px;
  }

  .property-card-top h3 {
    font-size: 14px;
  }

  .property-details {
    gap: 7px;
    padding-top: 10px;
  }

  .property-stat {
    padding: 10px;
  }

  .property-stat strong {
    font-size: 16px;
  }

  .mini-chart {
    padding-top: 8px;
  }

  .chart {
    height: 50px;
  }

  .floating-card {
    min-width: 155px;
    padding: 9px 10px;
    transform: scale(0.8);
  }

  .maintenance-card {
    top: 70px;
    left: -25px;
  }

  .rent-card {
    right: -25px;
    bottom: 35px;
  }

  .trust-strip {
    padding: 25px 0;
  }

  .trust-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip-inner > div {
    justify-content: flex-start;
    gap: 12px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro h2 {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .service-icon {
    margin-bottom: 50px;
  }

  .stats-section {
    padding: 45px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }

  .stat-item {
    padding: 10px 15px;
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item strong {
    font-size: 39px;
  }

  .process-grid {
    margin-top: 40px;
  }

  .process-step {
    padding: 25px;
  }

  .dashboard-ui {
    padding: 18px;
    border-radius: 22px;
  }

  .dashboard-balance strong {
    font-size: 29px;
  }

  .dashboard-metrics {
    gap: 6px;
  }

  .dashboard-metrics > div {
    padding: 11px;
  }

  .dashboard-list-item {
    grid-template-columns: 34px 1fr auto;
  }

  .dashboard-property-icon {
    width: 34px;
    height: 34px;
  }

  .diaspora-box {
    padding: 45px 27px;
    border-radius: 27px;
  }

  .diaspora-content h2 {
    font-size: 40px;
  }

  .diaspora-orbit {
    width: 270px;
    height: 270px;
  }

  .ring-one {
    width: 170px;
    height: 170px;
  }

  .ring-two {
    width: 240px;
    height: 240px;
  }

  .orbit-center {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }

  .orbit-node {
    width: 40px;
    height: 40px;
    font-size: 7px;
  }

  .node-london {
    top: 20px;
  }

  .node-toronto {
    right: 0;
  }

  .node-atlanta {
    bottom: 15px;
  }

  .node-lagos {
    bottom: 15px;
  }

  .testimonial blockquote {
    font-size: 28px;
  }

  .faq-intro h2 {
    font-size: 40px;
  }

  .faq-question {
    padding: 21px 0;
  }

  .faq-question span {
    font-size: 14px;
  }

  .contact-box {
    gap: 40px;
    padding: 40px 22px;
    border-radius: 27px;
  }

  .contact-content h2 {
    font-size: 40px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .toast {
    right: 15px;
    bottom: 15px;
    left: 15px;
    min-width: 0;
  }
}

/* =========================================================
   23. VERY SMALL DEVICES
========================================================= */

@media (max-width: 400px) {
  .container {
    width: calc(100% - 26px);
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-visual {
    min-height: 385px;
  }

  .property-image {
    height: 155px;
  }

  .floating-card {
    display: none;
  }

  .property-stat small {
    font-size: 8px;
  }

  .property-stat strong {
    font-size: 14px;
  }

  .stats-grid {
    gap: 20px 0;
  }

  .stat-item strong {
    font-size: 34px;
  }

  .stat-item > span {
    font-size: 17px;
  }

  .dashboard-metrics > div {
    padding: 9px;
  }

  .dashboard-metrics small {
    font-size: 7px;
  }

  .dashboard-metrics strong {
    font-size: 16px;
  }

  .diaspora-orbit {
    width: 240px;
    height: 240px;
  }

  .ring-one {
    width: 150px;
    height: 150px;
  }

  .ring-two {
    width: 215px;
    height: 215px;
  }

  .contact-form {
    padding: 17px;
  }
}

/* =========================================================
   24. ACCESSIBILITY
========================================================= */

:focus-visible {
  outline: 3px solid rgba(185, 231, 105, 0.9);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   25. PRINT
========================================================= */

@media print {
  .site-header,
  .back-to-top,
  .toast,
  .menu-toggle,
  .hero-buttons,
  .social-links {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-padding {
    padding: 40px 0;
  }
}



/* =========================================================
HERO REDESIGN
========================================================= */

.property-image {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe5df;
}

.property-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.04);
}

.property-image .image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 25, 20, 0.02) 25%,
      rgba(10, 25, 20, 0.65) 100%
    );
  z-index: 1;
}

.image-location {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;

  color: #fff;
  background: rgba(15, 25, 21, 0.55);
  backdrop-filter: blur(12px);

  font-size: 12px;
  font-weight: 600;
}


@media (max-width: 768px) {
  .property-image {
    height: 280px;
  }
}


/* =========================================
   LUXURY PROPERTY HERO
========================================= */

.luxury-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: #0b1712;
}

.luxury-hero-image {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
  z-index: 0;
  overflow: hidden;
}

.luxury-hero-image img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;
  min-width: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  margin: 0;
  padding: 0;
}















.luxury-hero {
  position: relative;
  min-height: min(900px, 92vh);
  height: 900px;
  overflow: hidden;
  background: #18221d;
  color: #fff;
  isolation: isolate;
}

/* Full-screen property photograph */
.luxury-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;

  background-image: url("https://images.unsplash.com/photo-1757303355994-5b5f66d7c5cf?auto=format&fit=crop&w=2200&q=90");
  background-size: cover;
  background-position: center 48%;

  transform: scale(1.02);
  animation: heroImageReveal 1.5s ease-out both;
}

/* Cinematic overlay */
.luxury-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(10, 17, 14, 0.82) 0%,
      rgba(10, 17, 14, 0.64) 35%,
      rgba(10, 17, 14, 0.22) 70%,
      rgba(10, 17, 14, 0.08) 100%
    ),
    linear-gradient(
      0deg,
      rgba(8, 14, 11, 0.72) 0%,
      rgba(8, 14, 11, 0.05) 42%,
      rgba(8, 14, 11, 0.28) 100%
    );
}

/* Subtle luxury grain */
.luxury-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image:
    radial-gradient(
      rgba(255,255,255,0.08) 0.5px,
      transparent 0.5px
    );

  background-size: 5px 5px;
  opacity: 0.08;
}

/* Main hero container */
.luxury-hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content */
.luxury-hero-content {
  max-width: 760px;
  margin-top: 40px;
}

.luxury-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 28px;

  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.luxury-eyebrow span {
  width: 34px;
  height: 1px;
  background: #06a56b;
}

/* Main heading */
.luxury-hero h1 {
  max-width: 780px;
  margin: 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;

  color: #fff;
}

.luxury-hero h1 em {
  display: block;

  color: #06a56b;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.045em;
}

/* Description */
.luxury-hero-content > p {
  max-width: 590px;
  margin: 32px 0 38px;

  color: rgba(255,255,255,0.82);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

/* Buttons */
.luxury-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.luxury-btn {
  min-height: 58px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  text-decoration: none;

  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.luxury-btn:hover {
  transform: translateY(-2px);
}

.luxury-btn-primary {
  color: #ffffff;
  background: #06a56b;
}

.luxury-btn-primary:hover {
  background: #0e1629;
}

.luxury-btn-primary i {
  font-size: 11px;
}

.luxury-btn-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

.luxury-btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.8);
}

/* Bottom information */
.luxury-hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 20px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-location i {
  color: #06a56b;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 15px;

  color: rgba(255,255,255,0.65);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-scroll i {
  color: #06a56b;
}

/* Small editorial label on right */
.hero-property-label {
  position: absolute;
  right: 38px;
  bottom: 150px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255,255,255,0.55);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;

  transform: rotate(-90deg);
  transform-origin: right bottom;
}

.hero-property-label span:first-child {
  color: #06a56b;
}

.hero-property-label div {
  width: 45px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

/* Animation */
@keyframes heroImageReveal {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.02);
  }
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .luxury-hero {
    min-height: 760px;
    height: 760px;
  }

  .luxury-hero-image {
    background-position: 62% center;
  }

  .luxury-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8, 15, 12, 0.82),
        rgba(8, 15, 12, 0.38)
      ),
      linear-gradient(
        0deg,
        rgba(8, 15, 12, 0.72),
        transparent 60%
      );
  }

  .luxury-hero-content {
    max-width: 650px;
  }

  .hero-property-label {
    display: none;
  }
}


@media (max-width: 600px) {

  .luxury-hero {
    min-height: 720px;
    height: 720px;
  }

  .luxury-hero-image {
    background-position: 63% center;
  }

  .luxury-hero-content {
    margin-top: 20px;
  }

  .luxury-eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .luxury-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
    line-height: 1;
  }

  .luxury-hero-content > p {
    margin: 25px 0 30px;
    font-size: 15px;
    line-height: 1.65;
  }

  .luxury-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .luxury-btn {
    width: 100%;
  }

  .luxury-hero-bottom {
    bottom: 24px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-location {
    font-size: 9px;
  }
}




/* NAV ACTIVE STATE*/


.desktop-nav a {
  position: relative;
  color:#0e1629;
  text-decoration: none;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -9px;

  width: 100%;
  height: 2px;

  background: #06a56b;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: #0e1629;
}

.desktop-nav a.active {
  color: #0e1629;
}

.desktop-nav a.active::after {
  transform: scaleX(1);
}



.site-header.scrolled .desktop-nav a {
  color: #0e1629;
}

.site-header.scrolled .desktop-nav a:hover,
.site-header.scrolled .desktop-nav a.active {
  color: #0e1629;
}

.site-header.scrolled .desktop-nav a.active::after {
  background: #06a56b;
}




/*SHARE BUTTONS FLOAT CSS */

.floating-social {
  position: fixed;
  top: 50%;
  right: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;

  transform: translateY(-50%);
  z-index: 1000;
}

.floating-social-btn {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;

  padding: 0 16px;

  box-sizing: border-box;

  color: #fff;
  background: #0e1629;

  border: 0;
  border-radius: 10px 0 0 10px;

  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;

  box-shadow: 0 8px 25px rgba(14, 22, 41, 0.16);

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.floating-social-btn i {
  width: 16px;
  min-width: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
}

.floating-social-btn span {
  position: static;

  width: auto;

  opacity: 0;

  font-size: 12px;
  font-weight: 600;

  transform: translateX(8px);

  transition:
    opacity 0.2s ease,
    transform 0.25s ease;
}

.floating-social-btn:hover {
  width: 130px;
  background: #06a56b;
}

.floating-social-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}


/* Contact */
.floating-social-btn.contact {
  background: #06a56b;
}

.floating-social-btn.contact:hover {
  background: #0e1629;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .floating-social {
    top: auto;
    right: 14px;
    bottom: 20px;

    flex-direction: row;

    transform: none;
  }

  .floating-social-btn,
  .floating-social-btn:hover {
    width: 44px;
    height: 44px;

    padding: 0;

    justify-content: center;

    border-radius: 50%;
  }

  .floating-social-btn span {
    display: none;
  }
}



/* =========================================
  HONEY POT FOR FORM
========================================= */


.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}








/* =========================================
   LEGAL MODALS
========================================= */

.legal-modal {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  z-index: 9999;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.legal-modal.active {
  visibility: visible;
  opacity: 1;
}


/* Overlay */

.legal-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(14, 22, 41, 0.72);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* Modal */

.legal-modal-box {
  position: relative;

  width: min(760px, 100%);
  max-height: min(80vh, 760px);

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 30px 80px rgba(14, 22, 41, 0.28);

  transform: translateY(25px) scale(0.97);

  transition:
    transform 0.3s ease;
}

.legal-modal.active .legal-modal-box {
  transform: translateY(0) scale(1);
}


/* Header */

.legal-modal-header {
  position: relative;

  padding: 36px 42px 26px;

  border-bottom: 1px solid #e8ecea;

  background: #f7f9f8;
}

.legal-modal-header .section-kicker {
  margin-bottom: 8px;

  color: #06a56b;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.legal-modal-header h2 {
  margin: 0;

  color: #0e1629;

  font-family: "Manrope", sans-serif;

  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.legal-modal-header p {
  margin: 10px 0 0;

  color: #667085;

  font-size: 14px;
}


/* Close button */

.legal-modal-close {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e1e6e3;
  border-radius: 50%;

  background: #ffffff;

  color: #0e1629;

  cursor: pointer;

  z-index: 2;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.legal-modal-close:hover {
  background: #06a56b;

  border-color: #06a56b;

  color: #ffffff;

  transform: rotate(90deg);
}


/* Content */

.legal-modal-content {
  max-height: calc(80vh - 150px);

  overflow-y: auto;

  padding: 32px 42px 42px;

  color: #4b5563;

  font-size: 15px;
  line-height: 1.8;
}

.legal-modal-content p {
  margin: 0 0 20px;
}

.legal-modal-content h3 {
  margin: 30px 0 8px;

  color: #0e1629;

  font-family: "Manrope", sans-serif;

  font-size: 17px;
}

.legal-modal-content h3:first-of-type {
  margin-top: 10px;
}

.legal-modal-content strong {
  color: #0e1629;
}


/* Custom scrollbar */

.legal-modal-content::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-content::-webkit-scrollbar-track {
  background: #f1f3f2;
}

.legal-modal-content::-webkit-scrollbar-thumb {
  background: #c7d0cc;
  border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb:hover {
  background: #06a56b;
}


/* Prevent background scrolling */

body.modal-open {
  overflow: hidden;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .legal-modal {
    padding: 15px;
  }

  .legal-modal-box {
    max-height: 88vh;

    border-radius: 14px;
  }

  .legal-modal-header {
    padding: 28px 24px 22px;
  }

  .legal-modal-close {
    top: 14px;
    right: 14px;

    width: 38px;
    height: 38px;
  }

  .legal-modal-content {
    max-height: calc(88vh - 140px);

    padding: 24px;
    
    font-size: 14px;
  }

}




/* =========================================
   MOBILE - FLOATING SOCIAL BUTTONS
========================================= */
/* =========================================
   MOBILE FLOATING BUTTONS
========================================= */

@media (max-width: 768px) {

  /* Social buttons */
  .floating-social {
    position: fixed !important;

    right: 14px !important;
    left: auto !important;

    bottom: 85px !important;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 9997 !important;
  }

  .floating-social-btn {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
  }

  /* Hide labels on mobile */
  .floating-social-btn span {
    display: none;
  }


  /* Back to top */
  .back-to-top {
    position: fixed !important;

    right: 14px !important;
    left: auto !important;

    bottom: 20px !important;

    width: 42px;
    height: 42px;

    z-index: 9998 !important;
  }

}



/*WATER MARK*/

/* =========================================
   L3 BACKGROUND WATERMARKS
========================================= */

.section-watermark {
  position: absolute;

  font-family: "Manrope", sans-serif;
  font-size: clamp(140px, 20vw, 300px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;

  color: #0e1629;

  opacity: 0.035;

  pointer-events: none;
  user-select: none;

  z-index: 0;
}

.section-watermark.green {
  color: #06a56b;
  opacity: 0.045;
}


/* Make sections capable of holding watermark */

.intro,
.services,
.process,
.dashboard-section,
.diaspora-section,
.testimonial,
.faq,
.contact-section {
  position: relative;
  overflow: hidden;
}


/* Keep actual content above watermark */

.intro .container,
.services .container,
.process .container,
.dashboard-section .container,
.diaspora-section .container,
.testimonial .container,
.faq .container,
.contact-section .container {
  position: relative;
  z-index: 1;
}


/* Individual positioning */

.intro .section-watermark {
  top: 40px;
  right: -30px;
}

.services .section-watermark {
  top: 50px;
  left: -40px;
}

.process .section-watermark {
  bottom: 20px;
  right: -30px;
}

.dashboard-section .section-watermark {
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
}

.testimonial .section-watermark {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.faq .section-watermark {
  top: 40px;
  left: -30px;
}

.contact-section .section-watermark {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}


/* Mobile */

@media (max-width: 768px) {

  .section-watermark {
    font-size: 150px;
    opacity: 0.03;
  }

}

@media (max-width: 768px) {
    .luxury-hero h1 {
        font-size: clamp(32px, 8vw, 48px);
        line-height: 1.1;
        letter-spacing: -0.03em;
    }
}




