/* ===== CHECKOUT ===== */
.checkout-section {
  padding: 60px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.checkout-inner {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gray-900);
  margin-bottom: 24px;
  text-align: center;
}

.opt-box {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-50);
  transition: all 0.2s;
  cursor: pointer;
  user-select: none;
}

.opt-box.mandatory {
  border-color: var(--gray-400);
  background: var(--white);
  cursor: default;
}

.opt-box.selected {
  border-color: var(--gray-800);
  background: var(--white);
}

.opt-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gray-300);
  display: grid;
  place-items: center;
  margin-top: 2px;
  flex-shrink: 0;
  background: var(--white);
  transition: all 0.2s;
}

.opt-box.mandatory .opt-check {
  background: var(--gray-900);
  border-color: var(--gray-900);
}

.opt-box.selected .opt-check {
  background: var(--gray-900);
  border-color: var(--gray-900);
}

.opt-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  opacity: 0;
}

.opt-box.mandatory .opt-check svg,
.opt-box.selected .opt-check svg {
  opacity: 1;
}

.opt-content {
  flex: 1;
}

.opt-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.opt-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.calendar-box {
  margin-top: 16px;
  display: none;
}

.calendar-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.calendar-box select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  appearance: none;
  background: var(--white) url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="%233D3D38" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 16px center;
  cursor: pointer;
}

.checkout-total {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
}

.total-amt {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
}

.btn-pay {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  font-size: 16px;
  justify-content: center;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}

.btn-pay:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.success-screen {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--positive-bg);
  color: var(--positive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.schedule-dropdowns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.schedule-select {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray-700);
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.schedule-select:focus {
  outline: none;
  border-color: var(--gray-500);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.success-body {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .schedule-dropdowns {
    flex-direction: column;
  }

  .checkout-section {
    padding: 40px 20px;
  }

  .checkout-inner {
    padding: 32px 20px;
  }
}

/* Premium Responsive & Mobile Fixes */
@media (max-width: 768px) {
  :root {
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
  }

  html {
    font-size: 15px;
  }

  .hero {
    padding: 100px 20px 60px !important;
  }

  .features-section,
  .how-section,
  .res-section,
  .checkout-section {
    padding: 60px 20px !important;
  }

  .nav-inner {
    padding: 0 16px !important;
  }

  .features-grid,
  .steps-grid,
  .issues-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .opt-box {
    padding: 16px !important;
  }

  .btn-pay {
    padding: 16px !important;
  }

  .total-amt {
    font-size: 28px !important;
  }

  /* Remove layout breaks */
  * {
    max-width: 100%;
  }
}


/* ===== LUXURY SUCCESS MODAL ===== */
.luxury-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 10, 9, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: opacity 0.4s ease;
}

.luxury-glass-panel {
  background: rgba(20, 20, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8), 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  animation: luxuryModalPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
  overflow: hidden;
}

.luxury-glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.luxury-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  animation: pulseGlow 2s infinite alternate;
}

.luxury-check-icon {
  width: 40px;
  height: 40px;
  color: #10B981;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
  animation: checkDraw 0.6s 0.3s ease-out both;
}

.luxury-success-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.luxury-success-body {
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.luxury-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.luxury-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

@keyframes luxuryModalPop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
  }
}

@keyframes checkDraw {
  0% {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
  }

  100% {
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
  }
}

/* ============================================================
   REDESIGNED DUAL-COLUMN QUIZ STYLES
   ============================================================ */

#quiz {
  background: #f9f9f8 !important;
  /* Light off-white background matching mockup */
}

/* Dual-column Quiz layout */
.quiz-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
  perspective: 1500px;
  transform-style: preserve-3d;
}

@media (max-width: 900px) {
  .quiz-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Adjust quiz-body to accommodate 8% left and 16% right padding on desktop */
#quiz .quiz-body {
  max-width: 100% !important;
  width: 100%;
  padding: 40px 16vw 140px 8vw !important;
  box-sizing: border-box;
}

/* Section intro spans both columns */
.quiz-body .q-section-intro {
  grid-column: span 2;
  margin-bottom: 24px;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 900px) {
  .quiz-body .q-section-intro {
    grid-column: span 1;
    margin-bottom: 16px;
    padding: 16px !important;
  }

  #quiz .quiz-body {
    padding: 20px 12px 120px 12px !important;
    /* Reset asymmetrical padding on mobile */
  }
}

/* Question card modifications */
.q-card {
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  min-height: 480px;
  padding: 40px !important;
  border-radius: 16px !important;
  border: 1px solid var(--gray-200) !important;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  animation: none !important;
}

@media (max-width: 900px) {
  .q-card {
    min-height: auto !important;
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }
}

.q-card .q-num {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.q-card .q-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
  width: fit-content;
}

.q-card .q-title {
  font-size: clamp(18px, 4vw, 24px) !important;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.q-card .q-options-context {
  font-size: 13.5px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
  font-style: italic;
}

/* MCQ Option Styling Overrides to match mockup */
.opts {
  gap: 12px !important;
  max-height: none !important;
  overflow-y: visible !important;
  padding-right: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

.opt {
  background: #f4f4f3 !important;
  border: 1.5px solid transparent !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.opt:hover {
  background: #eaeae9 !important;
  border-color: transparent !important;
}

.opt.sel {
  background: var(--white) !important;
  border-color: #141412 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

.opt-circle {
  border: 1.5px solid #d1d1cf !important;
  background: var(--white) !important;
  flex-shrink: 0;
}

.opt.sel .opt-circle {
  background: var(--gray-900) !important;
  border-color: var(--gray-900) !important;
}

.opt-text {
  font-size: 14.5px !important;
  color: var(--gray-800) !important;
  font-weight: 450 !important;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.opt.sel .opt-text {
  color: var(--gray-900) !important;
  font-weight: 500 !important;
}

/* Quote card stack (Right Column) */
.quote-card-stack {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  animation: none !important;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.quote-card-stack::before,
.quote-card-stack::after {
  content: '';
  position: absolute;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  z-index: 1;
  pointer-events: none;
  box-sizing: border-box;
}

.quote-card-stack::before {
  /* Middle layer */
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  box-shadow: var(--shadow-sm);
}

.quote-card-stack::after {
  /* Bottom layer */
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  opacity: 0.45;
  box-shadow: var(--shadow-xs);
}

@media (max-width: 900px) {
  /* Prevent layer offsets from breaking horizontal mobile viewport */
  .quote-card-stack::before,
  .quote-card-stack::after {
    display: none !important;
  }
}

.q-quote-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  min-height: 480px;
}

@media (max-width: 900px) {
  .q-quote-card {
    min-height: auto !important;
    padding: 24px 16px !important;
    border-radius: 14px !important;
  }
}

.q-quote-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(16px, 3.5vw, 22px);
  font-weight: 500;
  color: #141412;
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.015em;
  word-break: break-word;
}

.q-quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #141412;
  margin-bottom: 4px;
}

.author-title {
  font-size: 13.5px;
  color: var(--gray-500);
  font-weight: 400;
}

/* Navbar progress integration styling */
.nav.quiz-active .nav-progress {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
}

.nav.quiz-active .quiz-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav.quiz-active .qbar-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

.nav.quiz-active .qbar-pct {
  font-size: 11px;
  color: var(--gray-500);
  font-family: var(--font-heading);
  font-style: italic;
}

.nav.quiz-active .qbar-dots {
  display: flex;
  gap: 4px;
  width: 100%;
}

.nav.quiz-active .qbar-dot {
  height: 3px;
  flex: 1;
  border-radius: 99px;
  background: var(--gray-200);
  transition: background 0.3s;
}

.nav.quiz-active .qbar-dot.done {
  background: var(--gray-800) !important;
}

.nav.quiz-active .qbar-dot.active {
  background: var(--gray-900) !important;
}

/* Footer layout style tweaks */
.quiz-foot {
  background: rgba(255, 255, 255, 0.98) !important;
  border-top: 1px solid var(--gray-200) !important;
  padding: 8px 0 !important;
}

.quiz-foot-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 14px 28px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.quiz-foot-inner #btn-prev {
  justify-self: start;
}

.quiz-foot-inner .foot-note {
  justify-self: center;
  font-size: 13px !important;
  color: var(--gray-400) !important;
}

.quiz-foot-inner .quiz-foot-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-foot-inner .btn-outline {
  border-radius: 99px !important;
  padding: 10px 20px !important;
  font-weight: 500 !important;
}

.quiz-foot-inner .btn-dark {
  border-radius: 99px !important;
  padding: 10px 24px !important;
  font-weight: 500 !important;
  background: var(--gray-900) !important;
  color: var(--white) !important;
}

/* =====================================================
   UNIFIED SCHEDULER WIDGET
   ===================================================== */

.custom-scheduler {
  display: flex;
  flex-direction: column;
  background: var(--bg-light); /* Matching the cream background */
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  font-family: var(--font-sans);
  margin-top: 16px;
  width: 100%;
}

@media(min-width: 768px) {
  .custom-scheduler {
    flex-direction: row;
    min-width: 680px;
    margin-left: -40px;
  }
}

.sch-left {
  flex: 55;
  padding: 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.sch-month-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sch-month-nav button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sch-month-nav button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.sch-month-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}

.sch-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 12px;
}

.sch-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 4px;
  text-align: center;
}

.sch-day {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  border-radius: 99px;
  transition: all 0.2s;
  background: transparent;
  border: none;
}

.sch-day:hover:not(.sch-empty) {
  background: rgba(0, 0, 0, 0.05);
}

.sch-day.active {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(184, 50, 50, 0.3);
}

.sch-day.sch-empty {
  color: rgba(0, 0, 0, 0.4);
  cursor: default;
}

.sch-right {
  flex: 45;
  padding: 24px;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.sch-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.sch-info-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-left: 6px;
}

.sch-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.sch-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  transition: all 0.2s;
}

.sch-status.active {
  border-color: var(--accent-border);
  background: var(--accent-muted);
  color: var(--gray-900);
}

.sch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sch-dot.bg-green {
  background: #10B981;
}

.sch-dot.bg-red {
  background: #EF4444;
}

.sch-dot.bg-orange {
  background: #F59E0B;
}

.sch-dot.bg-gray {
  background: #9CA3AF;
}

.sch-times-list {
  flex: 1;
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 8px;
}

.sch-times-list::-webkit-scrollbar {
  width: 4px;
}

.sch-times-list::-webkit-scrollbar-track {
  background: transparent;
}

.sch-times-list::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 4px;
}

.sch-time-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--gray-border);
  background: var(--white);
  margin-bottom: 4px;
}

.sch-time-row:hover {
  border-color: rgba(0,0,0,0.2);
}

.sch-time-row.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(184, 50, 50, 0.2);
}

.sch-time-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.sch-time-row.active .sch-time-text {
  color: var(--white);
}

.sch-check {
  display: none;
}

.sch-time-row.active .sch-check {
  display: block;
}

.sch-custom-time {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sch-custom-time:hover {
  color: var(--gray-900);
}

.sch-footer {
  padding: 16px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.sch-event-info {
  font-size: 14px;
  color: var(--gray-600);
}

.sch-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.sch-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 4px;
  text-align: center;
}

.sch-day {
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: 99px;
  transition: all 0.2s;
  background: transparent;
  border: none;
}

.sch-day:hover:not(.sch-empty) {
  background: var(--gray-100);
}

.sch-day.active {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--accent-border);
}

.sch-day.sch-empty {
  color: var(--gray-300);
  cursor: default;
}

.sch-right {
  flex: 45;
  padding: 24px;
  background: rgba(249, 249, 248, 0.4);
  display: flex;
  flex-direction: column;
}

.sch-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.sch-info-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-left: 6px;
}

.sch-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.sch-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  transition: all 0.2s;
}

.sch-status.active {
  border-color: var(--accent-border);
  background: var(--accent-muted);
  color: var(--gray-900);
}

.sch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sch-dot.bg-green {
  background: #10B981;
}

.sch-dot.bg-red {
  background: #EF4444;
}

.sch-dot.bg-orange {
  background: #F59E0B;
}

.sch-dot.bg-gray {
  background: #9CA3AF;
}

.sch-times-list {
  flex: 1;
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 8px;
}

.sch-times-list::-webkit-scrollbar {
  width: 4px;
}

.sch-times-list::-webkit-scrollbar-track {
  background: transparent;
}

.sch-times-list::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 4px;
}

.sch-time-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.sch-time-row:hover {
  background: var(--gray-50);
}

.sch-time-row.active {
  background: rgba(0, 0, 0, 0.03);
}

.sch-time-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

.sch-time-row.active .sch-time-text {
  font-weight: 700;
  color: var(--gray-900);
}

.sch-check {
  display: none;
}

.sch-time-row.active .sch-check {
  display: block;
}

.sch-custom-time {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
}

.sch-custom-time:hover {
  color: var(--gray-900);
}

.sch-footer {
  padding: 16px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.sch-event-info {
  font-size: 14px;
  color: var(--gray-600);
}

.sch-event-info span {
  font-weight: 600;
  color: var(--gray-900);
}

.sch-actions {
  display: flex;
  gap: 12px;
}

/* ─── LENIS SMOOTH SCROLL ──────────────────────────────────── */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe:not([name^="razorpay"]):not(.razorpay-checkout-frame) {
  pointer-events: none;
}

/* Ensure Razorpay is clickable without creating a permanent blocking overlay */
iframe[name^="razorpay"],
iframe.razorpay-checkout-frame,
.razorpay-container,
.razorpay-backdrop,
.lenis.lenis-smooth .razorpay-container iframe,
.razorpay-container iframe {
  pointer-events: auto !important;
}/* =====================================================
   BENTO GRID LAYOUT (Light Blue/Grey/Black)
   ===================================================== */

.landing-container, .results-container {
  background-color: #1A1A1A; /* Dark background */
  padding: 100px 20px;
  min-height: 100vh;
}

.bento-row {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 24px;
  width: 100%;
}

@media (max-width: 900px) {
  .bento-row {
    flex-direction: column;
  }
}

.bento-box {
  border-radius: 40px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .bento-box {
    border-radius: 28px;
    padding: 32px;
  }
}

/* Colors */
.bg-white {
  background-color: #FFFFFF;
  color: #111111;
}

.bg-dark {
  background-color: #1E1E1E;
  color: #FFFFFF;
}

.bg-dark-alt {
  background-color: #2A2A2A;
  color: #FFFFFF;
}

.bg-blue {
  background-color: #D6F1FA;
  color: #111111;
}

.text-white { color: #FFFFFF !important; }
.text-dark { color: #111111 !important; }
.text-center { text-align: center; }

/* Buttons */
.btn-jumbo {
  font-size: 20px;
  padding: 24px 40px;
  border-radius: 99px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s;
}

.btn-hero {
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 99px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
  width: max-content;
}

.btn-hero:hover, .btn-jumbo:hover {
  transform: translateY(-2px);
}

.btn-blue {
  background-color: #D6F1FA;
  color: #111111;
}

/* ROW 1: Hero */
.hero-left {
  flex: 1.2;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-tag {
  display: inline-block;
  border: 1px solid #111;
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-right-grid {
  flex: 0.8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  padding: 32px;
}

.hero-stat-card {
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-stat-val {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.h-stat-lbl {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.3;
}

.h-stat-icon {
  margin-bottom: 12px;
  opacity: 0.8;
}

/* ROW 2: Features */
.feature-box-full {
  flex-direction: row;
  gap: 48px;
}

@media (max-width: 900px) {
  .feature-box-full { flex-direction: column; }
}

.feature-text-side {
  flex: 1;
}

.feature-cards-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-card {
  border-radius: 24px;
  padding: 32px;
}

.f-card-num {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.f-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.f-card p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.5;
}

/* ROW 3: How it works */
.how-box-full {
  width: 100%;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .how-grid { grid-template-columns: 1fr; }
}

.how-card {
  background: #2A2A2A;
  border-radius: 24px;
  padding: 24px;
}

.how-card:last-child {
  background: #D6F1FA;
  color: #111;
}

.how-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 12px;
  margin-bottom: 32px;
}

.how-card:last-child .how-tag {
  border-color: #111;
}

.how-icon {
  margin-bottom: 16px;
}

.how-card p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

/* ROW 4: CTA */
.cta-left {
  flex: 1;
  justify-content: center;
}

.cta-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-width {
  width: 100%;
}

/* UTILS */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 400px;
}

.res-hero-bento {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}
/* =====================================================
   QUIZ NAVBAR & BUTTON OVERRIDES (Match new Bento theme)
   ===================================================== */
.quiz-bar {
  background: #111111;
  border-bottom: none;
  padding: 24px 40px;
}
.qbar-label {
  color: #FFFFFF;
}
.qbar-label strong {
  color: #D6F1FA;
}
.qbar-pct {
  color: #D6F1FA;
}
.progress-track {
  height: 6px;
  background: #2A2A2A;
  border-radius: 99px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.progress-fill {
  background: #D6F1FA;
}
.qbar-dot {
  background: #2A2A2A;
  height: 4px;
}
.qbar-dot.done {
  background: #D6F1FA;
}
.qbar-dot.active {
  background: #FFFFFF;
}

/* Quiz Footer Buttons Override */
.quiz-foot {
  background: transparent;
  border-top: none;
}
#btn-prev, .btn-outline {
  border: 1px solid #D6F1FA;
  color: #D6F1FA;
  background: transparent;
  border-radius: 99px;
  padding: 12px 24px;
  font-weight: 500;
}
#btn-prev:hover, .btn-outline:hover {
  background: #D6F1FA;
  color: #111111;
}
#btn-next, .btn-primary {
  background: #D6F1FA;
  color: #111111;
  border-radius: 99px;
  padding: 12px 28px;
  font-weight: 600;
}
#btn-next:hover, .btn-primary:hover {
  background: #FFFFFF;
}
.btn-dev {
  background: transparent;
  color: #A8A89E;
  border: none;
  text-decoration: underline;
  padding: 12px;
}
