/* ═══════════════════════════════════════════════════════
   PUJA VIDEOS PAGE — CINEMA-GRADE PROFESSIONAL STYLES
   ═══════════════════════════════════════════════════════ */

:root {
  --gold:          #f0b429;
  --gold-light:    #fde68a;
  --gold-dark:     #b45309;
  --indigo:        #4f46e5;
  --indigo-dark:   #3730a3;
  --violet:        #7c3aed;
  --deep:          #0c0a1e;
  --deep-2:        #120f2d;
  --deep-3:        #1a1640;
  --surface:       #ffffff;
  --surface-2:     #f8fafc;
  --text:          #0f172a;
  --text-2:        #334155;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --border-2:      #cbd5e1;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:  68px;
  --pad-x:  clamp(1rem, 4vw, 2.5rem);
  --max-w:  1280px;
  --r-sm:   6px;
  --r:      12px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;
  --t:      0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --sh-card: 0 8px 32px rgba(15,23,42,0.10), 0 2px 8px rgba(15,23,42,0.06);
  --sh-lift: 0 20px 60px rgba(15,23,42,0.18), 0 4px 16px rgba(15,23,42,0.10);
  --sh-modal: 0 40px 120px rgba(0,0,0,0.80), 0 8px 32px rgba(0,0,0,0.50);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-ui);
  background: var(--surface-2);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, iframe, video { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:var(--font-ui); border:none; background:none; }

.pv-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.pv-navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(15,23,42,0.07);
  transition: box-shadow var(--t);
}

.pv-navbar.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,0.12); }

.pv-navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pv-navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pv-navbar__logo {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(79,70,229,0.35);
}

.pv-navbar__brand-text { display:flex; flex-direction:column; }

.pv-navbar__title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--indigo-dark); line-height: 1.1;
}

.pv-navbar__subtitle {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}

.pv-navbar__nav {
  display: flex; align-items: center; gap: 0.2rem;
  margin-left: auto;
}

.pv-nav-link {
  font-size: 0.86rem; font-weight: 500;
  color: var(--text-2);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-sm);
  transition: var(--t);
  display: flex; align-items: center; gap: 0.35rem;
  white-space: nowrap;
}

.pv-nav-link:hover { color: var(--indigo); background: #eef2ff; }

.pv-nav-link--cta {
  background: var(--indigo);
  color: #fff !important;
  border-radius: var(--r-full);
  padding: 0.45rem 1.1rem;
  box-shadow: 0 2px 10px rgba(79,70,229,0.3);
  margin-left: 0.25rem;
}
.pv-nav-link--cta:hover { background: var(--indigo-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,0.4); }

/* Hamburger */
.pv-navbar__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: var(--r-sm);
  margin-left: auto;
}
.pv-navbar__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px; transition: var(--t);
}
.pv-navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pv-navbar__toggle.active span:nth-child(2) { opacity: 0; }
.pv-navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 800px) {
  .pv-navbar__toggle { display: flex; }
  .pv-navbar__nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.75rem 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(15,23,42,0.15);
    transform: translateY(-110%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none; z-index: 499;
  }
  .pv-navbar__nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
  .pv-nav-link { padding: 0.8rem 1rem; font-size: 0.97rem; border-radius: var(--r); }
  .pv-nav-link--cta { margin: 0.5rem 0 0; text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.pv-hero {
  position: relative;
  background: var(--deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(380px, 50vh, 520px);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
}

/* Background gradient layers */
.pv-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 110%, rgba(79,70,229,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 10%,  rgba(124,58,237,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%,  rgba(240,180,41,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0c0a1e 0%, #1a1640 50%, #0f0c26 100%);
}

/* Glowing orbs */
.pv-hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none; opacity: 0.6;
}
.pv-hero__glow--1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(240,180,41,0.22), transparent); top: -80px; right: 8%; }
.pv-hero__glow--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(79,70,229,0.3), transparent); bottom: -60px; left: 5%; }
.pv-hero__glow--3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(196,181,253,0.18), transparent); top: 40%; left: 50%; }

.pv-hero__content {
  position: relative; z-index: 2;
  text-align: center;
}

.pv-hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  padding: 0.42rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.6rem;
}

.pv-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.pv-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.pv-hero__title span {
  background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pv-hero__desc {
  max-width: 580px; margin: 0 auto 2rem;
  font-size: clamp(0.93rem, 1.7vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

.pv-hero__divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.pv-hero__divider span {
  flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,0.4), transparent);
}
.pv-hero__divider i { color: rgba(240,180,41,0.5); font-size: 1rem; }

.pv-hero__scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.3); font-size: 0.85rem;
  animation: hero-bounce 2.5s ease-in-out infinite; z-index: 2;
}
@keyframes hero-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════ */
.pv-main {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--surface-2);
}

.pv-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CARD GRID — 3 VIDEOS
═══════════════════════════════════════════ */
.pv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

/* Card */
.pv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
  cursor: default;
}

.pv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lift);
  border-color: rgba(79,70,229,0.25);
}

/* Card Visual (top area) */
.pv-card__visual {
  position: relative;
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.pv-card__visual--1 {
  background: linear-gradient(145deg, #1a0533 0%, #4c1d95 40%, #7c3aed 70%, #f59e0b 100%);
}
.pv-card__visual--2 {
  background: linear-gradient(145deg, #0c1a1a 0%, #064e3b 40%, #059669 70%, #34d399 100%);
}
.pv-card__visual--3 {
  background: linear-gradient(145deg, #1e1b4b 0%, #3730a3 40%, #6366f1 70%, #a5b4fc 100%);
}

/* Real YouTube thumbnail — fills the visual area */
.pv-card__yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
  z-index: 0;
}

.pv-card:hover .pv-card__yt-thumb { transform: scale(1.06); }

/* Dark gradient tint over the thumbnail so text/icon stays readable */
.pv-card__visual-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.28) 55%,
    rgba(0,0,0,0.48) 100%
  );
  z-index: 1;
  transition: background 0.3s ease;
}

.pv-card:hover .pv-card__visual-tint {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.38) 100%
  );
}

/* Push aura, lotus, num above the tint */
.pv-card__aura  { z-index: 2; }
.pv-card__lotus { z-index: 3; }
.pv-card__num   { z-index: 2; }

/* Aura glow behind the icon */
.pv-card__aura {
  position: absolute;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 60px 20px rgba(255,255,255,0.06),
              inset 0 0 40px rgba(255,255,255,0.04);
  animation: aura-breathe 4s ease-in-out infinite;
}
@keyframes aura-breathe {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.12); opacity: 1; }
}

/* Central Icon */
.pv-card__lotus {
  position: relative; z-index: 2;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Number badge */
.pv-card__num {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

/* Card Body */
.pv-card__body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  flex: 1;
}

.pv-card__label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--indigo);
  background: #eef2ff;
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-full);
  display: inline-block; align-self: flex-start;
}

.pv-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); line-height: 1.3;
}

.pv-card__subtitle {
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.pv-card__subtitle i { color: var(--indigo); font-size: 0.72rem; }

.pv-card__desc {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.7; flex: 1;
}

/* Watch Button */
.pv-watch-btn {
  display: flex; align-items: center;
  gap: 0; width: 100%;
  margin-top: 0.5rem;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 1.5px solid var(--indigo);
  transition: var(--t);
  background: transparent;
}

.pv-watch-btn:hover {
  box-shadow: 0 6px 20px rgba(79,70,229,0.3);
}

.pv-watch-btn__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem;
  transition: var(--t);
}
.pv-watch-btn:hover .pv-watch-btn__icon {
  background: var(--indigo-dark);
}

.pv-watch-btn__text {
  flex: 1; text-align: center;
  font-size: 0.88rem; font-weight: 600;
  color: var(--indigo);
  padding: 0 0.75rem;
  transition: var(--t);
}
.pv-watch-btn:hover .pv-watch-btn__text { color: var(--indigo-dark); }

.pv-watch-btn__arrow {
  width: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(79,70,229,0.4);
  font-size: 0.78rem;
  transition: var(--t);
}
.pv-watch-btn:hover .pv-watch-btn__arrow {
  color: var(--indigo);
  transform: translateX(2px);
}

/* Notice strip */
.pv-notice {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0.85rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  width: fit-content; margin: 0 auto;
}
.pv-notice i { color: var(--indigo); }

/* ═══════════════════════════════════════════
   CINEMA PLAYER MODAL
═══════════════════════════════════════════ */
.pv-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}

.pv-modal[hidden] { display: none !important; }

/* Entering animation */
.pv-modal.is-open { animation: modal-fade-in 0.3s ease both; }
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Backdrop — pure black cinema curtain */
.pv-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

/* Modal Window */
.pv-modal__window {
  position: relative; z-index: 1;
  width: 100%; max-width: 960px;
  background: #0a0919;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-modal);
  border: 1px solid rgba(255,255,255,0.06);
  animation: modal-slide-in 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes modal-slide-in {
  from { opacity: 0; transform: scale(0.93) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Top Bar ── */
.pv-modal__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, #110e2b 0%, #1a163f 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 1rem;
}

.pv-modal__topbar-brand {
  display: flex; align-items: center; gap: 0.75rem;
}

.pv-modal__topbar-logo {
  width: 32px; height: 32px; border-radius: 7px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(79,70,229,0.4);
}

.pv-modal__topbar-info {
  display: flex; flex-direction: column;
}

.pv-modal__topbar-label {
  font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  line-height: 1;
}

.pv-modal__topbar-title {
  font-family: var(--font-display);
  font-size: 0.97rem; font-weight: 600;
  color: #fff; line-height: 1.2;
  margin-top: 0.2rem;
}

.pv-modal__topbar-right {
  display: flex; align-items: center; gap: 1rem; margin-left: auto;
}

.pv-modal__topbar-sub {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.pv-modal__close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  flex-shrink: 0;
}
.pv-modal__close:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  transform: scale(1.1);
}

/* ── Player ── */
.pv-modal__player-wrap {
  position: relative;
  background: #000;
  line-height: 0; /* kills any gap */
}

.pv-modal__player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
}

.pv-modal__player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; display: block;
}

/* ── Bottom Bar ── */
.pv-modal__bottombar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: #0a0919;
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 1rem;
  flex-wrap: wrap;
}

.pv-modal__bottombar-left {
  display: flex; align-items: center; gap: 0.6rem;
}

.pv-modal__dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.pv-modal__dot--live {
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: badge-pulse 2s ease-in-out infinite;
}

.pv-modal__bottombar-text {
  font-size: 0.76rem; color: rgba(255,255,255,0.4);
}

.pv-modal__bottombar-right {
  display: flex; align-items: center; gap: 0.75rem; margin-left: auto;
}

.pv-modal__fs-hint,
.pv-modal__close-link {
  font-size: 0.76rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--t);
}
.pv-modal__fs-hint:hover,
.pv-modal__close-link:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

/* ESC hint */
.pv-modal__esc {
  font-size: 0.68rem; color: rgba(255,255,255,0.25);
  display: flex; align-items: center; gap: 0.3rem;
}

/* ═══════════════════════════════════════════
   BACK BANNER
═══════════════════════════════════════════ */
.pv-back-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}

.pv-back-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}

.pv-back-banner__text {
  display: flex; align-items: center; gap: 1.2rem;
}

.pv-back-banner__text > i {
  font-size: 1.3rem; color: rgba(79,70,229,0.3);
  flex-shrink: 0;
}

.pv-back-banner__text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.2rem;
}
.pv-back-banner__text p { font-size: 0.87rem; color: var(--text-muted); }

.pv-back-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-full);
  background: var(--indigo); color: #fff;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 4px 14px rgba(79,70,229,0.3);
  transition: var(--t); white-space: nowrap;
}
.pv-back-btn:hover { background: var(--indigo-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,70,229,0.4); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.pv-footer {
  background: #05040f;
  padding: 1.75rem 0;
}

.pv-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.pv-footer__brand {
  display: flex; align-items: center; gap: 0.75rem;
}

.pv-footer__logo {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: #fff;
}

.pv-footer__name { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.pv-footer__tagline { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.3); }
.pv-footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .pv-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .pv-grid { grid-template-columns: 1fr; }
  .pv-modal { padding: 0.5rem; }
  .pv-modal__window { border-radius: var(--r-md); }
  .pv-modal__topbar-sub { display: none; }
  .pv-modal__bottombar { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .pv-modal__bottombar-right { margin-left: 0; }
  .pv-back-banner__inner { flex-direction: column; }
  .pv-back-banner__text > i { display: none; }
  .pv-footer__inner { flex-direction: column; text-align: center; }
  .pv-footer__brand { justify-content: center; }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
