/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 0;
  position: relative;
}
.stats-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  transition: transform .4s ease;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  gap: 6px;
}
.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  text-align: center;
  letter-spacing: .04em;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  margin: 24px 0;
}
.stats-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  padding-bottom: 18px;
}
.stats-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.stats-dot.active {
  background: var(--teal-light);
  width: 18px;
  border-radius: 3px;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(57,157,163,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon.teal { background: rgba(57,157,163,.1); color: var(--teal); }
.why-icon.blue { background: rgba(40,56,102,.08); color: var(--navy); }
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.65;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  display: none;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(57,157,163,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card.large {
  grid-row: span 2;
  background: var(--navy);
  border-color: var(--navy);
  justify-content: flex-end;
  padding: 48px 40px;
  min-height: 320px;
}
.service-card.large::before { background: var(--teal); }
.service-card.large h3 { color: white; font-size: 22px; }
.service-card.large p { color: rgba(255,255,255,.7); }
.service-card.large .service-link { color: var(--teal-light); }
.service-card.large .service-icon { font-size: 48px; }

.service-icon { font-size: 32px; line-height: 1; }
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  flex: 1;
}
.service-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-top: 4px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* =============================================
   UNITS SECTION
   ============================================= */
/* =============================================
   UNITS SECTION
   ============================================= */
.units-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.unit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.unit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.unit-card.flagship {
  border-color: rgba(57,157,163,.3);
  box-shadow: 0 2px 16px rgba(57,157,163,.1);
}
.unit-photo {
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.unit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.unit-card:hover .unit-photo img {
  transform: scale(1.04);
}
.unit-body {
  flex: 1;
  padding: 32px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.unit-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  background: var(--teal);
  padding: 5px 12px;
  border-radius: 50px;
  width: fit-content;
}
.unit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.unit-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.unit-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.unit-row svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
  opacity: .7;
}
.unit-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dark);
  background: rgba(57,157,163,.07);
  border: 1px solid rgba(57,157,163,.15);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  width: fit-content;
}
.unit-highlight svg { color: var(--teal); flex-shrink: 0; }
.unit-icon { display: none; }
.unit-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  padding: 9px 20px;
  border-radius: 50px;
  transition: var(--transition);
  width: fit-content;
  margin-top: auto;
}
.unit-map-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(57,157,163,.04);
}

/* =============================================
   MODAL WHATSAPP
   ============================================= */
.wpp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,36,60,.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.wpp-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.wpp-modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(28,36,60,.22);
  position: relative;
  transform: translateY(16px) scale(.97);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  opacity: 0;
  text-align: center;
}
.wpp-modal-overlay.active .wpp-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.wpp-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.wpp-modal-close:hover { background: var(--gray-200); color: var(--navy); }
.wpp-modal-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #e9f9f0;
  color: #25d366;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.wpp-modal-box h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.wpp-modal-box p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}
.wpp-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wpp-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.wpp-option:hover {
  border-color: #25d366;
  background: #f2fdf5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.12);
}
.wpp-option-city {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.wpp-option-detail {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 400;
}
.wpp-option:hover .wpp-option-city { color: #1a9e4a; }
.wpp-option:hover .wpp-option-detail { color: #25d366; }


#back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-2px);
}


/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d5c 100%);
  padding: 96px 0 80px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(57,157,163,.12);
}
.page-hero::before {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(57,157,163,.08);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .page-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(57,157,163,.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: white;
  max-width: 680px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.65;
}

/* =============================================
