/* ==========================================================================
   Quiz Funnel - Método 200 em 5
   Fintech Trust Aesthetic — Desert to Oasis Theme
   ========================================================================== */

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Design Tokens — Desert/Oasis Palette
   ========================================================================== */
:root {
  /* Primary — Oasis Green (Deep for accessibility) */
  --oasis: #059669;
  --oasis-dark: #047857;
  --oasis-light: #10B981;
  --oasis-pale: #D1FAE5;

  /* Secondary — Desert Warmth */
  --sand: #F5F0E6;
  --sand-warm: #E8DFD0;
  --earth: #A89078;

  /* Accent — Gold (Guarantees & Value) */
  --gold: #D97706;
  --gold-light: #FEF3C7;
  --gold-bright: #FBBF24;

  /* Neutrals */
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-100: #F1F5F9;
  --white: #FFFFFF;

  /* Semantic */
  --success: #059669;
  --error: #DC2626;

  /* Typography */
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows — Warm, not cold */
  --shadow-sm: 0 1px 2px rgba(168, 144, 120, 0.08);
  --shadow-md: 0 4px 12px rgba(168, 144, 120, 0.12);
  --shadow-lg: 0 8px 24px rgba(168, 144, 120, 0.16);
  --shadow-xl: 0 16px 48px rgba(168, 144, 120, 0.2);
  --shadow-oasis: 0 4px 20px rgba(5, 150, 105, 0.25);
  --shadow-gold: 0 4px 20px rgba(217, 119, 6, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--slate-700);
  background-color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { color: var(--slate-700); }

strong { font-weight: 600; color: var(--slate-900); }

/* Container */
.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ==========================================================================
   Screen Management
   ========================================================================== */
.screen {
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
}

.screen.active {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Landing Screen — White Hero
   ========================================================================== */
#landing-screen {
  background: var(--white);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-5);
  position: relative;
  overflow: hidden;
}

/* Subtle warm gradient overlay */
#landing-screen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

#landing-screen::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(245, 240, 230, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.landing-content {
  max-width: 480px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 600ms var(--ease-out) both;
}

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

/* Quiz badge */
.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--oasis-pale);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--oasis);
  margin-bottom: var(--space-6);
  animation: fadeInUp 600ms var(--ease-out) 100ms both;
}

.landing-badge svg {
  width: 14px;
  height: 14px;
}

/* Main headline */
.landing-title {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  margin-bottom: var(--space-4);
  animation: fadeInUp 600ms var(--ease-out) 150ms both;
}

.landing-title .highlight {
  color: var(--oasis);
  position: relative;
}

.landing-subtitle {
  font-size: var(--text-lg);
  color: var(--slate-500);
  margin-bottom: var(--space-8);
  animation: fadeInUp 600ms var(--ease-out) 200ms both;
}

/* Benefits list */
.landing-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-8);
  animation: fadeInUp 600ms var(--ease-out) 250ms both;
}

.landing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--slate-700);
}

.landing-benefits .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--oasis);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* Guarantee teaser on landing */
.guarantee-teaser {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: left;
  animation: fadeInUp 600ms var(--ease-out) 300ms both;
}

.guarantee-teaser-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.guarantee-teaser-text {
  font-size: var(--text-sm);
  color: var(--slate-700);
  line-height: 1.5;
}

.guarantee-teaser-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  animation: fadeInUp 600ms var(--ease-out) 400ms both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--slate-500);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--oasis);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
  min-height: 56px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--oasis);
  color: var(--white);
  box-shadow: var(--shadow-oasis);
}

.btn-primary:hover {
  background: var(--oasis-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Pulse animation for CTA */
.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: var(--shadow-oasis);
  }
  50% {
    box-shadow: 0 4px 32px rgba(5, 150, 105, 0.4);
  }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--slate-900);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 119, 6, 0.4);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-xl);
  min-height: 64px;
}

.btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Quiz Screen — Sand Background
   ========================================================================== */
#quiz-screen {
  background: var(--sand);
  padding-top: 0;
}

/* Progress Bar — Sticky */
.progress-container {
  position: sticky;
  top: 0;
  background: var(--white);
  padding: var(--space-4) 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--sand-warm);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--slate-500);
}

.progress-bar {
  height: 6px;
  background: var(--sand-warm);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--oasis) 0%, var(--oasis-light) 100%);
  border-radius: var(--radius-full);
  transition: width var(--duration-normal) var(--ease-out);
  position: relative;
}

/* Shimmer effect on progress */
.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

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

/* Questions Area */
.questions-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) 0 var(--space-12);
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
}

.question-container {
  display: none;
  width: 100%;
}

.question-container.active {
  display: block;
  animation: questionIn var(--duration-normal) var(--ease-out) both;
}

@keyframes questionIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.question-container.exiting {
  animation: questionOut var(--duration-fast) var(--ease-out) both;
}

@keyframes questionOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-40px);
  }
}

/* Question number pill */
.question-number {
  display: inline-block;
  background: var(--white);
  color: var(--oasis);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}

/* Question text */
.question-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-6);
  line-height: 1.3;
}

/* ==========================================================================
   Option Cards — White on Sand
   ========================================================================== */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.option-card {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: 60px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.option-card:hover {
  border-color: var(--oasis-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.option-card.selected {
  border-color: var(--oasis);
  background: var(--oasis-pale);
  box-shadow: var(--shadow-oasis);
  animation: optionSelect 400ms var(--ease-spring);
}

@keyframes optionSelect {
  0% { transform: scale(1); }
  40% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.option-letter {
  width: 36px;
  height: 36px;
  background: var(--sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--slate-500);
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.option-card.selected .option-letter {
  background: var(--oasis);
  color: var(--white);
}

.option-text {
  flex: 1;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--slate-700);
}

.option-card.selected .option-text {
  color: var(--slate-900);
}

.option-check {
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: all var(--duration-fast) var(--ease-spring);
  color: var(--oasis);
}

.option-card.selected .option-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ==========================================================================
   Micro-copy Feedback — POP Animation
   ========================================================================== */
.micro-copy {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--oasis);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--slate-900);
  opacity: 0;
  transform: translateY(-16px) scale(0.95);
  transition: none;
  position: relative;
  overflow: hidden;
}

/* Celebration gradient sweep */
.micro-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(5, 150, 105, 0.08) 50%, transparent 100%);
  transition: none;
}

.micro-copy.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: microCopyPop 500ms var(--ease-spring);
}

.micro-copy.visible::before {
  animation: microCopySweep 600ms var(--ease-out) 200ms both;
}

@keyframes microCopyPop {
  0% {
    opacity: 0;
    transform: translateY(-16px) scale(0.9);
  }
  50% {
    transform: translateY(4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes microCopySweep {
  from { left: -100%; }
  to { left: 100%; }
}

/* Micro-copy checkmark prefix */
.micro-copy .micro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--oasis);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 12px;
  margin-right: var(--space-3);
  vertical-align: middle;
  animation: iconBounce 500ms var(--ease-spring) 300ms both;
}

@keyframes iconBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   Loading Screen
   ========================================================================== */
#loading-screen {
  background: var(--white);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-8);
}

.loading-content {
  max-width: 400px;
}

.loading-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--slate-900);
  margin-bottom: var(--space-8);
}

.loading-progress {
  margin-bottom: var(--space-8);
}

.loading-bar {
  height: 10px;
  background: var(--sand);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.loading-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--oasis) 0%, var(--oasis-light) 100%);
  border-radius: var(--radius-full);
  transition: width 500ms var(--ease-out);
}

.loading-percentage {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--oasis);
  margin-bottom: var(--space-2);
}

.loading-steps {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-8);
}

.loading-step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  opacity: 0.4;
  transition: all var(--duration-normal) var(--ease-out);
  color: var(--slate-500);
}

.loading-step.active {
  opacity: 1;
  color: var(--slate-700);
}

.loading-step.completed {
  opacity: 1;
  color: var(--oasis);
}

.loading-step-icon {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  transition: all var(--duration-fast) var(--ease-out);
}

.loading-step.completed .loading-step-icon {
  background: var(--oasis);
  border-color: var(--oasis);
  color: var(--white);
}

.loading-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.loading-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Email Screen
   ========================================================================== */
#email-screen {
  background: var(--sand);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-8);
}

.email-content {
  max-width: 400px;
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.email-icon {
  width: 72px;
  height: 72px;
  background: var(--oasis-pale);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 36px;
}

.email-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.email-subtitle {
  color: var(--slate-500);
  margin-bottom: var(--space-6);
}

.email-form {
  margin-bottom: var(--space-4);
}

.email-input {
  width: 100%;
  padding: var(--space-4);
  background: var(--sand);
  border: 2px solid var(--sand-warm);
  border-radius: var(--radius-lg);
  color: var(--slate-900);
  font-family: var(--font-body);
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
  transition: all var(--duration-fast) var(--ease-out);
}

.email-input:focus {
  outline: none;
  border-color: var(--oasis);
  background: var(--white);
}

.email-input::placeholder {
  color: var(--slate-500);
}

.email-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-4);
}

.email-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--slate-500);
}

.email-benefits li::before {
  content: '✓';
  color: var(--oasis);
  font-weight: 700;
}

.skip-link {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--slate-500);
  font-size: var(--text-sm);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--duration-fast);
}

.skip-link:hover {
  color: var(--slate-700);
}

/* ==========================================================================
   Result Screen — Desert/Oasis Gradient Journey
   ========================================================================== */
#result-screen {
  background: var(--white);
  padding: var(--space-8) 0 var(--space-16);
}

/* Result header section */
.result-header {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  margin-bottom: var(--space-6);
}

/* Profile badge */
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-4);
  animation: badgePop 500ms var(--ease-spring) 200ms both;
}

@keyframes badgePop {
  0% { opacity: 0; transform: scale(0.5); }
  50% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Profile A — Gold/Premium */
.profile-a .profile-badge {
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(251, 191, 36, 0.3) 100%);
  border: 2px solid var(--gold);
  color: var(--gold);
}

.profile-a .result-estimate {
  color: var(--gold);
}

/* Profile B — Oasis Green */
.profile-b .profile-badge {
  background: var(--oasis-pale);
  border: 2px solid var(--oasis);
  color: var(--oasis);
}

.profile-b .result-estimate {
  color: var(--oasis);
}

/* Profile C — Neutral/Analytical */
.profile-c .profile-badge {
  background: var(--slate-100);
  border: 2px solid var(--slate-300);
  color: var(--slate-700);
}

.profile-c .result-estimate {
  color: var(--slate-900);
}

.result-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: var(--space-4);
  animation: fadeInUp 500ms var(--ease-out) 300ms both;
}

.result-description {
  font-size: var(--text-lg);
  color: var(--slate-500);
  margin-bottom: var(--space-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 500ms var(--ease-out) 400ms both;
}

.result-estimate {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
  animation: fadeInUp 500ms var(--ease-out) 500ms both;
}

.result-estimate-label {
  font-size: var(--text-sm);
  color: var(--slate-500);
  animation: fadeInUp 500ms var(--ease-out) 550ms both;
}

/* Result Stats */
.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  animation: fadeInUp 500ms var(--ease-out) 600ms both;
}

.stat-card {
  background: var(--sand);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--oasis);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ==========================================================================
   Offer Section — Guarantee-Forward Design
   ========================================================================== */
.offer-section {
  animation: fadeInUp 500ms var(--ease-out) 700ms both;
}

/* Main Guarantee Box — MOST PROMINENT */
.guarantee-hero {
  background: var(--gold-light);
  border: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(217, 119, 6, 0.03) 10px,
    rgba(217, 119, 6, 0.03) 20px
  );
  pointer-events: none;
}

.guarantee-hero-content {
  position: relative;
  z-index: 1;
}

.guarantee-hero-icon {
  font-size: 48px;
  margin-bottom: var(--space-3);
}

.guarantee-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.guarantee-hero-text {
  font-size: var(--text-lg);
  color: var(--slate-700);
  margin-bottom: var(--space-2);
}

.guarantee-hero-text strong {
  color: var(--slate-900);
  font-size: var(--text-xl);
}

.guarantee-hero-subtext {
  font-size: var(--text-sm);
  color: var(--slate-500);
}

/* Offer Box */
.offer-box {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.offer-label {
  display: inline-block;
  background: var(--oasis);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.offer-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.offer-subtitle {
  color: var(--slate-500);
  margin-bottom: var(--space-6);
}

.offer-features {
  list-style: none;
  margin-bottom: var(--space-6);
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--slate-700);
}

.offer-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--oasis);
  margin-top: 2px;
}

/* Pricing — Guarantee appears BEFORE price per brand guide */
.offer-pricing {
  text-align: center;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--slate-200);
  margin-bottom: var(--space-4);
}

.price-guarantee-reminder {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold-light);
  border: 1px solid var(--gold);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.price-current {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: var(--space-1);
  line-height: 1;
}

.price-current .currency {
  font-size: var(--text-2xl);
  vertical-align: super;
}

.price-label {
  font-size: var(--text-sm);
  color: var(--slate-500);
}

/* Testimonials */
.testimonials-section {
  margin: var(--space-8) 0;
}

.testimonials-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  border-left: 4px solid var(--oasis);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--oasis) 0%, var(--oasis-light) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--white);
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: var(--text-xs);
  color: var(--slate-500);
}

.testimonial-stars {
  color: var(--gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--slate-700);
  line-height: 1.6;
  font-style: italic;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: var(--space-6) 0;
  background: var(--slate-900);
  margin: 0 calc(-1 * var(--space-5));
  padding: var(--space-8) var(--space-5);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.final-cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gold-bright);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.urgency-message {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #FCA5A5;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */
@media (max-width: 640px) {
  :root {
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --text-5xl: 2.5rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .landing-title {
    font-size: var(--text-3xl);
  }

  .question-text {
    font-size: var(--text-xl);
  }

  .result-stats {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: var(--space-3) var(--space-4);
  }

  .stat-value {
    font-size: var(--text-base);
  }

  .offer-box {
    padding: var(--space-5);
  }

  .guarantee-hero {
    padding: var(--space-5);
  }

  .price-current {
    font-size: var(--text-4xl);
  }

  .trust-badges {
    flex-direction: column;
    gap: var(--space-3);
  }

  .guarantee-teaser {
    flex-direction: column;
    text-align: center;
  }

  .final-cta {
    margin: 0 calc(-1 * var(--space-4));
    padding: var(--space-6) var(--space-4);
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.hidden { display: none !important; }

/* Focus states for accessibility */
.btn:focus-visible,
.option-card:focus-visible,
.email-input:focus-visible {
  outline: 3px solid var(--oasis);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
