/* RecoveryFunds.pro - Custom Styles v2.0 con mejoras visuales */

:root {
  --color-navy: #1B3B6F;
  --color-green: #2D5F3F;
  --color-gray: #7C8B95;
  --color-light-gray: #F8F9FA;
  --color-white: #FFFFFF;
  --color-error: #DC2626;
  --color-success: #10B981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  color: #1a1a1a;
  background-color: var(--color-white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header Styles - Mejorado */
.header {
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--color-green);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-navy);
  font-weight: 600;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 2px solid #BBF7D0;
}

.trust-icon {
  color: var(--color-green);
  font-size: 1.5rem;
}

/* Hero Section - Mejorado con gradiente más impactante */
.hero {
  background: linear-gradient(135deg, #0F2744 0%, #1B3B6F 30%, #2D5F3F 100%);
  color: var(--color-white);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.hero-content .subheadline {
  font-size: 1.25rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2.5rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.hero-bullets li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Form Card - Rediseño mejorado */
.form-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #10B981, #059669, #2D5F3F);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}

.form-card h2 {
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.form-card .form-description {
  color: var(--color-gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Progress Bar - Nuevo */
.progress-container {
  margin-bottom: 2rem;
}

.progress-bar-wrapper {
  height: 8px;
  background-color: #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.progress-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 600;
}

/* Form Steps - Nuevo diseño step-by-step */
.form-step {
  display: none;
  min-height: 300px;
}

.form-step.active {
  display: block;
}

.step-header {
  margin-bottom: 2rem;
  text-align: center;
}

.step-number-badge {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B3B6F 0%, #2D5F3F 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(27, 59, 111, 0.3);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.step-subtitle {
  font-size: 1rem;
  color: var(--color-gray);
}

/* Shake animation for errors */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.5s;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #92400E;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 2px solid #FCD34D;
  box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
}

/* Form Styles - Mejorados */
.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.required {
  color: var(--color-error);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border: 3px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

.radio-option:hover {
  border-color: var(--color-green);
  background-color: #F0FDF4;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(45, 95, 63, 0.1);
}

.radio-option input[type="radio"]:checked + label {
  font-weight: 700;
}

.radio-option:has(input:checked) {
  border-color: var(--color-green);
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  box-shadow: 0 4px 15px rgba(45, 95, 63, 0.2);
}

.radio-option input[type="radio"] {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  cursor: pointer;
  accent-color: var(--color-green);
}

.radio-option label {
  cursor: pointer;
  flex: 1;
  font-size: 1.05rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 3px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background-color: var(--color-white);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(45, 95, 63, 0.1);
  background-color: #F0FDF4;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}

.char-count {
  text-align: right;
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-top: 0.75rem;
  font-weight: 600;
}

.checkbox-wrapper {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: #F8F9FA;
  border-radius: 12px;
  border: 2px solid #E5E7EB;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--color-green);
  flex-shrink: 0;
}

.checkbox-wrapper label {
  font-size: 0.95rem;
  color: #4B5563;
  cursor: pointer;
  line-height: 1.7;
}

.checkbox-wrapper a {
  color: var(--color-green);
  text-decoration: underline;
  font-weight: 600;
}

/* Navigation Buttons - Nuevo diseño */
.form-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  flex: 1;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-transform: none;
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prev-btn {
  background-color: #E5E7EB;
  color: #4B5563;
}

.prev-btn:hover:not(:disabled) {
  background-color: #D1D5DB;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.next-btn {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.next-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.next-btn.submit-mode {
  background: linear-gradient(135deg, #1B3B6F 0%, #2D5F3F 100%);
}

.form-error {
  color: var(--color-error);
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
  padding: 1rem;
  background-color: #FEE2E2;
  border-radius: 8px;
  border-left: 4px solid var(--color-error);
  font-weight: 600;
}

.form-error.show {
  display: block;
}

/* Sections - Mejorados */
.section {
  padding: 5rem 1.5rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  padding-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  border-radius: 10px;
}

/* Situations Section - Mejorado */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.situation-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--color-white);
  border: 3px solid #E5E7EB;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.situation-card:hover {
  border-color: var(--color-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.situation-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--color-white);
  border-radius: 16px;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.situation-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.5;
}

/* Process Section - Mejorado */
.process-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2.5rem 2rem;
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1B3B6F 0%, #2D5F3F 100%);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(27, 59, 111, 0.3);
}

.step-icon {
  font-size: 2.25rem;
  color: var(--color-white);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1.05rem;
  color: var(--color-gray);
  line-height: 1.7;
}

.process-note {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-left: 6px solid #F59E0B;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #92400E;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

/* Trust Section - Mejorado con iconos blancos */
.trust-section {
  background: linear-gradient(135deg, #0F2744 0%, #1B3B6F 50%, #2D5F3F 100%);
  color: var(--color-white);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.trust-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.trust-item-icon {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.trust-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-item p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Testimonials Section - Nuevo (reemplaza FAQ) */
.testimonials-section {
  background-color: var(--color-white);
  padding: 5rem 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-green);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--color-green);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-location {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.testimonial-rating {
  margin-top: 1rem;
  color: #F59E0B;
  font-size: 1.25rem;
}

/* Footer - Mejorado */
.footer {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--color-white);
  padding: 4rem 1.5rem 2.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.footer-contact {
  margin-bottom: 2.5rem;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.footer-contact a {
  color: #10B981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #059669;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  border-color: transparent;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* Notification Popup - Mejorado */
.notification-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--color-white);
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 400px;
  animation: slideInLeft 0.5s ease;
  z-index: 999;
  border-left: 5px solid var(--color-green);
  transition: opacity 0.3s ease;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.notification-content {
  flex: 1;
}

.notification-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.notification-time {
  font-size: 0.8rem;
  color: var(--color-gray);
}

.notification-close {
  background: none;
  border: none;
  color: var(--color-gray);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background-color: #F3F4F6;
  color: #374151;
}

/* Live Counter - Mejorado */
.live-counter {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 3px solid #FCD34D;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(252, 211, 77, 0.3);
}

.counter-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-navy);
  display: block;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.counter-label {
  font-size: 1.1rem;
  color: #92400E;
  font-weight: 700;
}

/* Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-white);
  animation: spin 1s ease-in-out infinite;
}

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

/* Responsive Design - Mejorado */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }

  .situations-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .notification-popup {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: none;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .logo-img {
    height: 45px;
  }
  
  .form-navigation {
    flex-direction: column;
  }
  
  .prev-btn {
    order: 2;
  }
  
  .next-btn {
    order: 1;
  }
}

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

/* Print Styles */
@media print {
  .header,
  .notification-popup,
  .mobile-sticky-cta {
    display: none;
  }
}
