/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
}

p {
  margin-bottom: 1rem;
}

/* Layout */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-content {
  min-height: calc(100vh - 120px);
}

/* Consistent Section Spacing */
section {
  padding: 1.5rem 0;
}

section:first-of-type {
  padding-top: 1rem;
}

section:last-of-type {
  padding-bottom: 2rem;
}

/* Info Banner - Enhanced for dual banner system */
.info-banner {
  background-color: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.5rem 0;
}

.info-banner p {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
  color: #374151;
}

.info-banner strong {
  color: #2563eb;
}

/* Priority/Warning Banner Variant */

.info-banner.warning {
  background-color: #fef3c7;
  border-bottom: 1px solid #f59e0b;
}

.info-banner.warning p {
  color: #92400e;
}

/* Priority/Urgent Banner Variant */

.info-banner.urgent {
  background-color: #fef3c7;
  border-bottom: 1px solid #dc2626;
}

.info-banner.urgent p {
  color: #dc2626;
}

.info-banner.urgent strong {
  color: #dc2626;
}


/* Sticky Info Banner */
.sticky-info-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  padding: 0.75rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sticky-info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sticky-info-logo {
  height: 40px;
  width: auto;
}

.sticky-info-text {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.sticky-info-text strong {
  font-weight: 600;
}

/* Introduction Section */
.intro-section {
  padding: 1rem 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-image {
  flex: 0 0 350px;
  max-width: 350px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.intro-section h1 {
  font-size: 2.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

/* Consistent spacing for content blocks */
.key-points,
.hero-stats,
.benefits-grid {
  margin: 1.5rem 0;
}

.key-points {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .key-points {
    grid-template-columns: 1fr 1fr;
  }
  
  .key-points .important {
    grid-column: span 2;
  }
}

.point-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
  margin-bottom: 1rem;
}

.point-card:hover {
  border-color: #d1d5db;
}

.point-card.important {
  background: #eff6ff;
  border-color: #2563eb;
}

.point-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #2563eb;
}

.point-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.point-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.point-card li {
  margin-bottom: 0.25rem;
}

/* CTA Section spacing */
.cta-section {
  text-align: center;
  padding: 1.5rem 0;
  margin: 1rem 0;
}

.cta-text {
  font-size: 1.1rem;
  color: #374151;
  margin: 0;
  font-weight: 500;
}

/* Enhanced Compelling Content Styles */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1rem;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* Consistent banner spacing */
.outline-banner,
.urgency-banner,
.cta-enhancement,
.testimonial-card {
  margin: 1.5rem 0;
}

.outline-banner {
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #059669;
  background: #ffffff;
  text-align: left;
}

.urgency-banner {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.urgency-banner h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.urgency-banner p {
  margin: 0;
  opacity: 0.95;
}

/* Left-aligned urgency banner variant */
.urgency-banner--left {
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-banner--left h3 {
  text-align: left;
  margin-bottom: 1rem;
}

/* Check list for banners */
.banner-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner-checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.banner-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

.banner-checklist li:last-child {
  margin-bottom: 0;
}

.testimonial-card {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
}

.testimonial-quote {
  font-style: italic;
  color: #374151;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 500;
  color: #2563eb;
  margin: 0;
}

.cta-enhancement {
  background: linear-gradient(135deg, #eff6ff 0%, #eff6ff 100%);
  border: 2px solid #0284c7;
  color: #075985;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-enhancement h3 {
  color: #075985;
  margin-bottom: 0.75rem;
}

.cta-enhancement p {
  margin: 0;
  font-weight: 500;
}

/* Quiz Section */

#quiz-start {
  scroll-margin-top: 80px;
}

.quiz-section {
  padding: 2rem 0;
  background: #f8fafc;
  border-radius: 0;
  margin: 0;
  position: relative;
  box-shadow: none;
}

.quiz-header {
  display: flex;
  justify-content: center;
}

/* Quiz Badge - Inside the card */
.quiz-badge {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px 6px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.quiz-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  margin: 1rem auto;
  position: relative;
}

/* Quiz Progress - Ensure visibility on all screens */
/* ==== QUIZ: HEADER + PROGRESS (clean) ==== */
.quiz-progress {
  background: #ffffff;
  border-bottom: 2px solid #f1f5f9;
  padding: 1rem 1.5rem .875rem;
}

.progress-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .5rem;
}

.question-counter {
  font-size: .9rem;
  font-weight: 600;
  color: #2563eb;
  white-space: normal;
  min-width: 0;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.progress-bar__fill {
  width: 0%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg,#2563eb 0%,#1e40af 100%);
  transition: width .3s ease;
}

@media (min-width: 640px) {
  .progress-info {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .question-counter {
    text-align: left;
    white-space: nowrap;
    min-width: fit-content;
  }
  .progress-bar { flex: 1 1 auto; }
}.quiz-container {
  padding: 1.5rem;
}

.quiz-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #111827;
  line-height: 1.4;
  text-align: left;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
}

.quiz-subtitle {
  background-color: #f9fafb;
  border-left: 4px solid #2563eb; /* brand accent */
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.quiz-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}

/* Standardized Button Classes */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Large CTA Button Class */
.btn-large {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

/* White Button Variant */
.btn-white {
  background: white;
  color: #059669;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border: 2px solid white;
}

.btn-white:hover {
  background: #f0fdf4;
  border-color: #059669;
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
  padding: 0.75rem 1.5rem;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
}

.btn-tertiary {
  background-color: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  
  padding: 0.75rem 1.5rem;
}

.btn-tertiary:hover {
  background-color: #e5e7eb;

}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
  padding: 1rem;
}

/* Option Buttons */
.btn--option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background-color: #f7f6f6;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #001722;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  min-height: 56px;
  font-size: 1rem;
}

.btn--option::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  margin-right: 0.875rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn--option:hover {
  border: 1px solid #2563eb;
  background-color: #bdcef3;
  font-weight: 600;
}

.btn--option:hover::before {
  border-color: #2563eb;
  background-color: #2563eb;
}

.btn--option.btn--selected {
  border-color: #2563eb;
  background-color: #eff6ff;
  color: #1e40af;
}

.btn--option.btn--selected::before {
  border-color: #2563eb;
  background-color: #2563eb;
}

/* Quiz Controls */
.quiz-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
}

/* Form Styles - Enhanced borders and clarity */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;

  font-size: 0.9rem;
  background: #f8fafc;
  padding: 0.5rem 0.75rem;
  border-radius: 6px 6px 0 0;
  border: 2px solid #e2e8f0;
  border-bottom: none;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0 0 8px 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group.error input {
  border-color: #dc2626;
}

.form-group .error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #fef2f2;
  border-radius: 6px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0 0 8px 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: #ffffff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group.error select {
  border-color: #dc2626;
}

.form-group select:hover:not(:focus) {
  border-color: #9ca3af;
}

.form-group select:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Verification Section */
.verification-info {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.verification-info h3 {
  color: #059669;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.verification-info p {
  color: #065f46;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.verification-info ul {
  color: #065f46;
  font-size: 0.875rem;
  margin-left: 1.25rem;
}

.verification-info li {
  margin-bottom: 0.25rem;
}

/* Consent Checkbox */
.consent-checkbox-container {
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.consent-checkbox-container.error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

#consent-checkbox {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 16px;
  height: 16px;
}

.consent-checkbox-label {
  display: block;
  padding-left: 2rem;
  color: #374151;
  cursor: pointer;
}

.consent-header {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.consent-description {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #4b5563;
}

.consent-description a {
  color: #2563eb;
  text-decoration: underline;
}

.consent-checkbox-container .error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.consent-checkbox-container.error .error-message {
  display: block;
}

/* Stop Message */
.text--attention {
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  padding: 1rem;
  color: #92400e;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.text--attention ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.text--attention li {
  margin-bottom: 0.25rem;
}

.text--attention strong {
  font-weight: 700;
}


/* Footer */

footer {
  position: relative;
  z-index: 1;
}

.footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  margin-top: 1.5rem;
}

.footer p {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer a {
  color: #2563eb;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Sticky CTA */

/* Sticky CTA baseline + hide animation */
#stickyCta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(0);
  transition: transform .25s ease;
  z-index: 1000;
}

#stickyCta.is-hidden {
  transform: translateY(100%);
  pointer-events: none;  /* optional: prevent clicks while hidden */
}


.sticky-cta {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-top: none;
}
.sticky-cta span {
  color: inherit; /* keeps text white */
  font-weight: 600;
}
.sticky-cta .btn {
  background: white;
  color: #2563eb;
  font-weight: 600;
}


.sticky-cta .container{
  display:flex;                     /* ensure row layout */
  align-items:center;               /* align text + button nicely */
  justify-content:space-between;
  gap:1.25rem;                      /* more space between text & button */
  max-width:1100px;                 /* keeps it tidy on wide screens */
  margin:0 auto;
  padding:0.9rem 1rem;              /* a bit more breathing room */
}

.sticky-cta span{                   /* the message text */
  flex:1 1 auto;
  line-height:1.35;
}

.sticky-cta .btn{                   /* the button */
  flex:0 0 auto;
  white-space:nowrap;
  padding:.75rem 1.25rem;
  border-radius:10px;
  box-shadow:0 2px 10px rgba(0,0,0,.15);
}

/* Respect iPhone home indicator / ensure the bar doesn't feel cramped */
.sticky-cta{
  padding-bottom:calc(0.5rem + env(safe-area-inset-bottom));
}

/* Stack only on smaller phones; center text and give extra gap */
@media (max-width: 540px){
  .sticky-cta .container{
    flex-direction:column;
    align-items:stretch;
    gap:1rem;                       /* a little more than before */
  }
  .sticky-cta span{
    text-align:center;
  }
  .sticky-cta .btn{
    width:100%;
  }
}


/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* image adjustments */

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96); /* soft white */
  border-radius: 8px;                    /* rounded corners */
  padding: 0.25rem 0.4rem;               /* space around logo */
  box-shadow: 0 1px 4px rgba(0,0,0,0.1); /* subtle lift */
}

/* Enhanced CTA buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

/* Loading state for quiz */
.quiz-container.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Reduce spacing further on mobile */
  section {
    padding: 1rem 0;
  }
  
  section:first-of-type {
    padding-top: 0.75rem;
  }

  /* Sticky Info Banner Mobile */
  .sticky-info-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .sticky-info-logo {
    height: 35px;
    width: auto;
  }
  
  .sticky-info-text {
    font-size: 0.875rem;
  }

  /* Hero Content Mobile */
  .hero-content {
    flex-direction: column !important;
    gap: 2rem;
    text-align: left;
  }
  
  .hero-image {
    flex: none !important;
    max-width: 100% !important;
    order: -1;
  }
  
  .intro-section h1 {
    font-size: 1.875rem;
    text-align: center !important;
  }
  
  /* Quiz Section Mobile */
  .quiz-section {
    padding: 1.5rem 0;
  }
  
  .quiz-header {
    padding-top: 0;
  }
  
  .quiz-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
    border-radius: 6px 6px 0 0;
  }
  
  .quiz-card {
    margin: 0 0.5rem;
    border-radius: 12px;
    border-width: 2px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Better mobile form fields */
  .form-group label {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.875rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .btn--option {
    padding: 0.875rem 1rem;
    min-height: 50px;
    font-size: 0.9rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  .sticky-info-banner {
    padding: 0.5rem 0;
  }
  
  .sticky-info-content {
    padding: 0 0.75rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .intro-section {
    padding: 0.75rem 0;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
  
  .intro-section h1 {
    font-size: 1.625rem;
  }
  
  /* Extra small mobile quiz improvements */

  .quiz-section {
    padding: 1rem 0;
  }
  
  .quiz-header {
    padding-top: 0;
  }
  
  .quiz-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 6px 6px 0 0;
  }
  
  .quiz-card {
    margin: 0 0.25rem;
    border-radius: 10px;
  }
  
  .quiz-container {
    padding: 0.875rem;
  }
  
  .quiz-question {
    font-size: 1rem;
    padding: 0.75rem;
  }
  
  .form-group label {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.75rem 0.6rem;
    font-size: 0.875rem;
  }

  .benefit-card {
    padding: 1rem;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

  /* Extra Question / json classes */

.note-callout{
  background:#f8fbff;
  border:1px solid #bfdbfe;
  border-radius:10px;
  padding:1rem;
  color:#1e3a8a;
  margin-bottom:1rem;
}
.note-title{
  display:inline-block;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.02em;
  color:#dc2626;
  background:#fff;
  border:1px solid #dc2626;
  border-radius:999px;
  padding:.2rem .6rem;
  margin-bottom:.5rem;
}
.region{ margin-top:.75rem; }
.region-title{
  font-weight:600;
  color:#0f172a;
  margin-bottom:.35rem;
}
.county-list{
  padding-left:1rem;
  margin:0;
  display:grid;
  grid-template-columns:repeat(1, minmax(0,1fr));
  gap:.25rem .75rem;
}
@media (min-width:640px){
  .county-list{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
.chip-grid{
  display:flex; flex-wrap:wrap; gap:.5rem .5rem;
}
.chip{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:999px;
  padding:.25rem .6rem;
  font-size:.75rem;
  color:#111827;
  line-height:1.2;
}
details.region summary.region-title{
  list-style:none; cursor:pointer; position:relative;
}
details.region summary.region-title::after{
  content:"▾"; position:absolute; right:0; color:#64748b; font-size:.9rem;
}
details.region[open] summary.region-title::after{ transform:rotate(180deg); }