/* ==========================================================================
   DESIGN SYSTEM — Seminário de Alto Impacto para Vigilantes
   Paleta: Escura + Dourado/Âmbar (Premium, Autoridade, Transformação)
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800;900&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Cores primárias */
  --bg-deep:        #080808;
  --bg-primary:     #0c0c0c;
  --bg-card:        #141414;
  --bg-card-hover:  #1a1a1a;
  --bg-input:       #181818;
  --bg-input-focus: #1e1e1e;

  /* Dourado / Âmbar */
  --gold-100: #fff8e7;
  --gold-200: #fde68a;
  --gold-300: #fbbf24;
  --gold-400: #f59e0b;
  --gold-500: #d97706;
  --gold-600: #b45309;
  --gold-glow: rgba(251, 191, 36, 0.25);
  --gold-gradient: linear-gradient(135deg, #fbbf24, #d97706, #f59e0b);
  --gold-gradient-soft: linear-gradient(135deg, rgba(251,191,36,.15), rgba(217,119,6,.08));

  /* Textos */
  --text-primary:   #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted:     #737373;
  --text-gold:      #fbbf24;

  /* Bordas */
  --border-subtle:  rgba(255,255,255,0.06);
  --border-gold:    rgba(251,191,36,0.3);

  /* Glassmorphism */
  --glass-bg:       rgba(20,20,20,0.7);
  --glass-border:   rgba(255,255,255,0.08);
  --glass-blur:     20px;

  /* Espaçamentos */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Tipografia */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

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

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 30px rgba(251,191,36,0.15);
  --shadow-glow: 0 0 60px rgba(251,191,36,0.12);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--text-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-200);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-600);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-500);
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Section common ---------- */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.section__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

/* ---------- Animated underline ---------- */
.gold-underline {
  position: relative;
  display: inline-block;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 0.8s 0.5s forwards;
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-lg);
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35);
}

/* Overlay gradients */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.2) 40%, rgba(8,8,8,0.85) 100%),
    radial-gradient(ellipse at 50% 60%, rgba(251,191,36,0.08) 0%, transparent 70%);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(251,191,36,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-xl);
  animation: badgePulse 2s ease-in-out infinite;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-300);
  animation: dotPulse 1.5s ease-in-out infinite;
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.hero__headline-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(251,191,36,0.3));
}

/* Sub-headline */
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  line-height: 1.5;
}

/* Event info */
.hero__info {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.hero__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.hero__info-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}

/* Impact phrase */
.hero__impact {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-200);
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
}

/* CTA button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: var(--space-md) var(--space-2xl);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold), 0 0 0 0 rgba(251,191,36,0);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold), 0 0 40px rgba(251,191,36,0.3);
}
.btn-cta:hover::before {
  opacity: 1;
}
.btn-cta:active {
  transform: translateY(0) scale(0.98);
}

.btn-cta__arrow {
  transition: transform var(--transition-fast);
}
.btn-cta:hover .btn-cta__arrow {
  transform: translateX(4px);
}

/* ====================================================================
   VALUE PROPOSITION SECTION
   ==================================================================== */
.value {
  background: var(--bg-primary);
  position: relative;
}

/* Ambient glow */
.value::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(251,191,36,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.value__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

/* Card */
.value__card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.value__card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.value__card:hover::before {
  opacity: 1;
}

.value__card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.value__card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--gold-200);
}

.value__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ====================================================================
   FORM SECTION
   ==================================================================== */
.form-section {
  background: var(--bg-deep);
  position: relative;
}

/* Ambient glow */
.form-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(251,191,36,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-card);
  position: relative;
}

/* Form steps indicator */
.form-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.form-step-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.form-step-indicator.active {
  color: var(--gold-300);
}

.form-step-indicator__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--bg-input);
  border: 2px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.form-step-indicator.active .form-step-indicator__number {
  background: var(--gold-gradient);
  border-color: var(--gold-400);
  color: #0a0a0a;
}

.form-step-indicator.completed .form-step-indicator__number {
  background: var(--gold-600);
  border-color: var(--gold-500);
  color: #fff;
}

.form-step-indicator__line {
  width: 40px;
  height: 2px;
  background: var(--border-subtle);
  transition: background var(--transition-base);
}

.form-step-indicator.active ~ .form-step-indicator .form-step-indicator__line,
.form-step-indicator.completed + .form-step-indicator .form-step-indicator__line {
  /* line left inactive by default */
}

/* Form Parts */
.form-part {
  display: none;
}
.form-part.active {
  display: block;
  animation: fadeSlideUp 0.4s ease;
}

.form-part__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--gold-200);
  text-align: center;
}

/* Input groups */
.input-group {
  margin-bottom: var(--space-lg);
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.input-group label .required {
  color: var(--gold-400);
  margin-left: 2px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
  outline: none;
}

.input-group input::placeholder {
  color: var(--text-muted);
}

.input-group input:focus,
.input-group select:focus {
  background: var(--bg-input-focus);
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.input-group .input-error {
  display: none;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: var(--space-xs);
}
.input-group.error .input-error {
  display: block;
}
.input-group.error input,
.input-group.error select {
  border-color: #ef4444;
}

/* Profile radio group */
.profile-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.profile-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}
.profile-option:hover {
  border-color: var(--gold-400);
  background: var(--bg-input-focus);
}
.profile-option input[type="radio"] {
  width: auto;
  accent-color: var(--gold-400);
  cursor: pointer;
}
.profile-option.selected {
  border-color: var(--gold-400);
  background: rgba(251,191,36,0.05);
}

/* Survey question */
.survey-question {
  margin-bottom: var(--space-2xl);
}

.survey-question__label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  display: block;
  line-height: 1.4;
}

.survey-question__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-size: 0.8rem;
  font-weight: 800;
  margin-right: var(--space-sm);
  flex-shrink: 0;
  vertical-align: middle;
}

/* Multiple choice options */
.survey-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.survey-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  color: var(--text-secondary);
  user-select: none;
}
.survey-option:hover {
  border-color: var(--border-gold);
  background: var(--bg-input-focus);
  color: var(--text-primary);
}
.survey-option input[type="checkbox"],
.survey-option input[type="radio"] {
  width: auto;
  accent-color: var(--gold-400);
  cursor: pointer;
  flex-shrink: 0;
}
.survey-option.selected {
  border-color: var(--gold-400);
  background: rgba(251,191,36,0.06);
  color: var(--text-primary);
}

/* Form navigation buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-2xl);
  gap: var(--space-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.btn-next,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: var(--space-md) var(--space-2xl);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.03em;
  margin-left: auto;
}
.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), 0 0 30px rgba(251,191,36,0.25);
}
.btn-next:active,
.btn-submit:active {
  transform: translateY(0);
}

.btn-submit {
  text-transform: uppercase;
  font-size: 1.05rem;
  padding: var(--space-md) var(--space-3xl);
}

/* ====================================================================
   SUCCESS SCREEN
   ==================================================================== */
.success-screen {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.success-screen.active {
  display: block;
  animation: fadeSlideUp 0.6s ease;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.success-icon__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-glow);
}

.success-icon__check {
  font-size: 2.5rem;
  color: #0a0a0a;
}

.success-screen__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--gold-200);
}

.success-screen__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.success-screen__emoji {
  font-size: 2rem;
  animation: fireFloat 1.5s ease-in-out infinite;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ====================================================================
   ANIMATIONS
   ==================================================================== */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.15); }
  50%      { box-shadow: 0 0 20px 5px rgba(251,191,36,0.1); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

@keyframes underlineIn {
  to { transform: scaleX(1); }
}

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

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fireFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
.hero__content {
  animation: heroContentIn 1s 0.3s both;
}

.hero__badge {
  animation: fadeSlideUp 0.6s 0.2s both, badgePulse 2s 1s ease-in-out infinite;
}

/* ====================================================================
   FLOATING PARTICLES (decorative)
   ==================================================================== */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-300);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

/* ====================================================================
   LOADING SPINNER (for form submit)
   ==================================================================== */
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(10,10,10,0.3);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn-submit.loading .spinner {
  display: inline-block;
}
.btn-submit.loading .btn-label {
  opacity: 0.5;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-2xl) var(--space-md);
    min-height: 100svh;
  }

  .hero__headline {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .hero__info {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .value__grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .form-steps {
    gap: var(--space-sm);
  }

  .form-step-indicator__line {
    width: 20px;
  }

  .form-step-indicator span:not(.form-step-indicator__number):not(.form-step-indicator__line) {
    display: none;
  }

  .form-nav {
    flex-direction: column;
  }

  .btn-next,
  .btn-submit,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .btn-secondary {
    order: 2;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero__badge {
    font-size: 0.7rem;
    padding: var(--space-xs) var(--space-md);
  }

  .form-wrapper {
    padding: var(--space-lg) var(--space-md);
  }

  .survey-option,
  .profile-option {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }
}

/* ---------- Focus visible for accessibility ---------- */
*:focus-visible {
  outline: 2px solid var(--gold-400);
  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;
  }
  html { scroll-behavior: auto; }
}
