/* ==========================================================================
   SINFUL NIGHT - ROYAL CHAMPAGNE GOLD & IMPERIAL VELVET BURGUNDY THEME
   ========================================================================== */

:root {
  /* Imperial Velvet Burgundy Palette */
  --bg-deep: #0e0208;
  --bg-velvet: #1b0410;
  --bg-card: rgba(27, 4, 16, 0.85);
  --surface-pill: rgba(255, 255, 255, 0.04);
  --surface-pill-hover: rgba(223, 177, 91, 0.15);

  /* Brushed Champagne Gold & Imperial Burgundy Accents */
  --gold-primary: #dfb15b;
  --gold-glow: #fef08a;
  --gold-light: #fff8d6;
  --gold-dark: #b48325;
  
  --burgundy-primary: #b91c47;
  --burgundy-dark: #7c1d32;
  --burgundy-deep: #4a0518;

  /* Typography */
  --font-serif: 'Cinzel', 'Playfair Display', serif, Georgia;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --text-main: #fff8f0;
  --text-muted: #fcd34d;
  --text-subtle: #b48325;

  /* Orbit Radius Variable */
  --orbit-radius: clamp(115px, 11.5vw, 142px);

  /* Radii & Shadows */
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 9999px;

  --shadow-velvet: 0 30px 90px rgba(0, 0, 0, 0.92), inset 0 1px 0 rgba(254, 240, 138, 0.2);
  --shadow-gold: 0 12px 35px rgba(223, 177, 91, 0.45);
  --border-gold-rose: 1px solid rgba(223, 177, 91, 0.35);
  --border-active: 1px solid rgba(254, 240, 138, 0.85);
}

/* Reset & Global Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #0e0208;
  background-image: 
    radial-gradient(circle at 20% 25%, rgba(223, 177, 91, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(185, 28, 71, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(74, 5, 24, 0.38) 0%, transparent 70%),
    linear-gradient(180deg, #0e0208 0%, #1b0410 50%, #0e0208 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Remove overlays for pure background image clarity */
body::before {
  display: none !important;
}

body::after {
  display: none !important;
}

.app-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   HEADER NAVBAR
   ========================================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 3vw, 44px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(223, 177, 91, 0.2);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
}

/* Transparent Seamless Header Logo Wrapper (No White Box!) */
.nav-brand-left {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 4px 8px;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s ease;
  z-index: 2;
}

.nav-brand-left:hover {
  background: transparent !important;
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 20px rgba(223, 177, 91, 0.65));
}

.brand-logo-left {
  height: clamp(44px, 4.2vw, 68px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(223, 177, 91, 0.4));
}

.nav-title-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.brand-name-centered {
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.8vw, 1.62rem);
  font-weight: 900;
  letter-spacing: clamp(3px, 0.4vw, 6px);
  background: linear-gradient(135deg, #ffffff 0%, #fff5c0 30%, #dfb15b 70%, #b48325 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-shadow: 0 0 35px rgba(223, 177, 91, 0.45);
}

.header-action {
  display: flex;
  align-items: center;
  z-index: 2;
}

.private-badge {
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 700;
  color: #fff8d6;
  background: rgba(180, 131, 37, 0.15);
  border: 1px solid rgba(223, 177, 91, 0.4);
  border-radius: var(--radius-pill);
  padding: 8px clamp(12px, 1.5vw, 20px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-glow);
  box-shadow: 0 0 12px var(--gold-glow);
  animation: pulseGoldDot 1.5s infinite alternate;
}

@keyframes pulseGoldDot {
  0% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.35); }
}

/* ==========================================================================
   PAGE LAYOUT: COMPACT LEFT QUIZ & PROMINENT RIGHT DUAL ROTATING CIRCLES
   ========================================================================== */
.quiz-page-layout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px clamp(18px, 4vw, 48px) 44px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: clamp(28px, 5vw, 68px);
  position: relative;
}

/* Reduced Width Compact Left Interactive Question Session */
.centered-quiz-container {
  flex: 0 0 420px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Prominent Right Side: Two 360° Orbiting Circle Cards Stage */
.right-circles-col {
  flex: 1 1 540px;
  max-width: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 560px;
  padding: 10px 0;
}

.circles-orbit-stage {
  position: relative;
  width: clamp(420px, 40vw, 540px);
  height: clamp(420px, 40vw, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glowing Central Touch Point where the orbital paths cross */
.circles-touch-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fef08a;
  box-shadow: 
    0 0 15px #fef08a,
    0 0 30px #ff2a5f,
    0 0 55px #f59e0b;
  z-index: 25;
  animation: touchPulse 1.6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes touchPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
    box-shadow: 0 0 25px #fef08a, 0 0 50px #ff2a5f, 0 0 75px #f59e0b;
  }
}

.circle-card-item {
  position: absolute;
  width: clamp(240px, 22vw, 290px);
  height: clamp(240px, 22vw, 290px);
  border-radius: 50%;
  padding: 8px;
  background: rgba(27, 4, 16, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 2px solid rgba(223, 177, 91, 0.7);
  box-shadow: 
    0 25px 75px rgba(0, 0, 0, 0.95),
    0 0 45px rgba(223, 177, 91, 0.45),
    0 0 90px rgba(185, 28, 71, 0.35),
    inset 0 0 25px rgba(254, 240, 138, 0.25);
  filter: drop-shadow(0 6px 25px rgba(223, 177, 91, 0.55)) drop-shadow(0 0 25px rgba(254, 240, 138, 0.4));
  transition: border-color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  z-index: 10;
}

.circle-card-item::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(254, 240, 138, 0.8), rgba(223, 177, 91, 0.6), rgba(185, 28, 71, 0.5), rgba(254, 240, 138, 0.8));
  z-index: -1;
  opacity: 0.85;
  filter: blur(6px);
  animation: glowRingSpin 10s linear infinite;
}

@keyframes glowRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 360-degree Orbital Motion: Bottom -> Right 90° -> Top 180° -> Left 270° -> Bottom 360° */
.circle-card-item.top-circle {
  animation: orbitTopCircle 20s linear infinite;
}

.circle-card-item.bottom-circle {
  animation: orbitBottomCircle 20s linear infinite;
}

/* Hover: Pause orbit so user can hold/inspect the card stable */
.circles-orbit-stage:hover .circle-card-item {
  animation-play-state: paused;
}

.circle-card-item:hover {
  z-index: 30;
  border-color: rgba(254, 240, 138, 0.95);
  box-shadow: 
    0 35px 95px rgba(0, 0, 0, 0.98),
    0 0 75px rgba(223, 177, 91, 0.75),
    0 0 120px rgba(185, 28, 71, 0.55),
    inset 0 0 35px rgba(254, 240, 138, 0.4);
  filter: drop-shadow(0 8px 35px rgba(223, 177, 91, 0.75)) drop-shadow(0 0 35px rgba(254, 240, 138, 0.6));
}

/* Orbit Path Keyframes for Circle 1 */
@keyframes orbitTopCircle {
  0% {
    transform: rotate(0deg) translateY(var(--orbit-radius)) rotate(0deg);
  }
  25% {
    transform: rotate(90deg) translateY(var(--orbit-radius)) rotate(-90deg);
  }
  50% {
    transform: rotate(180deg) translateY(var(--orbit-radius)) rotate(-180deg);
  }
  75% {
    transform: rotate(270deg) translateY(var(--orbit-radius)) rotate(-270deg);
  }
  100% {
    transform: rotate(360deg) translateY(var(--orbit-radius)) rotate(-360deg);
  }
}

/* Orbit Path Keyframes for Circle 2 */
@keyframes orbitBottomCircle {
  0% {
    transform: rotate(180deg) translateY(var(--orbit-radius)) rotate(-180deg);
  }
  25% {
    transform: rotate(270deg) translateY(var(--orbit-radius)) rotate(-270deg);
  }
  50% {
    transform: rotate(360deg) translateY(var(--orbit-radius)) rotate(-360deg);
  }
  75% {
    transform: rotate(450deg) translateY(var(--orbit-radius)) rotate(-450deg);
  }
  100% {
    transform: rotate(540deg) translateY(var(--orbit-radius)) rotate(-540deg);
  }
}

.circle-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #0e0208;
  border: 2px solid rgba(254, 240, 138, 0.5);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: drop-shadow(0 4px 15px rgba(223, 177, 91, 0.3));
  transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Golden Progress Bar */
.quiz-progress-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.progress-step-pill {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff8d6;
  background: rgba(223, 177, 91, 0.16);
  border: 1px solid rgba(223, 177, 91, 0.45);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.progress-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(223, 177, 91, 0.25);
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 1px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c1d32 0%, #b91c47 40%, #dfb15b 80%, #fef08a 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 18px rgba(223, 177, 91, 0.7);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Quiz Card Wrapper (No Background Container Box) */
.quiz-card-wrapper {
  width: 100%;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 0;
  position: relative;
}

.quiz-card-wrapper::before {
  display: none !important;
}

.quiz-card {
  display: none;
  width: 100%;
  animation: velvetSlideIn 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.quiz-card.active {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@keyframes velvetSlideIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}

.quiz-header .question-badge {
  display: none !important;
}

.quiz-question-title {
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.8vw, 1.38rem);
  font-weight: 800;
  line-height: 1.35;
  color: #fff8f0;
  letter-spacing: -0.2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85), 0 0 30px rgba(223, 177, 91, 0.3);
  margin-top: 2px;
}

/* Option Pill Buttons */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

.option-pill {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(27, 4, 16, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(223, 177, 91, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff8f0;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.option-pill:hover {
  background: rgba(223, 177, 91, 0.14);
  border-color: rgba(254, 240, 138, 0.65);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 22px rgba(223, 177, 91, 0.25);
}

.option-pill.active {
  background: rgba(185, 28, 71, 0.32);
  border: var(--border-active);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(223, 177, 91, 0.4), inset 0 0 20px rgba(254, 240, 138, 0.18);
}

.pill-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #b48325;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.option-pill.active .pill-dot {
  border-color: var(--gold-glow);
  background: var(--gold-glow);
  box-shadow: 0 0 12px var(--gold-glow);
}

.option-pill.active .pill-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e0208;
}

.pill-label {
  flex: 1;
}

/* Checkbox Grid (Step 2 Age Range) */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.option-checkbox-pill {
  cursor: pointer;
  width: 100%;
}

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

.pill-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: rgba(27, 4, 16, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(223, 177, 91, 0.3);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.option-checkbox-pill:hover .pill-box {
  background: rgba(223, 177, 91, 0.14);
  border-color: rgba(254, 240, 138, 0.6);
  transform: translateY(-2px);
}

.option-checkbox-pill input:checked + .pill-box {
  background: rgba(185, 28, 71, 0.32);
  border: var(--border-active);
  box-shadow: 0 0 30px rgba(223, 177, 91, 0.4);
}

.pill-text {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff8f0;
}

.option-checkbox-pill input:checked + .pill-box .pill-text {
  color: #ffffff;
}

.check-mark {
  font-size: 0.95rem;
  font-weight: 900;
  color: transparent;
  transition: all 0.25s ease;
}

.option-checkbox-pill input:checked + .pill-box .check-mark {
  color: var(--gold-glow);
  text-shadow: 0 0 12px var(--gold-glow);
}

/* Step 6 Final Ready Screen */
.final-ready-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(185, 28, 71, 0.18);
  border: 1px solid rgba(223, 177, 91, 0.45);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  text-align: left;
}

.ready-check-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef08a 0%, #dfb15b 50%, #b48325 100%);
  color: #0e0208;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(223, 177, 91, 0.65);
  flex-shrink: 0;
}

.ready-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #fff8f0;
}

.ready-text strong {
  color: #ffffff;
}

/* Action Bar & Buttons */
.quiz-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  width: 100%;
}

.quiz-action-bar.flex-center {
  justify-content: center;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(14px, 1.5vw, 18px) clamp(28px, 2.5vw, 40px);
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, #fff5c0 0%, #dfb15b 45%, #b48325 80%, #7c1d32 100%);
  color: #0e0208 !important;
  font-family: var(--font-serif);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(30deg);
  transition: transform 0.65s ease;
}

.btn-primary-cta:hover::after {
  transform: rotate(30deg) translate(50%, 50%);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(223, 177, 91, 0.65);
  color: #0e0208 !important;
}

.btn-access-catalog {
  background: linear-gradient(135deg, #ffffff 0%, #fff5c0 30%, #dfb15b 65%, #b48325 100%) !important;
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  padding: clamp(16px, 1.8vw, 20px) clamp(30px, 3vw, 46px);
}

.btn-secondary-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 1.2vw, 15px) clamp(18px, 1.8vw, 26px);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(223, 177, 91, 0.35);
  color: #fff8d6;
  font-family: var(--font-sans);
  font-size: clamp(0.86rem, 1.1vw, 0.94rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-back:hover {
  background: rgba(223, 177, 91, 0.16);
  border-color: rgba(254, 240, 138, 0.7);
  color: #ffffff;
}

/* Bottom Logo Area */
.quiz-bottom-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  width: 100%;
}

.quiz-bottom-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 10px 20px;
  border: none;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.quiz-bottom-logo-card:hover {
  transform: scale(1.045);
  border-color: rgba(254, 240, 138, 0.5);
}

.quiz-bottom-logo-img {
  height: clamp(110px, 10vw, 160px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 25px rgba(223, 177, 91, 0.45)) drop-shadow(0 0 20px rgba(254, 240, 138, 0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* ==========================================================================
   SECONDARY PAGES STYLING (Contact, Privacy, Terms)
   ========================================================================== */
.page-card {
  background: rgba(27, 4, 16, 0.85);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(223, 177, 91, 0.35);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 820px;
  margin: 40px auto 64px;
  box-shadow: var(--shadow-velvet);
  text-align: left;
  width: 100%;
  color: #fff8f0;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  text-shadow: 0 0 25px rgba(223, 177, 91, 0.35);
}

.page-subtitle {
  font-size: 1rem;
  color: var(--gold-glow);
  font-weight: 700;
  margin-bottom: 30px;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff5c0;
  margin-bottom: 10px;
}

.policy-section p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #fff8f0;
  margin-bottom: 14px;
}

.policy-section ul {
  margin-left: 22px;
  margin-bottom: 14px;
}

.policy-section li {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #fff8f0;
  margin-bottom: 8px;
}

.btn-home-link {
  display: inline-flex;
  margin-top: 24px;
}

/* Form inputs */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff8f0;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(223, 177, 91, 0.25);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.96rem;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold-glow);
  background: rgba(223, 177, 91, 0.12);
  box-shadow: 0 0 25px rgba(223, 177, 91, 0.35);
}

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

.btn-submit {
  margin-top: 12px;
  width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.app-footer {
  margin-top: auto;
  padding: 36px 24px;
  text-align: center;
  background: transparent;
  backdrop-filter: none;
  border-top: 1px solid rgba(223, 177, 91, 0.2);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fcd34d;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px var(--gold-glow);
}

.footer-links .sep {
  color: #b48325;
}

.copyright {
  color: #dfb15b;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.85;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (LEFT QUIZ SESSION & RIGHT DUAL CIRCLE CARDS)
   ========================================================================== */

/* Large Laptops & Workstations (1440px - 1600px) */
@media (max-width: 1600px) {
  :root {
    --orbit-radius: 125px;
  }
  .quiz-page-layout { padding: 20px 24px 40px; gap: 40px; max-width: 1280px; }
  .centered-quiz-container { flex: 0 0 410px; max-width: 450px; }
  .right-circles-col { flex: 1 1 480px; max-width: 550px; min-height: 520px; }
  .circles-orbit-stage { width: 460px; height: 460px; }
  .circle-card-item { width: 250px; height: 250px; }
}

/* Standard Laptops (1200px - 1439px) */
@media (max-width: 1439px) {
  :root {
    --orbit-radius: 110px;
  }
  .quiz-page-layout { padding: 18px 20px 36px; gap: 32px; max-width: 1120px; }
  .centered-quiz-container { flex: 0 0 390px; max-width: 430px; }
  .right-circles-col { flex: 1 1 440px; max-width: 500px; min-height: 480px; }
  .circles-orbit-stage { width: 420px; height: 420px; }
  .circle-card-item { width: 225px; height: 225px; padding: 7px; }
  .quiz-question-title { font-size: 1.18rem; line-height: 1.3; }
  .option-pill { padding: 12px 18px; font-size: 0.92rem; }
  .option-checkbox-pill .pill-box { padding: 14px 18px; }
  .btn-primary-cta { padding: 14px 30px; font-size: 0.98rem; }
  .btn-secondary-back { padding: 12px 22px; font-size: 0.92rem; }
}

/* Compact Laptops & Netbooks (992px - 1199px) */
@media (max-width: 1199px) {
  :root {
    --orbit-radius: 98px;
  }
  .navbar { padding: 12px 20px; }
  .brand-logo-left { height: 44px; }
  .brand-name-centered { font-size: 1.15rem; letter-spacing: 3px; }
  .private-badge { font-size: 0.74rem; padding: 6px 14px; }

  .quiz-page-layout { padding: 16px 16px 28px; gap: 24px; justify-content: space-between; }
  .centered-quiz-container { flex: 1 1 380px; max-width: 420px; }
  
  .right-circles-col { flex: 1 1 380px; max-width: 420px; min-height: 430px; }
  .circles-orbit-stage { width: 380px; height: 380px; }
  .circle-card-item { width: 200px; height: 200px; padding: 6px; }

  .quiz-card.active { gap: 20px; }
  .quiz-question-title { font-size: 1.1rem; line-height: 1.3; }
  .quiz-progress-bar { gap: 6px; margin-bottom: 12px; }
  .progress-step-pill { font-size: 0.74rem; padding: 5px 14px; }
  .options-group { gap: 10px; }
  .option-pill { padding: 10px 14px; font-size: 0.88rem; gap: 12px; border-radius: 16px; }
  .pill-dot { width: 20px; height: 20px; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .option-checkbox-pill .pill-box { padding: 12px 14px; border-radius: 16px; }
  .pill-text { font-size: 0.88rem; }
  .quiz-action-bar { gap: 12px; margin-top: 8px; }
  .btn-primary-cta { padding: 12px 24px; font-size: 0.92rem; }
  .btn-secondary-back { padding: 11px 18px; font-size: 0.88rem; }
  .btn-access-catalog { padding: 14px 28px; font-size: 0.94rem; }
  .quiz-bottom-logo-area { margin-top: 18px; }
  .quiz-bottom-logo-img { height: 100px; }
}

/* Tablets Landscape & Portrait (768px - 991px) */
@media (max-width: 991px) {
  :root {
    --orbit-radius: 84px;
  }
  .navbar { padding: 10px 16px; }
  .brand-logo-left { height: 38px; }
  .brand-name-centered { font-size: 1.02rem; letter-spacing: 2px; }
  .private-badge { font-size: 0.68rem; padding: 5px 12px; }

  .quiz-page-layout { padding: 14px 14px 24px; gap: 18px; justify-content: center; align-items: center; }

  .centered-quiz-container { flex: 1 1 360px; max-width: 400px; }
  .right-circles-col { flex: 1 1 330px; max-width: 360px; min-height: 370px; }
  .circles-orbit-stage { width: 330px; height: 330px; }
  .circle-card-item { width: 175px; height: 175px; padding: 5px; }

  .quiz-card.active { gap: 16px; }
  .quiz-question-title { font-size: 1.02rem; line-height: 1.25; }
  .quiz-progress-bar { gap: 5px; margin-bottom: 8px; }
  .progress-step-pill { font-size: 0.68rem; padding: 4px 10px; }
  .progress-track { height: 6px; }
  .options-group { gap: 8px; }
  .option-pill { padding: 9px 12px; font-size: 0.82rem; gap: 10px; border-radius: 14px; }
  .pill-dot { width: 16px; height: 16px; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .option-checkbox-pill .pill-box { padding: 10px 12px; border-radius: 14px; }
  .pill-text { font-size: 0.82rem; }
  .check-mark { font-size: 0.85rem; }
  .quiz-action-bar { gap: 10px; margin-top: 6px; }
  .btn-primary-cta { padding: 10px 20px; font-size: 0.86rem; letter-spacing: 0.5px; }
  .btn-secondary-back { padding: 9px 14px; font-size: 0.82rem; }
  .btn-access-catalog { padding: 12px 22px; font-size: 0.88rem; }
  .quiz-bottom-logo-area { margin-top: 12px; }
  .quiz-bottom-logo-card { padding: 6px 12px; }
  .quiz-bottom-logo-img { height: 85px; }

  .page-card { padding: 30px 22px; margin: 20px auto 40px; max-width: 92%; }
  .page-title { font-size: 1.7rem; }
}

/* Mobile Screens (<768px) */
@media (max-width: 767px) {
  :root {
    --orbit-radius: 70px;
  }
  .quiz-page-layout { flex-direction: column-reverse; justify-content: center; align-items: center; padding: 16px 14px 32px; gap: 20px; }
  .right-circles-col { flex: 0 0 auto; width: 100%; min-height: 310px; justify-content: center; }
  .circles-orbit-stage { width: 280px; height: 280px; }
  .circle-card-item { width: 150px; height: 150px; padding: 4px; }
  .centered-quiz-container { flex: 1 1 100%; max-width: 480px; }
  .private-badge { display: none; }
  .brand-name-centered { font-size: 0.95rem; letter-spacing: 1.5px; }
  .quiz-question-title { font-size: 1.1rem; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .quiz-action-bar { flex-direction: column-reverse; gap: 10px; }
  .quiz-action-bar .btn-primary-cta, 
  .quiz-action-bar .btn-secondary-back { width: 100%; justify-content: center; }
  .quiz-bottom-logo-img { height: 90px; }
}