/* ============================================================
   LANDING PAGE – Additional Styles
   ============================================================ */

/* ── Hero Stats Strip ─────────────────────────────────────── */
.hero-stats-strip {
  display: flex;
  gap: 0;
  margin: 28px 0 36px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-stat {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--secondary);
  font-weight: 800;
  line-height: 1.2;
}

.hero-stat span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Stats 6-col grid ─────────────────────────────────────── */
.stats-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.stat-sub {
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  margin-top: 4px;
}

/* ── Pull Quote ───────────────────────────────────────────── */
.pull-quote {
  background: linear-gradient(135deg, rgba(201, 168, 76, .08), rgba(201, 168, 76, .03));
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 24px 0;
  position: relative;
}

.pull-quote i {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}

.pull-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 6px;
}

.pull-quote cite {
  font-size: .82rem;
  color: var(--gray-500);
  font-style: normal;
}

/* ── Location Tabs ────────────────────────────────────────── */
.location-tabs-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.loc-tab-btns {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  background: var(--gray-100);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 4px;
  overflow-x: auto;
}

.loc-tab-btn {
  flex: 1;
  padding: 12px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: calc(var(--radius-md) - 2px);
  transition: all var(--trans-fast);
  white-space: nowrap;
  text-align: center;
}

.loc-tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.loc-tab-content {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.loc-tab-content.active {
  display: block;
}

.loc-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-700);
  padding: 8px 0;
}

.loc-item span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Product Cards ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--trans-normal);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.product-card-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .04));
  border: 2px solid rgba(201, 168, 76, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  transition: all var(--trans-normal);
}

.product-card:hover .product-card-icon {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.product-card-sub {
  font-size: .82rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.product-card p {
  font-size: .84rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-tag {
  display: inline-block;
  background: rgba(201, 168, 76, .1);
  color: var(--secondary-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .5px;
}

/* ── Amenity Groups ───────────────────────────────────────── */
.amenity-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.amenity-group {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--trans-normal);
}

.amenity-group:hover {
  background: rgba(201, 168, 76, .08);
  border-color: rgba(201, 168, 76, .25);
}

.amenity-group-title {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-group-title i {
  font-size: 1.2rem;
}

.amenity-group ul {
  list-style: none;
}

.amenity-group li {
  padding: 7px 0;
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenity-group li:last-child {
  border-bottom: none;
}

.amenity-group li::before {
  content: '•';
  color: var(--secondary);
  font-weight: bold;
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-200);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 32px 24px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -29px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray-300);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-item.done .timeline-dot {
  background: var(--secondary);
}

.timeline-item.active .timeline-dot {
  background: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .25);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .25)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0)
  }
}

.timeline-date {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item.done .timeline-date {
  background: var(--secondary);
  color: var(--primary);
}

.timeline-content p {
  font-size: .9rem;
  color: var(--gray-700);
  margin: 0;
}

/* ── Developer Pillars ────────────────────────────────────── */
.developer-section {
  background: var(--gray-50);
}

.dev-pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin: 0 auto;
  max-width: 700px;
}

.dev-pillar {
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--trans-normal);
}

.dev-pillar:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dev-pillar i {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
}

.dev-pillar span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ── Trust Cards ──────────────────────────────────────────── */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--trans-normal);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-card h4 {
  font-size: .95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: .84rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ── Lead Form Extras ─────────────────────────────────────── */
.lead-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.lead-check-item {
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .08);
}

.form-trust {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 12px !important;
  margin-bottom: 0;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--trans-normal);
}

.faq-item:hover {
  border-color: var(--secondary);
}

.faq-q {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 300;
  transition: transform var(--trans-fast);
}

.faq-item.open .faq-q::after {
  content: '−';
}

.faq-item.open .faq-q {
  color: var(--secondary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: .88rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.7;
}

/* ── Contact Final Grid ───────────────────────────────────── */
.contact-final-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-final-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--trans-normal);
}

.contact-final-card:hover {
  border-color: var(--secondary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-final-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
}

.contact-final-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-final-card p {
  font-size: .88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ── Exit Intent Popup ────────────────────────────────────── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 24, 38, .72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}

.exit-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  background: var(--white);
  border-radius: 20px;
  max-width: 460px;
  width: 92%;
  position: relative;
  transform: scale(.85) translateY(20px);
  transition: all .45s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .3), 0 0 0 1px rgba(201, 168, 76, .15);
  overflow: hidden;
}

.exit-popup-overlay.show .exit-popup {
  transform: scale(1) translateY(0);
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  transition: all var(--trans-fast);
  border: 1px solid rgba(255, 255, 255, .15);
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, .35);
  color: var(--white);
  transform: rotate(90deg);
}

/* Header with gradient */
.exit-popup-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1e4a73 100%);
  padding: 32px 28px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.exit-popup-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 70%);
}

.exit-popup-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .08) 0%, transparent 70%);
}

.exit-popup-logo {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.exit-popup-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(255, 255, 255, .1);
  padding: 4px;
  border: 2px solid rgba(201, 168, 76, .3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.exit-popup-badge {
  display: inline-block;
  background: rgba(201, 168, 76, .18);
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--secondary);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.exit-popup-header h3 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.exit-popup-subtitle {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0 auto;
}

/* Benefits list */
.exit-popup-benefits {
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--gray-100);
}

.exit-popup-benefit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  border-right: 1px solid var(--gray-100);
}

.exit-popup-benefit:last-child {
  border-right: none;
}

.exit-popup-benefit i {
  font-size: 1rem;
  color: var(--secondary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, .08);
  border-radius: 50%;
}

.exit-popup-benefit span {
  line-height: 1.3;
}

/* Form */
.exit-popup-form {
  padding: 22px 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exit-popup-field {
  position: relative;
  display: flex;
  align-items: center;
}

.exit-popup-field i {
  position: absolute;
  left: 14px;
  color: var(--secondary);
  font-size: .85rem;
  pointer-events: none;
  z-index: 1;
}

.exit-popup-field .form-input {
  padding-left: 42px;
  padding-right: 14px;
  height: 46px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  font-size: .88rem;
  transition: all var(--trans-fast);
}

.exit-popup-field .form-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, .08);
}

.exit-popup-field .form-input::placeholder {
  color: var(--gray-300);
}

.exit-popup-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: .92rem;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: .5px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, .3);
  transition: all var(--trans-normal);
}

.exit-popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, .45);
}

/* Privacy note */
.exit-popup-privacy {
  text-align: center;
  font-size: .72rem;
  color: var(--gray-500);
  padding: 0 28px 20px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.exit-popup-privacy i {
  color: var(--secondary);
  font-size: .7rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width:1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .dev-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:900px) {
  .contact-final-grid {
    grid-template-columns: 1fr;
  }

  .amenity-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .hero-stats-strip {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 50%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .dev-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-items {
    grid-template-columns: 1fr;
  }

  .exit-popup-form {
    padding: 18px 20px 14px;
  }

  .exit-popup {
    width: 94%;
  }

  .exit-popup-header {
    padding: 24px 20px 20px;
  }

  .exit-popup-header h3 {
    font-size: 1.1rem;
  }

  .exit-popup-subtitle {
    font-size: .75rem;
  }

  .exit-popup-benefit {
    padding: 12px 6px;
    font-size: .68rem;
  }

  .exit-popup-benefit i {
    width: 30px;
    height: 30px;
    font-size: .85rem;
  }

  .exit-popup-field .form-input {
    height: 42px;
    font-size: .84rem;
  }

  .exit-popup-submit {
    padding: 12px;
    font-size: .85rem;
  }

  .exit-popup-privacy {
    font-size: .66rem;
    padding: 0 20px 16px;
  }
}