/* ==========================================================================
   CRAVEN NIGHT - ELEGANT CRIMSON & ROSE GOLD VELVET MIDNIGHT DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Velvet Midnight Palette */
  --bg-deep: #090408;
  --bg-velvet: #140710;
  --bg-card: rgba(24, 9, 19, 0.78);
  --surface-pill: rgba(255, 255, 255, 0.04);
  --surface-pill-hover: rgba(244, 63, 94, 0.12);

  /* Rose Gold & Crimson Accents */
  --rose-primary: #f43f5e;
  --rose-glow: #fb7185;
  --rose-dark: #be123c;
  --rose-deep: #881337;
  
  --gold-primary: #f59e0b;
  --gold-glow: #fbbf24;
  --gold-light: #fef08a;

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

  --text-main: #fff1f2;
  --text-muted: #fda4af;
  --text-subtle: #9f1239;

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

  --shadow-velvet: 0 30px 90px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  --shadow-rose: 0 12px 35px rgba(244, 63, 94, 0.35);
  --border-gold-rose: 1px solid rgba(251, 113, 133, 0.25);
  --border-active: 1px solid rgba(254, 240, 138, 0.6);
}

/* 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: #000000;
  background-image: 
    url('assets/pg2.jpg'),
    url('assets/bg.jpg');
  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(251, 113, 133, 0.15);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
}

.nav-brand-left {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: clamp(5px, 0.6vw, 8px) clamp(14px, 1.5vw, 22px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(254, 240, 138, 0.7);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(254, 240, 138, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.nav-brand-left:hover {
  background: #ffffff;
  border-color: var(--gold-glow);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.4), 0 0 25px rgba(254, 240, 138, 0.5);
}

.brand-logo-left {
  height: clamp(40px, 3.8vw, 62px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.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.05rem, 1.7vw, 1.55rem);
  font-weight: 800;
  letter-spacing: clamp(2px, 0.35vw, 5px);
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 40%, #fb7185 80%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(244, 63, 94, 0.4);
}

.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: #ffe4e6;
  background: rgba(190, 18, 60, 0.2);
  border: 1px solid rgba(251, 113, 133, 0.35);
  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.4);
  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); }
}

/* ==========================================================================
   MAIN 3-COLUMN PAGE LAYOUT
   ========================================================================== */
.quiz-page-layout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 44px;
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  gap: 20px;
  position: relative;
}

/* ==========================================================================
   CURVED 3D DESKTOP MONITOR SCREENS (REALISTIC TITANIUM BLACK - ULTRA WIDE)
   ========================================================================== */
.desktop-screen-col {
  flex: 0 0 580px;
  max-width: 630px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

.curved-desktop-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  animation: floatDesktop 6s ease-in-out infinite alternate;
}

.side-left .curved-desktop-wrapper {
  transform: rotateY(20deg) rotateX(2deg);
  animation-delay: 0s;
}

.side-right .curved-desktop-wrapper {
  transform: rotateY(-20deg) rotateX(2deg);
  animation-delay: -3s;
}

.curved-desktop-wrapper:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-12px) scale(1.035);
}

@keyframes floatDesktop {
  0% { transform: rotateY(20deg) translateY(0px); }
  100% { transform: rotateY(16deg) translateY(-14px); }
}

.side-right .curved-desktop-wrapper {
  animation-name: floatDesktopRight;
}

@keyframes floatDesktopRight {
  0% { transform: rotateY(-20deg) translateY(0px); }
  100% { transform: rotateY(-16deg) translateY(-14px); }
}

/* Curved Desktop Monitor Realistic Hardware Chassis (Silver White Metallic) */
.curved-desktop-monitor {
  width: 100%;
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 45%, #e2e8f0 80%, #cbd5e1 100%);
  border: 2px solid #94a3b8;
  border-radius: 34px 34px 24px 24px;
  padding: 16px 18px 20px;
  box-shadow: 
    0 45px 110px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(255, 255, 255, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
}

/* Top Bezel with Webcam */
.monitor-top-bezel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 100%;
  margin-bottom: 8px;
}

.webcam-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f172a;
  border: 1px solid #94a3b8;
  box-shadow: inset 0 0 4px #000;
}

/* Wide Screen Display Area (Clean Interior Ready for Images) */
.desktop-screen-display {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 310px;
  background: #000000;
  border-radius: 22px;
  border: 2px solid #1e293b;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Diagonal Anti-Glare Sweep */
.screen-glare-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
  z-index: 5;
}

/* Actual Image element inside screen - Full Size Uncropped */
.desktop-screen-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.curved-desktop-wrapper:hover .desktop-screen-img {
  transform: scale(1.03);
}

/* Monitor Bottom Chin */
.monitor-bottom-chin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 2px;
  margin-top: 6px;
}

.brand-logo-mark {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #334155;
}

.power-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

/* Silver Metallic Stand Stem & Base */
.monitor-stand-stem {
  width: 64px;
  height: 36px;
  background: linear-gradient(180deg, #f1f5f9 0%, #cbd5e1 100%);
  border-left: 1px solid #94a3b8;
  border-right: 1px solid #94a3b8;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.monitor-stand-base {
  width: 240px;
  height: 12px;
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 60%, #cbd5e1 100%);
  border: 1px solid #94a3b8;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   COMPACT CENTERED QUIZ CONTAINER (LESS HORIZONTAL SPACE)
   ========================================================================== */
.centered-quiz-container {
  flex: 0 0 440px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

/* 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: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-glow);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.progress-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 113, 133, 0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 1px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #be123c 0%, #f43f5e 50%, #f59e0b 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 18px rgba(244, 63, 94, 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: 700;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: -0.2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(244, 63, 94, 0.25);
  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(20, 7, 16, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(251, 113, 133, 0.25);
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffe4e6;
  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(244, 63, 94, 0.12);
  border-color: rgba(251, 113, 133, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(244, 63, 94, 0.2);
}

.option-pill.active {
  background: rgba(190, 18, 60, 0.25);
  border: var(--border-active);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(244, 63, 94, 0.35), inset 0 0 20px rgba(254, 240, 138, 0.1);
}

.pill-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #881337;
  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: #090408;
}

.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(20, 7, 16, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(251, 113, 133, 0.25);
  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(244, 63, 94, 0.12);
  border-color: rgba(251, 113, 133, 0.5);
  transform: translateY(-2px);
}

.option-checkbox-pill input:checked + .pill-box {
  background: rgba(190, 18, 60, 0.25);
  border: var(--border-active);
  box-shadow: 0 0 30px rgba(244, 63, 94, 0.35);
}

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

.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 10px var(--gold-glow);
}

/* Step 6 Final Ready Screen */
.final-ready-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(190, 18, 60, 0.15);
  border: 1px solid rgba(251, 113, 133, 0.35);
  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, #f43f5e 0%, #be123c 100%);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(244, 63, 94, 0.6);
  flex-shrink: 0;
}

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

.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, #f43f5e 0%, #be123c 50%, #881337 100%);
  color: #ffffff !important;
  font-family: var(--font-serif);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: var(--shadow-rose);
  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(254, 240, 138, 0.35), 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 40px rgba(244, 63, 94, 0.55);
  color: #ffffff !important;
}

.btn-access-catalog {
  background: linear-gradient(135deg, #f43f5e 0%, #be123c 50%, #f59e0b 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.04);
  border: 1px solid rgba(251, 113, 133, 0.25);
  color: #ffe4e6;
  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(244, 63, 94, 0.15);
  border-color: rgba(254, 240, 138, 0.5);
  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(244, 63, 94, 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(20, 7, 16, 0.82);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(251, 113, 133, 0.25);
  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: #ffe4e6;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.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: #ffffff;
  margin-bottom: 10px;
}

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

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

.policy-section li {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #fecdd3;
  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: #ffe4e6;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(251, 113, 133, 0.2);
  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(244, 63, 94, 0.1);
  box-shadow: 0 0 25px rgba(244, 63, 94, 0.3);
}

.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(251, 113, 133, 0.15);
}

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

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

.footer-links a:hover {
  color: var(--gold-glow);
}

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

.copyright {
  color: #9f1239;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (SIDE IMAGES ALWAYS VISIBLE ON LAPTOP & TABLET)
   ========================================================================== */

/* Large Laptops / Desktops (1440px - 1600px) */
@media (max-width: 1600px) {
  .quiz-page-layout { padding: 16px 18px 32px; gap: 16px; }
  .desktop-screen-col { flex: 0 1 420px; max-width: 450px; }
  .desktop-screen-display { min-height: 230px; }
  .centered-quiz-container { flex: 0 0 380px; max-width: 400px; }
  .curved-desktop-wrapper.side-left { transform: rotateY(12deg); }
  .curved-desktop-wrapper.side-right { transform: rotateY(-12deg); }
}

/* Standard Laptops (1100px - 1439px) */
@media (max-width: 1439px) {
  .quiz-page-layout { padding: 12px 14px 28px; gap: 12px; }
  .desktop-screen-col { display: flex !important; flex: 0 1 330px; max-width: 350px; }
  .desktop-screen-display { min-height: 180px; }
  .curved-desktop-wrapper.side-left { transform: rotateY(8deg); }
  .curved-desktop-wrapper.side-right { transform: rotateY(-8deg); }
  .centered-quiz-container { flex: 0 0 350px; max-width: 360px; }
  .quiz-question-title { font-size: 1.15rem; line-height: 1.28; }
  .option-pill { padding: 10px 14px; font-size: 0.88rem; }
  .option-checkbox-pill .pill-box { padding: 12px 14px; }
  .btn-primary-cta { padding: 12px 26px; font-size: 0.95rem; }
  .btn-secondary-back { padding: 10px 18px; font-size: 0.88rem; }
}

/* Compact Laptop & Tablet Landscape View (880px - 1099px) — (e.g. 1024px Laptop View) */
@media (max-width: 1099px) {
  .navbar { padding: 10px 18px; }
  .brand-logo-left { height: 42px; }
  .brand-name-centered { font-size: 1.12rem; letter-spacing: 2px; }
  .private-badge { font-size: 0.72rem; padding: 6px 14px; }

  .quiz-page-layout { padding: 10px 10px 20px; gap: 10px; justify-content: space-between; }
  
  /* CRITICAL: Left and Right side monitors stay fully visible! */
  .desktop-screen-col { display: flex !important; flex: 0 1 260px; max-width: 280px; }
  .desktop-screen-display { min-height: 140px; border-radius: 14px; }
  .curved-desktop-monitor { padding: 8px 10px 12px; border-radius: 20px 20px 14px 14px; }
  .monitor-top-bezel { height: 12px; margin-bottom: 4px; }
  .monitor-bottom-chin { padding: 6px 8px 2px; margin-top: 4px; }
  .brand-logo-mark { font-size: 0.6rem; letter-spacing: 1.5px; }
  .monitor-stand-stem { height: 18px; width: 40px; }
  .monitor-stand-base { width: 130px; height: 8px; }
  .curved-desktop-wrapper.side-left { transform: rotateY(6deg); }
  .curved-desktop-wrapper.side-right { transform: rotateY(-6deg); }

  /* Compact Center Quiz Container */
  .centered-quiz-container { flex: 0 0 330px; max-width: 340px; }
  .quiz-card.active { gap: 18px; }
  .quiz-question-title { font-size: 1.08rem; line-height: 1.25; margin-top: 0; }
  .quiz-progress-bar { gap: 6px; margin-bottom: 10px; }
  .progress-step-pill { font-size: 0.72rem; padding: 4px 12px; }
  .options-group { gap: 8px; margin-top: 2px; }
  .option-pill { padding: 9px 12px; font-size: 0.84rem; gap: 10px; border-radius: 14px; }
  .pill-dot { width: 18px; height: 18px; }
  .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.84rem; }
  .quiz-action-bar { gap: 10px; margin-top: 6px; }
  .btn-primary-cta { padding: 11px 22px; font-size: 0.9rem; }
  .btn-secondary-back { padding: 10px 16px; font-size: 0.84rem; }
  .btn-access-catalog { padding: 12px 24px; font-size: 0.92rem; }
  .quiz-bottom-logo-area { margin-top: 14px; }
  .quiz-bottom-logo-img { height: 95px; }
}

/* Tablet Portrait View (680px - 879px) — (e.g. 768px Tablet View) */
@media (max-width: 879px) {
  .navbar { padding: 8px 12px; }
  .brand-logo-left { height: 34px; }
  .nav-brand-left { padding: 4px 10px; border-radius: 14px; }
  .brand-name-centered { font-size: 0.95rem; letter-spacing: 1.2px; }
  .private-badge { font-size: 0.65rem; padding: 4px 10px; }

  .quiz-page-layout { padding: 6px 4px 16px; gap: 6px; justify-content: space-between; }

  /* CRITICAL: Left & Right side images stay fully visible on 768px Tablet View! */
  .desktop-screen-col { display: flex !important; flex: 0 1 200px; max-width: 215px; }
  .desktop-screen-display { min-height: 110px; border-radius: 10px; border-width: 1px; }
  .curved-desktop-monitor { padding: 5px 6px 7px; border-radius: 14px 14px 10px 10px; border-width: 1px; }
  .monitor-top-bezel { height: 8px; margin-bottom: 2px; }
  .webcam-dot { width: 5px; height: 5px; }
  .monitor-bottom-chin { padding: 3px 5px 1px; margin-top: 2px; }
  .brand-logo-mark { font-size: 0.5rem; letter-spacing: 0.8px; }
  .power-led { width: 4px; height: 4px; }
  .monitor-stand-stem { height: 12px; width: 28px; }
  .monitor-stand-base { width: 95px; height: 5px; }
  .curved-desktop-wrapper.side-left { transform: rotateY(3deg); }
  .curved-desktop-wrapper.side-right { transform: rotateY(-3deg); }

  /* Compact Center Quiz Area for 768px Tablet */
  .centered-quiz-container { flex: 0 0 310px; max-width: 320px; }
  .quiz-card.active { gap: 14px; }
  .quiz-question-title { font-size: 0.98rem; line-height: 1.22; margin-top: 0; }
  .quiz-progress-bar { gap: 4px; margin-bottom: 6px; }
  .progress-step-pill { font-size: 0.66rem; padding: 3px 8px; }
  .progress-track { height: 5px; }
  .options-group { gap: 6px; margin-top: 0; }
  .option-pill { padding: 8px 10px; font-size: 0.78rem; gap: 8px; border-radius: 12px; }
  .pill-dot { width: 15px; height: 15px; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .option-checkbox-pill .pill-box { padding: 8px 10px; border-radius: 12px; }
  .pill-text { font-size: 0.78rem; }
  .check-mark { font-size: 0.82rem; }
  .quiz-action-bar { gap: 6px; margin-top: 4px; flex-direction: row; }
  .btn-primary-cta { padding: 9px 16px; font-size: 0.82rem; letter-spacing: 0.3px; }
  .btn-secondary-back { padding: 8px 12px; font-size: 0.78rem; }
  .btn-access-catalog { padding: 10px 18px; font-size: 0.84rem; }
  .quiz-bottom-logo-area { margin-top: 8px; }
  .quiz-bottom-logo-card { padding: 4px 10px; }
  .quiz-bottom-logo-img { height: 75px; }

  .page-card { padding: 24px 18px; margin: 16px auto 32px; max-width: 95%; }
  .page-title { font-size: 1.5rem; }
}

/* Small Mobile Screens (<680px) */
@media (max-width: 679px) {
  .desktop-screen-col { display: none !important; }
  .quiz-page-layout { justify-content: center; padding: 16px 14px 32px; }
  .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.15rem; }
  .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; }
}