/* ===========================
   Property Detail Page Styles
   Based on Figma Design System
   =========================== */



/* ===========================
   1. Main Layout
   =========================== */
.property-detail-wrapper {
  width: 100%;
  background: #fafafa;
  margin: 0;
  padding: 0;
  position: relative;
}

.property-detail-container {
  width: 100%;
  background: #fafafa;
  position: relative;
  margin: 0;
  padding: 0;
}

.property-detail-content {
  position: relative;
  width: 100%;
  max-width: 1144px;
}

/* ===========================
   2. Banner
   =========================== */
.property-banner {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px 24px;
  position: relative;
  width: 100%;
  height: 72px;
  left: 0;
  top: 0px;
  background: #fffaeb;
  border-bottom: 1px solid #fec84b;
  box-shadow: none;
}

/* ===========================
   3. Breadcrumbs
   =========================== */
/* Breadcrumbs */
#property-breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  position: absolute;
  width: auto;
  height: 20px;
  left: 24px;
  top: 24px;
  white-space: nowrap;
}

/* Breadcrumb button base */
.breadcrumb-button-base {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: auto;
  height: 20px;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.breadcrumb-button-base.hidden {
  display: none;
  width: 20px;
  height: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.breadcrumb-button-base.current {
  width: auto;
  height: 20px;
  flex: none;
  order: 8;
  flex-grow: 0;
}

/* Text */
.breadcrumb-text {
  width: auto;
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
}

.breadcrumb-text-current {
  width: auto;
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-color);
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
}

/* chevron-right */
.chevron-right {
  width: 16px;
  height: 16px;
  flex: none;
  order: 3;
  flex-grow: 0;
}

.chevron-right.hidden {
  display: none;
  width: 16px;
  height: 16px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* ===========================
   4. Top Action Button
   =========================== */
#property-action-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;
  position: absolute;
  width: 152px;
  height: 36px;
  left: 968px;
  top: 16px;
  border: 1px solid #a4a7ae;
  filter: drop-shadow(0px 1px 2px rgba(10, 13, 18, 0.05));
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

/* ===========================
   5. Image Gallery
   =========================== */
/* Main Large Image */
#gallery-main-image {
  position: absolute;
  width: 544px;
  height: 420px;
  left: 24px;
  top: 68px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f3f4f6;
  /* Image quality improvements to prevent pixelation during scale */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#gallery-main-image:hover {
  transform: scale(1.01);
  box-shadow: none;
}

/* Small Images Grid */
#gallery-image-top-left {
  position: absolute;
  width: 268px;
  height: 206px;
  left: 576px;
  top: 68px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Image quality improvements to prevent pixelation during scale */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#gallery-image-top-left:hover {
  transform: scale(1.02);
  box-shadow: none;
}

#gallery-image-top-right {
  position: absolute;
  width: 268px;
  height: 206px;
  left: 852px;
  top: 68px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Image quality improvements to prevent pixelation during scale */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#gallery-image-top-right:hover {
  transform: scale(1.02);
  box-shadow: none;
}

#gallery-image-bottom-left {
  position: absolute;
  width: 268px;
  height: 206px;
  left: 576px;
  top: 282px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Image quality improvements to prevent pixelation during scale */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#gallery-image-bottom-left:hover {
  transform: scale(1.02);
  box-shadow: none;
}

#gallery-image-bottom-right {
  position: absolute;
  width: 268px;
  height: 206px;
  left: 852px;
  top: 282px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Image quality improvements to prevent pixelation during scale */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#gallery-image-bottom-right:hover {
  transform: scale(1.02);
  box-shadow: none;
}

/* Gallery View All Button - Updated */
#gallery-view-all-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  gap: 8px;
  position: absolute;
  width: 269px;
  height: 44px;
  left: 778px;
  /* 1120px (right edge of gallery) - 269px (button width) - 73px (spacing) = 778px */
  top: 466px;
  /* Positioned to stick out 22px from bottom of gallery (584-22) */
  background: #ffffff;
  border: 2px solid var(--table-border-color);
  box-shadow: none;
  border-radius: 30px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

#gallery-view-all-button:hover {
  background: #f8f9fc;
  border-color: var(--primary-color);
}

/* Gallery image styles */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
  opacity: 0;
  filter: blur(5px);
}

.gallery-img.loaded {
  opacity: 1;
  filter: blur(0);
}

.gallery-img.poool-image-fallback {
  object-fit: contain;
  padding: 56px;
  background: #ffffff;
}

.lightbox-content.poool-image-fallback,
.lightbox-thumb img.poool-image-fallback {
  object-fit: contain;
  background: transparent;
}

.lightbox-thumb img.poool-image-fallback {
  padding: 10px;
}

/* Loading state for gallery images */
.gallery-image {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

.gallery-image:focus-visible,
.faq-item-content:focus-visible,
.download-button:focus-visible {
  outline: 2px solid #0000ff;
  outline-offset: 3px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.gallery-image.image-loaded {
  animation: none;
  background: transparent;
}

.gallery-image.poool-image-fallback-container {
  background: #ffffff;
}

/* Gallery button components */
.gallery-btn-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.gallery-btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.gallery-btn-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.gallery-btn-text {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  color: #000000;
  padding: 0px 2px;
}

.gallery-btn-divider {
  width: 1px;
  height: 21px;
  background: #a4a7ae;
  flex: none;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  z-index: 2147483647;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.96);
  display: none;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* When opening, set display to flex and animate */
.lightbox-modal.lightbox-opening {
  display: flex !important;
  animation: fadeIn 0.3s ease forwards;
}

.lightbox-modal.lightbox-closing {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(20px);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    backdrop-filter: blur(20px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

/* Top bar: counter + close */
.lightbox-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  z-index: 10;
  pointer-events: none;
}

.lightbox-top-bar > * {
  pointer-events: auto;
}

.lightbox-counter {
  font-family: 'TT Norms Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
  user-select: none;
}

/* Image area (fills center) */
.lightbox-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 0;
  min-height: 0;
  cursor: default;
}

.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-modal:not(.lightbox-closing) .lightbox-content {
  opacity: 1;
  transform: scale(1);
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.lightbox-close {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ffffff;
  flex-shrink: 0;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  color: white;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

/* Thumbnail strip */
.lightbox-thumbnails {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 80px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-shrink: 0;
  /* Hide scrollbar but allow scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.lightbox-thumbnails::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.25s ease;
  padding: 0;
  background: none;
  outline: none;
}

.lightbox-thumb:hover {
  opacity: 0.75;
  border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Responsive: mobile */
@media (max-width: 768px) {
  .lightbox-image-wrapper {
    padding: 56px 12px 0;
  }

  .lightbox-thumbnails {
    padding: 10px 12px 14px;
    gap: 6px;
  }

  .lightbox-thumb {
    width: 52px;
    height: 36px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-top-bar {
    padding: 12px 12px;
  }

  .lightbox-counter {
    font-size: 13px;
    padding: 5px 12px;
  }
}

/* Image styles */
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Placeholder for empty images */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}

/* ===========================
   6. Property Title and Info Cards
   =========================== */
/* ===========================
   Heading and Icon Section
   =========================== */
#property-heading-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 0;
  gap: 0;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

#property-title {
  width: 100%;
  min-height: 38px;
  height: auto;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--page-title-color);
  margin: 0;
  word-wrap: break-word;
}

/* Property subtitle (location · type) */
#property-subtitle {
  font-family: 'TT Norms Pro', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #667085;
  margin: 6px 0 0 0;
  line-height: 22px;
  letter-spacing: 0;
}

/* ===========================
   Categories Section
   =========================== */
/* Categories */
#property-categories {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 28px;
  gap: 0;
  width: 100%;
  min-height: 32px;
  margin-top: 14px;
  flex: none;
}

.category-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 0px;
  gap: 5px;
  height: 32px;
  border-radius: 16px;
  flex: none;
  min-width: 0;
}

.category-badge:last-child {
  flex-shrink: 1;
}

.category-separator {
  width: 1px;
  height: 16px;
  margin: 0 8px;
  background: #E5E7EB;
  flex: none;
}

/* Match compact v19 card metadata icons */
.badge-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

/* Text */
#property-categories .badge-text {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #667085 !important;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Category badge icons should be black */
#property-categories .badge-icon {
  filter: brightness(0) !important;
}

#property-categories svg.badge-icon {
  filter: none !important;
}

/* ===========================
   Property Overview Section
   =========================== */
#property-overview-section {
  margin-top: 0;
  padding: 40px 28px 0;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
}

#property-heading {
  width: 100%;
  margin: 0 0 20px 0;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
}

/* ===========================
   Property Description
   =========================== */
#property-description {
  width: 100%;
  margin-top: 0;
}

.property-about-description p {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 16px 0;
}

.property-about-description p:last-child {
  margin-bottom: 0;
}

/* ===========================
   Video Section
   =========================== */
#property-video {
  position: relative;
  width: 607px;
  height: 309px;
  left: 24px;
  /* No margin-bottom */
}

.video-container {
  position: relative;
  width: 607px;
  height: 309px;
  border-radius: 13px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  border-radius: 13px;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
  border-radius: 13px;
}

.play-button {
  position: absolute;
  width: 57px;
  height: 57px;
  left: calc(50% - 57px / 2);
  top: calc(50% - 57px / 2);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(43, 50, 249, 0.3);
  backdrop-filter: blur(13px);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.play-icon {
  margin-left: 3px;
  /* Slight offset for visual centering */
}

/* ===========================
   10. Content Container  
   =========================== */
#content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  position: absolute;
  width: 664px;
  height: 468px;
  left: 0px;
  top: 558px;
  /* 70px below gallery end (584px) */
}

/* ===========================
   11. Property Main Card Container
   =========================== */
#property-main-card {
  box-sizing: border-box;
  position: absolute;
  width: 664px;
  height: auto;
  left: 24px;
  top: 524px;
  /* Just below gallery area */
  background: #ffffff;
  border: 1px solid var(--table-border-color, #E9EAEB);
  border-radius: 16px;
  z-index: 1;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Content inside Property Card */
.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  position: absolute;
  width: 664px;
  height: 468px;
  left: 0px;
  top: 0px;
}

/* ===========================
   Info Div Section
   =========================== */
#property-info-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 0;
  width: 100%;
  height: auto;
  background: transparent;
  margin-top: 24px;
  box-sizing: border-box;
}

.info-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 28px;
  gap: 14px;
  width: 100%;
  border-bottom: 1px solid var(--table-border-color, #E9EAEB);
  box-sizing: border-box;
  flex: none;
}

.info-badge:first-child {
  border-top: none;
}

.info-badge-icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.indonesia-flag {
  background: #f0f0f0;
}

.flag-red {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: #a2001d;
}

.flag-white {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: #f0f0f0;
}

.info-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 2px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.info-badge-text h4 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: var(--page-title-color);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.info-badge-text p {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* ===========================
   11. Price Card (Sticky Right Side)
   =========================== */
#property-price-card {
  position: absolute;
  width: 416px;
  height: auto;
  left: 704px;
  top: 524px;
  /* Aligned with main card */
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 16px;
  box-shadow: none;
  z-index: 2;
}

/* Content */
.price-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 24px 24px;
  gap: 24px;
  width: 416px;
  height: auto;
}

/* Heading and text */
.price-card-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
  width: 368px;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* Content */
.price-card-main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 368px;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Text */
.price-card-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 368px;
  height: 128px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Featured icon */
.price-card-icon {
  width: 40px;
  height: 40px;
  flex: none;
  order: 0;
  flex-grow: 0;
  position: relative;
}

/* Icon background */
.icon-background {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 1.51px;
  top: -10.49px;
  background: var(--primary-color);
  border-radius: 8px;
  transform: rotate(15deg);
}

/* Icon glass */
.icon-glass {
  box-sizing: border-box;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0px;
  top: 0px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--accent-color);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bank-note-icon {
  width: 20px;
  height: 20px;
}

/* ===========================
   Premium Glassmorphism Icon (p-icon)
   =========================== */
.p-icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.p-icon .p-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.p-icon .p-bg-1 {
  background: linear-gradient(135deg, #03FF88 0%, #00CC6F 100%);
  opacity: 0.28;
  box-shadow: 0 2px 8px rgba(3, 255, 136, 0.12);
  transform: rotate(-8deg);
  top: -3px;
  left: 2px;
}

.p-icon .p-bg-2 {
  background: linear-gradient(135deg, #0000FF 0%, #3344FF 100%);
  opacity: 0.32;
  box-shadow: 0 2px 8px rgba(0, 0, 255, 0.1);
  transform: rotate(15deg);
  top: -6px;
  left: 1px;
}

.p-icon .p-front {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,0.95) 0%, rgba(244,246,255,0.78) 40%, rgba(236,240,255,0.62) 100%);
  border: none;
  box-shadow:
    0 0.5px 0.5px rgba(0,0,0,0.04),
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,255,0.04),
    0 8px 24px rgba(0,0,255,0.025),
    inset 0 0.5px 0 rgba(255,255,255,0.95),
    inset 0 0 0 0.5px rgba(255,255,255,0.7),
    inset 0 -1px 3px rgba(180,195,255,0.08);
  backdrop-filter: blur(20px) saturate(1.85);
  -webkit-backdrop-filter: blur(20px) saturate(1.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-icon .p-front svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0.5px 0 rgba(0, 0, 200, 0.08));
}

/* Supporting text */
.price-card-supporting-text {
  width: 368px;
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--text-secondary);
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Price Text */
.price-card-price-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0px;
  gap: 8px;
  width: 368px;
  height: 44px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.price-currency {
  width: 43px;
  height: 30px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--primary-color);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.price-amount {
  width: 177px;
  height: 44px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Loading bar */
.price-card-loading-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 368px;
  height: 40px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Loading */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 1px;
  gap: 10px;
  width: 368px;
  height: 8px;
  background: #d5d7da;
  border-radius: 30px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.loading-fill {
  /* width is set dynamically via inline style */
  height: 8px;
  background: #03FF88;
  border-radius: 30px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Loading Text */
.loading-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 35px;
  width: 368px;
  height: 20px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.funded-text {
  margin: 0;
  width: auto;
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: var(--text-secondary);
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
}

.available-text-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 4px;
  margin: 0 0;
  width: 170px;
  height: 20px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.available-text {
  width: 164px;
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: var(--text-secondary);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.help-icon {
  width: 16px;
  height: 16px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Investors section */
.price-card-investors {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 35px;
  width: 368px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.investors-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 4px;
  margin: 0;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.users-icon {
  width: 20px;
  height: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.investors-number {
  width: 32px;
  height: 24px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: var(--primary-color);
  flex: none;
  order: 1;
  flex-grow: 0;
}

.investors-label {
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  white-space: nowrap;
  flex: none;
  order: 2;
  flex-grow: 0;
}

/* Badge */
.price-per-sqm-badge {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 8px;
  gap: 4px;
  margin: 0;
  width: auto;
  height: 24px;
  background: #03FF88;
  border: 1px solid #03FF88;
  border-radius: 16px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.dollar-icon {
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0000FF;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Badge text inside price-per-sqm - Blue text on green bg */
.price-per-sqm-badge .badge-text {
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #0000FF !important;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.price-per-sqm-badge .badge-suffix {
  width: auto;
  height: 18px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #0000FF !important;
  flex: none;
  order: 2;
  flex-grow: 0;
}

/* Returns section */
.price-card-returns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  gap: 16px;
  width: 368px;
  height: auto;
  background: #f8f9fc;
  border-radius: 8px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.returns-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  width: 344px;
  height: auto;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.returns-label {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #414651;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.returns-value {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: var(--brand-dark-blue);
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Investment input section */
.price-card-investment {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 368px;
  height: auto;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Input */
.investment-input {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  width: 252px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #d5d7da;
  box-shadow: 0px 0px 0px rgba(10, 13, 18, 0.05);
  border-radius: 8px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.investment-input:focus-within {
  border-color: var(--input-border-focus, #0000FF);
  box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.08);
}

/* Dropdown */
.input-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;
  width: 58px;
  height: 42px;
  background: #fafafa;
  border-radius: 7px 0 0 7px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.currency-label {
  width: 34px;
  height: 24px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--page-title-color);
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Text input */
.input-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px 8px 10px;
  gap: 8px;
  width: 194px;
  height: 42px;
  border-radius: 0 7px 7px 0;
  flex: none;
  order: 1;
  flex-grow: 1;
}

.amount-input {
  width: 172px;
  height: 28px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--page-title-color);
  border: none;
  outline: none;
  flex: none;
  order: 0;
  flex-grow: 1;
}

/* Add to cart button */
.add-to-cart-btn {
  min-width: 108px;
  height: 44px;
  padding: 10px 18px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.property-cart-error {
  width: 100%;
  margin-top: 10px;
  color: #b42318;
  font-family: 'TT Norms Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.add-to-cart-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-text {
  white-space: nowrap;
}

/* Quick amount buttons */
.price-card-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 368px;
  height: auto;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.amount-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 368px;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.amount-badge {
  background: #ffffff;
  color: var(--body-color, #414651);
  border: 1px solid var(--input-border-color, #D5D7DA);
  border-radius: 8px;
  height: 32px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  flex-grow: 1;
}

.amount-badge:hover {
  background: #ffffff;
  color: var(--body-color, #414651);
}

.amount-badge:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.disclaimer-text {
  width: 368px;
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #414651;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* ===========================
   How it Works Section
   =========================== */
#how-it-works-section {
  margin-top: 0;
  padding: 32px 28px 0;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
}

#how-it-works-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 7px;
  width: auto;
  height: auto;
  margin-bottom: 24px;
}

.help-icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

#how-it-works-heading h2 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

/* Info Cards */
#property-info-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  gap: 12px;
  width: 100%;
  height: auto;
}

.info-card {
  box-sizing: border-box;
  position: relative;
  flex: 1;
  min-width: 160px;
  min-height: 180px;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
  overflow: hidden;
}

.card-image {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 12px;
  top: 16px;
  border-radius: 10px;
  overflow: hidden;
}

.card-image svg {
  display: block;
  width: 40px;
  height: 40px;
}

.card-step {
  position: absolute;
  width: auto;
  height: 28px;
  left: 16px;
  top: 16px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 28px;
  color: var(--primary-color);
  white-space: nowrap;
}

.card-title {
  position: absolute;
  width: 120px !important;
  left: 16px;
  top: 48px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 16px !important;
  color: #0a0d12;
}

.card-action {
  position: absolute;
  width: calc(100% - 32px);
  height: 40px;
  left: 16px;
  top: 124px;
  cursor: pointer;
  overflow: hidden;
}

.action-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0px;
  top: 12px;
}

.action-text {
  position: absolute;
  width: calc(100% - 38px);
  left: 32px;
  top: 10px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  color: var(--primary-color);
}

.arrow-icon {
  position: absolute;
  width: 6px;
  height: 12px;
  right: 0px;
  top: 14px;
}

/* Make links in cards 2 and 3 unclickable but keep same styling */
.info-card:nth-child(2) .card-action,
.info-card:nth-child(3) .card-action {
  pointer-events: none;
  cursor: default;
}

/* Hide arrows on cards 2 and 3 since they have no links */
.info-card:nth-child(2) .arrow-icon,
.info-card:nth-child(3) .arrow-icon {
  display: none;
}

/* ===========================
   Documents Modal
   =========================== */
.documents-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  justify-content: center;
  align-items: flex-start;
  z-index: 2147483647;
  display: none;
  overflow: hidden;
  padding-top: 35vh;
  /* Position modal a bit higher than middle */
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease;
}

.documents-modal-overlay.active {
  display: flex !important;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(11.5px);
  -webkit-backdrop-filter: blur(11.5px);
}

/* Prevent body scroll when modal is active */
body.documents-modal-active {
  overflow: hidden;
}

.documents-modal {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  width: 480px;
  max-width: 90vw;
  max-height: 80vh;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

.documents-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid var(--table-border-color);
}

.documents-modal-title {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0a0d12;
  margin: 0;
}

.documents-modal-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s ease;
  border-radius: 8px;
}

.documents-modal-close:hover {
  color: #374151;
  background: #f9fafb;
}

.documents-modal-content {
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-link {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 12px;
}

.document-link:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}

.document-link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.document-link-text {
  flex: 1;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #374151;
  text-decoration: underline;
}

.document-link-arrow {
  width: 6px;
  height: 12px;
  flex-shrink: 0;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===========================
   YouTube Video Modal
   =========================== */
.youtube-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  justify-content: center;
  align-items: center;
  z-index: 2147483647;
  display: none;
  overflow: hidden;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease;
}

.youtube-modal-overlay.active {
  display: flex !important;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.youtube-modal-active {
  overflow: hidden;
}

.youtube-modal {
  box-sizing: border-box;
  position: relative;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  width: 90vw;
  max-width: 1200px;
  height: 80vh;
  max-height: 675px;
  animation: modalSlideIn 0.3s ease-out;
}

.youtube-modal-header {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.youtube-modal-close {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  padding: 12px;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.2s ease;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.youtube-modal-content {
  width: 100%;
  height: 100%;
}

.youtube-video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.youtube-video-wrapper iframe {
  border-radius: 12px;
}

/* ===========================
   FAQ Accordion Animation
   =========================== */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item-content {
  appearance: none;
  border: 0;
  width: 100%;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item-content:hover {
  background: #f9fafb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 16px 24px 24px 24px;
}

.faq-answer p {
  margin: 0;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}

.faq-plus-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-plus-icon {
  transform: rotate(45deg);
}

/* Make video container clickable */
.video-container {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-container:hover {
  transform: scale(1.02);
}

/* ===========================
   Editable Calculator Values
   =========================== */
.calc-slider-value[contenteditable="true"] {
  cursor: text;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 6px;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
  outline: none;
  min-width: 60px;
  display: inline-block;
}

.calc-slider-value[contenteditable="true"]:hover {
  background: rgba(255, 255, 255, 0.2);
}

.calc-slider-value[contenteditable="true"]:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(0, 0, 255, 0.3);
}

.calc-slider-value[contenteditable="true"]:empty:before {
  content: attr(data-placeholder);
  color: rgba(255, 255, 255, 0.6);
}

.info-card-placeholder,
.video-placeholder,
.price-card-placeholder {
  padding: 20px;
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   Investment Type Section
   =========================== */
#investment-type-section {
  position: relative;
  margin-top: 0;
  padding: 40px 28px 0;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.section-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Shared icon style for all section header icons */
.financial-icon,
.location-icon,
.developer-icon,
.documents-icon,
.calendar-icon,
.key-icon,
.faq-icon,
.investment-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.section-header > img,
.financial-header > img,
.location-header > img,
.developer-header > img,
.documents-header > img,
.strategy-header > img,
.funding-header > img,
.operator-profile-header > img,
.leasing-header > img,
.mobile-section-header > img,
.mobile-financial-header > img,
.mobile-location-header > img,
.mobile-developer-header > img,
.mobile-documents-header > img,
.mobile-leasing-header > img,
.mobile-investment-header > img,
.mobile-funding-header > img {
  filter: brightness(0) invert(8%) sepia(21%) saturate(984%) hue-rotate(174deg) brightness(89%) contrast(90%);
}

.section-header h2 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
  margin: 0;
}

/* Strategy Card */
.strategy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  width: 100%;
  height: auto;
  background: #03FF88;
  border-radius: 16px;
  box-sizing: border-box;
}

.strategy-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
  height: auto;
}

.strategy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
  height: auto;
}

.strategy-text h3 {
  width: 100%;
  height: auto;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
  margin: 0;
}

.strategy-text p {
  width: 100%;
  height: auto;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  margin: 0;
}

.strategy-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #fafafa;
  border: 1px solid var(--table-border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 32px;
  height: 32px;
  background: #0000FF;
  border-radius: 99px;
}

.icon-wrapper img {
  filter: brightness(0) invert(1) sepia(1) saturate(50) hue-rotate(100deg);
}

/* Strategy Content Box */
.strategy-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  width: 100%;
  height: auto;
  background: #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
}

.strategy-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
}

.strategy-item h4 {
  width: 100%;
  height: auto;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--page-title-color);
  margin: 0;
}

.strategy-item p {
  width: 100%;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  margin: 0;
}

.strategy-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

#investment-type-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
}

#investment-type-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.investment-card {
  box-sizing: border-box;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
  min-height: 100px;
}

/* ===========================
   13. Stages Section
   =========================== */
#stages-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  gap: 12px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-top: 32px;
  margin-bottom: 32px;
}

#stages-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
}

#stages-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.stage-card {
  box-sizing: border-box;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
  min-height: 120px;
}

/* ===========================
   14. Funding Section
   =========================== */
#funding-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 0;
  gap: 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 369px;
  margin-top: 0;
  margin-bottom: 0;
  border-top: none;
}

#funding-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
}

#funding-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.funding-card {
  box-sizing: border-box;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
  min-height: 100px;
}

/* Old leasing section removed - see new implementation at line 2639 */

/* Calculator Section */
#calculator-section {
  position: relative;
  width: 100%;
  padding: 40px 28px 0;
  box-sizing: border-box;
  margin-top: 0;
  border-top: none;
}

/* Calculator Header */
.calculator-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  position: absolute;
  width: 292px;
  height: 32px;
  left: 0px;
  top: 0px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.calculator-header img {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.calculator-header h2 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
}

/* Calculator div */
.calculator-div {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 780px;
  /* Height accommodates chart, sliders, and disclaimer */
  margin-top: 12px;

  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 16px;
  overflow: hidden;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.calc-gradient-1 {
  display: none;
}

.calc-gradient-2 {
  display: none;
}

.calc-main-title {
  position: absolute;
  width: auto;
  height: 32px;
  left: 50%;
  transform: translateX(-50%);
  top: 27px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  white-space: nowrap;

  color: #717680;
}

.calc-main-value {
  position: absolute;
  width: auto;
  height: 32px;
  left: 50%;
  transform: translateX(-50%);
  top: 63px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  white-space: nowrap;

  color: #1a1a24;
}

/* Statistics Card */
.calc-statistics-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 16px 24px;
  gap: 24px;

  position: absolute;
  width: 584px;
  height: auto;
  left: calc(50% - 584px / 2);
  top: 108px;

  border: 1px solid #eaecf0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.02);
}

/* Statistics item */
.calc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  flex: none;
  order: 0;
  flex-grow: 0;
  min-width: fit-content;
}

/* Statistics legend row */
.calc-stat-legend {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  height: 20px;
}

/* Statistics color dot */
.calc-stat-color {
  width: 8px;
  height: 8px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.calc-stat-color.investment {
  background: #000080;
}

.calc-stat-color.appreciation {
  background: #3A4BFF;
}

.calc-stat-color.rental {
  background: #98FB96;
}

/* Statistics label */
.calc-stat-label {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  flex: none;
  order: 1;
  flex-grow: 0;
  white-space: nowrap;
}

/* Statistics value */
.calc-stat-value {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--page-title-color);
  white-space: nowrap;
}

/* Line and bar chart */
.calc-chart-container {
  position: absolute;
  width: 584px;
  height: 240px;
  left: 16px;
  top: 191px;
  /* Moved down to accommodate statistics card */
}

/* Chart content wrapper */
.calc-chart-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0px;
  isolation: isolate;

  width: 584px;
  height: 240px;
}

/* Legend */
.calc-legend {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;

  width: 396px;
  height: 20px;

  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 0;
}

.calc-legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  height: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.calc-legend-color {
  width: 8px;
  height: 8px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.calc-legend-color.investment {
  background: #000080;
}

.calc-legend-color.appreciation {
  background: #3A4BFF;
}

.calc-legend-color.rental {
  background: #98FB96;
}

.calc-legend-text {
  height: 20px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;

  color: var(--text-secondary);

  flex: none;
  order: 1;
  flex-grow: 0;
}

.calc-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;

  width: 584px;
  height: 202px;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 1;
  z-index: 0;
  pointer-events: none;
}

.calc-y-axis-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  margin: 0 auto;
  width: 584px;
  height: 22px;

  flex: none;
  align-self: stretch;
  flex-grow: 0;
  position: relative;
}

.calc-y-axis-line:nth-child(2),
.calc-y-axis-line:nth-child(3),
.calc-y-axis-line:nth-child(4),
.calc-y-axis-line:nth-child(5),
.calc-y-axis-line:nth-child(6) {
  height: 17px;
}

.calc-y-axis-number {
  width: 40px;
  height: 18px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: right;

  color: var(--text-secondary);

  flex: none;
  order: 0;
  flex-grow: 0;
}

.calc-y-axis-divider {
  width: 536px;
  height: 1px;

  flex: none;
  order: 1;
  flex-grow: 1;

  background: #eaecf0;
  border: none;
  position: relative;
}

/* X-axis */
.calc-x-axis {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 28px 0px 52px;
  gap: 24px;

  width: 584px;
  height: 18px;

  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
  z-index: 2;
}

.calc-x-axis span,
.calc-x-axis-label {
  margin: 0 auto;
  height: 18px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;

  color: var(--text-secondary);

  flex: none;
  flex-grow: 0;
}

/* Chart data area */
.calc-chart-data {
  position: absolute;
  left: 48px;
  right: 0px;
  top: 20px;
  bottom: 52px;

  flex: none;
  order: 4;
  flex-grow: 0;
  z-index: 4;
}

.calc-chart-bars {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 0px 20px;
  gap: 48px;

  position: absolute;
  left: 52px;
  right: 0px;
  top: 0%;
  bottom: 18px;
  z-index: 10;
}

.calc-bar {
  width: 60.8px;
  height: 168px;

  flex: none;
  align-self: stretch;
  flex-grow: 1;
  position: relative;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.calc-bar:hover {
  transform: translateY(-2px);
}

.calc-bar:hover .calc-chart-bar {
  filter: brightness(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 255, 0.15);
}

.calc-bar:hover .calc-bar-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-6px);
}

.calc-bar:hover .calc-bar-value-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.calc-chart-bar {
  position: absolute;
  left: 0px;
  right: -0.2px;
  bottom: 0px;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  transition: filter 0.3s ease, height 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.calc-series {
  position: absolute;
  left: 0%;
  right: 0%;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-series.series-1 {
  top: 0%;
  bottom: 0%;
  background: #000080;
  border-radius: 0 0 0 0;
}

.calc-series.series-2 {
  top: 29.17%;
  bottom: 0%;
  background: #3A4BFF;
}

.calc-series.series-3 {
  top: 62.5%;
  bottom: 0%;
  background: #98FB96;
  border-radius: 6px 6px 0 0;
}

/* Bar value label (above bar) */
.calc-bar-value-label {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  color: var(--page-title-color);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

/* Bar hover tooltip */
.calc-bar-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  background: var(--page-title-color);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 18px;
  z-index: 100;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.calc-bar-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--page-title-color);
}

.calc-bar-tooltip-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.calc-bar-tooltip-row:last-child {
  margin-bottom: 0;
}

.calc-bar-tooltip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.calc-bar-tooltip-dot.investment { background: #000080; }
.calc-bar-tooltip-dot.appreciation { background: #3A4BFF; }
.calc-bar-tooltip-dot.rental { background: #98FB96; }

.calc-bar-tooltip-label {
  color: #A4A7AE;
  font-weight: 400;
  margin-right: 8px;
}

.calc-bar-tooltip-value {
  color: #ffffff;
  font-weight: 600;
  margin-left: auto;
}

/* Slider sections */
.calc-slider-section {
  position: absolute;
  width: 584px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-slider-section.slider-1 {
  top: 460px;
}

.calc-slider-section.slider-2 {
  top: 570px;
}

.calc-slider-section.slider-3 {
  top: 655px;
}

/* Slider labels row (label on left, value on right) */
.calc-slider-labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
}

.calc-slider-labels > span:first-child,
.calc-slider-label-wrapper {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.calc-slider-labels .calc-slider-value {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: var(--page-title-color);
  white-space: nowrap;
}

/* Native range slider — V3 Premium Style */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: transparent !important;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 30px;
  background: linear-gradient(to right, #0000FF var(--slider-progress, 0%), #F4F5F7 var(--slider-progress, 0%));
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #0000FF url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='6' cy='2' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='2' cy='6' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='6' cy='6' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='2' cy='10' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='6' cy='10' r='1.2' fill='%2303FF88'/%3E%3C/svg%3E") no-repeat center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calc-slider::-moz-range-track {
  height: 4px;
  background: #F4F5F7;
  border-radius: 30px;
  border: none;
}

.calc-slider::-moz-range-progress {
  height: 4px;
  background: #0000FF;
  border-radius: 30px;
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #0000FF url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='6' cy='2' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='2' cy='6' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='6' cy='6' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='2' cy='10' r='1.2' fill='%2303FF88'/%3E%3Ccircle cx='6' cy='10' r='1.2' fill='%2303FF88'/%3E%3C/svg%3E") no-repeat center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Slider min/max labels */
.calc-slider-limits {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 4px;
}

.calc-slider-limits span {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  color: #A4A7AE;
}

.calc-slider-total-value {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #A4A7AE;
}

/* Text above sliders */
.calc-slider-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px;
  gap: 323px;

  position: absolute;
  width: 584px;
  height: 15px;
  left: 16px;
}

.calc-slider-text.text-1 {
  top: 461px;
}

.calc-slider-text.text-2 {
  top: 541px;
}

.calc-slider-text.text-3 {
  top: 621px;
}

/* Slider label wrapper for help icons */
.calc-slider-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Help tooltip container */
.calc-help-tooltip-container {
  position: relative;
  display: inline-block;
}

/* Help tooltip icon */
.calc-help-tooltip-icon {
  cursor: help;
  transition: all 0.2s ease;
}

.calc-help-tooltip-icon:hover {
  transform: scale(1.1);
}

/* Help tooltip */
.calc-help-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--page-title-color);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 18px;
  width: 320px;
  max-width: 320px;
  z-index: 1000;

  /* Initially hidden */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* Smooth animation */
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

/* Tooltip arrow */
.calc-help-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--page-title-color);
}

/* Show tooltip on hover */
.calc-help-tooltip-container:hover .calc-help-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

/* Tooltip text */
.calc-help-tooltip-text {
  display: block;
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

/* Management fees tooltip styles */
.financial-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.management-fees-tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.management-fees-tooltip-icon {
  cursor: pointer;
  transition: all 0.2s ease;
}

.management-fees-tooltip-icon:hover {
  transform: scale(1.1);
}

.management-fees-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--page-title-color);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 18px;
  width: 320px;
  max-width: 320px;
  z-index: 1000;

  /* Initially hidden */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* Smooth animation */
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

/* Management fees tooltip arrow */
.management-fees-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--page-title-color);
}

/* Show management fees tooltip on click */
.management-fees-tooltip-container.active .management-fees-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

.management-fees-tooltip-text {
  display: block;
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

/* Slider header */
.calc-slider-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px;
  gap: 323px;

  position: absolute;
  width: 584px;
  height: 15px;
  left: 0px;
  top: -19px;
}

.calc-slider-label {
  height: 15px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  display: flex;
  align-items: center;
  letter-spacing: -0.04em;
  white-space: nowrap;

  color: #949494;

  flex: none;
  order: 0;
  flex-grow: 0;
}

.calc-slider-label.label-1 {
  width: 133px;
}

.calc-slider-label.label-2 {
  width: 172px;
}

.calc-slider-label.label-3 {
  width: 162px;
}

.calc-slider-value {
  height: 14px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: right;
  letter-spacing: -0.04em;
  white-space: nowrap;

  color: #141417;

  flex: none;
  order: 1;
  flex-grow: 0;
}

.calc-slider-value.value-1 {
  width: auto;
  min-width: 76px;
}

.calc-slider-value.value-2 {
  width: 25px;
}

.calc-slider-value.value-3 {
  width: 19px;
}

/* Slider track container */
.calc-slider-track-container {
  position: absolute;
  width: 584px;
  height: 16px;
  left: 0px;
  top: 7px;
}

.calc-slider-input {
  position: absolute;
  width: 584px;
  height: 16px;
  left: 0px;
  top: 0px;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  z-index: 10;
}

.calc-slider-track {
  position: absolute;
  width: 584px;
  height: 4px;
  left: 0px;
  top: 7px;

  background: #e2e2e2;
  border-radius: 30px;
}

.calc-slider-fill {
  position: absolute;
  height: 4px;
  left: 0px;
  top: calc(50% - 4px / 2);

  background: #2b32f9;
  border-radius: 30px;
}

.calc-slider-thumb {
  box-sizing: border-box;

  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 16px / 2);

  background: #03FF88;
  border: 5px solid #2b32f9;
  box-shadow: none;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.1s ease;
}

/* Slider range labels */
.calc-slider-range {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 323px;

  position: absolute;
  width: 584px;
  height: 11px;
  left: 0px;
  top: 25px;
}

.calc-slider-range-label {
  height: 11px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 110%;
  display: flex;
  align-items: center;

  color: #949494;

  flex: none;
  flex-grow: 0;
}

.calc-slider-range-label.min-1 {
  width: 26px;
}

.calc-slider-range-label.max-1 {
  width: 48px;
}

.calc-slider-range-label.min-2 {
  width: 12px;
}

.calc-slider-range-label.max-2 {
  width: 21px;
}

.calc-slider-range-label.min-3 {
  width: 12px;
}

.calc-slider-range-label.max-3 {
  width: 14px;
}

/* Help button */
.calc-help-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;

  position: absolute;
  width: 584px;
  height: 32px;
  left: 16px;
  top: 745px;

  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}

.calc-help-text {
  width: auto;
  height: 18px;

  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;

  color: #717680;

  flex: none;
  order: 0;
  flex-grow: 0;
}

.calc-help-icon {
  width: 12px;
  height: 12px;

  flex: none;
  order: 1;
  flex-grow: 0;
}

/* ===========================
   17. Financial Section (Inside Property Card)
   =========================== */
.financial-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 0;
  gap: 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  border-top: none;
}

/* Financial header */
.financial-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  width: auto;
  height: auto;
  margin-bottom: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.financial-icon {
  width: 24px;
  height: 24px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.financial-title {
  width: auto;
  height: auto;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  white-space: nowrap;
  color: var(--page-title-color);
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Financial content */
.financial-content {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;

  width: 100%;

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Horizontal tabs */
.financial-tabs {
  box-sizing: border-box;

  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px;
  gap: 4px;

  width: 100%;
  height: 56px;

  /* Base/White */
  background: #ffffff;
  /* Gray/200 */
  border: 1px solid var(--table-border-color);
  /* Shadows/shadow-xs */
  box-shadow: none;
  border-radius: 30px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.financial-tab {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;

  height: 44px;

  border-radius: 30px;

  /* Inside auto layout */
  flex: 1;
  align-self: center;

  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.financial-tab:hover:not(.active) {
  background: #fafafa;
  color: var(--page-title-color);
}

.financial-tab.active {
  background: var(--mp-green, #03FF88) !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 24px;
}

.financial-tab .tab-text {
  /* Text sm/Semibold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 143% */
  white-space: nowrap;

  /* Base/Black */
  color: #000000;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.financial-tab.active .tab-text {
  /* Text color for active (on green) */
  color: #0000FF !important;
  font-weight: 700;
}

/* Financial info */
.financial-info {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;

  width: 100%;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.financial-row {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 16px;

  width: 100%;
  min-height: 24px;

  /* Inside auto layout */
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.financial-label {
  /* Text md/Regular */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  display: flex;
  align-items: center;
  white-space: nowrap;

  color: #949494;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.financial-value-group {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  gap: 4px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.financial-value {
  /* Text md/Bold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  text-align: right;
  white-space: nowrap;

  /* Black */
  color: #141417;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.financial-value.total {
  /* Brand/600 */
  color: var(--primary-color);
}

.help-icon {
  width: 16px;
  height: 16px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Financial divider */
.financial-divider {
  width: 100%;
  height: 1px;

  /* Gray/200 */
  background: var(--table-border-color);

  /* Inside auto layout */
  flex: none;
  flex-grow: 0;
}

/* Financial info bar */
.financial-info-bar {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;

  width: 100%;
  box-sizing: border-box;

  /* Gray/100 */
  background: #f5f5f5;
  border-radius: 8px;

  /* Inside auto layout */
  flex: none;
  order: 4;
  align-self: stretch;
  flex-grow: 0;
}

.info-bar-text {
  width: auto;
  /* Changed from fixed width to auto */
  height: 18px;

  /* Text xs/Medium */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height, or 150% */
  white-space: nowrap;

  /* Gray/500 */
  color: #717680;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.info-bar-icon {
  width: 12px;
  height: 12px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* ===========================
   18. Location Section (Inside Property Card)
   =========================== */
.location-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 0;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  border-top: none;
}

/* Location header with icon */
.location-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.location-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.location-title {
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
  margin: 0;
}

/* Location subtitle */
.location-subtitle {
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-color);
  margin: 0;
}

/* Map */
.location-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  background: #f3f4f6;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Location description */
.location-description {
  width: 100%;
  font-family: 'TT Norms Pro', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ===========================
   18a. Location Section — Mobile
   Consolidated from mobile-location.css; use media queries, not separate files.
   =========================== */
@media (max-width: 768px) {
  .location-section {
    gap: 12px;
    padding: 0 16px;
    margin-top: 40px;
  }

  .location-header {
    height: 30px;
  }

  .location-header img {
    width: 20px;
    height: 20px;
  }

  .location-title {
    font-size: 20px;
    line-height: 30px;
  }

  .location-map {
    height: 200px;
  }
}

/* ===========================
   19. Property Developer Section
   =========================== */
.developer-section {
  margin-top: 0;
  padding: 40px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-top: none;
}

/* Developer Header */
.developer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.developer-icon {
  width: 24px;
  height: 24px;
}

.developer-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
  margin: 0;
}

/* Developer Card */
.developer-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 16px;
  width: 100%;
  min-height: 310px;
  background: #fcfcfd;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
}

/* Logo Wrapper */
.developer-logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 74px;
  height: 74px;
  /* No background - transparent */
}

.developer-logo {
  /* Remove ALL styling except size - no wrappers or backgrounds */
  width: 74px;
  height: 74px;
  /* No display flex, no padding, no background - just size */
}

.developer-logo img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  /* Use contain to show full PNG without cropping */
}

/* Text Content */
.developer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 482px;
}

.developer-name {
  width: 100%;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 0.02em;
}

.developer-description {
  width: 482px;
  min-height: 66px;

  /* Text xs/Regular */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  /* or 150% */
  text-align: center;

  /* Base/Black */
  color: #000000;

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

/* Social Links */
.developer-social {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  height: 42px;
}

/* Website Section */
.developer-website {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 4px;
}

.social-label {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #414651;
}

.website-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
  text-decoration: none;
  color: var(--primary-color);
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.website-link:hover {
  text-decoration: underline;
}

.globe-icon {
  width: 16px;
  height: 16px;
}

/* Social Media Section */
.developer-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 4px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;
}

.social-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

#developer-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
}

#developer-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  box-sizing: border-box;
  padding: 24px;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
}

/* Duplicate .developer-logo rule removed - see definition above */

/* Documents Section */
.documents-section {
  margin-top: 0;
  padding: 40px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-top: none;
}

/* Documents Header */
.documents-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  margin-bottom: 24px;
}

.documents-icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.documents-heading {
  width: auto;
  height: auto;

  /* Display xs/Bold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  /* identical to box height, or 133% */

  /* Gray/900 */
  color: var(--page-title-color);
  margin: 0;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Documents Tabs Container */
.documents-tabs {
  box-sizing: border-box;

  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px;
  gap: 4px;

  width: 620px;
  height: 56px;
  margin-bottom: 20px;

  /* Base/White */
  background: #ffffff;
  /* Gray/200 */
  border: 1px solid var(--table-border-color);
  /* Shadows/shadow-xs */
  box-shadow: none;
  border-radius: 30px;
}

/* Individual Tab Button */
.documents-tab {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;

  width: 200px;
  height: 44px;

  border: none;
  cursor: pointer;
  border-radius: 30px;

  /* Inside auto layout */
  flex: none;
  align-self: center;
  flex-grow: 1;
  transition: all 0.2s ease;
}

/* Active Tab */
.documents-tab.active {
  background: var(--mp-green, #03FF88) !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 24px;
}

/* Inactive Tab */
.documents-tab:not(.active) {
  background: transparent;
}

.documents-tab:hover:not(.active) {
  background: #fafafa;
}

/* Tab Text - Active */
.documents-tab.active .tab-text {
  /* Text md/Semibold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */

  /* Text color for active (on green) */
  color: #000000 !important;
  font-weight: 700;
}

/* Tab Text - Inactive */
.documents-tab:not(.active) .tab-text {
  /* Text md/Semibold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */

  /* Gray/700 */
  color: #414651;

}

/* Documents List */
.documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Document Item */
.document-item {
  box-sizing: border-box;

  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  gap: 16px;

  width: 100%;
  min-height: 52px;

  /* Gray/200 */
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
}

/* Document Info Container */
.document-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;

  /* Inside auto layout */
  flex: 1 1 auto;
  min-width: 0;
  order: 0;
}

/* Document Icon */
.document-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

/* Document Name */
.document-name {
  /* Text md/Medium */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */

  /* Gray/900 */
  color: var(--page-title-color);
}

.document-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.document-meta {
  font-family: 'TT Norms Pro', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: var(--body-color);
}

/* Download Button */
.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.download-button:hover {
  opacity: 0.7;
}

.download-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.download-button:disabled:hover {
  opacity: 0.45;
}

/* Risk Notification Section */
#risk-notification-section {
  margin-top: 0;
  padding: 40px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-top: none;
}

/* Risk Strategy Card - Warning Color Variant */
.risk-strategy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;

  /* Warning/50 */
  background: #fffaeb;
  border-radius: 16px;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.risk-strategy-card .strategy-content {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 20px;

  width: 100%;
  height: auto;

  background: #ffffff;
  border-radius: 12px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.risk-strategy-card .strategy-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  /* Warning/50 */
  background: #fffaeb;
  /* Warning/200 */
  border: 1px solid #fedf89;
  position: relative;
}

.risk-strategy-card .icon-wrapper {
  /* Warning/600 */
  background: #dc6803;
}

.strategy-footer {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 102px;

  width: 584px;
  height: 36px;

  /* Inside auto layout */
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.strategy-footer p {
  width: 418px;
  height: 36px;

  /* Text xs/Regular */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  /* or 150% */

  /* Brand/600 */
  color: var(--primary-color);
  margin: 0;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.developer-info {
  flex: 1;
}

#developer-name {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--page-title-color);
  margin-bottom: 8px;
}

#developer-description {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

/* ===========================
   20. Neighborhood Section (Inside Property Card)
   =========================== */
#neighborhood-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  gap: 12px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 526px;
  margin-top: 64px;
  margin-bottom: 0;
}

#neighborhood-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--page-title-color);
}

#neighborhood-tabs {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px;
  gap: 4px;
  width: 620px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  box-shadow: none;
  border-radius: 30px;
}

.tab-button {
  flex: 1;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-button.active {
  background: var(--primary-color);
  color: #ffffff;
}

#neighborhood-content {
  width: 100%;
}

.content-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  gap: 16px;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
  margin-bottom: 8px;
}

/* ===========================
   21. FAQ Section (Inside Property Card)
   =========================== */
/* FAQ Section Wrapper */
.faq-section-wrapper {
  margin-top: 0;
  padding: 40px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-top: none;
}

/* FAQ Heading */
.faq-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.faq-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
  margin: 0;
}

.faq-icon {
  filter: none;
}

/* FAQ Section */
.faq-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0px;
  gap: 64px;
  width: 100%;
  min-height: 380px;
  background: #fcfcfd;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 32px;
  gap: 64px;
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 768px;
  box-sizing: border-box;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.faq-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0px 0px;
  width: 100%;
  min-width: 320px;
  border-top: none;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.faq-item:first-child {
  border-top: none;
  padding-top: 0;
}

.faq-item-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
  height: auto;
  min-height: 28px;
  box-sizing: border-box;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.faq-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: auto;
  height: auto;
  min-height: 28px;
  flex: none;
  order: 0;
  flex-grow: 1;
}

.faq-text {
  width: 100%;
  height: auto;
  min-height: 28px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--page-title-color);
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.faq-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2px 0px 0px;
  width: 24px;
  height: 26px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.faq-plus-icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: var(--text-secondary);
}

/* ===========================
   22. Contact Section (Inside Property Card)
   =========================== */
.contact-section {
  margin-top: 48px;
  padding: 0 24px;
}

.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

/* Avatar */
.contact-avatar {
  position: relative;
  width: 106px;
  height: 106px;
  flex-shrink: 0;
  background: #ffffff;
}

.contact-avatar .avatar-image {
  width: 106px;
  height: 106px;
  border-radius: 200px;
  object-fit: cover;
}

/* Avatar Contrast Border */
.avatar-contrast-border {
  box-sizing: border-box;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  opacity: 0.08;
  border: 0.75px solid #000000;
  border-radius: 200px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

/* Contact Title */
.contact-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 4px;
  align-self: stretch;
}

.contact-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--page-title-color);
  margin: 0;
}

/* Contact Bottom */
.contact-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
}

.contact-subtitle {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 12px;
}

.contact-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;
  height: 36px;
  border: 1px solid #252b37;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.chat-button {
  width: auto;
}

.call-button {
  width: auto;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.button-text-padding {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 2px;
  height: 20px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.chat-button .button-text-padding {
  width: auto;
}

.call-button .button-text-padding {
  width: auto;
}

.button-text {
  height: 20px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #252b37;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.chat-button .button-text {
  width: auto;
  white-space: nowrap;
}

.call-button .button-text {
  width: 73px;
}

/* ===========================
   23. Similar Properties Section
   =========================== */
.similar-properties-wrapper {
  position: absolute;
  width: 1096px;
  left: 24px;
  /* top is set dynamically by JS based on actual content height */
  padding-left: 0;
}

.similar-heading {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--page-title-color);
  margin: 0 0 24px 0;
}

/* Section Divider */
.section-divider {
  width: 1096px;
  height: 1px;
  background: var(--table-border-color);
  margin-bottom: 48px;
}

/* Similar Properties Grid */
.similar-properties-section {
  width: 1096px;
  position: relative;
}

/* Override property grid styles for similar properties */
.similar-properties-section .property-grid-container {
  width: 100%;
  position: relative;
}

.similar-properties-section .property-grid-content {
  display: grid;
  grid-template-columns: repeat(3, 344px);
  gap: 24px;
  width: 1096px;
}

.similar-properties-section .property-grid-item {
  width: 344px;
  height: 572px;
}

/* Ensure property cards display correctly */
.similar-properties-section .property-card {
  width: 344px !important;
  height: 572px !important;
  position: relative !important;
}

/* ===========================
   25. Card Placeholder Styles
   =========================== */
.card-placeholder,
.input-placeholder,
.logo-placeholder,
.map-placeholder {
  padding: 20px;
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   26. Fundraising Stages Section
   =========================== */
#stages-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  gap: 12px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 540px;
  margin-top: 64px;
  margin-bottom: 0;
}

.stages-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.stages-icon {
  width: 24px;
  height: 24px;
}

#stages-section h2 {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--page-title-color);
}

.stages-description {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.timeline-container {
  box-sizing: border-box;
  width: 100%;
  height: 468px;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Background Gradients for Stages Section */
.stages-gradient-1 {
  position: absolute;
  width: 486.81px;
  height: 446.39px;
  left: -226px;
  top: -207px;
  background: rgba(0, 29, 202, 0.06);
  filter: blur(100px);
  transform: rotate(54.66deg);
  pointer-events: none;
  z-index: 0;
}

.stages-gradient-2 {
  position: absolute;
  width: 418.52px;
  height: 383.77px;
  left: 310px;
  top: 379px;
  background: rgba(152, 251, 150, 0.1);
  filter: blur(100px);
  transform: rotate(-2.73deg);
  pointer-events: none;
  z-index: 0;
}

/* Stage cards viewport - clips overflow */
.stage-cards-viewport {
  position: absolute;
  left: 16px;
  top: 150px;
  width: 584px;
  height: 202px;
  overflow: hidden;
  z-index: 1;
}

/* Timeline Progress */
.timeline-progress {
  box-sizing: border-box;
  position: absolute;
  width: 584px;
  height: 118px;
  left: 16px;
  top: 16px;
  background: #ffffff;
  /* Gray/200 */
  border: 1px solid var(--table-border-color);
  border-radius: 8px;
  z-index: 1;
}

/* Lines container - centered vertically */
.timeline-track {
  position: absolute;
  height: 2px;
  left: 29px;
  /* 16px padding + 13px to center under first dot */
  right: 28px;
  /* 16px padding + 12px to center under last dot */
  top: 58px;
  /* Centered: (118px - 2px) / 2 = 58px */
  z-index: 0;
}

/* Completed line (blue) */
.timeline-filled {
  position: absolute;
  width: 50%;
  /* Half way to stage 2 */
  height: 2px;
  left: 0px;
  top: 0px;

  /* Brand/600 */
  background: var(--primary-color);
}

/* Pending line (gray) - use pseudo element */
.timeline-track::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 50%;
  right: 0px;
  top: 0px;

  /* Gray/200 */
  background: var(--table-border-color);
}

.timeline-steps {
  position: absolute;
  width: calc(100% - 32px);
  /* Full width minus padding */
  height: 86px;
  left: 16px;
  right: 16px;
  top: 16px;
  isolation: isolate;
}

.timeline-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 12px;
  height: 86px;
  z-index: 1;
}

.timeline-step:first-child {
  width: 97px;
  left: 0px;
  /* Align dot with start of line (13px - 12px for half dot width) */
  align-items: flex-start;
}

.timeline-step:nth-child(2) {
  width: 145px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  z-index: 2;
}

.timeline-step:nth-child(3) {
  width: 119px;
  right: 0px;
  /* Align dot with end of line (12px - 12px for half dot width) */
  align-items: flex-end;
  z-index: 3;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  flex: none;
  flex-grow: 0;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}

.timeline-step.completed .step-dot {
  /* Brand/50 */
  background: #e5e5ff;
  border-radius: 12px;
  position: relative;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

.timeline-step.completed .step-dot::before {
  /* Content layer */
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;

  /* Brand/600 */
  background: var(--primary-color);
  border-radius: 12px;
}

.timeline-step.completed .step-dot svg {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 9px;
}

.timeline-step.active .step-dot {
  width: 24px;
  height: 24px;

  /* Brand/50 */
  background: #e5e5ff;
  box-shadow:
    0px 0px 0px 2px #ffffff,
    0px 0px 0px 4px var(--accent-color);
  border-radius: 12px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  position: relative;
}

/* Content layer */
.timeline-step.active .step-dot::before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;

  /* Brand/600 */
  background: var(--primary-color);
  border-radius: 12px;
}

/* White dot in center */
.timeline-step.active .step-dot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: calc(50% - 8px / 2);
  top: calc(50% - 8px / 2);

  /* Base/White */
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-step:not(.completed):not(.active) .step-dot {
  width: 24px;
  height: 24px;

  /* Base/White */
  background: #ffffff;
  border-radius: 12px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  position: relative;
}

/* Border */
.timeline-step:not(.completed):not(.active) .step-dot::before {
  content: "";
  box-sizing: border-box;

  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;

  /* Gray/200 */
  border: 1.5px solid var(--table-border-color);
  border-radius: 12px;
}

/* Gray dot in center */
.timeline-step:not(.completed):not(.active) .step-dot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: calc(50% - 8px / 2);
  top: calc(50% - 8px / 2);

  /* Gray/300 */
  background: #d5d7da;
  border-radius: 50%;
}

.step-label {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #414651;
  order: 0;
  width: 100%;
  height: 18px;
}

.timeline-step:nth-child(2) .step-label {
  text-align: center;
}

.timeline-step:nth-child(3) .step-label {
  text-align: right;
}

.step-title {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #414651;
  order: 2;
  width: 100%;
  height: 20px;
}

.timeline-step:nth-child(2) .step-title {
  text-align: center;
}

.timeline-step:nth-child(3) .step-title {
  text-align: right;
}

.timeline-step.active .step-title {
  color: var(--primary-color);
}

/* Stage Cards */
.stage-cards {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 894px;
  height: 202px;
  left: 147px;
  /* Center first card: (584-290)/2 = 147px */
  top: 0px;
  transition: transform 0.3s ease;
}

.stage-card {
  box-sizing: border-box;
  position: relative;
  width: 290px;
  height: 202px;
  background: #ffffff;
  border: 1px solid var(--table-border-color);
  border-radius: 12px;
  flex: none;
  flex-shrink: 0;
}

.stage-card-header {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  gap: 98px;
  width: 290px;
  height: 74px;
  left: 0px;
  top: 0px;
  background: var(--accent-color);
  border-radius: 11px 11px 0 0;
  box-sizing: border-box;
}

.stage-card.locked .stage-card-header {
  background: #d5d9eb;
}

.stage-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 6px;
  width: 101px;
  height: 42px;
}

.stage-number {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #414651;
}

.stage-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  white-space: nowrap;
  gap: 4px;
  width: 101px;
  height: 18px;
}

.stage-name span {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: var(--page-title-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stage-badge {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 8px 2px 6px;
  gap: 4px;
  width: 59px;
  height: 16px;
  background: #fdfdfd;
  border: 1px solid var(--primary-color);
  border-radius: 16px;
}

.stage-badge.ongoing .badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.stage-badge.ongoing .badge-dot::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 1px;
  top: 1px;
  background: #3ef83a;
  border-radius: 50%;
}

.stage-badge span {
  width: 33px;
  height: 12px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 8px;
  line-height: 12px;
  text-align: center;
  color: var(--primary-color);
  white-space: nowrap;
}

.stage-badge.locked-badge {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 6px 2px 4px;
  gap: 4px;
  width: 54px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #d5d7da;
  box-shadow: none;
  border-radius: 6px;
}

.stage-badge.locked-badge span {
  width: 28px;
  height: 12px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 8px;
  line-height: 12px;
  text-align: center;
  color: #414651;
  white-space: nowrap;
}

.stage-card-content {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 71px;
  width: 258px;
  height: 96px;
  left: 16px;
  top: 90px;
  box-sizing: border-box;
}

.stage-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  height: 96px;
}

.stage-details:first-child {
  width: 86px;
}

.stage-details:last-child {
  width: 101px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
  width: 86px;
  height: 40px;
}

.detail-label {
  width: 86px;
  height: 18px;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #414651;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-value {
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navigation */
.stage-navigation {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0px;
  width: 72px;
  height: 32px;
  left: calc(50% - 72px / 2);
  top: 364px;
}

.nav-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  gap: 10px;
  width: 32px;
  height: 32px;
  background: var(--table-border-color);
  border-radius: 40px;
  border: none;
  cursor: pointer;
  color: #717680;
}

.nav-button:not(:disabled) {
  background: #ffffff;
  color: #000000;
}

.nav-button:disabled {
  cursor: not-allowed;
}

/* Calculate Returns Button */
.calculate-returns-btn {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 4px;
  width: 145px;
  height: 36px;
  left: calc(50% - 145px / 2 - 0.5px);
  top: 416px;
  background: var(--primary-color);
  border-radius: 8px;
  border: none;
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
}

/* 12. Funding Timeline Section */
#funding-section {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  gap: 24px;

  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 369px;
  margin-top: 48px;
}

/* Section Header */
.funding-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  width: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.funding-header .calendar-icon {
  width: 24px;
  height: 24px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.funding-header h2 {
  width: 195px;
  height: 32px;

  /* Display xs/Bold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  /* identical to box height, or 133% */
  white-space: nowrap;

  /* Gray/900 */
  color: var(--page-title-color);

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

/* Section Divider */
.funding-divider {
  width: 100%;
  height: 1px;

  /* Gray/200 */
  background: var(--table-border-color);

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Progress Steps Container */
.progress-steps {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;

  width: 100%;
  height: auto;

  /* Inside auto layout */
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

/* Funding Step Base */
.funding-step-base {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;

  width: 100%;
  min-height: 96px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.funding-step-base.last {
  height: 120px;
}

/* Funding Connector Wrap */
.funding-connector-wrap {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 4px;
  gap: 4px;

  width: 24px;
  height: 96px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.funding-step-base.last .funding-connector-wrap {
  height: 120px;
}

/* Funding Step Icon Base */
.funding-step-icon-base {
  width: 24px;
  height: 24px;

  /* Base/White */
  background: #ffffff;
  border-radius: 12px;
  position: relative;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Completed state */
.funding-step-base.completed .funding-step-icon-base {
  /* Brand/50 */
  background: #e5e5ff;
  box-shadow:
    0px 0px 0px 2px #ffffff,
    0px 0px 0px 4px #0000FF;
}

/* Funding Step Content */
.funding-step-content {
  box-sizing: border-box;

  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;

  /* Gray/200 */
  border: 1.5px solid var(--table-border-color);
  border-radius: 12px;
}

.funding-step-base.completed .funding-step-content {
  /* Brand/600 */
  background: #03FF88;
  border: none;
}

/* Funding Step Dot */
.funding-step-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  left: calc(50% - 8px / 2);
  top: calc(50% - 8px / 2);

  /* Gray/300 */
  background: #d5d7da;
}

.funding-step-base.completed .funding-step-dot {
  /* Base/White */
  background: #ffffff;
}

/* Funding Connector */
.funding-connector {
  width: 2px;
  height: 64px;

  /* Gray/200 */
  background: var(--table-border-color);
  border-radius: 2px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 1;
}

.funding-step-base.completed .funding-connector {
  /* Brand/600 */
  background: var(--primary-color);
}

.funding-step-base.last .funding-connector {
  display: none;
}

/* Funding Step Text */
.funding-step-text {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;

  width: 428px;
  height: 72px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.funding-step-base:nth-child(2) .funding-step-text {
  width: 478px;
}

.funding-step-base.last .funding-step-text {
  width: 580px;
  height: 120px;
  flex-grow: 1;
}

/* Funding Text Icon Row */
.funding-text-icon-row {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  width: 100%;
  height: 20px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* Funding Step Heading */
.funding-step-heading {
  height: 20px;

  /* Text sm / Bold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */

  /* Gray/900 */
  color: var(--page-title-color);

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

/* Funding Step Date */
.funding-step-date {
  width: 100%;
  height: 18px;

  /* Text xs/Medium */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height, or 150% */

  /* Gray/600 */
  color: var(--text-secondary);

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

/* Funding Step Description */
.funding-step-description {
  width: 100%;
  height: 18px;

  /* Text xs/Regular */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height, or 150% */

  /* Gray/600 */
  color: var(--text-secondary);

  /* Inside auto layout */
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.funding-step-base.last .funding-step-description {
  height: 36px;
  order: 3;
}

/* Payment Badge */
.payment-badge {
  box-sizing: border-box;

  /* Auto layout */
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 10px;
  gap: 0;

  /* Green background with blue text */
  background: #03FF88;
  border: 1px solid #03FF88;
  border-radius: 16px;

  /* Inside auto layout */
  flex: none;
  flex-grow: 0;
}

/* Month 6 badge - positioned after title, before description */
.funding-step-base:not(.last) .payment-badge {
  order: 1;
}

/* Month 12 badge - positioned after description */
.funding-step-base.last .payment-badge {
  order: 3;
}

.payment-badge .dollar-icon {
  width: 12px;
  height: 12px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.payment-badge .dollar-icon circle,
.payment-badge .dollar-icon path {
  stroke: #0000FF;
}

.payment-badge span {
  /* Text xs/Medium */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height, or 150% */
  text-align: center;
  white-space: nowrap;

  /* Blue text on green */
  color: #0000FF;

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* 13. Leasing Strategy Section */
#leasing-strategy-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 0;
  gap: 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
  border-top: none;
}

/* Section Header */
.leasing-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 8px;
  margin-bottom: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.leasing-header .key-icon {
  width: 24px;
  height: 24px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.leasing-header h2 {
  /* Display xs/Bold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  white-space: nowrap;

  /* Gray/900 */
  color: var(--page-title-color);

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

/* Content Box */
.leasing-content-box {
  box-sizing: border-box;

  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 24px;

  width: 100%;

  /* Gray blue/25 */
  background: #fcfcfd;
  /* Gray blue/200 */
  border: 1px solid #d5d9eb;
  border-radius: 12px;

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Leasing Item */
.leasing-item {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;

  width: 100%;

  /* Inside auto layout */
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.leasing-item:nth-child(1) {
  order: 0;
}

.leasing-item:nth-child(3) {
  order: 2;
}

.leasing-item:nth-child(5) {
  order: 4;
}

/* Item Header */
.leasing-item-header {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 8px;

  width: 100%;

  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.leasing-item-header .home-icon {
  width: 24px;
  height: 24px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.leasing-item-header h3 {
  height: 28px;

  /* Text lg/Bold */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  /* identical to box height, or 156% */

  /* Gray/900 */
  color: var(--page-title-color);

  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

.leasing-item p {
  width: 100%;

  /* Text sm/Regular */
  font-family: 'TT Norms Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;

  /* Gray/600 */
  color: var(--text-secondary);

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

/* Divider */
.leasing-divider {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;

  width: 100%;
  height: 1px;

  /* Inside auto layout */
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.leasing-divider:nth-child(2) {
  order: 1;
}

.leasing-divider:nth-child(4) {
  order: 3;
}

.divider-line {
  width: 100%;
  height: 1px;

  /* Gray/200 */
  background: var(--table-border-color);

  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* ── Fully Funded State ─────────────────────────────────────── */
.price-card-fully-funded {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 0;
}

.fully-funded-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF3;
  color: #027A48;
  border: 1px solid #A9EFC5;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.fully-funded-message {
  font-size: 13px;
  color: #667085;
  margin: 0;
  line-height: 1.5;
}
