/* ===========================================
   VHS Now — Pricing (VHS Cover Photos)
   Front & back side by side on green cutting mat
   =========================================== */

.pricing {
  padding: var(--space-xl) 0;

  background: transparent;
}

/* ── Side-by-Side Covers ── */
.vhs-covers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.vhs-covers__case {
  flex-shrink: 0;
}

.vhs-covers__case img {
  display: block;
  width: auto;
  height: clamp(350px, 50vw, 600px);
  border-radius: 4px;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));

}

/* ── Back Cover Text Overlay ── */
.vhs-covers__case--back {
  position: relative;
}

.vhs-back-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.vhs-back-overlay__synopsis {
  position: absolute;
  top: 20%;
  left: 1.5%;
  right: 45%;
  bottom: 38%;
  background: #1c2028;
  font-family: 'Courier New', monospace;
  font-size: clamp(0.4rem, 1vw, 0.72rem);
  color: #d4d0c8;
  line-height: 1.55;
  overflow: hidden;
  padding: 2%;
}

.vhs-back-overlay__synopsis p {
  margin-bottom: 0.8em;
}

.vhs-back-overlay__formats {
  position: absolute;
  bottom: 8%;
  left: 5%;
  right: 5%;
  background: #1c2028;
  display: flex;
  justify-content: space-between;
  font-family: 'Courier New', monospace;
  font-size: clamp(0.35rem, 0.85vw, 0.65rem);
  color: #d4d0c8;
  font-weight: 700;
  padding: 2%;
}

.vhs-back-overlay__col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── CTA Buttons Below Covers ── */
.pricing__ctas {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Professional / Commercial Details ── */
.pricing__details {
  max-width: 700px;
  margin: var(--space-lg) auto 0;
}

.pricing__details summary {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--bg-dark);
  cursor: pointer;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: var(--space-md) var(--space-lg);
  background: var(--neon-green);
  border: none;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  text-align: center;
  font-weight: 700;
}

.pricing__details summary:hover {
  box-shadow: var(--glow-green);
  filter: brightness(1.15);
}

.pricing__details[open] summary {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.pricing__details-content {
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.pricing__details-content p {
  color: var(--text-secondary);
}

.pricing__details-content a {
  color: var(--neon-green);
}

.pricing__seo-text {
  max-width: 700px;
  margin: var(--space-lg) auto 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.7;
  padding: 0 var(--space-lg);
}
