/* ============================================
   DistressedApp - Matched to Figma Export
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orvane-re-webwhite: #fcfaf8;
  --orvane-re-webblack: #1b1b1b;
  --orvane-re-websecondary: #d5d0c8;
  --lofi: #e0ddd8;
}

/* ---------- Reset ---------- */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

/* ---------- @font-face: NewBlack ---------- */
@font-face {
  font-family: 'NewBlack';
  src: url('../fonts/NewBlackTypeface-UltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fonts/NewBlackTypeface-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fonts/NewBlackTypeface-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fonts/NewBlackTypeface-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fonts/NewBlackTypeface-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fonts/NewBlackTypeface-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NewBlack';
  src: url('../fonts/NewBlackTypeface-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/* ============================================================
   LANDING PAGE WRAPPER
   ============================================================ */
.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--orvane-re-webwhite);
  overflow-x: hidden;
}


/* ============================================================
   HERO
   ============================================================ */
.landing-page .hero {
  position: relative;
  width: 100%;
  min-height: 1050px;
  background: linear-gradient(to bottom, rgba(0,60,1,0.3) 0%, rgba(0,0,0,1) 100%),
              linear-gradient(0deg, rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
              url('../images/Hero.png') center/cover no-repeat;
}

/* --- Navbar --- */
/* --- Global Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  z-index: 1000;
  background: rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.navbar .div {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  top: 31px;
  left: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar .text-wrapper {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: normal;
}

.navbar .text-wrapper a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.navbar .text-wrapper a:hover {
  opacity: 0.7;
}

.logo {
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'NewBlack', Helvetica, serif;
  font-weight: 500;
  color: var(--orvane-re-webwhite);
  font-size: 32px;
  letter-spacing: -0.64px;
  line-height: normal;
  white-space: nowrap;
}

.contact-info {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  position: absolute;
  top: 21px;
  right: 32px;
}

.schedule-visit {
  position: relative;
  width: 176px;
  height: 42px;
  background-color: #00a302;
  border-radius: 6px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 0;
}

.schedule-visit-2 {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.16px;
}

.vector {
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translateX(88%);
  width: 56px;
  height: 3px;
  background-color: #00a302;
  opacity: 1;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 30px;
  right: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orvane-re-webwhite);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px;
  gap: 12px;
  background: rgba(27, 27, 27, 0.98);
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 99;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: rgba(252, 250, 248, 0.7);
  font-family: 'Geist', Helvetica, sans-serif;
  font-size: 16px;
  padding: 8px 0;
}

/* --- Hero Content --- */
.landing-page .hero-2 {
  display: flex;
  flex-direction: column;
  width: calc(100% - 96px);
  max-width: 1344px;
  align-items: flex-start;
  gap: 69px;
  position: absolute;
  top: 233px;
  left: 48px;
}

.landing-page .hero-text-container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  align-items: flex-start;
}

.landing-page .hero-title {
  font-family: 'NewBlack', Helvetica, serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 96px;
  letter-spacing: -1.92px;
  line-height: 0.95;
  margin: 0;
  white-space: nowrap;
}

.landing-page .hero-subtitle {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 20px;
  letter-spacing: -0.20px;
  line-height: 28.4px;
  margin-top: 12px;
}

.landing-page .hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.landing-page .explore-properties {
  display: flex;
  flex-direction: column;
  width: 356px;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.landing-page .explore-properties-wrapper {
  position: relative;
  width: 172px;
  height: 42px;
  background-color: #00a302;
  border-radius: 6px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 0;
}

.landing-page .explore-properties-2 {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  letter-spacing: -0.20px;
}

.landing-page .p {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 22.7px;
}

/* --- Property Slider --- */
.landing-page .property-slider {
  display: flex;
  flex-direction: column;
  max-width: 660px;
  align-items: flex-start;
  gap: 36px;
  flex: 1;
  overflow: hidden;
}

.landing-page .div-2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.landing-page .slider-num {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 16px;
  opacity: 0.6;
  letter-spacing: -0.16px;
}

.landing-page .slider-progress-bar {
  position: relative;
  width: 442px;
  height: 8px;
}

.landing-page .slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--orvane-re-webwhite);
  opacity: 0.4;
  border-radius: 10000px;
}

.landing-page .slider-progress-bar-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 8px;
  background-color: var(--orvane-re-webwhite);
  border-radius: 10000px;
  transition: width 0.4s ease;
}

.landing-page .slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.06px solid rgba(252, 250, 248, 0.3);
  background: rgba(252, 250, 248, 0.06);
  color: var(--orvane-re-webwhite);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.landing-page .slider-arrow:hover {
  background: rgba(252, 250, 248, 0.15);
  border-color: rgba(252, 250, 248, 0.5);
}

.landing-page .property-cards {
  display: flex;
  align-items: center;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-wrap: nowrap;
}

.landing-page .property-card {
  display: flex;
  flex-direction: column;
  width: 446px;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background-color: #fcfaf80f;
  border-radius: 8px;
  overflow: hidden;
  border: 1.06px solid var(--orvane-re-webwhite);
  backdrop-filter: blur(6px) brightness(100%);
  -webkit-backdrop-filter: blur(6px) brightness(100%);
  flex-shrink: 0;
}

.landing-page .property-card-overflow {
  margin-right: -260px;
}

.landing-page .property-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.landing-page .property-image {
  width: 154px;
  height: 176px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.landing-page .property-info {
  display: flex;
  flex-direction: column;
  width: 251px;
  height: 152px;
  justify-content: space-between;
}

.landing-page .property-title {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webwhite);
  font-size: 24px;
  letter-spacing: -0.24px;
  line-height: 34.1px;
}

.landing-page .property-location {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 19.9px;
  white-space: nowrap;
}


/* ============================================================
   ABOUT US
   ============================================================ */
.landing-page .about-us {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  gap: 13px;
  padding: 56px 0 0;
  background-color: var(--orvane-re-webwhite);
}

.landing-page .about-us-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1413px;
  align-items: center;
  gap: 56px;
  padding: 0 42px;
}

.landing-page .about-us-content {
  display: flex;
  width: 100%;
  max-width: 1356px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.landing-page .about-us-text {
  display: flex;
  flex-direction: column;
  width: 524px;
  align-items: flex-start;
  gap: 26px;
  flex-shrink: 0;
}

/* --- Shared heading pattern (/ Title) --- */
.landing-page .about-heading {
  font-family: 'NewBlack', Helvetica, serif;
  font-size: 64px;
  letter-spacing: -1.28px;
  line-height: normal;
}

.landing-page .slash {
  font-weight: 300;
  color: #1b1b1b52;
  letter-spacing: -0.82px;
}

.landing-page .heading-text {
  font-weight: 500;
  color: #1b1b1b;
  letter-spacing: -0.82px;
}

.landing-page .about-body {
  opacity: 0.8;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 20px;
  letter-spacing: -0.20px;
  line-height: 28.4px;
}

/* --- Stats --- */
.landing-page .about-us-stats {
  display: flex;
  width: 744px;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.landing-page .stat-container {
  display: flex;
  flex-direction: column;
  width: 220px;
  align-items: flex-start;
}

.landing-page .stat-number {
  width: fit-content;
  font-size: 67px;
  letter-spacing: -1.34px;
  line-height: normal;
}

.landing-page .stat-num {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: #1b1b1b;
  letter-spacing: -0.90px;
}

.landing-page .stat-plus {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 300;
  color: #1b1b1b52;
  font-size: 54px;
  letter-spacing: -0.58px;
}

.landing-page .stat-description {
  font-family: 'Geist', Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 23.7px;
}

.landing-page .stat-label {
  font-weight: 500;
  color: #1b1b1b;
  letter-spacing: -0.03px;
}

.landing-page .stat-dash {
  font-weight: 400;
  color: #1b1b1b;
  letter-spacing: -0.03px;
}

.landing-page .stat-sub {
  font-weight: 400;
  color: #1b1b1ba3;
  letter-spacing: -0.03px;
}

/* --- Video --- */
.landing-page .video-container {
  position: relative;
  width: 100%;
  height: 773px;
  background: url('../images/video-bg.png') center/cover no-repeat;
}

.landing-page .play-button {
  display: flex;
  width: 124px;
  height: 124px;
  align-items: center;
  justify-content: center;
  padding: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fcfaf83d;
  border-radius: 62px;
  border: 1px solid #fcfaf8ad;
  cursor: pointer;
}

.landing-page .frame {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .play-icon {
  width: 75%;
  height: 90%;
}


/* ============================================================
   PROJECTS / DISCOVER DISTRESSED
   ============================================================ */
.landing-page .projects {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  align-items: flex-start;
  padding: 48px 76px;
}

.landing-page .projects-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}

.landing-page .projects-header {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.landing-page .projects-title {
  width: 632px;
  font-family: 'NewBlack', Helvetica, serif;
  font-size: 96px;
  letter-spacing: -1.92px;
  line-height: 96px;
  flex-shrink: 0;
}

.landing-page .projects-title .slash {
  font-weight: 300;
  color: #1b1b1b52;
  letter-spacing: -1.84px;
}

.landing-page .projects-title .heading-text {
  font-weight: 500;
  color: #1b1b1b;
  letter-spacing: -1.84px;
}

.landing-page .projects-description {
  display: flex;
  flex-direction: column;
  max-width: 632px;
  align-items: flex-start;
  gap: 14px;
}

.landing-page .projects-body {
  opacity: 0.8;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 20px;
  letter-spacing: -0.20px;
  line-height: 30px;
}

.landing-page .view-all-projects {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background-color: var(--orvane-re-webblack);
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.landing-page .view-all-projects-text {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 20px;
  letter-spacing: -0.20px;
  line-height: 28.4px;
  white-space: nowrap;
}

/* --- Project Cards --- */
.landing-page .project-cards {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.landing-page .project-card-main {
  display: flex;
  flex-direction: column;
  width: 580px;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
}

.landing-page .project-card-image {
  width: 380px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
}

.landing-page .project-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.landing-page .project-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.landing-page .project-info-text {
  display: flex;
  flex-direction: column;
  max-width: 461px;
  align-items: flex-start;
  gap: 6px;
}

.landing-page .project-year {
  opacity: 0.6;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 20px;
  letter-spacing: -0.20px;
  line-height: 28.4px;
}

.landing-page .project-title {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 24px;
  letter-spacing: -0.24px;
  line-height: 34.1px;
}

.landing-page .project-icon {
  width: 42px;
  height: 42px;
  background-color: var(--orvane-re-webblack);
  border-radius: 10000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-page .project-description {
  max-width: 590px;
  opacity: 0.6;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 22.7px;
}

/* --- Small Project Cards --- */
.landing-page .project-cards-small {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  flex: 1;
}

.landing-page .project-card-sm {
  display: flex;
  flex-direction: column;
  width: 195px;
  align-items: flex-start;
  gap: 12px;
}

.landing-page .project-sm-image {
  width: 100%;
  height: 170px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.landing-page .project-sm-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}

.landing-page .project-sm-year {
  opacity: 0.6;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 22.7px;
}

.landing-page .project-sm-title {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 22.7px;
}


/* ============================================================
   DISCOVER PROPERTIES
   ============================================================ */
.landing-page .discover {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  padding: 42px 76px 76px;
  background-color: var(--orvane-re-webwhite);
}

.landing-page .discover-properties {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 64px;
  width: 100%;
}

.landing-page .discover-header {
  display: flex;
  flex-direction: column;
  max-width: 792px;
  align-items: flex-start;
  gap: 26px;
}

.landing-page .discover-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 99px;
  width: 100%;
}

.landing-page .discover-side-panel {
  width: 505px;
  height: 320px;
  background-color: var(--lofi);
  border-radius: 4px;
  flex-shrink: 0;
}

.landing-page .discover-side-panel.left {
  margin-left: -278px;
}

.landing-page .discover-side-panel.right {
  margin-right: -275px;
}

.landing-page .discover-center {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  max-width: 962px;
}

.landing-page .discover-main {
  display: flex;
  flex-direction: column;
  width: 632px;
  align-items: flex-end;
  gap: 14px;
}

.landing-page .discover-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.landing-page .discover-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.landing-page .discover-title {
  font-family: 'NewBlack', Helvetica, serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 42px;
  letter-spacing: -0.42px;
  line-height: 59.6px;
}

.landing-page .discover-location {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.landing-page .discover-pin {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-page .discover-location-text {
  opacity: 0.8;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 24px;
  letter-spacing: -0.24px;
  line-height: 34.1px;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.landing-page .testimonial {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  align-items: center;
  gap: 76px;
  padding: 24px 0 96px;
  background-color: var(--orvane-re-webwhite);
}

.landing-page .testimonial-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.landing-page .testimonial-marquee {
  font-size: 96px;
  letter-spacing: -1.92px;
  line-height: normal;
  white-space: nowrap;
}

.landing-page .marquee-bold {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: #1b1b1b;
  letter-spacing: -1.84px;
}

.landing-page .marquee-light {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 300;
  color: #1b1b1b99;
  letter-spacing: -1.84px;
}

.landing-page .testimonial-content {
  display: flex;
  width: 100%;
  max-width: 1288px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 76px;
  gap: 40px;
}

.landing-page .testimonial-left {
  display: flex;
  flex-direction: column;
  width: 424px;
  align-items: flex-start;
  gap: 62px;
  flex-shrink: 0;
}

.landing-page .testimonial-heading {
  font-family: 'NewBlack', Helvetica, serif;
  font-size: 64px;
  letter-spacing: -1.28px;
  line-height: 76.8px;
}

.landing-page .testimonial-heading .slash {
  font-weight: 300;
  color: #1b1b1b52;
}

.landing-page .testimonial-heading .heading-text {
  font-weight: 500;
  color: #1b1b1b;
}

.landing-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.landing-page .author-image {
  width: 68px;
  height: 68px;
  background-color: var(--lofi);
  border-radius: 10000px;
  flex-shrink: 0;
}

.landing-page .author-info {
  display: flex;
  flex-direction: column;
  width: 218px;
  gap: 8px;
}

.landing-page .author-name {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  letter-spacing: -0.16px;
}

.landing-page .author-role {
  opacity: 0.4;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  letter-spacing: -0.16px;
}

.landing-page .testimonial-right {
  display: flex;
  flex-direction: column;
  max-width: 632px;
  align-items: flex-start;
  gap: 76px;
}

.landing-page .testimonial-body {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 22.7px;
}

.landing-page .testimonial-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  width: 100%;
}

.landing-page .testimonial-nav-btn {
  width: 42px;
  height: 42px;
  background-color: var(--orvane-re-webwhite);
  border-radius: 10000px;
  border: 1px solid var(--orvane-re-websecondary);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-page .testimonial-nav-btn:hover {
  background-color: var(--orvane-re-webblack);
  border-color: var(--orvane-re-webblack);
  color: var(--orvane-re-webwhite);
}

.landing-page .testimonial-nav-btn:hover svg {
  stroke: var(--orvane-re-webwhite);
}

.landing-page .testimonial-body,
.landing-page .author-image,
.landing-page .author-name,
.landing-page .author-role {
  transition: opacity 0.3s ease;
}

.landing-page .testimonial-nav-num {
  opacity: 0.6;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  letter-spacing: -0.16px;
  flex-shrink: 0;
}

.landing-page .testimonial-progress {
  flex: 1;
  height: 10px;
  background-color: var(--orvane-re-websecondary);
  border-radius: 10000px;
  position: relative;
}

.landing-page .testimonial-progress-fill {
  height: 10px;
  background-color: var(--orvane-re-webblack);
  border-radius: 10000px;
  width: 25%;
  transition: width 0.4s ease;
}


/* ============================================================
   CTA
   ============================================================ */
.landing-page .CTA {
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: center;
}

.landing-page .CTA-image {
  width: 656px;
  height: 696px;
  background: url('../images/testimonial-bg.png') center/cover no-repeat;
  flex-shrink: 0;
}

.landing-page .CTA-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 695px;
  align-items: center;
  justify-content: center;
  padding: 65px 76px;
  background-color: var(--orvane-re-webblack);
}

.landing-page .CTA-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}

.landing-page .CTA-title {
  font-size: 47px;
  letter-spacing: -0.94px;
  line-height: normal;
}

.landing-page .cta-slash {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 200;
  color: #fcfaf852;
  letter-spacing: -0.44px;
}

.landing-page .cta-big {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: #fcfaf8;
  font-size: 58px;
  letter-spacing: -0.67px;
}

.landing-page .cta-small {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: #fcfaf8;
  font-size: 32px;
  letter-spacing: -0.20px;
}

/* --- CTA Form --- */
.landing-page .CTA-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

.landing-page .CTA-form-fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.landing-page .CTA-form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.landing-page .CTA-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.landing-page .CTA-field-full {
  width: 100%;
}

.landing-page .CTA-label {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webwhite);
  font-size: 16px;
  letter-spacing: -0.16px;
}

.landing-page .CTA-input-wrap {
  width: 100%;
  height: 42px;
  background-color: #fcfaf83d;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.landing-page .CTA-textarea-wrap {
  width: 100%;
  height: 126px;
  background-color: #fcfaf83d;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.landing-page .CTA-input,
.landing-page .CTA-textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 20px;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 14px;
  letter-spacing: -0.14px;
}

.landing-page .CTA-textarea {
  padding: 12px 20px;
  resize: none;
}

.landing-page .CTA-input::placeholder,
.landing-page .CTA-textarea::placeholder {
  color: var(--orvane-re-webwhite);
  opacity: 0.6;
}

.landing-page .CTA-input option {
  color: var(--orvane-re-webblack);
  background: var(--orvane-re-webwhite);
}

.landing-page .send-inquiry-button {
  width: 100%;
  height: 56px;
  background-color: var(--orvane-re-webwhite);
  border-radius: 6px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.landing-page .send-inquiry-text {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.16px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.landing-page .footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  align-items: flex-start;
  padding: 42px 25px 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.31), rgba(0,0,0,0.31)),
              var(--orvane-re-webblack);
}

.landing-page .footer-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1389px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  flex: 1;
  min-height: 1200px;
}

.landing-page .footer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1288px;
  align-items: flex-start;
  gap: 36px;
}

/* --- White Info Card --- */
.landing-page .footer-info {
  position: relative;
  width: 100%;
  min-height: 246px;
  background-color: var(--orvane-re-webwhite);
  border-radius: 6px;
  overflow: hidden;
  padding: 40px 42px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.landing-page .footer-logo-block {
  display: flex;
  flex-direction: column;
  max-width: 446px;
  align-items: flex-start;
  gap: 16px;
}

.landing-page .footer-logo-text {
  font-family: 'NewBlack', Helvetica, serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 48px;
  letter-spacing: -0.96px;
  line-height: normal;
}

.landing-page .footer-logo-desc {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 19.9px;
}

.landing-page .footer-info-cols {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.landing-page .footer-info-col {
  display: flex;
  flex-direction: column;
  width: 285px;
  align-items: flex-start;
  gap: 20px;
}

.landing-page .footer-col-heading {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 20px;
  letter-spacing: -0.20px;
}

.landing-page .footer-col-text {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webblack);
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 19.9px;
}

/* --- Footer Bottom Row --- */
.landing-page .footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.landing-page .footer-subscribe {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.landing-page .footer-subscribe-title {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webwhite);
  font-size: 20px;
  letter-spacing: -0.20px;
}

.landing-page .footer-subscribe-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-page .footer-subscribe-input-wrap {
  width: 328px;
  height: 42px;
  background-color: #fcfaf829;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.landing-page .footer-subscribe-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 20px;
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 14px;
  letter-spacing: -0.14px;
}

.landing-page .footer-subscribe-input::placeholder {
  color: var(--orvane-re-webwhite);
  opacity: 0.6;
}

.landing-page .footer-subscribe-btn {
  width: 120px;
  height: 42px;
  background-color: var(--orvane-re-webwhite);
  border-radius: 6px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  padding: 0;
}

.landing-page .footer-subscribe-btn-text {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 500;
  color: var(--orvane-re-webblack);
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.16px;
}

.landing-page .footer-links {
  display: flex;
  flex-direction: column;
  max-width: 627px;
  align-items: flex-start;
  gap: 16px;
}

.landing-page .footer-links-brand {
  font-family: 'NewBlack', Helvetica, serif;
  font-weight: 500;
  color: var(--orvane-re-webwhite);
  font-size: 20px;
  letter-spacing: -0.20px;
}

.landing-page .footer-links-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-page .footer-links-list a {
  font-family: 'Geist', Helvetica, sans-serif;
  font-weight: 400;
  color: var(--orvane-re-webwhite);
  font-size: 16px;
  letter-spacing: -0.16px;
  opacity: 0.6;
}

.landing-page .footer-links-list a:hover {
  opacity: 1;
}

/* --- Giant Footer Text --- */
.landing-page .footer-copyright {
  font-family: 'NewBlack', Helvetica, serif;
  font-weight: 500;
  color: var(--orvane-re-webwhite);
  font-size: 256px;
  text-align: center;
  letter-spacing: -5.12px;
  line-height: normal;
  width: 100%;
  opacity: 0.15;
}


/* ============================================================
   SHARED COMPONENT STYLES (for other pages)
   ============================================================ */

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Generic Hero (inner pages) --- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--orvane-re-webblack);
  color: var(--orvane-re-webwhite);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.7);
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(252, 250, 248, 0.65);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero .green-bar {
  width: 48px;
  height: 4px;
  background: #00a302;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-sm {
  min-height: 320px;
}

/* --- Sections --- */
.section { padding: 100px 0; }
.section-dark {
  background: var(--orvane-re-webblack);
  color: var(--orvane-re-webwhite);
}
.section-dark p { color: rgba(252, 250, 248, 0.6); }
.section-gray { background: #f5f5f5; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'NewBlack', serif; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: 'Geist', sans-serif;
}
.btn-primary { background: #00a302; color: #fff; }
.btn-outline { background: transparent; color: var(--orvane-re-webblack); border: 2px solid var(--orvane-re-webblack); }
.btn-outline:hover { background: var(--orvane-re-webblack); color: var(--orvane-re-webwhite); }
.btn-outline-white { background: transparent; color: var(--orvane-re-webwhite); border: 2px solid var(--orvane-re-webwhite); }
.btn-outline-white:hover { background: var(--orvane-re-webwhite); color: var(--orvane-re-webblack); }
.btn-white { background: var(--orvane-re-webwhite); color: var(--orvane-re-webblack); }

/* --- Pricing --- */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.pricing-toggle span { font-size: 15px; font-weight: 400; color: rgba(27,27,27,0.4); }
.pricing-toggle span.active { color: var(--orvane-re-webblack); font-weight: 600; }
.toggle-switch { position: relative; width: 48px; height: 26px; background: #ddd; border-radius: 13px; cursor: pointer; }
.toggle-switch.active { background: #00a302; }
.toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: left 0.3s ease; }
.toggle-switch.active::after { left: 25px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--orvane-re-webwhite); border: 1px solid rgba(27,27,27,0.1); border-radius: 16px; padding: 32px 24px; position: relative; }
.pricing-card.featured { border-color: #00a302; box-shadow: 0 8px 30px rgba(0,163,2,0.12); }
.pricing-badge { display: none; background: #00a302; color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; text-transform: uppercase; }
.pricing-card.featured .pricing-badge { display: inline-block; }
.pricing-tier { font-size: 13px; color: rgba(27,27,27,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-price { margin: 16px 0; }
.pricing-price .amount { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; }
.pricing-price .period { font-size: 14px; color: rgba(27,27,27,0.4); }
.pricing-features { margin: 24px 0; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 14px; color: rgba(27,27,27,0.6); }
.pricing-features li::before { content: ''; display: inline-block; width: 18px; height: 18px; min-width: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300a302'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") no-repeat center; margin-top: 2px; }
.pricing-card .btn { width: 100%; margin-top: 8px; }

/* --- Cards Grid --- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card { background: var(--orvane-re-webwhite); border-radius: 16px; overflow: hidden; border: 1px solid rgba(27,27,27,0.08); transition: all 0.3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }

/* --- Two Column, Steps, Audience --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.steps { display: flex; flex-direction: column; gap: 80px; }
.step { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.step:nth-child(even) { direction: rtl; }
.step:nth-child(even) > * { direction: ltr; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #00a302; color: #fff; border-radius: 50%; font-weight: 700; margin-bottom: 16px; }
.step-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }
.audience-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 400px; }
.audience-block:nth-child(even) { direction: rtl; }
.audience-block:nth-child(even) > * { direction: ltr; }
.audience-text { display: flex; flex-direction: column; justify-content: center; padding: 60px; }
.audience-img { overflow: hidden; }
.audience-img img { width: 100%; height: 100%; object-fit: cover; }

/* --- CTA Banner (other pages) --- */
.cta-banner { background: var(--orvane-re-webblack); border-radius: 16px; padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; max-width: 1280px; margin: 0 auto; }
.cta-banner h2 { color: var(--orvane-re-webwhite); }
.cta-banner p { color: rgba(252,250,248,0.6); margin-top: 8px; }

/* --- Shared Footer (inner pages) --- */
.footer {
  background: var(--orvane-re-webblack);
  color: var(--orvane-re-webwhite);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(252,250,248,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(252,250,248,0.5);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(252,250,248,0.5);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orvane-re-webwhite);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(252,250,248,0.5);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(252,250,248,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(252,250,248,0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--orvane-re-webwhite);
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 16px;
  background: rgba(252,250,248,0.06);
  border: 1px solid rgba(252,250,248,0.15);
  border-radius: 6px;
  color: var(--orvane-re-webwhite);
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: rgba(252,250,248,0.35);
}

.footer-newsletter h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-big-text {
  font-family: 'NewBlack', serif;
  font-size: 180px;
  font-weight: 500;
  color: var(--orvane-re-webwhite);
  opacity: 0.04;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1;
  padding: 40px 0 0;
  pointer-events: none;
  user-select: none;
}


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

@media (max-width: 1200px) {
  .landing-page .hero-title {
    font-size: 72px;
    line-height: 86px;
  }

  .landing-page .hero-2 {
    top: 160px;
  }

  .landing-page .projects-title {
    font-size: 72px;
    line-height: 72px;
    width: auto;
    max-width: 480px;
  }

  .landing-page .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .landing-page .projects-description {
    max-width: 100%;
  }

  .landing-page .projects-body {
    font-size: 18px;
  }

  .landing-page .testimonial-marquee {
    font-size: 72px;
  }

  .landing-page .footer-copyright {
    font-size: 180px;
  }

  .landing-page .about-us-stats {
    width: auto;
  }

  .landing-page .discover-row {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .navbar .div,
  .contact-info {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .landing-page .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .landing-page .hero-2 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 120px 32px 0;
    gap: 40px;
  }

  .landing-page .hero-title {
    font-size: 56px;
    line-height: 67px;
    white-space: normal;
  }

  .landing-page .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-page .explore-properties {
    width: 100%;
  }

  .landing-page .property-slider {
    max-width: 100%;
    width: 100%;
  }

  .landing-page .slider-progress-bar {
    width: 100%;
    max-width: 442px;
  }

  .landing-page .property-card,
  .landing-page .property-card-overflow {
    width: 100%;
    max-width: 446px;
  }

  .landing-page .property-card-overflow {
    margin-right: 0;
    display: none;
  }

  .landing-page .about-us-content {
    flex-direction: column;
  }

  .landing-page .about-us-text {
    width: 100%;
  }

  .landing-page .about-us-stats {
    width: 100%;
    flex-wrap: wrap;
    gap: 32px;
  }

  .landing-page .about-heading,
  .landing-page .testimonial-heading {
    font-size: 48px;
  }

  .landing-page .video-container {
    height: 500px;
  }

  .landing-page .projects {
    padding: 48px 32px;
  }

  .landing-page .project-cards {
    flex-direction: column;
  }

  .landing-page .project-card-main {
    width: 100%;
  }

  .landing-page .project-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-height: 412px;
  }

  .landing-page .project-cards-small {
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
  }

  .landing-page .project-card-sm {
    width: calc(33.333% - 12px);
    min-width: 150px;
  }

  .landing-page .discover {
    padding: 32px 32px 64px;
  }

  .landing-page .discover-side-panel {
    display: none;
  }

  .landing-page .discover-row {
    gap: 0;
  }

  .landing-page .discover-main {
    width: 100%;
  }

  .landing-page .discover-image {
    height: 300px;
  }

  .landing-page .discover-title {
    font-size: 32px;
    line-height: 45px;
  }

  .landing-page .discover-location-text {
    font-size: 18px;
  }

  .landing-page .testimonial {
    gap: 40px;
    padding: 24px 0 64px;
  }

  .landing-page .testimonial-content {
    flex-direction: column;
    padding: 0 32px;
  }

  .landing-page .testimonial-left {
    width: 100%;
    gap: 32px;
  }

  .landing-page .testimonial-right {
    max-width: 100%;
    gap: 40px;
  }

  .landing-page .testimonial-marquee {
    font-size: 48px;
  }

  .landing-page .CTA {
    flex-direction: column;
  }

  .landing-page .CTA-image {
    width: 100%;
    height: 400px;
  }

  .landing-page .CTA-content {
    min-height: auto;
    padding: 48px 32px;
    width: 100%;
  }

  .landing-page .cta-big {
    font-size: 42px;
  }

  .landing-page .cta-small {
    font-size: 24px;
  }

  .landing-page .footer-info {
    flex-direction: column;
  }

  .landing-page .footer-info-cols {
    flex-direction: column;
  }

  .landing-page .footer-bottom {
    flex-direction: column;
  }

  .landing-page .footer-copyright {
    font-size: 100px;
  }

  .landing-page .footer-container {
    min-height: auto;
  }

  .landing-page .footer {
    padding: 32px 16px 0;
  }

  /* shared pages */
  /* old nav classes removed — navbar responsive handled globally above */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .step { gap: 40px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .landing-page .hero-title {
    font-size: 42px;
    line-height: 50px;
  }

  .landing-page .hero-subtitle {
    font-size: 16px;
    margin-top: 0;
  }

  .landing-page .stat-number {
    font-size: 48px;
  }

  .landing-page .stat-plus {
    font-size: 36px;
  }

  .landing-page .about-heading,
  .landing-page .testimonial-heading {
    font-size: 36px;
    line-height: 43px;
  }

  .landing-page .about-body {
    font-size: 16px;
    line-height: 24px;
  }

  .landing-page .projects-title {
    font-size: 48px;
    line-height: 48px;
  }

  .landing-page .project-cards-small {
    flex-direction: column;
  }

  .landing-page .project-card-sm {
    width: 100%;
    flex-direction: row;
    gap: 16px;
  }

  .landing-page .project-sm-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .landing-page .CTA-form-row {
    flex-direction: column;
  }

  .landing-page .footer-subscribe-input-wrap {
    width: 100%;
  }

  .landing-page .footer-subscribe-form {
    flex-direction: column;
    width: 100%;
  }

  .landing-page .footer-subscribe-btn {
    width: 100%;
  }

  .landing-page .footer-links-list {
    flex-wrap: wrap;
    gap: 16px;
  }

  .landing-page .footer-logo-text {
    font-size: 32px;
  }

  .landing-page .footer-copyright {
    font-size: 64px;
  }

  .landing-page .testimonial-marquee {
    font-size: 32px;
  }

  .landing-page .video-container {
    height: 350px;
  }

  .landing-page .play-button {
    width: 80px;
    height: 80px;
    padding: 24px;
  }

  .landing-page .frame {
    width: 32px;
    height: 32px;
  }

  /* shared pages */
  .two-col, .step { grid-template-columns: 1fr; }
  .step:nth-child(even) { direction: ltr; }
  .audience-block { grid-template-columns: 1fr; }
  .audience-block:nth-child(even) { direction: ltr; }
  .audience-text { padding: 40px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-big-text { font-size: 100px; }
}

@media (max-width: 480px) {
  .landing-page .hero-title {
    font-size: 32px;
    line-height: 38px;
  }

  .landing-page .about-heading,
  .landing-page .testimonial-heading {
    font-size: 28px;
    line-height: 34px;
  }

  .landing-page .stat-number {
    font-size: 36px;
  }

  .landing-page .stat-plus {
    font-size: 28px;
  }

  .landing-page .projects-title {
    font-size: 36px;
    line-height: 36px;
  }

  .landing-page .cta-big {
    font-size: 28px;
  }

  .landing-page .cta-small {
    font-size: 18px;
  }

  .landing-page .footer-copyright {
    font-size: 48px;
  }

  .landing-page .testimonial-marquee {
    font-size: 24px;
  }

  /* shared pages */
  .footer-big-text { font-size: 64px; }
}
