@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Enhanced brand palette for premium feel */
  --srp-navy: #1e3a8a;       /* deeper, richer blue */
  --srp-royal: #3b82f6;      /* modern blue accent */
  --srp-red: #dc2626;        /* vibrant red for CTAs */
  --srp-light: #f8fafc;      /* clean off-white */
  --srp-white: #ffffff;
  --srp-success: #059669;    /* professional green */
  --srp-orange: #f59e0b;     /* premium orange for options */
  --srp-orange-hover: #d97706; /* darker orange for hover */
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing & Layout */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  
  /* Shadows for depth */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* New quiz colors */
  --srp-green: #2E7D32;
  --srp-green-light: #4CAF50;
  --srp-warning: #ff6b35;
  --srp-warning-light: #ff8c69;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  background: linear-gradient(135deg, var(--srp-navy) 0%, var(--srp-royal) 100%);
  min-height: 100vh;
}

/* Header and footer full-width styles */
.quiz-header, .quiz-footer {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
}

/* Ensure masthead has relative positioning for overlay */
.masthead {
  position: relative;
}

.quiz-header {
  margin-top: 0;
  padding-top: 0;
}

.quiz-footer {
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: auto;
}

/* Main content area */
main {
  flex: 1;
  padding: 0 0.5rem;
}

/* Debt type highlighting */
.debt-type-highlight {
  color: #f59e0b;
  font-weight: 800;
}

/* Sticky CTA Bar */
.cta-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #0b6c2a 0%, #0a5220 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 14px 0;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s;
  text-decoration: none;
}

.cta-sticky:active {
  transform: scale(0.97);
}

@media (min-width: 768px) {
  .cta-sticky {
    font-size: 1.25rem;
  }
}

/* Trust badges row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
  align-items: center;
  font-size: 0.9rem;
  color: #0a5220;
  flex-wrap: wrap;
}

.trust-row svg {
  width: 20px;
  height: 20px;
  color: #2e7d32;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA Hero Button */
.cta-hero {
  display: block !important;
  width: 100% !important;
  max-width: 500px !important;
  margin: 2rem auto !important;
  padding: 20px !important;
  background: linear-gradient(135deg, #2e7d32 0%, #1B5E20 100%) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  box-shadow: 0 8px 32px rgba(46,125,50,0.4) !important;
  transition: all 0.15s ease !important;
}

.cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(46,125,50,0.5);
}

/* Click flash effect */
.cta-click {
  filter: brightness(0.9);
}

/* Benefits list styling */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 16px 0;
  margin: 0 auto;
  max-width: 600px;
  font-size: 1rem;
  color: #333;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .trust-row {
    gap: 12px;
    font-size: 0.8rem;
  }
  
  .cta-hero {
    font-size: 1.1rem !important;
    padding: 16px !important;
  }
}

/* Hero CTA - Enhanced with animations and effects */
.cta-hero{
  display:block; margin:22px auto 12px; max-width:480px;
  background:linear-gradient(135deg,#0b6c2a 0%,#2e7d32 50%,#0a5220 100%);
  color:#fff;text-align:center;font-size:1.15rem;font-weight:700;
  padding:22px 16px;border-radius:12px;
  box-shadow:0 6px 20px rgba(11,108,42,.4), 0 2px 8px rgba(0,0,0,.15);
  transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor:pointer;text-decoration:none;
  position:relative;overflow:hidden;
  border:2px solid rgba(255,255,255,.2);
  animation:pulse-glow 2s infinite, wiggle-bounce 4s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow:0 6px 20px rgba(11,108,42,.4), 0 2px 8px rgba(0,0,0,.15); }
  50% { box-shadow:0 8px 30px rgba(11,108,42,.6), 0 4px 15px rgba(0,0,0,.2); }
}

@keyframes wiggle-bounce {
  0%, 7%, 14%, 21%, 50%, 100% { transform: translateX(0) translateY(0); }
  3.5% { transform: translateX(-2px) translateY(-1px); }
  10.5% { transform: translateX(2px) translateY(-1px); }
  17.5% { transform: translateX(-1px) translateY(-0.5px); }
}

.cta-hero:hover{
  transform:translateY(-3px) scale(1.02);
  background:linear-gradient(135deg,#2e7d32 0%,#4caf50 50%,#1b5e20 100%);
  box-shadow:0 10px 35px rgba(11,108,42,.5), 0 6px 20px rgba(0,0,0,.2);
  animation:none;
}

.cta-hero:active{
  transform:translateY(-1px) scale(1.01);
  background:linear-gradient(135deg,#0a5220 0%,#1b5e20 50%,#0b6c2a 100%);
}

.cta-hero::before {
  content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transition:left .6s;
}

.cta-hero:hover::before {
  left:100%;
}

/* Sticky CTA */
.cta-sticky{position:fixed;bottom:0;left:0;width:100%;z-index:9999;
  background:linear-gradient(180deg,#0b6c2a 0%,#074719 100%);
  color:#fff;font-size:1rem;font-weight:600;text-align:center;padding:14px 0;
  box-shadow:0 -3px 8px rgba(0,0,0,.25);}
.cta-sticky:active{filter:brightness(.93);}
@supports(padding:env(safe-area-inset-bottom)){
  .cta-sticky{padding-bottom:calc(14px + env(safe-area-inset-bottom));}
}

/* Trust row */
.trust-row{display:flex;justify-content:center;align-items:center;
 gap:10px;margin:6px 0 10px;font-size:.85rem;color:#0a5220;}
.trust-row img{height:18px;}

/* Benefit list */
.benefits{max-width:420px;margin:0 auto 18px;display:grid;
 grid-template-columns:1fr 1fr;column-gap:12px;row-gap:8px;
 font-size:.95rem;color:#0a5220;}
.benefits li{list-style:none;padding-left:0;text-indent:-.4rem;}

/* Disclaimer */
.disclaimer{font-size:.65rem;line-height:1.1;color:#666;margin-top:12px;text-align:center;}

/* Click flash */
.cta-click{filter:brightness(.9);}

/* CTA Sub-text */
.cta-sub{font-size:.85rem;color:#e8f7e8;text-align:center;margin:-10px 0 8px;}

/* Trust row */
.trust-row{font-size:.8rem;color:#2563eb;margin-bottom:12px;}

/* Benefits box */
.benefits-box{background:#f9fef7;border-radius:6px;padding:14px 18px;margin:0 auto 14px;max-width:440px;}
.benefits-box h3{font-size:1.1rem;margin:0 0 8px;color:#0a5220;font-weight:700;}
.benefits-box ul{margin:0;padding-left:20px;font-size:.95rem;line-height:1.3;}

/* Testimonial */
.testi{font-size:.85rem;color:#333;font-style:italic;text-align:center;margin:4px 0 14px;}

/* Qualified page sub-header styling */
.qualified-sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Add bottom padding to body to prevent sticky bar overlap */
body {
  padding-bottom: 60px;
}

/* Mobile-specific centering */
@media (max-width: 768px) {
  main {
    padding: 0 0.25rem; /* Reduce padding to center better */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .quiz-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Mobile-only button reordering and sizing */
  .navigation-section {
    display: flex;
    flex-direction: column-reverse !important; /* Reverses order: Next first, then Back */
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  
  .back-button {
    padding: 8px 16px !important; /* Smaller padding for mobile */
    font-size: 0.9rem !important; /* Smaller font size */
    order: 2; /* Ensures back button appears below Next button */
  }
  
  .cta-next {
    order: 1; /* Ensures Next button appears above back button */
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem 2rem !important;
    font-size: 1.1rem !important;
    margin: 0.3rem 0 !important;
  }
  
  /* Remove flex-1 spacer on mobile since we're stacking vertically */
  .flex-1 {
    display: none !important;
  }
}

/* Proportional viewport optimization */
.quiz-container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.quiz-card {
  padding: 0.4rem !important;
  margin: 0.1rem auto !important;
  max-width: 90vw !important;
  width: 100% !important;
  position: relative !important;
  left: 0 !important; /* Ensure no offset positioning */
}

.question {
  font-size: 1.2rem !important;
  margin-bottom: 0.2rem !important;
}

.option {
  padding: 0.5rem 1rem !important;
  margin-block: 0.2rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

/* Reduce gap between quiz content and navigation */
.quiz-navigation {
  margin-top: 0.5rem !important;
  padding-top: 0.3rem !important;
}

.cta-next {
  margin: 0.75rem 0 !important;
  padding: 1.25rem 2rem !important;
  font-size: 1.1rem !important;
  width: 100% !important;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2e7d32 0%, #1B5E20 100%);
  color: white;
  font-family: var(--font-primary);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  margin-block: 0.3rem;
}

/* Compact spacing for all quiz elements */
.space-y-3 > * {
  margin-bottom: 0.1rem !important;
}

.space-y-4 > * {
  margin-bottom: 0.1rem !important;
}

.sub-question {
  font-size: 1rem !important;
  margin-bottom: 0.1rem !important;
}

.small-note, .note {
  font-size: 0.8rem !important;
  margin: 0.1rem 0 !important;
}

.green-cta {
  background: linear-gradient(135deg, var(--srp-green) 0%, var(--srp-green-light) 100%) !important;
  color: white !important;
  border: none !important;
}

.green-cta:hover {
  background: linear-gradient(135deg, #1B5E20 0%, var(--srp-green) 100%) !important;
  transform: translateY(-2px) !important;
}

/* Call button placeholder to maintain layout */
.callbtn-placeholder {
  width: 120px;
  height: 44px;
  visibility: hidden;
}

/* Small loading spinner for buttons */
.loading-spinner-small {
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

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

/* Disable button styles when loading */
.option:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* FOMO Block Styling */
.fomo-block {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 16px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #856404;
}

/* Benefits List Styling */
.benefits-list {
  background: #f9fef7;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  list-style: none;
}

.benefits-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}

/* Testimonial Styling */
.testimonial {
  background: #f8f9fa;
  border-left: 4px solid #2e7d32;
  padding: 16px 20px;
  margin: 20px 0;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

.testimonial-name {
  font-weight: 600;
  color: #2e7d32;
}

/* Mobile-optimized CTA button */
#qualified-call-section .cta-call-btn {
  display: block;
  text-align: center;
  padding: 18px 12px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  background: linear-gradient(135deg, #2e7d32 0%, #1B5E20 100%);
  color: white;
  text-decoration: none;
  margin: 16px 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .fomo-block {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .benefits-list {
    padding: 16px;
    margin: 16px 0;
  }
  
  .benefits-list li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .testimonial {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  #qualified-call-section .cta-call-btn {
    font-size: 1rem;
    padding: 16px 10px;
  }
}

/* Debt Eraser Calculator Styles */
.de-calc { 
  background: #f9f9f9; 
  padding: 18px 16px; 
  border-radius: 6px; 
  margin: 18px 0; 
}

.de-title { 
  font-size: 1.2rem; 
  margin-bottom: 8px; 
  font-weight: 700; 
  text-align: center; 
}

.de-desc { 
  margin-bottom: 10px; 
  font-size: 0.95rem; 
}

.de-input { 
  width: 100%; 
  padding: 10px; 
  font-size: 1rem; 
  margin-bottom: 12px; 
  border: 1px solid #ccc; 
  border-radius: 4px; 
  box-sizing: border-box;
}

.de-label { 
  display: none; 
}

.de-percent-row { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 12px; 
}

.de-percent-label { 
  font-size: 0.9rem; 
}

#reliefPercent { 
  flex: 1; 
}

.de-percent-val { 
  width: 48px; 
  text-align: right; 
  font-weight: 600; 
}

.de-results { 
  background: #fff; 
  border: 1px solid #e3e3e3; 
  border-radius: 4px; 
  padding: 10px 12px; 
  margin-bottom: 12px; 
  display: flex; 
  justify-content: space-between; 
  gap: 12px; 
}

.de-result-item { 
  text-align: center; 
  flex: 1; 
}

.de-result-label { 
  display: block; 
  font-size: 0.85rem; 
  color: #555; 
  margin-bottom: 4px; 
}

.de-result-value { 
  font-weight: 700; 
  font-size: 1.05rem; 
}

.de-note { 
  font-size: 0.75rem; 
  color: #666; 
  margin-top: 8px; 
  text-align: center; 
}

@media (max-width: 480px) {
  .de-results { 
    flex-direction: column; 
  }
}

/* State Selector Styles */
.state-selector-container {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.state-search-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--srp-royal);
  border-radius: 8px;
  background: var(--srp-navy);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.state-search-input:focus {
  outline: none;
  border-color: var(--srp-green);
  box-shadow: 0 0 0 3px rgba(46, 175, 125, 0.1);
}

.state-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.state-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 1px solid var(--srp-royal);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 100;
  margin-top: 4px;
}

.state-option {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: var(--srp-navy);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.state-option:hover {
  background: var(--srp-royal);
  color: white;
}

.state-option:last-child {
  border-bottom: none;
}

.selected-state {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: var(--srp-green);
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

/* Compact congratulations page */
.qualified-page {
  padding: 0.5rem !important;
}

.qualified-title {
  font-size: 1.3rem !important;
  margin: 0.5rem 0 !important;
}

.qualification-summary {
  padding: 0.5rem !important;
  margin: 0.5rem 0 !important;
}

.benefits-container {
  margin: 0.5rem 0 !important;
}

.benefit-highlight {
  padding: 0.5rem !important;
  margin: 0.3rem 0 !important;
}

.savings-amount {
  font-size: 1.2rem !important;
}

.urgency-banner {
  padding: 0.5rem !important;
  margin: 0.5rem 0 !important;
}

/* Mobile adjustments - ONLY for screens 768px and below */
@media (max-width: 768px) {
  .quiz-container {
    padding: 0 0.5rem;
  }
  
  /* Mobile header optimization */
  .quiz-header {
    padding: 1rem !important;
  }
  
  .masthead-logo {
    height: 60px !important; /* Reduced from 80px */
    max-width: 280px !important;
  }
  
  /* Mobile Lisa section */
  .advisor {
    margin: 1rem 0 !important;
  }
  
  .avatar {
    width: 70px !important;
    height: 70px !important;
  }
  
  .advisor-greeting {
    font-size: 1.4rem !important;
  }
  
  .advisor-title {
    font-size: 1rem !important;
  }
  
  /* Mobile quiz card */
  .quiz-card, .card {
    padding: 0.5rem !important;
    margin: 0.2rem auto !important;
    max-width: 98vw !important;
  }
  
  .question {
    font-size: 1.2rem !important;
  }
  
  .option {
    padding: 0.9rem 1rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
  }
  
  /* Mobile progress bar */
  .quiz-progress {
    padding: 0.5rem 1rem !important;
  }
  
  .progress-label {
    font-size: 0.8rem !important;
  }
  
  /* Mobile navigation button order: Next above, Go Back below */
  .navigation-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  
  .back-button {
    order: 2 !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 1.2rem !important;
  }
  
  .navigation-section > div:has(.cta-next) {
    order: 1 !important;
  }
  
  .flex-1 {
    display: none !important;
  }
  
  /* Mobile urgency message positioning - removed absolute positioning */
}

/* Desktop styles - ONLY for screens 769px and above */
@media (min-width: 769px) {
  .navigation-section {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 0 !important;
    margin-top: 60px !important;
    padding-top: 40px !important;
    border-top: 2px solid #f0f0f0 !important;
  }
  
  .back-button {
    order: 0 !important;
    font-size: 1.1rem !important;
    padding: 16px 24px !important;
  }
  
  .navigation-section > div:has(.cta-next) {
    order: 0 !important;
  }
  
  .flex-1 {
    display: block !important;
    flex: 1 !important;
  }
  
  /* Desktop urgency message positioning - removed absolute positioning */
  
  .quiz-header {
    padding: 2rem !important;
  }
  
  .masthead-logo {
    height: 80px !important;
  }
  
  /* Lisa advisor styles removed */
  
  .quiz-card, .card {
    padding: 2rem !important;
    margin: 1rem auto !important;
    max-width: 600px !important;
  }
  
  .question {
    font-size: 1.6rem !important;
  }
  
  .option {
    padding: 1.2rem 1.5rem !important;
    font-size: 1.2rem !important;
  }
  
  .quiz-progress {
    padding: 1rem 2rem !important;
  }
  
  .progress-label {
    font-size: 1rem !important;
  }
}

/* New quiz styles for enhanced structure */
.disqualify-option {
  /* Use same styling as regular options - blue theme */
}

/* Specific styling for "Less than 50%" medical debt button only */
.option-small.disqualify-option {
  background: linear-gradient(135deg, var(--srp-orange) 0%, var(--srp-orange-hover) 100%) !important;
  color: white !important;
  border: 2px solid var(--srp-orange) !important;
}

.option-small.disqualify-option:hover {
  background: linear-gradient(135deg, var(--srp-orange-hover) 0%, #b45309 100%) !important;
  transform: translateY(-2px);
}

.required-option {
  border: 2px solid var(--srp-green) !important;
  position: relative;
}

.required-star {
  color: var(--srp-green);
  font-weight: bold;
  margin-left: 5px;
}

.sub-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--srp-navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--srp-royal);
}

.option-small {
  padding: 8px 16px !important;
  font-size: 14px !important;
  margin: 0 4px !important;
  min-width: 100px;
  border-radius: var(--radius-sm) !important;
}

.medical-toggle {
  border: 2px solid var(--srp-royal);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ebf8ff 0%, #dbeafe 100%);
  margin-top: 16px;
}

.continue-btn {
  background: linear-gradient(135deg, var(--srp-green) 0%, var(--srp-green-light) 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  margin-top: 20px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.4);
}

.continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.income-input {
  background: white !important;
  color: var(--srp-navy) !important;
  border: 2px solid var(--srp-royal) !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.income-input::placeholder {
  color: #94a3b8 !important;
}

.contact-form-section {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 12px;
}

.contact-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  color: var(--srp-navy);
  font-size: 16px;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.contact-input:focus {
  outline: none;
  border-color: var(--srp-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.contact-input::placeholder {
  color: #6b7280;
}

.quiz-container {
  font-family: var(--font-primary);
  min-height: 100vh;
  background: linear-gradient(180deg, var(--srp-navy) 0%, var(--srp-navy) 160px, var(--srp-light) 160px, var(--srp-light) calc(100% - 100px), var(--srp-navy) calc(100% - 100px), var(--srp-navy) 100%);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header section - Enhanced */
.quiz-header {
  background: linear-gradient(135deg, var(--srp-navy) 0%, #1e40af 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.specialist-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.specialist-info h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.025em;
}

.specialist-info p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

.specialist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url('/static/img/srp-logo.png') center/contain no-repeat;
  background-color: var(--srp-white);
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth);
}

.specialist-avatar:hover {
  transform: scale(1.05);
}

/* Main content card - Premium styling */
.card {
  background: var(--srp-white);
  margin: 2rem auto;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 650px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: slideIn var(--transition-smooth);
}

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

/* PREMIUM HEADER DESIGN - MUCH LARGER */
.premium-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0056B3 100%);
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.premium-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,215,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* PREMIUM LOGO */
.logo-container {
  display: flex;
  justify-content: flex-start;
}

.premium-logo {
  height: 140px;
  width: auto;
  padding: 8px;
  border-radius: 12px;
  transition: transform var(--transition-smooth);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
}

.premium-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* PERSON IMAGE OVERLAY */
.person-overlay {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
}

.person-image-overlay {
  width: 180px; /* Increased from 120px by 50% */
  height: 180px; /* Increased from 120px by 50% */
  object-fit: cover;
  /* Remove border, background and shadow to show transparent image */
  border: none;
  background: transparent;
  box-shadow: none;
  transition: all var(--transition-smooth);
}

.person-image-overlay:hover {
  transform: translateY(-2px);
}

.person-text {
  text-align: left;
  color: white;
}

.person-greeting {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.person-title {
  font-size: 1.35rem;
  margin: 2px 0 0 0;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
}

/* PREMIUM CTA */
.cta-container {
  display: flex;
  justify-content: flex-end;
}

.premium-cta {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  text-decoration: none;
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
}

.premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.premium-cta:hover::before {
  left: 100%;
}

.premium-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(255,107,53,0.5);
}

.cta-inner {
  text-align: center;
}

.cta-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

/* PROGRESS SECTION */
.progress-section {
  margin-top: 24px;
  text-align: center;
}

.progress-bar-container {
  background: rgba(255,255,255,0.2);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transition: width 0.5s ease;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255,215,0,0.5);
}

.progress-label {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* PREMIUM CARD DESIGN - MUCH LARGER */
.premium-card {
  background: white;
  border-radius: 20px;
  padding: 80px 60px;
  min-height: 700px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  animation: slideIn var(--transition-smooth);
  border: 1px solid rgba(0,50,90,0.1);
  margin: 40px 20px;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), #FF6B35, #FFD700);
  border-radius: 20px 20px 0 0;
}

.quiz-content-large {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navigation-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.back-button {
  display: flex;
  align-items: center;
  color: #666;
  background: transparent;
  border: 2px solid #e0e0e0;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.back-button:hover {
  background: #f8f9fa;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.premium-next-btn {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.premium-next-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.premium-next-btn:hover::before {
  left: 100%;
}

.premium-next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(255,107,53,0.5);
}

/* PREMIUM FOOTER - MUCH TALLER */
.premium-footer {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0056B3 100%);
  padding: 60px 20px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,215,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trust-elements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.trust-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.trust-stars {
  color: #FFD700;
  font-size: 1.5rem;
}

.rating-text, .rating-source {
  font-weight: 600;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer section - Enhanced */
.quiz-footer {
  background: linear-gradient(135deg, var(--srp-navy) 0%, #1e40af 100%);
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Progress bar - Enhanced */
.progress-wrapper {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin: 1rem auto 0;
  max-width: 400px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
  width: 0%;
  transition: width var(--transition-smooth);
  border-radius: 3px;
  position: relative;
}

.progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* CTA buttons - Enhanced */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: linear-gradient(135deg, var(--srp-red) 0%, #ef4444 100%);
  color: var(--srp-white);
  text-align: center;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #dc2626 0%, #dc2626 100%);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-lg);
}

.btn-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Option buttons - Premium styling */
.option {
  border: none;
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-block: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: var(--srp-white);
  font-size: 1.1rem;
  font-family: var(--font-primary);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-smooth);
}

.option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.option:hover::before {
  left: 100%;
}

.option.selected {
  background: linear-gradient(135deg, var(--srp-orange) 0%, var(--srp-orange-hover) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--srp-orange);
}

.option:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.note {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Step label */
.step-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
}

/* Trust footer */
.trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.trust-stars {
  color: #00C851;
  font-size: 1.2rem;
}

/* Phone number in header */
.header-phone {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: all var(--transition-smooth);
}

.header-phone:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.02);
}

/* Question styling - Enhanced */
.question-title {
  color: var(--srp-navy);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

/* Success state styling */
.success-icon {
  color: var(--srp-success);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Hidden utility */
.hidden {
  display: none !important;
}



/* Mobile optimizations - Enhanced */
@media (max-width: 768px) {
  .quiz-header {
    padding: 1.5rem 1rem;
  }
  
  .specialist-info {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 0 0.5rem;
  }
  
  .specialist-left, .specialist-right {
    order: 2;
  }
  
  .specialist-center {
    order: 1;
  }
  
  .specialist-greeting {
    font-size: 1.5rem;
  }
  
  .specialist-title {
    font-size: 1rem;
  }
  
  /* MOBILE PREMIUM HEADER */
  .premium-header {
    padding: 40px 16px 30px;
    min-height: 450px; /* Increased from 300px to accommodate Lisa section */
  }
  
  .header-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .logo-container {
    justify-content: center;
    order: 1;
  }
  
  .premium-logo {
    height: 100px;
    padding: 6px;
  }
  
  /* Mobile banner layout fix - Properly sized */
  .masthead {
    height: 220px;
    padding: 8px 20px 8px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  /* Congratulations page header adjustments - Reduced height */
  .masthead.congrats-header {
    height: 120px;
    padding: 15px 20px 15px;
    justify-content: center;
    gap: 10px;
  }

  .masthead .masthead-logo,
  .masthead img.masthead-logo {
    width: 160px !important;
    height: auto !important;
    margin: 0 auto 8px auto !important;
    z-index: 2;
    position: relative;
    display: block !important;
    max-width: none !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  /* Optimized logo size for congratulations page - Perfectly centered */
  .masthead.congrats-header .masthead-logo {
    width: 180px !important;
    margin: 0 auto !important;
    display: block !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Bigger FREE CALL button for congratulations page */
  .masthead.congrats-header .callbtn {
    padding: 16px 32px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin: 0 auto !important;
    min-width: 180px !important;
  }

  /* Spots counter styling */
  .spots-counter {
    margin-top: 12px;
    text-align: center;
    padding: 8px 0;
  }

  .spots-text {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .spots-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #dc2626;
    margin-right: 4px;
  }

  .spots-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
  }

  .spots-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    transition: width 0.8s ease-in-out;
    border-radius: 3px;
  }

  /* Reduce benefits section size to make room for spots counter */
  .benefits-container {
    margin: 1rem 0 !important;
  }

  .benefit-highlight {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .savings-amount {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  .savings-subtitle {
    font-size: 0.9rem !important;
  }

  .benefits-grid {
    gap: 0.5rem !important;
  }

  .benefit-item {
    padding: 0.5rem 0 !important;
    font-size: 0.9rem !important;
  }

  .person-overlay {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 130px;
    z-index: 10;
  }

  .person-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
  }

  .person-greeting {
    position: absolute;
    left: 15px;
    top: 35%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
  }

  .person-title {
    position: absolute;
    right: 15px;
    top: 35%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
    text-align: right;
    white-space: pre-line;
  }

  .person-image-overlay {
    display: block;
    height: 130px;
    width: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    order: 2;
    align-self: center;
    object-fit: cover;
    object-position: center top;
  }
  
  .cta-container {
    justify-content: center;
    order: 3;
  }
  
  .premium-cta {
    padding: 16px 24px;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .cta-phone {
    font-size: 1.2rem;
  }
  
  /* ANALYZING/LOADING SCREEN */
  .analyzing-screen {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 400px !important;
    text-align: center !important;
    background: white !important;
    z-index: 9999 !important;
  }
  
  .analyzing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .loading-spinner {
    width: 50px !important;
    height: 50px !important;
    border: 4px solid #f3f3f3 !important;
    border-top: 4px solid #005FB8 !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    display: block !important;
    margin: 0 auto !important;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .analyzing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00325A;
    margin: 0;
  }
  
  .analyzing-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
  }

  /* MOBILE PREMIUM CARD */
  .premium-card {
    margin: 20px 10px;
    padding: 40px 20px;
    min-height: 500px;
  }
  
  .quiz-content-large {
    min-height: 300px;
  }
  
  .navigation-section {
    margin-top: 40px;
    padding-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
  
  .back-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .premium-next-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
  }
  
  /* MOBILE PREMIUM FOOTER */
  .premium-footer {
    padding: 40px 16px;
  }
  
  .trust-elements {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-item {
    font-size: 1rem;
  }
  
  .trust-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .trust-rating {
    flex-direction: column;
    gap: 8px;
    font-size: 1.1rem;
  }
  
  .footer-disclaimer {
    font-size: 0.9rem;
  }
  
  .card {
    margin: 1rem;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
  }
  
  .question-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .option {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-block: 0.5rem;
  }
  
  .header-phone {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .progress-wrapper {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .card {
    margin: 0.5rem;
    padding: 1.5rem 1rem;
  }
  
  .question-title {
    font-size: 1.25rem;
  }
  
  .option {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
}/* Force cache refresh */
/* Cache bust Wed Jul 23 08:39:42 PM UTC 2025 */
