@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Obsidian Luxury */
  --noir: #07020d;
  --noir-2: #0f0518;
  --noir-3: #180926;
  
  --rose: #ff2b70;
  --rose-bright: #ff4785;
  --rose-glow: rgba(255, 43, 112, 0.45);
  
  --gold: #e6b865;
  --gold-light: #f3d489;
  --gold-glow: rgba(230, 184, 101, 0.35);

  --violet: #9d4edd;
  --violet-glow: rgba(157, 78, 221, 0.35);

  --text-1: #ffffff;
  --text-2: #f0e6ef;
  --text-3: #bfaabf;
  --text-4: #7a637a;

  /* Fonts */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Border Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 9999px;

  /* Transition speeds */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  background: var(--noir);
  color: var(--text-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: var(--noir);
}

/* ── ATMOSPHERIC BACKGROUND ── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--noir);
  overflow: hidden;
  pointer-events: none;
}

.mesh-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 20% 30%, rgba(255, 43, 112, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 55% 65% at 80% 70%, rgba(157, 78, 221, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 50% 15%, rgba(230, 184, 101, 0.12) 0%, transparent 65%);
  animation: meshShift 14s ease-in-out infinite alternate;
}

.mesh-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

@keyframes meshShift {
  0%   { opacity: 0.9; transform: scale(1) rotate(0deg); }
  50%  { opacity: 1; transform: scale(1.05) rotate(1.5deg); }
  100% { opacity: 0.9; transform: scale(1) rotate(0deg); }
}

/* ── LIGHTING ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 16s ease-in-out infinite alternate;
}

.orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(255, 43, 112, 0.2) 0%, transparent 70%);
  top: -120px; left: -100px;
}

.orb-2 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.18) 0%, transparent 70%);
  bottom: -160px; right: -120px;
  animation-delay: -6s;
}

.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(230, 184, 101, 0.14) 0%, transparent 70%);
  top: 45%; left: 45%;
  animation-delay: -3s;
}

/* ── FAST CIRCLE VIBRATION BACKGROUND (10 CONCENTRIC RIPPLE WAVES) ── */
.vibe-circle {
  position: fixed;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 43, 112, 0.28);
  box-shadow: 0 0 55px rgba(255, 43, 112, 0.2), inset 0 0 55px rgba(255, 43, 112, 0.2);
  pointer-events: none;
  z-index: 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: circleVibrate 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.vibe-1 {
  width: 160px; height: 160px;
  border-color: rgba(255, 43, 112, 0.45);
  box-shadow: 0 0 30px rgba(255, 43, 112, 0.35), inset 0 0 30px rgba(255, 43, 112, 0.35);
  animation-duration: 1.2s;
}

.vibe-2 {
  width: 320px; height: 320px;
  border-color: rgba(255, 71, 133, 0.38);
  box-shadow: 0 0 45px rgba(255, 71, 133, 0.28), inset 0 0 45px rgba(255, 71, 133, 0.28);
  animation-duration: 1.6s;
  animation-delay: -0.3s;
}

.vibe-3 {
  width: 500px; height: 500px;
  border-color: rgba(157, 78, 221, 0.32);
  box-shadow: 0 0 60px rgba(157, 78, 221, 0.22), inset 0 0 60px rgba(157, 78, 221, 0.22);
  animation-duration: 2.0s;
  animation-delay: -0.6s;
}

.vibe-4 {
  width: 700px; height: 700px;
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 0 75px rgba(139, 92, 246, 0.18), inset 0 0 75px rgba(139, 92, 246, 0.18);
  animation-duration: 2.4s;
  animation-delay: -0.9s;
}

.vibe-5 {
  width: 920px; height: 920px;
  border-color: rgba(230, 184, 101, 0.25);
  box-shadow: 0 0 90px rgba(230, 184, 101, 0.15), inset 0 0 90px rgba(230, 184, 101, 0.15);
  animation-duration: 2.8s;
  animation-delay: -1.2s;
}

.vibe-6 {
  width: 1150px; height: 1150px;
  border-color: rgba(244, 63, 94, 0.22);
  box-shadow: 0 0 105px rgba(244, 63, 94, 0.12), inset 0 0 105px rgba(244, 63, 94, 0.12);
  animation-duration: 3.2s;
  animation-delay: -1.5s;
}

.vibe-7 {
  width: 1400px; height: 1400px;
  border-color: rgba(236, 72, 153, 0.18);
  box-shadow: 0 0 120px rgba(236, 72, 153, 0.1), inset 0 0 120px rgba(236, 72, 153, 0.1);
  animation-duration: 3.6s;
  animation-delay: -1.8s;
}

.vibe-8 {
  width: 1680px; height: 1680px;
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 0 135px rgba(124, 58, 237, 0.08), inset 0 0 135px rgba(124, 58, 237, 0.08);
  animation-duration: 4.0s;
  animation-delay: -2.1s;
}

.vibe-9 {
  width: 1980px; height: 1980px;
  border-color: rgba(245, 158, 11, 0.12);
  box-shadow: 0 0 150px rgba(245, 158, 11, 0.06), inset 0 0 150px rgba(245, 158, 11, 0.06);
  animation-duration: 4.4s;
  animation-delay: -2.4s;
}

.vibe-10 {
  width: 2300px; height: 2300px;
  border-color: rgba(225, 29, 72, 0.1);
  box-shadow: 0 0 165px rgba(225, 29, 72, 0.04), inset 0 0 165px rgba(225, 29, 72, 0.04);
  animation-duration: 4.8s;
  animation-delay: -2.7s;
}

@keyframes circleVibrate {
  0% {
    transform: translate(-50%, -50%) scale(0.85) rotate(0deg);
    opacity: 0.18;
    filter: blur(1px);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    opacity: 0.95;
    filter: blur(0px);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.85) rotate(360deg);
    opacity: 0.18;
    filter: blur(1px);
  }
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ── PARTICLES ── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: rise linear infinite;
  opacity: 0;
}

@keyframes rise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* ── SITE WRAPPER ── */
.site-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  height: 76px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(7, 2, 13, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 43, 112, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 43, 112, 0.5));
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(120deg, #ffffff 0%, var(--rose-bright) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 43, 112, 0.3));
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-2);
  background: rgba(255, 43, 112, 0.1);
  border: 1px solid rgba(255, 43, 112, 0.3);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  backdrop-filter: blur(10px);
}

.nav-status-text strong {
  color: var(--rose-bright);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-bright);
  box-shadow: 0 0 10px var(--rose-bright);
  animation: pulseBlink 1.4s infinite alternate;
}

.pulse-dot.green {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

@keyframes pulseBlink {
  from { opacity: 0.4; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1.3); }
}

/* ── MAIN HERO LAYOUT ── */
.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 104px clamp(16px, 4vw, 56px) 48px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: 100%;
}

/* ==================== IMAGE SESSION (PURE IMAGE DISPLAY WITH LIGHTING EFFECT) ==================== */
.image-session {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.image-showcase-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Image Lighting Halo Spotlight */
.image-lighting-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 43, 112, 0.4) 0%, rgba(157, 78, 221, 0.28) 45%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
  animation: imageLightingPulse 3.8s ease-in-out infinite alternate;
}

@keyframes imageLightingPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.55;
    filter: blur(50px);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.95;
    filter: blur(35px);
    background: radial-gradient(circle, rgba(255, 71, 133, 0.5) 0%, rgba(230, 184, 101, 0.35) 45%, transparent 75%);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.55;
    filter: blur(50px);
  }
}

/* Direct Free Image Styling with Fading & Glow Effect */
.featured-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 35px rgba(255, 43, 112, 0.35));
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-image.fade-out {
  opacity: 0;
  filter: blur(12px) brightness(1.5) drop-shadow(0 0 60px rgba(255, 43, 112, 0.85));
  transform: scale(0.94);
}

.avatar-icon {
  font-size: 4rem;
  filter: drop-shadow(0 0 16px rgba(255, 43, 112, 0.6));
  animation: pulseBlink 2s infinite alternate;
}

.fallback-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 2, 13, 0.1) 45%, rgba(7, 2, 13, 0.88) 100%);
  pointer-events: none;
  border-radius: var(--r-lg);
}

/* Card Top Badge */
.card-top-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 2, 13, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff;
  backdrop-filter: blur(12px);
  z-index: 5;
}

/* Card Bottom Metadata Info */
.card-profile-info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 24px 20px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-header-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.verified-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--rose-bright);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 0 10px var(--rose-glow);
}

.profile-meta-detail {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-2);
  opacity: 0.95;
}

/* Image Navigation Controls */
.image-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 4px;
}

.stack-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 43, 112, 0.35);
  background: rgba(18, 6, 28, 0.5);
  color: var(--text-1);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.stack-nav-btn:hover {
  background: var(--rose);
  border-color: var(--rose-bright);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--rose-glow);
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.gallery-dots .dot.active {
  background: var(--rose-bright);
  width: 28px;
  border-radius: var(--r-pill);
  box-shadow: 0 0 12px var(--rose-bright);
}

.image-hint {
  font-size: 0.78rem;
  color: var(--text-4);
  text-align: center;
}

/* ==================== QUESTION SESSION (NO ENCLOSING CARD BACKGROUND) ==================== */
.question-session {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.quiz-card-panel {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
}

.quiz-card-panel::before {
  display: none;
}

/* Progress Bar */
.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-step-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-bright);
  background: rgba(255, 43, 112, 0.12);
  border: 1px solid rgba(255, 43, 112, 0.32);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 16px rgba(255, 43, 112, 0.18);
}

.progress-percentage {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.progress-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-bright) 0%, var(--violet) 50%, var(--gold) 100%);
  border-radius: var(--r-pill);
  transition: width 0.45s var(--ease-out);
  position: relative;
  box-shadow: 0 0 16px var(--rose-glow);
}

.progress-glow-head {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px #fff, 0 0 20px var(--rose-bright);
}

/* Quiz Steps Container */
.quiz-content-wrapper {
  position: relative;
}

.quiz-card {
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: slideInCard 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.quiz-card.active {
  display: flex;
}

@keyframes slideInCard {
  from { opacity: 0; transform: translateY(18px) scale(0.97); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.q-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.q-number-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-bright);
}

.q-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-1);
}

.q-subtitle {
  font-size: 0.88rem;
  color: var(--text-3);
}

/* Glassmorphic Neon Option Pill Buttons */
.options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opt-button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.opt-button:hover {
  border-color: rgba(255, 43, 112, 0.7);
  background: rgba(255, 43, 112, 0.12);
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 25px rgba(255, 43, 112, 0.3), inset 0 0 15px rgba(255, 43, 112, 0.1);
}

.opt-button.active {
  background: linear-gradient(135deg, rgba(255, 43, 112, 0.28) 0%, rgba(157, 78, 221, 0.28) 100%);
  border-color: var(--rose-bright);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 43, 112, 0.45), inset 0 0 20px rgba(255, 43, 112, 0.2);
  transform: translateY(-1px);
}

.opt-button.active::after {
  content: '✓';
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--rose-bright);
  background: rgba(255, 255, 255, 0.95);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  box-shadow: 0 0 10px rgba(255, 43, 112, 0.8);
  flex-shrink: 0;
}

.opt-emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 43, 112, 0.4));
}

.opt-text {
  flex: 1;
}

.opt-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.opt-button.active .opt-radio {
  border-color: var(--rose-bright);
  background: var(--rose-bright);
  box-shadow: 0 0 14px var(--rose-bright), 0 0 24px rgba(255, 43, 112, 0.6);
}

.opt-button.active .opt-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #fff;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cb-card {
  cursor: pointer;
}

.cb-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  transition: all 0.25s ease;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
}

.cb-card:hover .cb-inner {
  border-color: rgba(255, 43, 112, 0.6);
  color: #fff;
  transform: translateX(2px);
}

.cb-card input:checked + .cb-inner {
  background: linear-gradient(135deg, rgba(255, 43, 112, 0.25) 0%, rgba(157, 78, 221, 0.25) 100%);
  border-color: var(--rose-bright);
  color: #fff;
}

.cb-check-mark {
  font-size: 0.85rem;
  font-weight: 900;
  color: transparent;
  transition: all 0.2s ease;
}

.cb-card input:checked + .cb-inner .cb-check-mark {
  color: var(--gold-light);
  text-shadow: 0 0 8px var(--gold);
}

/* Card Action Bar */
.card-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 6px;
}

.card-action-bar.centered {
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px clamp(24px, 3vw, 36px);
  border-radius: var(--r-pill);
  border: none;
  background: linear-gradient(135deg, var(--rose) 0%, #c41355 50%, var(--violet) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(255, 43, 112, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 35px rgba(255, 43, 112, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-unlock {
  width: 100%;
  font-size: 1.05rem;
  padding: 16px 28px;
  letter-spacing: 1px;
}

/* Final Step Card Details */
.final-step-card {
  align-items: center;
  text-align: center;
}

.final-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 184, 101, 0.15);
  border: 1px solid rgba(230, 184, 101, 0.4);
  border-radius: var(--r-pill);
  padding: 6px 16px;
}

.sparkle-icon { font-size: 1rem; }
.final-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.final-title {
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
}

.final-sub strong {
  color: var(--rose-bright);
}

.match-perks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 6px 0;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-2);
  text-align: left;
}

.perk-icon {
  font-size: 1.1rem;
}

/* ── SUBPAGES ── */
.sub-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 76px;
}

.sub-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px clamp(20px, 4vw, 48px) 60px;
}

.page-card {
  width: 100%;
  max-width: 820px;
  background: linear-gradient(145deg, rgba(24, 9, 38, 0.94) 0%, rgba(12, 4, 20, 0.97) 100%);
  border: 1px solid rgba(255, 43, 112, 0.28);
  border-radius: var(--r-xl);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
}

.page-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rose-bright), var(--gold-light), transparent);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
}

.page-sub {
  font-size: 0.98rem;
  color: var(--text-3);
  line-height: 1.65;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 6px;
}

.policy-block p,
.policy-block li {
  font-size: 0.94rem;
  color: var(--text-2);
  line-height: 1.7;
}

.policy-block ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.3px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.94rem;
  outline: none;
  transition: all 0.25s ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--rose-bright);
  background: rgba(255, 43, 112, 0.08);
  box-shadow: 0 0 16px var(--rose-glow);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-footer {
  position: relative;
  z-index: 10;
  padding: 24px clamp(20px, 4vw, 64px);
  background: rgba(7, 2, 13, 0.85);
  border-top: 1px solid rgba(255, 43, 112, 0.15);
  backdrop-filter: blur(16px);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--rose-bright);
}

.footer-dot {
  font-size: 0.7rem;
  color: var(--text-4);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-4);
}

/* ── RESPONSIVE DESIGN (DESKTOP, LAPTOP, TABLET & MOBILE) ── */

/* 1. Standard Laptops (1024px – 1279px) */
@media (max-width: 1279px) {
  .hero-container {
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .hero-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 32px;
  }

  .featured-image {
    max-height: 65vh;
  }

  .q-title {
    font-size: 1.35rem;
  }

  .opt-button {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* 2. Tablet Landscape (900px – 1023px) */
@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: minmax(260px, 1fr) minmax(290px, 1fr);
    gap: 24px;
  }

  .featured-image {
    max-height: 58vh;
  }

  .opt-button {
    padding: 11px 14px;
    font-size: 0.88rem;
    gap: 10px;
  }

  .opt-emoji {
    font-size: 1.1rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

/* 3. Tablet Portrait (641px – 899px) */
@media (max-width: 899px) {
  .hero-container {
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .image-session {
    width: 100%;
    justify-content: center;
  }

  .featured-image {
    max-height: 48vh;
    max-width: 380px;
    margin: 0 auto;
  }

  .question-session {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* 4. Mobile Devices (640px and below) */
@media (max-width: 640px) {
  .navbar {
    height: 64px;
    padding: 0 16px;
  }

  .nav-brand-text {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .hero-container {
    padding-top: 80px;
    padding-bottom: 28px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-grid {
    gap: 24px;
  }

  .featured-image {
    max-height: 40vh;
    max-width: 300px;
  }

  .q-title {
    font-size: 1.2rem;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .opt-button {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .card-action-bar {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
