/* WhySeasonsFeatures.css — phone bezel matching the hero phone */

.why__phone {
  position: relative;
  width: 360px;
}
.why__bezel {
  position: relative;
  width: 360px; height: 740px;
  background: #0c0c0e;
  border-radius: 56px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.why__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; border-radius: 14px; background: #0c0c0e; z-index: 5;
}
.why__stack {
  position: relative;
  width: 100%; height: 100%;
}
.why__phone-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 44px;
  display: block;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.why__phone-img.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Pagination dots */
.why__dots {
  display: flex; gap: 7px; justify-content: center;
  margin-top: 36px;
}
.why__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none; padding: 0; cursor: pointer;
  transition: background var(--t-fast), width var(--t-fast);
}
.why__dot:hover { background: rgba(255,255,255,0.45); }
.why__dot.is-on { background: var(--paper-1); width: 22px; border-radius: 999px; }

@media (max-width: 720px) {
  .why__phone, .why__bezel { width: 300px; }
  .why__bezel { height: 620px; }
  .why__phone-row { gap: 18px; }
}
