/* ==========================================================================
   Alejon Cosmetics - Summer Internship Application 2026 | Design System
   ========================================================================== */

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

/* 1. CSS Custom Properties (:root) */
:root {
  /* Brand & Palette Tokens */
  --primary-dark: #0a0a0f;
  --dark-bg: #0d0d12;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(193, 148, 82, 0.18);
  --alejon-gold: #c19452;
  --light-gold: #f0b866;
  --warm-amber: #f0a500;
  --rose-gold: #b76e79;
  --champagne: #f7e7ce;
  --success-green: #00d4aa;
  --error-red: #ff4757;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  
  /* Elevation & Glows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
  --glow-gold: 0 0 25px rgba(193, 148, 82, 0.25);
  --glow-gold-strong: 0 0 40px rgba(240, 184, 102, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--alejon-gold);
  color: var(--primary-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #08080c;
}
::-webkit-scrollbar-thumb {
  background: rgba(193, 148, 82, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--alejon-gold);
}

/* 3. Animated Background & Canvas */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 40%, rgba(193, 148, 82, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(183, 110, 121, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(240, 184, 102, 0.07) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: bgShift 45s ease-in-out infinite;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* 4. Hero Section (#hero) */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
}

.hero-content {
  text-align: center;
  max-width: 820px;
  padding: 2rem 1rem;
  z-index: 2;
  position: relative;
}

.hero-logo {
  width: 170px;
  height: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto 2rem auto;
  display: block;
  animation: float 6s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #c19452 0%, #f0b866 25%, #f7e7ce 50%, #f0b866 75%, #c19452 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.fire-emoji {
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.program-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.badge {
  background: rgba(193, 148, 82, 0.1);
  border: 1px solid rgba(193, 148, 82, 0.3);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--champagne);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.badge:hover {
  background: rgba(193, 148, 82, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(193, 148, 82, 0.2);
  border-color: var(--light-gold);
}

.badge-icon {
  margin-right: 0.5rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
}

.cta-button {
  background: linear-gradient(135deg, var(--alejon-gold), var(--light-gold));
  color: var(--primary-dark);
  border: none;
  padding: 1.05rem 3.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 30px rgba(193, 148, 82, 0.25);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold-strong);
}

.cta-button:hover::after {
  animation: ctaSweep 0.65s ease;
}

.cta-button:active {
  transform: translateY(-1px);
}

.btn-sparkle {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.cta-button:hover .btn-sparkle {
  transform: scale(1.25) rotate(15deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeInUp 3s ease infinite;
}

.scroll-indicator span {
  color: var(--text-muted);
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--alejon-gold), transparent);
  margin: 0 auto;
  animation: scrollBounce 2s infinite;
}

/* 5. Form Section (#application) */
#application {
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.form-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.form-card {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid var(--card-border);
  padding: 3.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--alejon-gold), var(--light-gold), var(--alejon-gold));
}

.form-title {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2.8rem;
  line-height: 1.7;
}

/* 6. Progress Steps */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.2rem;
  padding: 0 0.5rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  cursor: default;
  transition: all var(--transition-smooth);
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition-smooth);
}

.step-item.active .step-circle {
  border-color: var(--alejon-gold);
  color: var(--alejon-gold);
  background: rgba(193, 148, 82, 0.14);
  box-shadow: var(--glow-gold);
  animation: glowPulse 2.5s infinite;
}

.step-item.completed .step-circle {
  background: linear-gradient(135deg, var(--alejon-gold), var(--light-gold));
  color: var(--primary-dark);
  border-color: var(--alejon-gold);
  box-shadow: 0 0 18px rgba(193, 148, 82, 0.35);
}

.step-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-item.active .step-label {
  color: var(--light-gold);
  font-weight: 600;
}

.step-item.completed .step-label {
  color: var(--champagne);
}

.step-connector {
  height: 2px;
  width: 70px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  margin: 0 0.8rem 1.6rem 0.8rem;
  border-radius: 2px;
  overflow: hidden;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--alejon-gold), var(--light-gold));
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.step-connector.active::after {
  width: 100%;
}

/* 7. Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: slideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-step.slide-out {
  animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step-title {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  color: var(--text-primary);
}

/* 8. Input Groups */
.input-group {
  position: relative;
  margin-bottom: 2.2rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.15rem 1.3rem;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: all var(--transition-smooth);
  appearance: none;
  -webkit-appearance: none;
}

.input-group select option {
  background: #14141d;
  color: white;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--alejon-gold);
  background: rgba(193, 148, 82, 0.05);
  box-shadow: 0 0 0 3px rgba(193, 148, 82, 0.12);
}

.input-group label {
  position: absolute;
  top: 1.15rem;
  left: 1.3rem;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition-smooth);
  pointer-events: none;
  background: transparent;
}

.input-group.focused label,
.input-group.has-value label {
  top: -0.68rem;
  left: 1rem;
  font-size: 0.76rem;
  color: var(--light-gold);
  background: #111119;
  padding: 0 0.45rem;
  border-radius: 4px;
  font-weight: 500;
}

.required {
  color: #ff6b8a;
  margin-left: 2px;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--alejon-gold), var(--light-gold));
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 1px;
}

.input-group.focused .input-line {
  width: 100%;
}

.error-message {
  color: var(--error-red);
  font-size: 0.82rem;
  margin-top: 0.45rem;
  display: none;
  padding-left: 0.35rem;
  font-weight: 500;
}

.input-group.error input,
.input-group.error select,
.input-group.error textarea {
  border-color: var(--error-red);
  background: rgba(255, 71, 87, 0.05);
}

.input-group.error .error-message,
.radio-group.error .error-message {
  display: block;
}

.radio-group .error-message {
  display: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c19452' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 16px;
  padding-right: 2.8rem;
}

.helper-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
  padding-left: 0.35rem;
}

.input-group.shake,
.radio-group.shake {
  animation: shake 0.5s;
}

/* 9. Radio Group */
.radio-group {
  margin-bottom: 2.2rem;
}

.radio-label {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

.radio-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.radio-option:hover {
  background: rgba(193, 148, 82, 0.07);
  border-color: rgba(193, 148, 82, 0.3);
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
  position: relative;
  flex-shrink: 0;
}

.radio-option input:checked ~ .radio-custom {
  border-color: var(--alejon-gold);
}

.radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--alejon-gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-option input:checked ~ .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-option input:checked ~ .radio-text {
  color: var(--light-gold);
  font-weight: 500;
}

.radio-option:has(input:checked) {
  border-color: rgba(193, 148, 82, 0.45);
  background: rgba(193, 148, 82, 0.1);
}

.radio-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

/* 10. File Upload */
.file-upload-group {
  margin-bottom: 2.2rem;
}

.file-label {
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  display: block;
  font-weight: 500;
}

.file-upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  background: rgba(255, 255, 255, 0.02);
}

.file-upload-zone:hover {
  border-color: rgba(193, 148, 82, 0.4);
  background: rgba(193, 148, 82, 0.04);
}

.file-upload-zone.dragover {
  border-color: var(--alejon-gold);
  background: rgba(193, 148, 82, 0.08);
  transform: scale(1.01);
}

.upload-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.upload-text {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.upload-subtext {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  background: rgba(193, 148, 82, 0.1);
  border: 1px solid rgba(193, 148, 82, 0.25);
  border-radius: 14px;
  margin-top: 0.8rem;
}

.file-name {
  color: var(--champagne);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-remove {
  background: none;
  border: none;
  color: var(--error-red);
  cursor: pointer;
  font-size: 1.15rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.file-remove:hover {
  background: rgba(255, 71, 87, 0.15);
}

/* 11. Character Counter */
.char-counter {
  text-align: right;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.char-counter.warning {
  color: var(--warm-amber);
}

.char-counter.limit {
  color: var(--error-red);
}

/* 12. Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.8rem;
  gap: 1rem;
}

.btn-prev {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-smooth);
  font-weight: 500;
}

.btn-prev:hover {
  border-color: var(--alejon-gold);
  color: var(--light-gold);
  background: rgba(193, 148, 82, 0.06);
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, var(--alejon-gold), var(--light-gold));
  color: var(--primary-dark);
  border: none;
  padding: 0.95rem 2.6rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: all var(--transition-smooth);
  margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 148, 82, 0.35);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 10, 15, 0.3);
  border-top-color: var(--primary-dark);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* 13. Success Overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.success-overlay.show {
  display: flex;
  animation: fadeIn 0.5s ease;
}

.success-content {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 540px;
}

.checkmark-container {
  margin-bottom: 2rem;
}

.checkmark {
  width: 85px;
  height: 85px;
  display: block;
  margin: 0 auto;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--success-green);
  animation: checkmarkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: var(--success-green);
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: 50% 50%;
  animation: checkmarkCheck 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.success-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-message {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.success-submessage {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.success-socials p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.social-link {
  color: var(--alejon-gold);
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(193, 148, 82, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

.social-link:hover {
  background: rgba(193, 148, 82, 0.12);
  transform: translateY(-2px);
  border-color: var(--light-gold);
}

/* 14. Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 71, 87, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 14px;
  font-size: 0.92rem;
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast.success {
  background: rgba(0, 212, 170, 0.96);
}

/* 15. Footer */
#footer {
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 110px;
  filter: brightness(0) invert(1);
  margin: 0 auto 1.2rem auto;
  opacity: 0.6;
  display: block;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--alejon-gold);
}

/* 16. Confetti */
.confetti-piece {
  position: fixed;
  z-index: 1001;
  pointer-events: none;
}

/* 17. Animations & Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.16); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translate(-50%, 20px); }
  50% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 20px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(10px); opacity: 1; }
}

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

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

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

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

@keyframes checkmarkStroke {
  100% { stroke-dashoffset: 0; }
}

@keyframes checkmarkCheck {
  100% { stroke-dashoffset: 0; }
}

@keyframes confetti-fall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(193, 148, 82, 0.15); }
  50% { box-shadow: 0 0 35px rgba(193, 148, 82, 0.38); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}

@keyframes ctaSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* 18. Responsive Breakpoints */
@media (max-width: 768px) {
  .hero-logo {
    width: 140px;
  }
  .hero-title {
    letter-spacing: 0;
  }
  .hero-subtitle {
    letter-spacing: 2px;
    font-size: 1rem;
  }
  .form-card {
    padding: 2.2rem 1.5rem;
    border-radius: 22px;
  }
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 0.88rem;
  }
  .step-connector {
    width: 42px;
  }
  .step-label {
    font-size: 0.72rem;
  }
  .program-badges {
    gap: 0.6rem;
  }
  .badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 2rem 1rem;
  }
  .form-card {
    padding: 1.8rem 1.1rem;
  }
  .form-nav {
    flex-direction: column;
  }
  .btn-prev,
  .btn-next,
  .btn-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .btn-next,
  .btn-submit {
    margin-left: 0;
  }
  .radio-options {
    grid-template-columns: 1fr;
  }
  .step-connector {
    width: 25px;
  }
  .progress-steps {
    gap: 0;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .cta-button {
    padding: 0.95rem 2.2rem;
    font-size: 1rem;
  }
}

@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;
  }
}
