/* ============================================================
   Saanaz Stats — refined luxury strip (compact)
   ============================================================ */

.saanaz-stats {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.saanaz-stats-bar {
  position: relative;
  padding: 44px 0;
  border-top: 1px solid rgba(201, 169, 98, 0.35);
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
  background:
    linear-gradient(90deg, rgba(201, 169, 98, 0.06) 0%, transparent 22%, transparent 78%, rgba(201, 169, 98, 0.06) 100%),
    var(--sz-charcoal);
}

.saanaz-stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sz-gold), transparent);
  opacity: 0.6;
}

.saanaz-stats-row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

/* Left label */
.saanaz-stats-intro {
  flex: 0 0 auto;
  padding-right: clamp(16px, 3vw, 32px);
  border-right: 1px solid rgba(201, 169, 98, 0.25);
  min-width: 140px;
}

.saanaz-stats-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sz-gold);
  margin-bottom: 6px;
}

.saanaz-stats-intro-text {
  margin: 0;
  font-family: var(--sz-font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

/* Stats track */
.saanaz-stats-track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}

.saanaz-stat-item {
  position: relative;
  text-align: center;
  padding: 8px clamp(12px, 2vw, 24px);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s var(--sz-ease),
    transform 0.6s var(--sz-ease);
  transition-delay: calc(0.08s * var(--stat-i, 0));
}

.saanaz-stats.sz-inview .saanaz-stat-item {
  opacity: 1;
  transform: none;
}

.saanaz-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 36px;
  transform: translateY(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 169, 98, 0.35) 50%,
    transparent
  );
}

.saanaz-stat-item:hover .saanaz-stat-num {
  color: var(--sz-gold-light);
}

.saanaz-stat-num-wrap {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-bottom: 8px;
}

.saanaz-stat-num {
  font-family: var(--sz-font-display);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--sz-white);
  font-variant-numeric: tabular-nums;
  transition: color 0.35s var(--sz-ease);
}

.saanaz-stat-suffix {
  font-family: var(--sz-font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--sz-gold);
  margin-left: 1px;
  margin-top: 0.2em;
  opacity: 0;
  transition: opacity 0.4s var(--sz-ease) 0.05s;
}

.saanaz-stats.sz-counted .saanaz-stat-suffix {
  opacity: 1;
}

.saanaz-stat-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
  max-width: 12em;
  margin: 0 auto;
  transition: color 0.35s var(--sz-ease);
}

.saanaz-stat-item:hover .saanaz-stat-label {
  color: rgba(255, 255, 255, 0.78);
}

.saanaz-stat-item.is-popped .saanaz-stat-num-wrap {
  animation: szStatPulse 0.45s var(--sz-ease);
}

@keyframes szStatPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@media (max-width: 991px) {
  .saanaz-stats-row {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .saanaz-stats-intro {
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding-right: 0;
    padding-bottom: 20px;
    min-width: 0;
  }

  .saanaz-stats-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .saanaz-stat-item:nth-child(2)::after {
    display: none;
  }

  .saanaz-stat-item:nth-child(odd):not(:last-child)::after {
    display: block;
    top: auto;
    bottom: -14px;
    left: 50%;
    right: auto;
    width: 48px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
  }
}

@media (max-width: 479px) {
  .saanaz-stats-bar {
    padding: 36px 0;
  }

  .saanaz-stats-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .saanaz-stat-item::after {
    display: none !important;
  }

  .saanaz-stat-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .saanaz-stat-item:last-child {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .saanaz-stat-item {
    opacity: 1;
    transform: none;
  }

  .saanaz-stat-suffix {
    opacity: 1;
  }
}
