/* ===== Zoomlly Jams — Global Styles ===== */
:root {
  --bg-deep: #0A0118;
  --bg-dark: #14082B;
  --bg-card: #1B0D38;
  --purple-900: #2D0A4E;
  --purple-700: #5B21B6;
  --purple-500: #A855F7;
  --purple-300: #C084FC;
  --magenta: #E91E63;
  --pink: #EC4899;
  --pink-light: #F472B6;
  --text: #F5F1FA;
  --text-muted: #B8A8D1;
  --accent-grad: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  --accent-grad-soft: linear-gradient(135deg, rgba(168,85,247,0.18) 0%, rgba(236,72,153,0.18) 100%);
  --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.25);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background ambient glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 10% 10%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 80%, rgba(236, 72, 153, 0.14), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-light); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pink); }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: .75rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.script {
  font-family: 'Dancing Script', 'Pacifico', cursive;
  font-weight: 700;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 1, 24, 0.72);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo-mark {
  display: inline-block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F472B6 0%, #D946EF 60%, #A855F7 100%);
  -webkit-mask: url('../images/Music%20Note.png') center/contain no-repeat;
          mask: url('../images/Music%20Note.png') center/contain no-repeat;
  filter: drop-shadow(0 4px 14px rgba(236, 72, 153, 0.5));
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-footer .logo-mark { width: 50px; height: 50px; }
.site-footer .logo-text { font-size: 1.35rem; }

/* ===== Home banner hero (full-bleed) ===== */
.hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1612 / 856;
  max-height: 86vh;
  overflow: hidden;
  background: #0A0118 center/cover no-repeat;
  background-image: url('../images/hero-banner.jpg.png');
}

/* Subtle dark fade at the bottom so the equalizer feature row in the image blends */
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10,1,24,0.55) 100%);
  pointer-events: none;
}

/* Animated music-note layer — sits over the image but uses screen blend so
   it shows through dark areas only, making it look like notes are moving
   BEHIND the lady (whose lit face/body covers the blend). */
.banner-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.banner-notes .note {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #EC4899;
  text-shadow: 0 0 18px rgba(236, 72, 153, 0.85);
  opacity: 0;
  user-select: none;
  will-change: transform, opacity;
}
@keyframes noteFloat {
  0%   { transform: translate(0, 0) rotate(-8deg) scale(.85); opacity: 0; }
  10%  { opacity: .9; }
  60%  { opacity: .85; }
  100% { transform: translate(-260px, -380px) rotate(14deg) scale(1.15); opacity: 0; }
}
@keyframes noteFloatAlt {
  0%   { transform: translate(0, 0) rotate(6deg) scale(.9); opacity: 0; }
  15%  { opacity: .85; }
  100% { transform: translate(-180px, -340px) rotate(-12deg) scale(1.1); opacity: 0; }
}

.banner-notes .n1  { left: 36%; top: 80%; font-size: 2.2rem; animation: noteFloat    7s ease-in-out infinite;       animation-delay: 0s;   }
.banner-notes .n2  { left: 52%; top: 84%; font-size: 1.6rem; animation: noteFloatAlt 6s ease-in-out infinite;       animation-delay: 1.2s; }
.banner-notes .n3  { left: 44%; top: 78%; font-size: 2.6rem; animation: noteFloat    8s ease-in-out infinite;       animation-delay: 2.5s; }
.banner-notes .n4  { left: 62%; top: 86%; font-size: 1.5rem; animation: noteFloatAlt 5.5s ease-in-out infinite;     animation-delay: 0.6s; }
.banner-notes .n5  { left: 58%; top: 76%; font-size: 2.0rem; animation: noteFloat    9s ease-in-out infinite;       animation-delay: 3.4s; }
.banner-notes .n6  { left: 70%; top: 82%; font-size: 1.4rem; animation: noteFloatAlt 6.8s ease-in-out infinite;     animation-delay: 4.1s; }
.banner-notes .n7  { left: 48%; top: 88%; font-size: 1.8rem; animation: noteFloat    7.5s ease-in-out infinite;     animation-delay: 5.0s; }
.banner-notes .n8  { left: 66%; top: 78%; font-size: 1.7rem; animation: noteFloatAlt 7.2s ease-in-out infinite;     animation-delay: 1.8s; }

/* Animated equalizer bars — positioned to the right of the "Start Your Journey" button,
   running across her hair and body at button height */
.banner-eq {
  position: absolute;
  left: 32%;
  top: 76%;
  width: 60%;
  height: 16%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.banner-eq span {
  flex: 1;
  background: linear-gradient(to top, #EC4899, #C084FC);
  border-radius: 3px;
  height: 100%;
  transform-origin: center bottom;
  animation: barPulse 0.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.7));
  will-change: transform;
}

/* Three keyframe variants give the visualizer an organic, music-driven feel
   instead of a flat wave — each bar uses a different peak height. */
@keyframes barPulse {
  0%, 100% { transform: scaleY(0.10); }
  50%      { transform: scaleY(1.00); }
}
@keyframes barPulseTall {
  0%, 100% { transform: scaleY(0.18); }
  50%      { transform: scaleY(1.30); }
}
@keyframes barPulseShort {
  0%, 100% { transform: scaleY(0.08); }
  50%      { transform: scaleY(0.70); }
}
@keyframes barPulseMid {
  0%, 100% { transform: scaleY(0.12); }
  50%      { transform: scaleY(0.95); }
}

.banner-eq span:nth-child(4n+1) { animation-name: barPulse;      animation-duration: 0.9s; }
.banner-eq span:nth-child(4n+2) { animation-name: barPulseTall;  animation-duration: 1.1s; }
.banner-eq span:nth-child(4n+3) { animation-name: barPulseShort; animation-duration: 0.7s; }
.banner-eq span:nth-child(4n+4) { animation-name: barPulseMid;   animation-duration: 1.0s; }

.banner-eq span:nth-child(1)  { animation-delay: 0.00s; }
.banner-eq span:nth-child(2)  { animation-delay: 0.07s; }
.banner-eq span:nth-child(3)  { animation-delay: 0.13s; }
.banner-eq span:nth-child(4)  { animation-delay: 0.22s; }
.banner-eq span:nth-child(5)  { animation-delay: 0.30s; }
.banner-eq span:nth-child(6)  { animation-delay: 0.18s; }
.banner-eq span:nth-child(7)  { animation-delay: 0.42s; }
.banner-eq span:nth-child(8)  { animation-delay: 0.36s; }
.banner-eq span:nth-child(9)  { animation-delay: 0.55s; }
.banner-eq span:nth-child(10) { animation-delay: 0.48s; }
.banner-eq span:nth-child(11) { animation-delay: 0.62s; }
.banner-eq span:nth-child(12) { animation-delay: 0.70s; }
.banner-eq span:nth-child(13) { animation-delay: 0.85s; }
.banner-eq span:nth-child(14) { animation-delay: 0.78s; }
.banner-eq span:nth-child(15) { animation-delay: 0.94s; }
.banner-eq span:nth-child(16) { animation-delay: 1.05s; }
.banner-eq span:nth-child(17) { animation-delay: 1.18s; }
.banner-eq span:nth-child(18) { animation-delay: 1.10s; }

/* Invisible click target placed over the printed "Start Your Journey" button in the image */
.banner-cta {
  position: absolute;
  left: 4.5%;
  top: 78%;
  width: 22%;
  height: 9%;
  border-radius: 999px;
  z-index: 3;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  outline-offset: 4px;
}
.banner-cta:focus-visible {
  outline: 3px solid #fff;
  text-indent: 0;
  color: #fff;
  background: rgba(0,0,0,0.4);
  display: grid;
  place-items: center;
  font-weight: 700;
}

@media (max-width: 720px) {
  .hero-banner { aspect-ratio: 4 / 5; max-height: none; background-position: 65% center; }
  .banner-eq { display: none; }
  .banner-cta { left: 6%; top: 82%; width: 60%; height: 8%; }
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: .35rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent-grad);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--accent-grad);
  color: #fff !important;
  padding: .65rem 1.4rem !important;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5); }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(236, 72, 153, 0.55); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(192, 132, 252, 0.4);
}
.btn-ghost:hover { background: rgba(168, 85, 247, 0.12); color: #fff; border-color: rgba(192, 132, 252, 0.7); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}
.hero h1 .live {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  background: linear-gradient(135deg, #F472B6 0%, #C084FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.5), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.55), transparent 55%),
    linear-gradient(135deg, #1B0D38, #0A0118);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    rgba(236, 72, 153, 0.5) 0 3px,
    transparent 3px 8px);
  mask: radial-gradient(circle at 50% 50%, #000 25%, transparent 65%);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 25%, transparent 65%);
  opacity: .4;
  animation: pulse 4s ease-in-out infinite;
}
.hero-visual .hero-icon {
  width: 60%;
  height: 60%;
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.05); }
}

/* Equalizer animation */
.eq {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 60%;
}
.eq span {
  width: 10px;
  background: linear-gradient(to top, #EC4899, #A855F7);
  border-radius: 4px;
  animation: bounce 1.2s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.eq span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.eq span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.eq span:nth-child(5) { height: 85%; animation-delay: 0.4s; }
.eq span:nth-child(6) { height: 45%; animation-delay: 0.5s; }
.eq span:nth-child(7) { height: 75%; animation-delay: 0.6s; }
.eq span:nth-child(8) { height: 55%; animation-delay: 0.7s; }
.eq span:nth-child(9) { height: 90%; animation-delay: 0.8s; }
.eq span:nth-child(10) { height: 50%; animation-delay: 0.9s; }

@keyframes bounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ===== Page Hero (interior pages) ===== */
.page-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: .8rem;
  color: var(--pink-light);
  margin-bottom: 1rem;
  font-weight: 600;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== Sections ===== */
section { padding: 4rem 0; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: .8rem;
  color: var(--pink-light);
  margin-bottom: .8rem;
  font-weight: 600;
}

/* ===== Cards / Feature Grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-grad-soft);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(236, 72, 153, 0.4); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

.card h3 { color: #fff; }
.card p { color: var(--text-muted); margin-bottom: 0; font-size: .96rem; }

/* ===== Two-column split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2D0A4E, #4C1D95);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(236, 72, 153, 0.45), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.45), transparent 50%);
}

/* ===== Tag/list ===== */
.checklist {
  list-style: none;
  display: grid;
  gap: .6rem;
  margin: 1.25rem 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text);
  font-size: .98rem;
}
.checklist li::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-grad);
  background-size: cover;
  display: inline-block;
  margin-top: 2px;
  position: relative;
}
.checklist li {
  position: relative;
  padding-left: 32px;
}
.checklist li::before {
  position: absolute;
  left: 0; top: 4px;
}
.checklist li::after {
  content: '✓';
  position: absolute;
  left: 5px; top: 4px;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  z-index: 1;
}

/* ===== Premium spotlight ===== */
.spotlight {
  background: linear-gradient(135deg, #14082B 0%, #2D0A4E 100%);
  border: 1px solid rgba(236, 72, 153, 0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35), transparent 60%);
  pointer-events: none;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius);
  background: rgba(27, 13, 56, 0.6);
}
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.plan {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
}
.plan.featured {
  border-color: rgba(236, 72, 153, 0.5);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.08), var(--bg-card));
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grad);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 999px;
}
.plan h3 { margin-bottom: .5rem; }
.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin: 1rem 0 1.5rem;
}
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan ul { list-style: none; margin-bottom: 2rem; }
.plan li { color: var(--text-muted); padding: .5rem 0; font-size: .95rem; border-bottom: 1px solid rgba(168, 85, 247, 0.1); }
.plan li:last-child { border-bottom: none; }
.plan .btn { width: 100%; justify-content: center; }

/* ===== Forms ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid.full { grid-template-columns: 1fr; }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  background: rgba(27, 13, 56, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 10px;
  padding: .85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .98rem;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(27, 13, 56, 0.95);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ===== Contact info ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-info-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-card h4 { color: #fff; margin-bottom: .25rem; font-size: 1.05rem; }
.contact-info-card p { margin-bottom: 0; font-size: .92rem; }

/* ===== FAQ ===== */
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius);
  margin-bottom: .8rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--pink);
  transition: transform .2s ease;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { color: var(--text-muted); margin-bottom: 0; }

/* ===== Marquee genres ===== */
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.genre-tag {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  transition: background .2s ease, transform .2s ease;
}
.genre-tag:hover {
  background: var(--accent-grad);
  transform: translateY(-2px);
  border-color: transparent;
}

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--accent-grad);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(236, 72, 153, 0.35);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1), transparent 50%);
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2rem; }
.cta-banner .btn {
  background: #fff;
  color: #2D0A4E;
}
.cta-banner .btn:hover { background: rgba(255,255,255,0.92); }

/* ===== Footer ===== */
.site-footer {
  background: #06010F;
  border-top: 1px solid rgba(168, 85, 247, 0.18);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: .94rem;
}
.footer-col a:hover { color: var(--pink-light); }
.footer-brand p {
  margin-top: 1rem;
  font-size: .9rem;
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(168, 85, 247, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.social {
  display: flex;
  gap: .65rem;
}
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.12);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background .2s ease, transform .2s ease;
}
.social a:hover { background: var(--accent-grad); color: #fff; transform: translateY(-2px); }

/* ===== Locations ===== */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.location {
  text-align: center;
  padding: 1.25rem .8rem;
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.location:hover { border-color: var(--pink); transform: translateY(-3px); }
.location-flag {
  font-size: 1.8rem;
  margin-bottom: .35rem;
}
.location-name {
  color: #fff;
  font-weight: 600;
  font-size: .98rem;
}
.location-role {
  color: var(--text-muted);
  font-size: .8rem;
}

/* ===== Payment / Checkout ===== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.checkout-card {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.checkout-section {
  margin-bottom: 2rem;
}
.checkout-section:last-child { margin-bottom: 0; }

.checkout-section-title {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}
.checkout-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .75rem;
}

.plan-option {
  position: relative;
  display: block;
  cursor: pointer;
}
.plan-option input { position: absolute; opacity: 0; pointer-events: none; }
.plan-option-card {
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  background: rgba(20, 8, 43, 0.6);
  transition: all .2s ease;
  text-align: left;
}
.plan-option input:checked + .plan-option-card {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.12));
  box-shadow: 0 8px 28px rgba(236, 72, 153, 0.25);
}
.plan-option-name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: .15rem;
}
.plan-option-price {
  color: var(--pink-light);
  font-size: .9rem;
  font-weight: 600;
}
.plan-option-desc {
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: .35rem;
}

.cycle-toggle {
  display: inline-flex;
  background: rgba(20, 8, 43, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1.5rem;
}
.cycle-toggle label {
  position: relative;
  cursor: pointer;
}
.cycle-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cycle-toggle span {
  display: inline-block;
  padding: .55rem 1.25rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s ease;
}
.cycle-toggle input:checked + span {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.35);
}

.card-input-wrap {
  position: relative;
}
.card-brands {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: .35rem;
  pointer-events: none;
}
.card-brand {
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
  display: grid;
  place-items: center;
  font-family: 'Inter', sans-serif;
}

.payment-method-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.payment-tab {
  position: relative;
  cursor: pointer;
}
.payment-tab input { position: absolute; opacity: 0; pointer-events: none; }
.payment-tab-card {
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  border-radius: 12px;
  padding: .9rem .8rem;
  background: rgba(20, 8, 43, 0.6);
  text-align: center;
  transition: all .2s ease;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.payment-tab input:checked + .payment-tab-card {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.12));
  color: #fff;
}
.payment-tab-card .icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: .25rem;
}

/* Order summary */
.summary-card {
  background: linear-gradient(180deg, rgba(45, 10, 78, 0.6), rgba(20, 8, 43, 0.85));
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.summary-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  color: var(--text-muted);
  font-size: .95rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { color: #fff; font-weight: 600; }

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: .5rem;
  border-top: 2px solid rgba(236, 72, 153, 0.4);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.summary-total .total-grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-row {
  display: flex;
  gap: .5rem;
  margin: 1rem 0;
}
.promo-row input {
  flex: 1;
  background: rgba(20, 8, 43, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 10px;
  padding: .7rem .9rem;
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
}
.promo-row input:focus { outline: none; border-color: var(--pink); }
.promo-row button {
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s ease;
}
.promo-row button:hover { background: rgba(168, 85, 247, 0.32); }

.trust-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem;
  background: rgba(20, 8, 43, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 10px;
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: .85rem;
}
.trust-row .icon { color: var(--pink-light); font-size: 1.1rem; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.trust-badge {
  font-size: .75rem;
  padding: .4rem .8rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 500;
}

.legal-fineprint {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.55;
}
.legal-fineprint a { color: var(--pink-light); }

.success-message {
  display: none;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border: 1px solid rgba(192, 132, 252, 0.5);
  border-radius: 12px;
  color: #fff;
  margin-top: 1.25rem;
}
.success-message.show { display: block; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .checkout-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split.reverse > :first-child { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 2rem; }
  .summary-card { position: static; }
  .checkout-card { padding: 1.75rem; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 1, 24, 0.97);
    backdrop-filter: blur(14px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    gap: 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 3rem 0; }
  .spotlight { padding: 2rem 1.5rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  section { padding: 2.5rem 0; }
}
