* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #474747;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in-up,
.slide-in-left,
.slide-in-right {
  opacity: 1;
  transform: none;
  transition: none;
}

.fade-in-up.animate-in,
.slide-in-left.animate-in,
.slide-in-right.animate-in {
  opacity: 1;
  transform: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
  padding-inline: 150px;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

.nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
}

.nav-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 144px;
  margin: auto;
  transition: all 0.3s ease;
}

.nav-content.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  border-radius: 18px;
}

.nav-logo {
  height: 35px;
  width: auto;
}

.nav-signin {
  display: flex;
  align-items: center;
  gap: 11px;
}

.signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 125px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  border-radius: 18px;
}

.signin-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
}

.signin-text a {
  color: #000000;
}

.hero-section {
  position: relative;
  min-height: 650px;
  padding: 150px 144px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(assets/header_bg_V8.png) lightgray 0px -213.2px / 100% 147.6% no-repeat;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 147.6%;
  top: -32.8%;
  left: 0;
  object-fit: cover;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 543px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: normal;
  color: #ffffff;
  white-space: pre-wrap;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #ffffff;
  max-width: 490px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-primary {
  background-color: #ff385c;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px !important;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  width: 12px;
  height: 24px;
  object-fit: contain;
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
}

.btn-secondary-white {
  background-color: transparent;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ffffff;
  cursor: pointer;
  white-space: nowrap;
  height: 44px !important;
  transition: all 0.3s ease;
}

.btn-secondary-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #ff385c;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ff385c;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #ff385c;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
}

.hero-images {
  position: relative;
  flex: 1;
  height: 450px;
  width: 100%;
}

.hero-image-single {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
}

.hero-image-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero-image-gradient {
  border-radius: 20px;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
}

.hero-image-1 {
  width: 220px;
  height: 312px;
  left: 0;
  top: 5px;
}

.hero-image-2 {
  width: 365px;
  height: 281px;
  left: 26px;
  top: 0;
}

.hero-image-3 {
  width: 545px;
  height: 323px;
  left: 134px;
  top: 125px;
}

.hero-image-4 {
  width: 545px;
  height: 364px;
  left: 134px;
  top: 71px;
}

.hero-decorative-ellipse {
  position: absolute;
  left: -518px;
  top: 518px;
  width: 314px;
  height: 314px;
  z-index: 0;
}

.decorative-ellipse {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bullet-icon {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 0;
  vertical-align: middle;
  flex-shrink: 0;
}

.bullet-icon.white {
  filter: brightness(0) invert(1);
}

.description-list li,
.step-list li,
.who-card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.line-decoration {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Section Styles */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: normal;
  color: #474242;
  margin-bottom: 0;
}

.section-title-centered {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: normal;
  color: #474747;
  text-align: center;
  margin-bottom: 32px;
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #616161;
  margin-bottom: 0;
}

.section-description-centered {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #616161;
  text-align: center;
  max-width: 758px;
}

.gradient-text {
  background: linear-gradient(103.56deg, #9d3a69 14.196%, #fd6891 65.734%, #fb5a83 88.934%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 24px;
  margin-bottom: 12px;
  background: #f5f5f5;
  position: relative;
  padding-right: 5px;
  width: fit-content;
}

.badge-line {
  width: 4px;
  height: 24px;
  background: linear-gradient(82.82deg, #9d3a69 24.705%, #fd6891 102.43%, #fb5a83 202.37%);
}

.badge-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  background: linear-gradient(114.3deg, #9d3a69 16.592%, #fd6891 65.734%, #fb5a83 88.934%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.powering-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.powering-section .section-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.powering-section .text-container {
  flex: 1;
  max-width: 580px;
}

.property-types-grid {
  display: block;
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.property-types-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110%;
  height: 110%;
  background-image: url('assets/line-decoration_V8.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.property-types-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}

.property-card {
  background: #ffffff;
  border: 1px solid #eecfd4;
  border-radius: 10px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 44px;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
  grid-column: 1;
  grid-row: 1;
  position: relative;
}

.property-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border-color: #ff385c;
}

.property-card.large {
  width: 116px;
  height: 116px;
  padding: 28px 3px;
  border-radius: 20px;
  background: #ffe3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
  grid-column: 1;
  grid-row: 1;
  position: relative;
}

.property-card.large.featured {
  background: linear-gradient(96deg, #9d3a69 -94.6%, #fc5270 43.48%, #fc5270 220.32%);
}

.property-card.large .property-icon {
  width: 97px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.property-card.large.featured .property-icon {
  height: 46px;
}

.property-card.large:nth-child(5) .property-icon {
  width: 87px;
  height: 42px;
}

.property-card.large .property-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.property-card-featured {
  background: linear-gradient(96.07deg, #9d3a69 94.604%, #fc5270 43.482%, #fc5270 220.32%);
  border: none;
}

.property-icon {
  width: 97px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #616161;
  text-align: center;
  white-space: nowrap;
}

.property-card-featured .property-label {
  color: #ffffff;
}

.everything-section {
  background-color: #ffffff;
}

.section-header {
  margin-bottom: 60px;
}

.features-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 468px;
}

.feature-card {
  background: #ffffff;
  border: 0.5px solid #eecfd4;
  border-radius: 20px;
  padding: 25px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 165px;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.15);
  border-color: #ff385c;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card .feature-icon {
  transition: transform 0.3s ease;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #616161;
  text-align: center;
}

.features-images {
  display: flex;
  justify-content: center;
  position: relative;
  flex: 1;
  height: 400px;
}

.features-images::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-image: url('assets/line-decoration_V8.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.feature-image {
  position: absolute;
  width: auto;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.steps-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f6f9fc;
}

.steps-header {
  margin-bottom: 60px;
  max-width: 1152px;
}

.steps-header .section-title {
  margin-bottom: 20px;
}

.steps-header .section-description {
  max-width: 800px;
}

.steps-container {
  display: flex;
  gap: 130px;
  align-items: center;
  justify-content: center;
}

.steps-content {
  flex: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.steps-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.step-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.step-wrapper::after {
  content: '';
  position: relative;
  left: 14px;
  width: 2px;
  height: 20px;
  background-color: #ffe3e8;
  z-index: 0;
}

.step-wrapper:last-child::after {
  display: none !important;
}

.step-wrapper.active::after {
  display: none;
}

.step-wrapper.hide-line::after {
  display: none;
}

.step-wrapper[data-step='3']::after {
  display: none !important;
}

.step-header {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 10px 0;
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.step-wrapper.active .step-header {
  display: none;
}

.step-number-badge {
  background-color: #ffe3e8;
  color: #fc5271;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-wrapper.active .step-number-badge {
  background-color: #ff385c;
  color: #ffffff;
}

.step-text-inline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #616161;
  text-align: left;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.step-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: none;
  gap: 0;
  transition:
    opacity 0.4s ease,
    height 0.4s ease,
    transform 0.4s ease,
    margin 0.4s ease;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0;
  margin-top: 0;
  transform: translateY(-10px);
  overflow: hidden;
}

.step-card.active {
  background: #ffffff;
  border: 1px solid #eecfd4;
  border-radius: 24px;
  padding: 20px;
  height: auto;
  width: 100%;
  top: 12px;
  opacity: 1;
  visibility: visible;
  display: block;
  margin-bottom: 20px;
  margin-left: -23px;
  transform: translateY(0);
  box-shadow:
    0px 4px 5px 0px rgba(71, 103, 136, 0.04),
    0px 8px 15px 0px rgba(71, 103, 136, 0.03),
    0px 15px 30px 0px rgba(71, 103, 136, 0.06);
  cursor: pointer;
}

.step-card[data-step='1'] {
  height: auto;
}

.step-card[data-step='2'] {
  height: auto;
}

.step-card[data-step='3'] {
  height: auto;
}

.step-number {
  background-color: #ff385c;
  color: #ffffff;
  width: 29px;
  height: 29px;
  border-radius: 14.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  padding: 3px 10px;
  position: absolute;
  left: 36px;
  top: 31px;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.step-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-list-row {
  position: relative;
  left: 3rem;
}

.step-list-row p {
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #474747;
  line-height: 1.3;
  margin: 0;
}

.step-card[data-step='2'] .step-title {
  color: #474747;
  font-weight: 600;
}

.step-card[data-step='3'] .step-title {
  color: #474747;
  font-weight: 600;
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.step-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #616161;
  line-height: 1.4;
}

.step-list li p {
  margin: 0;
  padding: 0;
  display: inline;
  flex: 1;
  min-width: 0;
}

.step-list li::before {
  display: none;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 10px 37px;
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
}

.step-arrow-container {
  width: 100%;
  padding: 10px 50px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-arrow {
  width: 24px;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  object-fit: contain;
}

.step-number-small {
  background-color: #ffe3e8;
  color: #fc5271;
  width: 29px;
  height: 29px;
  border-radius: 14.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  padding: 3px 10px;
  transition: all 0.3s ease;
}

.step-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #616161;
  text-align: center;
  white-space: nowrap;
}

.steps-image {
  flex: 1;
  width: 600px;
  height: 450px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b24169 0%, #fc5271 50%, #ff6b7a 100%);
  border-radius: 24px;
  overflow: hidden;
}

.steps-image::before {
  content: '';
  position: absolute;
  width: 100%;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.step-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.step-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transform: scale(1.05);
  border-radius: 24px;
}

.step-image.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.step-image-icons {
  display: none;
  position: absolute;
  width: 280px;
  height: 220px;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-image-icons.active {
  display: flex;
  opacity: 1;
  z-index: 1;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(1);
}

.icon-card {
  background: #ffffff;
  border: 1px solid #d4e0ed;
  border-radius: 12px;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow:
    0px 4px 5px 0px rgba(71, 103, 136, 0.04),
    0px 4px 10px 0px rgba(71, 103, 136, 0.03),
    0px 10px 20px 0px rgba(71, 103, 136, 0.05);
  position: absolute;
}

.icon-card-1 {
  position: absolute;
  left: 0;
  top: 0;
}

.icon-card-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.icon-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #616161;
  margin: 0;
  margin-top: -8px;
}

.who-section {
  background-color: #ffffff;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.slider-controls {
  display: flex;
  gap: 13px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
  position: relative;
  flex-shrink: 0;
}

.slider-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.slider-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #ff385c;
}

.prev-btn {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
}

.prev-btn.active {
  background-color: #fc5271;
  border: none;
}

.prev-btn.active img {
  filter: brightness(0) invert(1);
}

.next-btn.active {
  background-color: #fc5271;
  border: none;
}

.next-btn.active img {
  filter: brightness(0) invert(1);
}

.next-btn {
  background-color: #fc5271;
  border: none;
}

.next-btn:not(.active) {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
}

.next-btn:not(.active) img {
  filter: none;
}

.next-btn img {
  filter: none;
}

.who-cards {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.who-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 54px 40px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.07);
  flex: 1 1 0;
  max-width: 797px;
  min-width: 0;
  position: relative;
  transition: all 0.5s ease;
}

.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-color: #635bff;
  border-radius: 8px 8px 0 0;
}

.who-card.active {
  filter: blur(0px);
  background: #ffffff;
  opacity: 1;
  transform: scale(1);
}

.who-card:not(.active) {
  filter: blur(2px);
  background: #f6f9fc;
  opacity: 0.7;
  transform: scale(0.95);
}

.who-card:not(.active)::before {
  background: linear-gradient(168.19deg, #9d3a69 14.196%, #fd6891 36.159%, #fb5a83 64.397%);
}

.who-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #474747;
  margin-bottom: 75px;
  line-height: normal;
}

.who-card:not(.active) .who-card-title {
  font-weight: 500;
  color: #2c2c2c;
}

.who-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.who-card-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #616161;
  list-style: none;
}

.who-card-list li p {
  margin: 0;
  padding: 0;
  display: inline;
  flex: 1;
  min-width: 0;
}

.who-card-list li::before {
  display: none;
}

.marketplace-section {
  background-color: #f6f9fc;
}

.section-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1152px;
  margin: 0 auto;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
  margin-top: 60px;
}

@media (min-width: 1025px) {
  .marketplace-grid .marketplace-card:last-child {
    grid-column: 2;
    justify-self: center;
  }
}

.marketplace-card {
  width: 297px;
  background: #f6f9fc;
  border-radius: 10px;
  padding: 25px 17px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 178px;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.marketplace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.15);
}

.marketplace-card:hover .marketplace-icon {
  transform: scale(1.1) rotate(5deg);
}

.marketplace-card .marketplace-icon {
  transition: transform 0.3s ease;
}

.marketplace-card:hover {
  background: linear-gradient(110.26deg, #9d3a69 13.07%, #fc5270 49.794%, #fd7a98 98.077%);
}

.marketplace-icon {
  width: 45px;
  height: 45px;
  background: #f5dfe3;
  border-radius: 22.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
}

.marketplace-icon img {
  width: 24px;
  height: 24px;
}

.marketplace-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #474747;
  line-height: normal;
  white-space: pre-wrap;
  text-align: left;
  transition: all 0.3s ease;
}

.marketplace-card:hover .marketplace-text {
  font-weight: 500;
  color: #ffffff;
}

.qualification-section {
  background-color: #ffffff;
}

.qualification-section {
  position: relative;
}

.qualification-section .section-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 10px 0;
}

.qualification-section .text-container {
  max-width: 859px;
}

.description-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
}

.description-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #616161;
  white-space: nowrap;
}

.description-list li p {
  margin: 0;
  padding: 0;
  display: inline;
  flex: 1;
  min-width: 0;
  text-align: justify;
}

.description-list li::before {
  display: none;
}

.description-list.white li {
  color: #f6f9fc;
}

.description-list.white li .bullet-icon {
  filter: brightness(0) invert(1);
}

.rv-types {
  position: relative;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 308px);
  gap: 42px;
  justify-content: center;
}

.rv-types::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background-image: url('assets/line-decoration_V8.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.rv-type-card {
  background: #f6f9fc;
  border-radius: 20px;
  padding: 31px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 308px;
  height: 220px;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.rv-type-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.15);
}

.rv-type-card:hover .rv-type-icon {
  transform: scale(1.1);
  animation: float 2s ease-in-out infinite;
}

.rv-type-card .rv-type-icon {
  transition: transform 0.3s ease;
}

.rv-type-icon {
  width: 257px;
  height: 123px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rv-type-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-align: center;
}

.operations-section {
  background-color: #ffffff;
  padding: 10px 0;
}

.housekeeping-section {
  background-color: #ffffff;
}

.housekeeping-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  max-width: 1151px;
  margin: 0 auto;
  height: 284px;
  position: relative;
  border-radius: 20px;
  border: 1px solid #d4e0ed;
  background: #f6f9fc;
}

.housekeeping-text {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  padding: 63px 0;
}

.housekeeping-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #474747;
  line-height: normal;
}

.housekeeping-images {
  position: relative;
  flex: 1;
  max-width: 590px;
  display: flex;
  align-items: flex-start;
}

.housekeeping-images img {
  height: 510px;
}

.housekeeping-main-image {
  width: 530px;
  height: 534px;
  object-fit: cover;
}

.housekeeping-overlay-image {
  position: absolute;
  left: 194.89px;
  top: 133.62px;
  width: 145.375px;
  height: 256.593px;
  object-fit: cover;
}

.maintenance-section {
  background-color: #ffffff;
}

.maintenance-content {
  display: flex;
  gap: 140px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  max-width: 1151px;
  margin: 0 auto;
  height: 284px;
  position: relative;
  border-radius: 20px;
  border: 1px solid #d4e0ed;
  background: #f6f9fc;
}

.maintenance-image {
  flex: 1;
  max-width: 431px;
  height: 561px;
}

.maintenance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maintenance-text {
  flex: 1;
  max-width: 507px;
  display: flex;
  flex-direction: column;
}

.maintenance-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #474747;
  line-height: normal;
}

.utility-mobile-section {
  background-color: #ffffff;
  position: relative;
  padding-inline: 0;
}

.utility-mobile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.utility-section {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(133.16deg, #9d3a69 8.7374%, #fc5270 63.614%, #fd7e9c 100.03%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: none;
  position: relative;
  justify-content: center;
  z-index: 2;
  align-items: baseline;
}

.utility-center-section {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.utility-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #f6f9fc;
  line-height: 1.2;
  margin: 0;
  width: 100%;
  text-align: left;
}

.utility-images {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
}

.utility-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 90%;
  max-height: 90%;
}

.mobile-apps-section {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(115.89deg, #9d3a69 8.7374%, #fc5270 63.614%, #fd7e9c 100.03%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: baseline;
  justify-content: center;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.mobile-center-section {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mobile-apps-image {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
}

.mobile-apps-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 90%;
  max-height: 90%;
}

.mobile-apps-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.mobile-apps-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.mobile-apps-section .description-list,
.utility-section .description-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 9px;
}

.mobile-apps-section .description-list li,
.utility-section .description-list li {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.mobile-apps-section .bullet-icon.white,
.utility-section .bullet-icon.white {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.technology-section {
  background-color: #f6f9fc;
}

.technology-content {
  display: flex;
  gap: 95px;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
}

.technology-text {
  flex: 1;
  max-width: 709px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.technology-logos {
  position: relative;
  width: 265px;
  height: 265px;
  flex-shrink: 0;
}

.tech-logo {
  background: #ffffff;
  border: 1px solid #d4e0ed;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  box-shadow:
    0px 4px 5px 0px rgba(71, 103, 136, 0.04),
    0px 4px 10px 0px rgba(71, 103, 136, 0.03),
    0px 10px 20px 0px rgba(71, 103, 136, 0.05);
  position: absolute;
}

.tech-logo:nth-child(1) {
  left: 21px;
  top: 0;
}

.tech-logo:nth-child(2) {
  left: 153px;
  top: 38px;
}

.tech-logo:nth-child(3) {
  left: 0;
  top: 132px;
}

.tech-logo:nth-child(4) {
  left: 133px;
  top: 170px;
}

.tech-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-section {
  background: linear-gradient(
    97deg,
    rgba(252, 82, 113, 0.05) 14.196%,
    rgba(255, 56, 92, 0.05) 79.458%
  );
  border-radius: 20px;
  margin: 100px auto;
  max-width: 1133px;
  padding: 100px 89px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 954px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: #474747;
  line-height: normal;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #616161;
  max-width: 915px;
  line-height: normal;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer {
  position: relative;
  height: 276px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(32, 30, 31, 0.75));
  overflow: hidden;
}

.footer-background {
  position: absolute;
  inset: 0;
  background-image: url('assets/footer_bg_V8.png');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}

.footer-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(32, 30, 31, 0.36) 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: auto;
  padding: 40px 144px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  border-radius: 18px;
}

.footer-logo img {
  height: 35px;
  width: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-position: under;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-copyright {
  grid-column: 1 / -1;
  text-align: left;
  margin-top: 20px;
}

.footer-copyright p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

a,
button {
  transition: all 0.3s ease;
}

@media (max-width: 1440px) {
  .container {
    padding: 0 100px;
  }

  .hero-section {
    padding: 200px 100px 100px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 50px;
  }

  .section {
    padding-inline: 0;
  }

  .hero-section {
    padding: 120px 50px 60px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .hero-title {
    text-align: center;
    font-size: 2rem;
  }

  .hero-subtitle {
    text-align: center;
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-images {
    margin-top: 40px;
  }

  .features-grid-container {
    flex-direction: column;
    gap: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
  }

  .feature-card {
    padding: 20px 16px;
    height: auto;
    min-height: 150px;
  }

  .steps-container {
    flex-direction: column;
    gap: 20px;
  }

  .step-card {
    margin: 0;
    width: 100%;
  }

  .step-card.active {
    top: 0;
    width: 100%;
    margin-left: 0;
  }

  .step-image {
    width: 200px;
    height: 150px;
  }

  .step-image.step-image-icons.active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .step-image-icons {
    width: 220px;
    height: 160px;
  }

  .step-image-icons .icon-card {
    width: 90px;
    height: 90px;
    padding: 14px;
  }

  .step-content {
    padding: 20px;
  }

  .step-list-row {
    left: 0;
    padding-left: 3rem;
  }

  .step-list li p {
    margin: 0;
    padding: 0;
    display: inline;
    flex: 1;
    min-width: 0;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    text-align: center;
    font-size: 1.8rem;
  }

  .section-description {
    text-align: center;
    font-size: 1rem;
  }

  .section-badge {
    justify-content: center;
    margin: 0 auto 12px;
  }

  .badge-line {
    display: none;
  }

  .badge-text {
    margin: 0 8px;
  }

  .who-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .who-card {
    padding: 25px;
    width: 100%;
    max-width: 600px;
  }

  .who-card-list li p {
    margin: 0;
    padding: 0;
    display: inline;
    flex: 1;
    min-width: 0;
  }

  .cta-section {
    margin: 30px 50px;
    padding: 50px 40px;
  }

  .cta-title {
    text-align: center;
    font-size: 2rem;
  }

  .cta-description {
    text-align: center;
  }

  .rv-types {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
  }

  .rv-types::before {
    display: none;
  }

  .rv-type-card {
    width: 100%;
    max-width: 450px;
  }

  .qualification-section .section-content {
    gap: 30px;
  }

  .description-list {
    gap: 8px;
  }

  .description-list li p {
    margin: 0;
    padding: 0;
    display: inline;
    flex: 1;
    min-width: 0;
  }

  .housekeeping-content {
    flex-direction: column;
    gap: 30px;
    height: auto;
    padding: 40px 30px;
  }

  .housekeeping-title {
    text-align: center;
    font-size: 2rem;
  }

  .housekeeping-text {
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .housekeeping-images {
    height: auto;
    max-width: 400px;
  }

  .housekeeping-images img {
    width: 100%;
  }

  .maintenance-content {
    flex-direction: column;
    gap: 30px;
    height: auto;
    padding: 40px 30px;
  }

  .maintenance-title {
    text-align: center;
    font-size: 2rem;
  }

  .maintenance-text {
    align-items: center;
    text-align: center;
  }

  .maintenance-image {
    height: auto;
    max-width: 400px;
  }

  .utility-mobile-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .utility-section {
    grid-column: 1;
    grid-row: 1;
    padding: 50px 30px;
  }

  .utility-title {
    text-align: center;
    font-size: 2rem;
  }

  .utility-center-section {
    width: 100%;
  }

  .utility-images {
    grid-column: 1;
    grid-row: 2;
    padding: 50px 30px;
  }

  .mobile-apps-section {
    grid-column: 1;
    grid-row: 4;
    padding: 50px 30px;
  }

  .mobile-apps-title {
    text-align: center;
    font-size: 2rem;
  }

  .mobile-center-section {
    width: 100%;
  }

  .mobile-apps-image {
    grid-column: 1;
    grid-row: 3;
    padding: 50px 30px;
  }

  .technology-content {
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
  }

  .technology-text {
    text-align: center;
    align-items: center;
  }

  .technology-logos {
    margin: 0 auto;
  }

  .marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .marketplace-card {
    padding: 20px;
  }

  .footer {
    height: auto;
    min-height: 276px;
  }

  .footer-content {
    padding: 40px 50px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin: 15px 0;
  }

  .social-link img {
    width: 20px;
    height: 20px;
  }

  .footer-links {
    align-items: center;
  }

  .footer-copyright {
    grid-column: 1;
  }

  .footer-copyright p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 40px 0;
    padding-inline: 0;
  }

  /* Font Sizes Mobile */
  .section-title {
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
  }

  .section-title-centered {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .section-description {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .section-badge {
    font-size: 12px;
    justify-content: center;
    margin: 0 auto 12px;
  }

  .badge-text {
    font-size: 12px;
    margin: 0 12px;
  }

  .badge-line {
    display: none;
  }

  /* CTA Title Mobile */
  .cta-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary-white {
    width: 100%;
  }

  .cta-section {
    border-radius: 12px;
    margin: 20px 20px;
    padding: 20px 20px;
  }

  /* Powering Section Mobile */
  .powering-section .section-content {
    flex-direction: column;
    gap: 30px;
  }

  .powering-section .text-container {
    max-width: 100%;
  }

  .powering-section .text-container h2 {
    font-size: 22px;
  }

  .powering-section .text-container p {
    font-size: 14px;
  }

  .property-cards-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .property-card {
    padding: 20px 12px;
  }

  .property-card.large {
    width: 90px;
    height: 90px;
    padding: 20px 3px;
    border-radius: 15px;
  }

  .property-types-image {
    max-width: 340px;
  }

  .property-types-grid::before {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }

  .property-label {
    font-size: 12px;
  }

  .property-icon {
    width: 32px;
    height: 32px;
  }

  .property-card.large .property-icon {
    width: 50px;
    height: 50px;
  }

  .property-card.large .property-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .step-text-inline {
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }

  .step-header {
    gap: 12px;
    padding: 8px 0;
  }

  .step-card.active {
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    margin-left: 0;
    width: 100%;
    top: 0;
  }

  /* Technology Section Mobile */
  .technology-section {
    padding: 40px 0 !important;
  }

  .technology-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    max-width: 100%;
  }

  .technology-text {
    flex: 1;
    max-width: 100%;
    gap: 20px;
  }

  .technology-text .section-title {
    font-size: 22px;
  }

  .technology-text .section-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .technology-logos {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }

  .tech-logo {
    width: 80px;
    height: 80px;
    padding: 12px;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
  }

  .tech-logo:nth-child(1),
  .tech-logo:nth-child(2),
  .tech-logo:nth-child(3),
  .tech-logo:nth-child(4) {
    left: 0 !important;
    top: 0 !important;
  }

  .tech-logo img {
    max-width: 100%;
    height: 56px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    max-width: 100%;
    gap: 32px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-secondary-white {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 16px;
  }

  /* Hero Images Mobile */
  .hero-images {
    height: 230px;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-image-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-image-gradient {
    width: 180px;
    height: 200px;
    top: 10px;
  }

  .hero-image-1 {
    width: 130px;
    height: 190px;
    top: 10px;
  }

  .hero-image-2 {
    width: 210px;
    height: 150px;
    top: 0;
  }

  .hero-image-3 {
    width: 260px;
    height: 150px;
    top: 80px;
  }

  .hero-image-4 {
    width: 260px;
    height: 160px;
    top: 40px;
  }

  .hero-image-single {
    max-width: 340px;
    height: auto;
  }

  /* Navigation Mobile */
  .nav-content {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  /* Feature Cards */
  .features-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
    margin: auto;
  }

  .feature-card {
    padding: 20px 16px;
    width: 100%;
    height: 165px;
    gap: 12px;
  }

  .feature-card .feature-icon {
    width: 32px;
    height: 32px;
  }

  .feature-text {
    font-size: 13px;
    line-height: 1.3;
  }

  .features-images {
    height: 300px;
    width: 100%;
    margin-top: 20px;
  }

  .features-images::before {
    width: 110%;
    height: 110%;
  }

  .feature-image {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
  }

  /* Housekeeping Section Mobile */
  .housekeeping-content {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
    padding: 20px 15px;
  }

  .housekeeping-text {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }

  .housekeeping-title,
  .maintenance-title,
  .utility-title,
  .mobile-apps-title {
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
  }

  .housekeeping-text p,
  .maintenance-text p {
    font-size: 14px;
  }

  .description-list {
    gap: 8px;
  }

  .description-list li {
    font-size: 13px;
    white-space: normal;
  }

  .bullet-icon {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
  }

  .housekeeping-images {
    height: auto;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }

  .housekeeping-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
  }

  .housekeeping-main-image {
    width: 100% !important;
    max-width: 300px;
    height: auto !important;
  }

  .housekeeping-overlay-image {
    display: none;
  }

  /* Maintenance Section Mobile */
  .maintenance-content {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
    padding: 20px 15px;
  }

  .maintenance-image {
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .maintenance-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
  }

  .maintenance-text {
    max-width: 100%;
    width: 100%;
  }

  /* Utility Section Mobile */
  .utility-mobile-section {
    padding: 0;
  }

  .utility-mobile-container {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 0;
  }

  .utility-section,
  .utility-images,
  .mobile-apps-image,
  .mobile-apps-section {
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 25px 15px;
    width: 100%;
  }

  .utility-section {
    order: 1;
    background: linear-gradient(133.16deg, #9d3a69 8.7374%, #fc5270 63.614%, #fd7e9c 100.03%);
    justify-content: center;
    align-items: center;
  }

  .utility-center-section {
    width: 100%;
  }

  .utility-section h3 {
    font-size: 22px;
  }

  .utility-images {
    order: 2;
    height: auto;
    min-height: 200px;
    background-color: #f6f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .utility-images img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .mobile-apps-section {
    order: 3;
    background: linear-gradient(115.89deg, #9d3a69 8.7374%, #fc5270 63.614%, #fd7e9c 100.03%);
    justify-content: center;
    align-items: center;
  }

  .mobile-center-section {
    width: 100%;
  }

  .mobile-apps-section h3 {
    font-size: 22px;
  }

  .mobile-apps-image {
    order: 4;
    height: auto;
    min-height: 200px;
    background-color: #f6f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-apps-image img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .description-list.white {
    gap: 8px;
  }

  .description-list.white li {
    display: flex;
    align-items: baseline;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }

  /* RV Types Mobile */
  .rv-types {
    gap: 15px;
    padding: 15px;
  }

  .rv-types .section1 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .rv-types .section2 {
    flex-direction: column;
    gap: 15px;
  }

  .rv-types::before {
    width: 100%;
    height: 100%;
  }

  .rv-type-card {
    width: 297px;
    max-width: 297px;
    margin: 0 auto;
    height: auto;
    min-height: 220px;
    padding: 20px 16px;
  }

  .rv-type-card h4 {
    font-size: 16px;
  }

  .rv-type-label {
    font-size: 14px;
    line-height: 1.35;
    margin-top: 6px;
  }

  .rv-type-text {
    font-size: 12px;
  }

  /* Steps Mobile */
  .steps-container {
    gap: 40px;
    flex-wrap: wrap;
  }

  .steps-content {
    padding: 30px 20px;
    width: 100%;
    gap: 1rem;
  }

  .step-card {
    padding: 20px 0;
  }

  .step-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .step-list li {
    font-size: 13px;
    line-height: 1.4;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    left: 0;
    top: 0;
  }

  .step-list-row {
    left: 0;
    padding-left: 20px;
  }

  .step-image-wrapper {
    height: auto;
    min-height: 280px;
    max-height: 280px;
    width: 100%;
    max-width: 100%;
  }

  .step-image {
    position: relative;
    transform: none !important;
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: none; /* Hide all step images by default on mobile */
  }

  /* Show only the active step image on mobile */
  .step-image.active {
    display: block;
    opacity: 1;
  }

  .steps-image {
    flex: 1;
    width: 100%;
    height: 250px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b24169 0%, #fc5271 50%, #ff6b7a 100%);
    border-radius: 20px;
    overflow: hidden;
  }

  .step-image-icons {
    width: 240px;
    height: 180px;
  }

  /* Center the Step 3 icons container within its parent on mobile */
  .step-image.step-image-icons.active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    margin-top: 0; /* override generic mobile image margin */
    display: flex; /* ensure children are centered as designed */
    align-items: center;
    justify-content: center;
    width: 65%;
    height: 65%;
  }

  /* Tweak icon-card sizing for better balance on mobile */
  .step-image-icons .icon-card {
    width: 96px;
    height: 96px;
    padding: 16px;
  }

  /* Who Cards Mobile */
  .slider-controls {
    display: none;
  }

  .who-cards {
    gap: 30px;
    flex-wrap: wrap;
  }

  .who-card {
    padding: 24px 20px;
    max-width: 100%;
    width: 100%;
    filter: none !important;
    background: #ffffff !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .who-card::before {
    background-color: #635bff !important;
    background: #635bff !important;
  }

  .who-card-title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600 !important;
    color: #474747 !important;
  }

  .who-card-list li {
    font-size: 13px;
    white-space: normal;
    word-break: break-word;
    gap: 10px;
  }

  /* Marketplace Grid */
  .marketplace-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .marketplace-card {
    max-width: 100%;
    justify-content: center;
    padding: 16px 12px;
  }

  .marketplace-text {
    font-size: 13px;
  }

  /* Footer Mobile */
  .footer {
    height: auto;
    min-height: 400px;
    padding: 40px 0;
  }

  .footer-background {
    opacity: 0.5;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 11px;
    line-height: 1.6;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-logo {
    padding: 10px 15px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .footer-copyright p {
    text-align: center;
  }

  /* Text Wrapping Fixes */
  .description-list li {
    white-space: normal;
    word-wrap: break-word;
  }

  .feature-text,
  .property-label,
  .rv-type-text {
    white-space: normal;
  }

  /* Qualification Section */
  .qualification-section .text-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
    padding-inline: 0;
  }

  /* Typography for small devices */
  .section-title {
    font-size: 20px;
  }

  .section-title-centered {
    font-size: 22px;
  }

  .section-description {
    font-size: 13px;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-description {
    font-size: 13px;
  }

  /* Hero Section */
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-images {
    height: 200px;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-image-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-image-gradient {
    width: 150px;
    height: 170px;
    top: 8px;
  }

  .hero-image-1 {
    width: 120px;
    height: 175px;
    top: 8px;
  }

  .hero-image-2 {
    width: 190px;
    height: 135px;
    top: 0;
  }

  .hero-image-3 {
    width: 230px;
    height: 130px;
    top: 70px;
  }

  .hero-image-4 {
    width: 230px;
    height: 140px;
    top: 35px;
  }

  .hero-image-single {
    max-width: 320px;
    height: auto;
  }

  .property-types-image {
    max-width: 300px;
  }

  .steps-image {
    height: 220px;
  }

  .step-image {
    max-height: 220px;
  }

  .step-image-icons {
    width: 150px;
    height: 120px;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-secondary-white {
    font-size: 13px;
    padding: 10px 14px;
  }

  /* CTA Section */
  .cta-section {
    margin: 30px 15px;
    padding: 30px 15px;
    border-radius: 10px;
  }

  /* Property Cards */
  .property-card.large {
    padding: 15px 3px;
    border-radius: 12px;
  }

  .property-card.large .property-icon {
    width: 45px;
    height: 45px;
  }

  /* Steps Section */
  .step-header {
    gap: 10px;
    padding: 6px 0;
  }

  .step-text-inline {
    font-size: 13px;
  }

  .step-card.active {
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    margin-left: 0;
    width: 100%;
    top: 0;
  }

  .technology-logo {
    width: 70px;
    height: 70px;
  }

  .footer {
    min-height: 350px;
    padding: 30px 0;
  }

  .footer-content {
    padding: 30px 15px;
    gap: 25px;
  }

  .footer-column h3 {
    font-size: 12px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 14px;
  }

  .footer-logo {
    padding: 8px 12px;
    border-radius: 12px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description,
  .feature-text {
    font-size: 12px;
  }

  .who-card-list {
    gap: 8px;
  }

  .who-list-text {
    font-size: 13px;
  }
}

