/* ── Shared product card (used on home + listing) ── */
.products-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.products-card-link:hover { color: inherit; }

.products-card {
  height: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border-color 0.18s;
  margin-bottom: 0;
}
.products-card-link:hover .products-card {
  border-color: #cccccc;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.products-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
}
.products-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.products-card-link:hover .products-card-img img { transform: scale(1.04); }

.products-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.products-card .property-price { color: #7a5000; }

.listing-head,
.property-grid,
.brand-info-area,
.latest-projects-area,
.mobile-app-area,
.site-footer {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

.products-card .property-price { color: #e8a50f; }

/* Home Filter */

.filter-area {

  padding-top: 34px;

  padding-bottom: 24px;

  border-bottom: 1px solid var(--line);

}



.search-box {

  position: relative;

}



.search-box input {

  padding-right: 48px;

}



.search-icon {

  position: absolute;

  right: 17px;

  bottom: 12px;

  font-size: 22px;

  color: #151515;

}



/* Listing Heading */

.listing-head {

  padding-top: 24px;

  padding-bottom: 28px;

  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 20px;

}



.listing-title {

  font-size: 26px;

  font-weight: 500;

  letter-spacing: -1.1px;

  margin: 0 0 8px;

}



.listing-count {

  color: #666666;

  font-size: 16px;

  margin: 0;

  letter-spacing: -0.3px;

}



.listing-count strong {

  color: #222222;

  font-weight: 500;

  margin: 0 6px;

}



.sort {

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 16px;

  white-space: nowrap;

  margin-bottom: 2px;

}



.sort span {

  color: #9b9b9b;

}



/* Property Cards */

.property-grid {

  padding-bottom: 50px;

}



.property-card {

  margin-bottom: 28px;

}



.image-wrap {

  position: relative;

  width: 100%;

  aspect-ratio: 1.45 / 1;

  overflow: hidden;

  border-radius: 8px;

  background: #eeeeee;

}



.image-wrap img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



/* Heart Button */

.favorite {

  position: absolute;

  right: 16px;

  top: 14px;

  width: 44px;

  height: 44px;

  border-radius: 50%;

  border: 0;

  background: #ffffff;

  color: #111111;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 17px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

  transition: 0.2s ease;

}



.favorite:hover {

  transform: scale(1.04);

}



.card-info {

  padding-top: 12px;

}



.property-row {

  display: flex;

  justify-content: space-between;

  align-items: start;

  gap: 16px;

} 



.property-title {

  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0;

}

.property-title small {

  display: inline-block;

  font-size: 13px;

  font-weight: 500;

  color: #666666;

}



.property-price {

  font-size: 22px;

  line-height: 1.18;

  letter-spacing: -0.7px;

  font-weight: 500;

  margin: 0;

  white-space: nowrap;

}



.property-location {

  margin: 7px 0 10px;

  font-size: 16px;

  color: #7f7f7f;

  letter-spacing: -0.35px;

}



.meta-list {

  display: flex;

  gap: 7px;

  flex-wrap: wrap;

}



.meta-item {

  min-width: 0;

  height: 28px;

  padding: 0 9px;

  border: 1px solid #e5e5e5;

  border-radius: 7px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  color: #333333;

  font-size: 12px;

  line-height: 1;

  background: #ffffff;

  white-space: nowrap;

}



.meta-item i {

  color: #777777;

  font-size: 13px;

}



/* Home Responsive */

@media (max-width: 991px) {

  .filter-area {

    padding-top: 24px;

  }



  .listing-head {

    align-items: flex-start;

    flex-direction: column;

    padding-bottom: 22px;

  }



  .listing-title {

    font-size: 24px;

  }



  .sort {

    font-size: 14px;

  }

}



@media (max-width: 575px) {

  .home-hero-area,
  .listing-head,
  .property-grid,
  .brand-info-area,
  .latest-projects-area,
  .mobile-app-area {
    overflow-x: hidden;
  }

  .listing-title {

    font-size: 22px;

  }



  .listing-count {

    font-size: 14px;

  }



  .property-title,

  .property-price {

    font-size: 18px;

  }



  .property-location {

    font-size: 14px;

  }



  .favorite {

    width: 40px;

    height: 40px;

  }



  .property-row {

    gap: 10px;
    align-items: flex-start;

  }

  .property-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .meta-list {
    gap: 6px;
  }

  .meta-item {
    max-width: 100%;
  }

}



/* Home Hero */

.home-hero-area {

  padding-top: 42px;

  padding-bottom: 34px;

  border-bottom: 1px solid var(--line);

}



.hero-intro {

  height: 100%;

    margin-top: 22px;

}



.hero-intro h1 {

  font-size: 63px;

  line-height: 1.06;

  letter-spacing: -5px;

  font-weight: 600;

  margin: 0;

  color: #111111;

}



.hero-intro p {

  max-width: 440px;

  margin: 34px 0 34px;

  font-size: 15px;

  line-height: 1.65;

  letter-spacing: -0.45px;

  color: #626262;

}



.hero-search {

  width: 100%;

  max-width: 520px;

  height: 78px;

  border: 1px solid #e3e3e3;

  border-radius: 999px;

  display: flex;

  align-items: center;

  background: #ffffff;

  padding: 0 8px 0 34px;

}



.hero-search input {

  flex: 1;

  height: 100%;

  border: 0;

  outline: 0;

  background: transparent;

  font-size: 18px;

  color: #111111;

}



.hero-search input::placeholder {

  color: #1f1f1f;

}



.hero-search button {

  width: 72px;

  height: 72px;

  border: 0;

  border-radius: 50%;

  background: #111111;

  color: #ffffff;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 23px;

  transition: 0.2s ease;

}



.hero-search button:hover {

  transform: scale(0.96);

}



.hero-social-proof {

  display: flex;

  align-items: center;

  margin-top: auto;

  padding-top: 60px;

}



.story-badge {

  width: 104px;

  height: 104px;

  border-radius: 50%;

  background: #111111;

  color: #ffffff;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  position: relative;

  margin-right: -14px;

  z-index: 4;

}



.play-icon {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #ffffff;

  color: #111111;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

}



.story-text {

  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  justify-content: center;

  text-align: center;

  padding-bottom: 10px;

  font-size: 9px;

  line-height: 1.1;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: rgba(255,255,255,.8);

}



.client-avatar {

  width: 92px;

  height: 92px;

  border-radius: 50%;

  border: 3px solid #ffffff;

  background-size: cover;

  background-position: center;

  margin-left: -12px;

}



.avatar-one {

  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=300&q=80");

  z-index: 3;

}



.avatar-two {

  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=300&q=80");

  z-index: 2;

}



.avatar-three {

  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=300&q=80");

  z-index: 1;

}



/* Right Showcase */

.hero-showcase {

  height: 100%;

}



.hero-main-card {

  position: relative;

  min-height: 330px;

  border-radius: 32px;

  overflow: hidden;

  background: #eeeeee;

  margin-bottom: 18px;

}



.hero-main-card img,

.hero-mini-card img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  position: absolute;

  inset: 0;

}



.hero-main-card::after,

.hero-mini-card::after {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,.22);

  z-index: 1;

}



.hero-main-overlay {

  position: relative;

  z-index: 2;

  min-height: 330px;

  padding: 38px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

}



.hero-main-overlay h2 {

  max-width: 620px;

  color: #ffffff;

  font-size: 33px;

  line-height: 1;

  letter-spacing: -1.5px;

  font-weight: 500;

  margin: 0;

}



.hero-main-btn {

    width: fit-content;

  min-height: 70px;

  padding: 0 34px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .88);

  color: #111111;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-size: 15px;

  font-weight: 500;

  transition: 0.2s ease;

}



.hero-main-btn:hover {

  background: #ffffff;

  transform: translateY(-2px);

}



.hero-main-btn i {

  font-size: 22px;

}



.hero-stat-bar {

  height: 86px;

  border-radius: 999px;

  background: #080808;

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 48px;

  margin-bottom: 18px;

}



.stat-number,

.stat-text {

  font-size: clamp(32px, 3vw, 44px);

  line-height: 1;

  letter-spacing: 2px;

  font-weight: 500;

}



.hero-mini-card {

  position: relative;

  height: 225px;

  border-radius: 28px;

  overflow: hidden;

  background: #eeeeee;

  display: block;

  color: #ffffff;

}



.mini-card-content {

  position: relative;

  z-index: 2;

  height: 100%;

  padding: 32px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

}



.mini-card-content h3 {

  font-size: clamp(30px, 2.7vw, 42px);

  line-height: 1.14;

  letter-spacing: -1px;

  font-weight: 500;

  margin: 0;

}



.mini-card-content span {

  width: 78px;

  height: 78px;

  border-radius: 50%;

  background: rgba(255,255,255,.78);

  color: #111111;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 27px;

}



/* Responsive */

@media (max-width: 991px) {

  .home-hero-area {

    padding-top: 30px;

  }



  .hero-intro {

    min-height: auto;

  }



  .hero-intro h1 {

    letter-spacing: -2.5px;

  }



  .hero-intro p {

    margin: 24px 0;

    font-size: 16px;

  }



  .hero-social-proof {

    padding-top: 30px;

    margin-bottom: 10px;

  }



  .hero-main-card,

  .hero-main-overlay {

    min-height: 310px;

  }



  .hero-stat-bar {

    height: auto;

    min-height: 76px;

    padding: 18px 30px;

  }

}



@media (max-width: 575px) {

  .home-hero-area {

    padding-top: 24px;

    padding-bottom: 28px;

  }



  .hero-intro h1 {

    font-size: 42px;

    letter-spacing: 0;

  }

  .hero-intro p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }



  .hero-search {

    height: 62px;

    padding-left: 22px;

  }



  .hero-search input {

    font-size: 14px;

  }



  .hero-search button {

    width: 54px;

    height: 54px;

    font-size: 18px;

  }



  .story-badge {

    width: 82px;

    height: 82px;

  }



  .client-avatar {

    width: 72px;

    height: 72px;

  }



  .play-icon {

    width: 34px;

    height: 34px;

    font-size: 21px;

  }



  .hero-main-card,

  .hero-main-overlay {

    min-height: 300px;

    border-radius: 24px;

  }



  .hero-main-overlay {

    padding: 24px;

  }



  .hero-main-overlay h2 {

    font-size: 27px;

    letter-spacing: 0;

  }



  .hero-main-btn {

    min-height: 58px;

    padding: 0 22px;

    font-size: 14px;

    gap: 18px;

  }



  .hero-stat-bar {

    border-radius: 24px;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

  }



  .stat-number,

  .stat-text {

    font-size: 28px;

    letter-spacing: 0;

  }



  .hero-mini-card {

    height: 210px;

    border-radius: 22px;

  }



  .mini-card-content {

    padding: 24px;

  }



  .mini-card-content h3 {

    font-size: 30px;

  }



  .mini-card-content span {

    width: 64px;

    height: 64px;

    font-size: 22px;

  }

}



/* Brand Info Cards */

.brand-info-area {

  padding-top: 58px;

  padding-bottom: 58px;

  

}



.brand-info-content {

  height: 100%;

  min-height: 520px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding-right: 40px;

}





.brand-info-content h2 {

  margin: 0;

  font-size: clamp(42px, 5.2vw, 76px);

  line-height: 1.07;

  letter-spacing: -3.5px;

  font-weight: 600;

  color: #111111;

}



.brand-info-content p {

  max-width: 500px;

  margin: 32px 0 34px;

  font-size: 18px;

  line-height: 1.68;

  letter-spacing: -0.45px;

  color: #666666;

}



.section-link-btn {

  width: fit-content;

  min-height: 62px;

  padding: 0 26px;

  border-radius: 999px;

  background: #111111;

  color: #ffffff;

  display: inline-flex;

  align-items: center;

  gap: 22px;

  font-size: 15px;

  font-weight: 500;

  transition: 0.2s ease;

}



.section-link-btn:hover {

  color: #ffffff;

  transform: translateY(-2px);

}



.feature-wide-card {

  position: relative;

  min-height: 315px;

  border-radius: 30px;

  overflow: hidden;

  background: #eeeeee;

}



.feature-wide-card img,

.feature-small-card img {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.feature-wide-card::after,

.feature-small-card::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(

    90deg,

    rgba(0,0,0,.56) 0%,

    rgba(0,0,0,.24) 52%,

    rgba(0,0,0,.08) 100%

  );

  z-index: 1;

}



.feature-wide-content {

  position: relative;

  z-index: 2;

  min-height: 315px;

  padding: 34px 38px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

}



.feature-wide-content h3 {

  max-width: 620px;

  color: #ffffff;

  font-size: 33px;

  line-height: 1;

  letter-spacing: -1.5px;

  font-weight: 500;

  margin: 0;

}



.feature-wide-content p {

  max-width: 520px;

  margin: 16px 0 0;

  color: rgba(255,255,255,.84);

  font-size: 15px;

  line-height: 1.6;

}



.feature-card-btn {

  width: fit-content;

  min-height: 56px;

  padding: 0 24px;

  border-radius: 999px;

  background: rgba(255,255,255,.9);

  color: #111111;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  font-size: 15px;

  font-weight: 500;

  transition: 0.2s ease;

}



.feature-card-btn:hover {

  background: #ffffff;

  color: #111111;

  transform: translateY(-2px);

}



.brand-stat-card {

  min-height: 86px;

  border-radius: 999px;

  background: #080808;

  color: #ffffff;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  overflow: hidden;

}



.brand-stat-card div {

  height: 100%;

  padding: 18px 38px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 22px;

}



.brand-stat-card div:first-child {

  border-right: 1px solid rgba(255,255,255,.18);

}



.brand-stat-card strong {

  font-size: clamp(32px, 3vw, 44px);

  line-height: 1;

  letter-spacing: -1px;

  font-weight: 500;

  white-space: nowrap;

}



.brand-stat-card span {

  font-size: clamp(18px, 1.8vw, 30px);

  line-height: 1.15;

  letter-spacing: -0.7px;

  font-weight: 400;

  text-align: right;

}



.feature-small-card {

  position: relative;

  min-height: 255px;

  border-radius: 28px;

  overflow: hidden;

  background: #eeeeee;

  color: #ffffff;

}



.feature-small-card::after {

  background: linear-gradient(

    180deg,

    rgba(0,0,0,.50) 0%,

    rgba(0,0,0,.16) 58%,

    rgba(0,0,0,.36) 100%

  );

}



.feature-small-content {

  position: relative;

  z-index: 2;

  min-height: 255px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

}



.feature-small-content h3 {

  max-width: 620px;

  color: #ffffff;

  font-size: 33px;

  line-height: 1;

  letter-spacing: -1.5px;

  font-weight: 500;

  margin: 0;

}



.feature-small-content p {

  max-width: 340px;

  margin: 12px 0 0;

  color: rgba(255,255,255,.82);

  font-size: 14px;

  line-height: 1.55;

}



.feature-small-content span {

  width: 72px;

  height: 72px;

  border-radius: 50%;

  background: rgba(255,255,255,.82);

  color: #111111;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

    margin-top: 38px;

}



/* Responsive */

@media (max-width: 991px) {

  .brand-info-area {

    padding-top: 42px;

    padding-bottom: 42px;

  }



  .brand-info-content {

    min-height: auto;

    padding-right: 0;

  }



  .brand-info-content h2 {

    letter-spacing: -2px;

  }



  .brand-info-content p {

    margin: 24px 0 28px;

    font-size: 16px;

  }



  .feature-wide-card,

  .feature-wide-content {

    min-height: 300px;

  }



  .brand-stat-card {

    border-radius: 28px;

  }



  .brand-stat-card div {

    padding: 22px 26px;

  }

}



@media (max-width: 575px) {

  .brand-info-area {

    padding-top: 34px;

    padding-bottom: 34px;

  }



  .brand-info-content h2 {

    font-size: 40px;

    letter-spacing: -1.7px;

  }



  .section-link-btn {

    width: 100%;

    justify-content: center;

  }



  .feature-wide-card,

  .feature-wide-content {

    min-height: 330px;

    border-radius: 24px;

  }



  .feature-wide-content {

    padding: 24px;

  }



  .feature-wide-content h3 {

    font-size: 30px;

    letter-spacing: -1px;

  }



  .feature-card-btn {

    width: 100%;

    justify-content: center;

  }



  .brand-stat-card {

    grid-template-columns: 1fr;

    border-radius: 24px;

  }



  .brand-stat-card div {

    min-height: 86px;

    padding: 22px 24px;

  }



  .brand-stat-card div:first-child {

    border-right: 0;

    border-bottom: 1px solid rgba(255,255,255,.18);

  }



  .brand-stat-card span {

    font-size: 22px;

  }



  .feature-small-card,

  .feature-small-content {

    min-height: 235px;

    border-radius: 22px;

  }



  .feature-small-content {

    padding: 24px;

  }



  .feature-small-content h3 {

    font-size: 30px;

  }



  .feature-small-content span {

    width: 62px;

    height: 62px;

    font-size: 22px;

  }

}





/* Latest Projects */

.latest-projects-area {

  padding-top: 58px;

  padding-bottom: 58px;

 

}



.section-head {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: 34px;

}



.section-head h2 {

  margin: 0;

  font-size: clamp(36px, 4.5vw, 64px);

  line-height: 1.08;

  letter-spacing: -2.8px;

  font-weight: 600;

  color: #111111;

}



.section-view-btn {

  min-height: 58px;

  padding: 0 24px;

  border-radius: 999px;

  background: #111111;

  color: #ffffff;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  font-size: 15px;

  font-weight: 500;

  white-space: nowrap;

  transition: 0.2s ease;

}



.section-view-btn:hover {

  color: #ffffff;

  transform: translateY(-2px);

}



.latest-project-card {

  height: 100%;

  padding: 14px;

  border: 1px solid #eeeeee;

  border-radius: 24px;

  background: #ffffff;

  display: block;

  color: inherit;

  text-decoration: none;

  transition: 0.25s ease;

}



.latest-project-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);

}



.latest-project-image {

  position: relative;

  display: block;

  width: 100%;

  aspect-ratio: 1.22 / 1;

  border-radius: 18px;

  overflow: hidden;

  background: #eeeeee;

}



.latest-project-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.35s ease;

}



.latest-project-card:hover .latest-project-image img {

  transform: scale(1.04);

}



.latest-project-content {

  min-height: 185px;

  padding: 22px 14px 8px;

  display: flex;

  flex-direction: column;

  

}



.project-location {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 12px;

  margin-right: 12px;

  font-size: 14px;

  color: #666666;

  letter-spacing: -0.25px;

}



.project-location i {

  font-size: 16px;

  color: #111111;

}

.blog-card-meta {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 11px;

}

.blog-card-meta span {

  min-height: 30px;

  padding: 0 10px;

  border-radius: 999px;

  background: #f6f6f6;

  color: #555555;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  font-size: 12px;

  line-height: 1;

  font-weight: 500;

}

.blog-card-meta i {

  color: #e8a50f;

  font-size: 14px;

}



.latest-project-content h3 {

  margin: 0;

  font-size: 18px;

  line-height: 1.18;

  letter-spacing: -0.9px;

  font-weight: 500;

  color: #111111;

}



.project-detail-btn {

  width: fit-content;

  min-height: 46px;

  padding: 0 18px;

  border-radius: 999px;

  border: 1px solid #e8e8e8;

  background: #ffffff;

  color: #111111;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-size: 14px;

  font-weight: 500;

  transition: 0.2s ease;

  margin-top: 20px;

}



.project-detail-btn:hover {

  background: #e8a50f;

  color: #ffffff;

  border-color: #e8a50f;

}



@media (max-width: 991px) {

  .latest-projects-area {

    padding-top: 42px;

    padding-bottom: 42px;

  }



  .section-head {

    align-items: flex-start;

    flex-direction: column;

    margin-bottom: 28px;

  }



  .section-head h2 {

    letter-spacing: -2px;

  }

}



@media (max-width: 575px) {

  .latest-projects-area {

    padding-top: 34px;

    padding-bottom: 34px;

  }



  .section-head h2 {

    font-size: 36px;

    letter-spacing: -1.5px;

  }



  .section-view-btn {

    width: 100%;

    justify-content: center;

  }



  .latest-project-card {

    border-radius: 22px;

    padding: 12px;

  }



  .latest-project-image {

    border-radius: 16px;

  }



  .latest-project-content {

    min-height: auto;

    gap: 24px;

    padding: 20px 8px 6px;

  }



  .latest-project-content h3 {

    font-size: 22px;

  }



  .project-detail-btn {

    width: 100%;

    justify-content: center;

    margin-top:15px;

  }

}



/* Mobile App Section */

.mobile-app-area {

  padding-top: 58px;

  padding-bottom: 58px;

}



.mobile-app-wrapper {

   position: relative;

  overflow: hidden;

  border-radius: 36px;

  color: #ffffff;

  padding: clamp(30px, 5vw, 72px);

}



.mobile-app-wrapper::before {

  content: "";

  position: absolute;

  width: 520px;

  height: 520px;

  right: -180px;

  top: -160px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  pointer-events: none;

}



.mobile-app-wrapper::after {

  content: "";

  position: absolute;

  width: 360px;

  height: 360px;

  left: -120px;

  bottom: -150px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  pointer-events: none;

}



.mobile-app-content {

  position: relative;

  z-index: 2;

  max-width: 620px;

}



.mobile-app-content .section-kicker {

  color: rgba(255, 255, 255, 0.78);

  border-color: rgba(255, 255, 255, 0.18);

  background: rgba(255, 255, 255, 0.08);

}



.mobile-app-content h2 {

  margin: 0;

  font-size: clamp(42px, 5.2vw, 74px);

  line-height: 1.07;

  letter-spacing: -3.4px;

  font-weight: 600;

  color: #272829;

}



.mobile-app-content p {

  max-width: 560px;

  margin: 30px 0 28px;

  font-size: 17px;

  line-height: 1.72;

  letter-spacing: -0.42px;

  color: #434343;

}



.mobile-app-features {

  display: grid;

  gap: 13px;

  margin-bottom: 34px;

}



.mobile-app-features div {

  display: flex;

  align-items: center;

  gap: 11px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 15px;

}



.mobile-app-features i {

  color: #ffffff;

  font-size: 20px;

}



.app-store-buttons {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

}



.store-btn {

  min-width: 190px;

  height: 62px;

  padding: 0 22px;

  border-radius: 999px;

  background: #e8a50f;

  color: white;

  display: inline-flex;

  align-items: center;

  gap: 14px;

  transition: 0.2s ease;

}



.store-btn:hover {

  color: #111111;

  transform: translateY(-2px);

  background: #f2f2f2;

}



.store-btn i {

  font-size: 26px;

  line-height: 1;

}



.store-btn span {

  display: flex;

  flex-direction: column;

  font-size: 17px;

  line-height: 1.08;

  font-weight: 600;

  letter-spacing: -0.4px;

}



.store-btn small {

  font-size: 9px;

  line-height: 1;

  font-weight: 500;

  letter-spacing: 0.4px;

  text-transform: uppercase;

  color: #ffffff;

  margin-bottom: 4px;

}



.mobile-app-visual {

  position: relative;

  z-index: 2;

  min-height: 520px;

  display: flex;

  align-items: center;

  justify-content: center;

}



.mobile-app-visual img {

  position: relative;

  z-index: 3;

  max-width: min(100%, 750px);

  border-radius: 9px;

  width: 100%;

  height: auto;

  display: block;

  filter: drop-shadow(0px 50px 9px rgba(0, 0, 0, 0.18));

}



.app-glow {

  position: absolute;

  width: 430px;

  height: 430px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  filter: blur(18px);

  z-index: 1;

}



.app-floating-card {

  position: absolute;

  z-index: 4;

  max-width: 210px;

  padding: 17px 18px;

  border-radius: 20px;

  background: rgb(232 165 15);

  color: #ffffff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(12px);

}



.app-floating-card strong {

  display: block;

  margin-bottom: 5px;

  font-size: 15px;

  line-height: 1.15;

  letter-spacing: -0.35px;

  font-weight: 600;

}



.app-floating-card span {

  display: block;

  font-size: 12px;

  line-height: 1.45;

  color: #f7f7f7;

}



.app-card-one {

  left: 4%;

  top: 18%;

}



.app-card-two {

  right: 2%;

  bottom: 20%;

}



/* Responsive */

@media (max-width: 991px) {

  .mobile-app-area {

    padding-top: 42px;

    padding-bottom: 42px;

  }



  .mobile-app-wrapper {

    border-radius: 30px;

  }



  .mobile-app-content h2 {

    letter-spacing: -2px;

  }



  .mobile-app-content p {

    font-size: 16px;

    margin: 24px 0 26px;

  }



  .mobile-app-visual {

    min-height: 460px;

    margin-top: 12px;

  }



  .mobile-app-visual img {

    max-width: 360px;

  }



  .app-card-one {

    left: 8%;

    top: 12%;

  }



  .app-card-two {

    right: 8%;

    bottom: 12%;

  }

}



@media (max-width: 575px) {

  .mobile-app-area {

    padding-top: 34px;

    padding-bottom: 34px;

  }



  .mobile-app-wrapper {

    border-radius: 24px;

    padding: 28px 20px;

  }



  .mobile-app-content h2 {

    font-size: 38px;

    letter-spacing: -1.6px;

  }



  .mobile-app-content p {

    font-size: 15px;

    line-height: 1.65;

  }



  .app-store-buttons {

    flex-direction: column;

  }



  .store-btn {

    width: 100%;

    justify-content: center;

  }



  .mobile-app-visual {

    min-height: auto;

    padding-top: 30px;

  }



  .mobile-app-visual img {

    max-width: 280px;

  }



  .app-glow {

    width: 280px;

    height: 280px;

  }



  .app-floating-card {

    position: relative;

    left: auto;

    right: auto;

    top: auto;

    bottom: auto;

    max-width: 100%;

    margin-top: 14px;

  }



  .app-card-one,

  .app-card-two {

    display: none;

  }

}
