*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.urgency-banner {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  color: white;
  padding: 0.75rem 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 1.2rem;
  animation: pulse 1s infinite;
}

.urgency-text {
  font-size: 1rem;
}

.urgency-timer {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .urgency-banner {
    padding: 0.5rem;
  }
  
  .urgency-content {
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  .urgency-text {
    font-size: 0.9rem;
  }
  
  .urgency-timer {
    font-size: 0.8rem;
  }
}

* {
  max-width: 100%;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Add font-display to prevent FOIT */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format('woff2');
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f1;
  background-attachment: fixed;
  color: #333;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 768px) {
  .page-wrapper {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
  }
}
/* Header and Hero Top */

.main-title {
  color: #1a365d;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  max-width: 800px;
  line-height: 1.2;
  margin: 0 auto 0.5rem;
  padding: 0.5rem 1rem;
  text-align: center;
  position: relative;
}
.main-title br {
  display: block;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
.main-title {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    max-width: 100%;
    letter-spacing: -0.01em;
  }

  .main-title br {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.6rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 375px) {
  .main-title {
    font-size: 1.4rem;
    padding: 0.5rem 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #3182ce 40%, #3182ce 60%, transparent);
}

@media(max-width:640px) {
  .main-title {
    font-size: 1.5rem;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

@keyframes glow {
  from { box-shadow: 0 0 5px rgba(255,255,255,0.1); }
  to { box-shadow: 0 0 15px rgba(255,255,255,0.3); }
}

@media(max-width:640px){
  .main-title {
    font-size: 1.5rem;
    padding: 0.875rem 1.25rem;
  }
  .hero-top-wrap {
    flex-direction:column;
    gap:0.5rem;
  }
}

@media(max-width:480px){
  .main-title {
    font-size: 1.3rem;
    padding: 0.75rem 1rem;
  }
}
/* Hero Section */
.hero-section {
  max-width: 52rem;
  margin: 0.5rem auto;
  padding: 1.5rem;
  text-align: center;
  background: rgba(245,245,241,0.9);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 10px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
  .hero-section {
    margin: 0.25rem;
    border-radius: 0.75rem;
    padding: 0.75rem;
    max-width: 100%;
  }
}
@media (max-width: 375px) {
  .hero-section {
    padding: 0.5rem;
    margin: 0.125rem;
    max-width: 100%;
  }
}
.hero-heading {
  color:#3182ce;
  font-size:2rem;
  font-weight:900;
  line-height:1.25;
  margin-bottom:1rem;
}
.hero-subheading-wrapper {
  max-width: 55rem;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  text-align: left;
}

.hero-main-offer {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 700;	
  max-width: 48rem;
  padding: 1rem;
  letter-spacing: 0.01em;
	
}
@media (max-width: 640px) {
  .hero-main-offer {
    font-size: 1.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.hero-explanation {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.explanation-title {
  color: #2b6cb0;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-steps {
  margin-bottom: 1.25rem;
}

.process-steps .steps-title {
  color: #2b6cb0;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-steps ol {
  list-style-position: inside;
  padding-left: 0;
}

.process-steps li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #4a5568;
}

.social-proof-highlight {
  font-size: 1.1rem;
  color: #2d3748;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
}

.guarantee-note {
  font-size: 0.95rem;
  color: #4a5568;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-main-offer {
    font-size: 1.2rem;
  }
  
  .hero-explanation, .process-steps {
    font-size: 0.95rem;
  }
  
  .social-proof-highlight {
    font-size: 1rem;
  }
  
  .guarantee-note {
    font-size: 0.9rem;
  }
}
.highlight {
  background:linear-gradient(180deg,rgba(255,255,255,0)50%, #fde047 50%);
  padding:0 4px;
  border-radius:4px;
}
.prize-image-container {
  margin: 0.25rem auto;
  text-align: center;
}

.prize-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15));
  border-radius: 12px;
  display: block;
    aspect-ratio: unset;
  object-fit: contain;
}

.prize-image:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 12px 16px rgba(0,0,0,0.2));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
  .prize-image {
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .prize-image {
    max-width: 240px;
  }
  
  .prize-image-container {
    margin: 0.5rem auto;
  }
}

@media (max-width: 375px) {
  .prize-image {
    max-width: 200px;
  }
  
  .prize-image-container {
    margin: 0.25rem auto;
  }
}

.hero-cta-container {
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 480px) {
  .hero-cta-container {
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }
}
.hero-cta-button {
  background: linear-gradient(45deg, #2f855a, #38a169);
  color: #fff;
  font-weight: 900;
  padding: 1.2rem 2.5rem;
  font-size: 1.6rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(56, 161, 105, 0.25);
  min-width: 320px;
  max-width: 90%;
  min-height: 72px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: normal;
}

@media (max-width: 375px) {
  .hero-cta-button {
    min-width: 280px;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    min-height: 64px;
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media(max-width: 640px) {
  .hero-cta-button {
    min-width: 280px;
  }
}


.hero-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(56, 161, 105, 0.3);
}

@keyframes pulseSubtle {
  0%,100% {transform:scale(1);}
  50% {transform:scale(1.1);}
}

/* Trust Badges */
.trust-badges-row {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:0.75rem;
  margin-bottom:1.2rem;
}
.trust-badge {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  animation: float 3s ease-in-out infinite;
  margin: 0.25rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.badge-blue {
  background:#ebf8ff;
  color:#2c5282;
}
.badge-green {
  background:#f0fff4;
  color:#2f855a;
}

/* Social Proof */
.social-proof-box {
  background: linear-gradient(145deg, #ffffff, #f5f5f1);
  padding: 2rem;
  border-radius: 1.5rem;
  margin: 2.5rem auto;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media(max-width: 640px) {
  .social-proof-box {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
}
.rating-left {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.score-value {
  font-size:1.3rem;
  font-weight:900;
  color:#d69e2e;
  margin-bottom:0.25rem;
}
.stars-row {
  display:flex;
}
.star {
  width: 18px;
  height: 18px;
  color: #ecc94b;
  filter: drop-shadow(0 2px 4px rgba(236, 201, 75, 0.3));
}

@keyframes starTwinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
.social-proof-text {
  max-width:24rem;
  text-align:left;
}
.proof-main {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.4;
}
.proof-author {
  font-size:0.875rem;
  color:#718096;
  margin-bottom:0.25rem;
}
.verified {
  margin-left: 0.5rem;
  color: #38a169;
  font-weight: 500;
  background: rgba(56, 161, 105, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85em;
}
.proof-sub {
  font-size:0.75rem;
  color:#a0aec0;
}

/* Steps Section */
.steps-section {
  display: none;
  max-width:72rem;
  margin:0.5rem auto 3rem;
  padding:0 1rem; 
}

@media (max-width: 640px) {
  .steps-section {
    display: block;
  }
}
.steps-box {
  background: linear-gradient(135deg, #ebf8ff 0%, #f0f9ff 50%, #e6fffa 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.1);
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .step-item {
    flex: 1;
    margin: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.8rem;
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

.steps-box:hover {
  transform: translateX(5px);
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  margin: 1rem 0;
  padding-left: 2rem;
  position: relative;
}
.steps-title {
  font-weight:700;
  font-size:1.4rem;
  margin-bottom:1.5rem;
  text-align: center;
  color: #2d3748;
}
/* Survey View */
.survey-view {
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 2rem 1rem;
  min-height: 100vh;
}

@media (max-width: 640px) {
  .survey-view {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 375px) {
  .survey-view {
    padding: 0.75rem 0.5rem;
  }
}
.survey-top-info {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
}

.survey-top-info h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.01em;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .survey-top-info {
    margin-bottom: 0.75rem;
  }
  
  .survey-top-info h2 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}
.survey-progress-bar {
  background:#c3dafe;
  height:1rem;
  border-radius:0.5rem;
  margin-bottom:0.5rem;
  overflow:hidden;
}
.survey-progress {
  background: linear-gradient(90deg, #3182ce, #4299e1);
  height: 100%;
  width: 0;
  transition: width 0.5s ease-in-out;
  border-radius: 0.5rem;
  background-size: 200% 100%;
  animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
.survey-progress-text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .survey-progress-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
}
.survey-question-container,
.survey-loading-container,
.survey-confirmation-container {
  margin-bottom:1.5rem;
}
.spinner {
  width:3.5rem;height:3.5rem;
  border:0.5rem solid #cbd5e0;
  border-top:0.5rem solid #3182ce;
  border-radius:50%;
  margin:0 auto 1rem;
  animation:spin 1s linear infinite;
}
@keyframes spin {
  to {transform:rotate(360deg);}
}

/* Final Confirmation with Dyson */
.final-confirmation-box {
  background:#fff;
  padding:1.5rem;
  border-radius:0.5rem;
  text-align:center;
  max-width:42rem;
  margin:0 auto;
  box-shadow:0 4px 6px rgba(0,0,0,0.1);
}
.final-congrats-title {
  font-size:2rem;
  font-weight:800;
  color:#2b6cb0;
  margin-bottom:0.75rem;
}
.final-subtitle {
  font-size:1.4rem;
  font-weight:800;
  color:#2b6cb0;
  margin-bottom:1.5rem;
}
.final-hinweis {
  font-size:1rem;
  font-weight:bold;
  color:#4a5568;
  margin-bottom:1.8rem;
  line-height:1.4;
}
.final-hinweis-highlight {
  color:#f56565;
}
.final-product-box {
  background:#f9fafb;
  padding:1rem;
  border-radius:0.5rem;
  text-align:center;
  margin-bottom:1.8rem;
  box-shadow:0 2px 4px rgba(0,0,0,0.08);
}
.final-product-title {
  font-size:1.3rem;
  font-weight:700;
  color:#3182ce;
  margin-bottom:0.75rem;
}
.final-product-image {
  max-width:180px;
  width:100%;
  height:auto;
  border-radius:0.5rem;
  margin-bottom:0.75rem;
}
.final-product-desc {
  font-size:0.95rem;
  color:#333;
  margin-bottom:0.75rem;
}
.vacuum-price-old {
  text-decoration:line-through;
  color:#a0aec0;
  font-size:1rem;
  margin-bottom:0.25rem;
}
.vacuum-price-new {
  font-size:1.1rem;
  font-weight:bold;
  margin-bottom:0.5rem;
}
.vacuum-remaining,
.vacuum-shipping {
  font-size:0.95rem;
  margin-bottom:0.5rem;
}
.vacuum-button {
  background:#805ad5;
  color:#fff;
  font-size:1rem;
  font-weight:700;
  padding:0.75rem 1.5rem;
  border-radius:9999px;
  border:none;
  cursor:pointer;
  transition:transform 0.3s;
  margin-top:0.5rem;
}
.vacuum-button:hover {
  transform:scale(1.05);
  background:#6b46c1;
}

.final-rating-box {
  background:#f9fafb;
  padding:1rem;
  border-radius:0.5rem;
  text-align:center;
  margin-bottom:1.8rem;
  box-shadow:0 2px 4px rgba(0,0,0,0.08);
}
.rating-flex {
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:0.5rem;
}
.rating-value {
  font-size:1.3rem;
  font-weight:900;
  color:#d69e2e;
  margin-right:0.5rem;
}
.rating-stars {
  display:flex;
}
.rating-stars .star {
  width:1.1rem;
  height:1.1rem;
}
.rating-text {
  font-size:0.95rem;
  font-weight:600;
  margin-bottom:0.5rem;
  color:#333;
}
.rating-author {
  font-size:0.85rem;
  color:#718096;
  margin-bottom:0.25rem;
}
.rating-subtext {
  font-size:0.7rem;
  color:#a0aec0;
}

.extra-badges {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:1rem;
  margin-bottom:1.8rem;
}
.extra-badge-blue, .extra-badge-green {
  display:inline-flex;
  align-items:center;
  font-size:0.85rem;
  font-weight:500;
  border-radius:9999px;
  padding:0.375rem 0.875rem;
}
.extra-badge-blue {
  background:#ebf8ff;
  color:#2c5282;
}
.extra-badge-green {
  background:#f0fff4;
  color:#2f855a;
}

.limited-text {
  font-size:0.95rem;
  font-weight:bold;
  color:#333;
  margin-bottom:0;
}

/* Exit loading */
.exit-loading-container {
  position:fixed;
  inset:0;
  background:rgba(55,65,81,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:50;
}
.exit-box {
  background:#fff;
  padding:2rem;
  border-radius:0.5rem;
  text-align:center;
  max-width:20rem;
  width:100%;
  box-shadow:0 4px 6px rgba(0,0,0,0.1);
}
.exit-spinner-wrap {
  margin-bottom:1rem;
}
.exit-spinner {
  width:3.5rem;height:3.5rem;
  border:0.5rem solid #f7fafc;
  border-top:0.5rem solid #ed8936;
  border-radius:50%;
  margin:0 auto;
  animation:spin 1s linear infinite;
}
.exit-box h2 {
  font-size:1.3rem;
  font-weight:bold;
  margin-bottom:1rem;
}
.exit-progress-bg {
  background:#edf2f7;
  height:0.5rem;
  border-radius:0.25rem;
  margin-bottom:1rem;
  width:100%;
  overflow:hidden;
}
.exit-progress-bar {
  background:#ed8936;
  height:100%;
  width:0%;
  transition:width 0.5s ease-out;
}

/* Final Minimal Confirmation Popup */
.final-confirmation-container {
  position:fixed;
  inset:0;
  background:rgba(55,65,81,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:50;
  padding:1rem;
}
.final-minimal-box {
  background:#fff;
  padding:1.5rem;
  border-radius:0.5rem;
  text-align:center;
  max-width:24rem;
  width:100%;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
}
.final-check-icon-wrap-minimal {
  display:flex;
  justify-content:center;
  margin-bottom:1rem;
}
.final-check-minimal {
  width:3rem;
  height:3rem;
  color:#48bb78;
}
.final-title-minimal {
  font-size:1.7rem;
  font-weight:900;
  color:#2f855a;
  margin-bottom:0.5rem;
}
.final-delivery-minimal {
  font-size:1rem;
  font-weight:bold;
  color:#333;
  margin-bottom:0.75rem;
}
.final-info-minimal {
  font-size:0.95rem;
  line-height:1.4;
  color:#555;
  margin-bottom:1.5rem;
}
.bold { font-weight:bold; }

.minimal-rating-wrap {
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:1.5rem;
}
.minimal-rating-value {
  font-size:1.3rem;
  font-weight:900;
  color:#d69e2e;
  margin-bottom:0.25rem;
}
.minimal-stars-row {
  display:flex;
}
.minimal-stars-row .star {
  width:1.1rem; 
  height:1.1rem; 
  color:#d69e2e;
}

.final-cta-button-minimal {
  background:#3182ce;
  color:#fff;
  font-size:1.05rem;
  font-weight:700;
  padding:0.75rem 1.5rem;
  border-radius:9999px;
  border:none;
  cursor:pointer;
  transition:transform 0.3s;
}
.final-cta-button-minimal:hover {
  transform:scale(1.05);
  background:#2b6cb0;
}

.hidden {display:none!important;}

@media(max-width:640px) {
  .final-congrats-title {
    font-size:1.8rem;
  }
  .final-subtitle {
    font-size:1.2rem;
  }
  .final-product-title {
    font-size:1.2rem;
  }
  .limited-text,
  .proof-main,
  .proof-author,
  .rating-text {
    font-size:0.9rem;
  }
  .final-product-image {
    max-width:150px;
  }
  .vacuum-button {
    font-size:0.9rem;
    padding:0.6rem 1.2rem;
  }
  .final-minimal-box {
    padding:1rem;
  }
  .final-title-minimal {
    font-size:1.5rem;
  }
  .final-cta-button-minimal {
    font-size:1rem;
    padding:0.75rem 1.25rem;
  }
.trust-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .social-proof-box {
    padding: 1rem;
    gap: 1rem;
  }
  
  .hero-heading {
    font-size: 1.6rem;
  }
  
  .hero-subheading {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    font-size: 1.3rem;
    padding: 1rem 2rem;
    min-width: 240px;
    min-height: 70px;
  }
}	
.answer-button {
  background: linear-gradient(145deg, #ffffff, #f0f9ff);
  border: 2px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 4px 4px 8px #f0f0f0, -4px -4px 8px #ffffff;
  transition: all 0.3s ease;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.answer-button:hover {
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  border-color: #4299e1;
  transform: translateY(-3px);
  box-shadow: 6px 6px 12px #f0f0f0, -6px -6px 12px #ffffff;
}

.answer-button:hover {
  background: #f7fafc;
  border-color: #3182ce;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(49, 130, 206, 0.1);
}

@media (max-width: 640px) {
  .answer-button {
    padding: 1rem;
    font-size: 1rem;
  }
}

.answer-button:active {
  transform: translateY(0);
  box-shadow: none;
}
.hero-cta-button:focus,
.answer-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.hero-cta-button:focus:not(:focus-visible),
.answer-button:focus:not(:focus-visible) {
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.hero-cta-button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* ... rest of existing styles ... */
}

.answer-button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.highlight-text {
  background: linear-gradient(180deg, transparent 50%, rgba(72, 187, 120, 0.2) 50%);
  padding: 0 4px;
  font-weight: 700;
  color: #2f855a;
}

.hero-heading {
  font-size: 2.2rem; /* Increased from 2rem */
  margin-bottom: 1.5rem; /* Increased from 1rem */
}

.hero-text-large {
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 0 1rem;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #2d3748;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .hero-text-large {
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 0 0.75rem;
  }
  
  .hero-main {
    margin-bottom: 0.75rem;
  }
  
  .hero-sub {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .hero-text-large {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 0.75rem;
  }
}

.hero-main, .hero-sub {
    margin-bottom: 0.5rem;
  }

@media (max-width: 480px) {
  .hero-main, .hero-sub {
    margin-bottom: 0.25rem;
  }
}
.hero-text strong {
  white-space: normal;
}

.hero-main {
  margin-bottom: 1rem;
}

.hero-sub {
  margin-bottom: 1rem;
}

@media (max-width: 375px) {
  .hero-main {
    margin-bottom: 0.5rem;
  }
  
  .hero-sub {
    margin-bottom: 0.5rem;
  }
}
CHANGE 2: Update the HTML st

@media (max-width: 640px) {
  .hero-text-large {
    font-size: 1.15rem;
    line-height: 1.5;
    padding: 0 0.75rem;
  }
  
  .hero-main {
    margin-bottom: 0.5rem;
  }
  
  .hero-sub {
    margin-bottom: 0.25rem;
  }
}
@media(max-width:640px) {
  .hero-heading {
    font-size: 1.8rem;
  }
  .hero-cta-button {
    font-size: 1.4rem;
  }
}
.step-highlight {
  color: #3182ce;
  font-weight: 900;
}
.trust-message {
  text-align: center;
  margin-top: 0.75rem;
  color: #2d3748;
  background: rgba(245,245,241,0.8);
  padding: 0.75rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
}

@media (max-width: 480px) {
  .trust-message {
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
}
.trust-message .participants {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust-message .guarantee {
  font-size: 0.95rem;
  color: #4a5568;
}

@media (max-width: 640px) {
  .trust-message .participants {
    font-size: 1rem;
  }
  .trust-message .guarantee {
    font-size: 0.9rem;
  }
}

.lock-icon {
  color: #48bb78;
  width: 18px;
  height: 18px;
}
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-item {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  gap: 1.2rem;
}

@media (max-width: 480px) {
  .step-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .step-text {
    text-align: left;
  }
}

.step-number {
  background: linear-gradient(135deg, #4299e1, #3182ce);
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  color: white;
  animation: pulse 2s infinite;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.1rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@keyframes shimmer {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.95; transform: translateY(-1px); }
  100% { opacity: 1; transform: translateY(0); }
}

.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 3rem 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 -4px 6px rgba(0,0,0,0.02);
  font-size: 0.75rem;
  color: #64748b;
}

.footer-content {
  max-width: 72rem;
  margin: 0 auto;
}

.footer-links {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: #3182ce;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #2c5282;
}

.separator {
  margin: 0 0.5rem;
  color: #94a3b8;
}

.app-promo {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: #4a5568;
}

.app-promo a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 600;
}

.disclaimer {
  color: #94a3b8;
  font-size: 0.65rem;
  line-height: 1.4;
  text-align: justify;
  margin: 0 auto;
  max-width: 60rem;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 1.5rem 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .separator {
    display: none;
  }
  
  .disclaimer {
    text-align: left;
    font-size: 0.6rem;
  }
}
.trust-message .timer {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.trust-message .timer span {
  background: linear-gradient(transparent 50%, rgba(229, 62, 62, 0.15) 50%);
  color: #e53e3e;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 700;
}
@keyframes urgencyShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}