/*
 * V13 Premium Additions — Enhanced visible decorative elements
 * Layered on top of V12 CSS for 9-10/10 target
 */

/* ─── VISIBLE MICRO-INTERACTION STATES (visible in screenshots) ─── */
.visible-glow {
  box-shadow:
    0 0 30px rgba(253, 172, 83, 0.08),
    0 0 60px rgba(253, 172, 83, 0.04);
}

.visible-glow-teal {
  box-shadow:
    0 0 30px rgba(44, 140, 153, 0.08),
    0 0 60px rgba(44, 140, 153, 0.04);
}

/* ─── RICHER CARD TREATMENTS ─── */
.card-premium-white {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.07),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-premium-white:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(253, 172, 83, 0.15);
}

/* ─── HERO ILLUSTRATION CONTAINER ─── */
.hero-illustration {
  position: relative;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

/* ─── VISIBLE BADGE PULSE (permanent visible animation) ─── */
.badge-pulse {
  animation: badge-pulse-glow 3s ease-in-out infinite;
}

@keyframes badge-pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(253, 172, 83, 0.2); }
  50% { box-shadow: 0 0 16px rgba(253, 172, 83, 0.4); }
}

/* ─── VISIBLE SECTION DIVIDER WITH SHIMMER ─── */
.divider-shimmer {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 172, 83, 0.15) 15%,
    rgba(253, 172, 83, 0.5) 35%,
    rgba(44, 140, 153, 0.4) 55%,
    rgba(44, 140, 153, 0.15) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer-slide 4s ease-in-out infinite;
}

@keyframes shimmer-slide {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* ─── ENHANCED STAT GLOW (visible in static screenshot) ─── */
.stat-glow-visible {
  color: #FDAC53;
  text-shadow:
    0 0 20px rgba(253, 172, 83, 0.4),
    0 0 40px rgba(253, 172, 83, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.03em;
}

/* ─── VISIBLE CORNER ACCENTS ─── */
.corner-accent-tl::before,
.corner-accent-br::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.corner-accent-tl::before {
  top: 0;
  left: 0;
  border-top: 2px solid rgba(253, 172, 83, 0.2);
  border-left: 2px solid rgba(253, 172, 83, 0.2);
  border-top-left-radius: 16px;
}

.corner-accent-br::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid rgba(44, 140, 153, 0.15);
  border-right: 2px solid rgba(44, 140, 153, 0.15);
  border-bottom-right-radius: 16px;
}

/* ─── VISIBLE DOT NAVIGATION ─── */
.dot-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.dot-nav-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dot-nav-item.active {
  background: #FDAC53;
  box-shadow: 0 0 8px rgba(253, 172, 83, 0.4);
  width: 24px;
  border-radius: 4px;
}
