/* ==========================================================================
   RED DE AYUDA DE ACCIDENTES - HIGH-CONVERTING PREMIUM STYLESHEET
   ========================================================================== */

:root {
  /* Core Colors */
  --bg-dark: #0A1128;
  --bg-dark-rgb: 10, 17, 40;
  --bg-dark-secondary: #111D4A;
  
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  
  /* High-Impact Conversion Accents */
  --accent-red: #DC2626;
  --accent-red-hover: #B91C1C;
  --accent-red-rgb: 220, 38, 38;
  --accent-red-light: #FEF2F2;
  
  --accent-green: #059669;
  --accent-green-light: #ECFDF5;
  --accent-green-rgb: 5, 150, 105;
  
  --accent-yellow: #FACC15;
  --accent-gold: #F59E0B;
  
  /* Text Colors - Ultra-High Contrast for Maximum Legibility */
  --text-dark: #0F172A;
  --text-body: #1E293B;
  --text-muted: #475569;
  --text-faint: #64748B;
  --text-light: #FFFFFF;
  --text-light-muted: #CBD5E1;
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-hero: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-dark);
  line-height: 1.2;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
  background: linear-gradient(90deg, #B91C1C 0%, #DC2626 50%, #B91C1C 100%);
  color: #FFFFFF;
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  position: relative;
  z-index: 101;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #FEF08A;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(254, 240, 138, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(254, 240, 138, 0); }
}

/* ==========================================================================
   MAIN HEADER / NAVIGATION
   ========================================================================== */

.main-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.45rem;
  color: var(--text-dark);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--accent-red);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-cta-btn {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: var(--border-radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  border: none;
  transition: var(--transition-smooth);
}

.phone-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
  filter: brightness(1.05);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  background: radial-gradient(circle at 80% 20%, #1E293B 0%, #0F172A 70%, #020617 100%);
  color: var(--text-light);
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Trust Pill */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F1F5F9;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.pill-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

/* Headline */
.hero-title {
  font-size: 3.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hero-accent-red {
  color: #EF4444;
  text-shadow: 0 0 25px rgba(239, 68, 68, 0.35);
}

.hero-highlight {
  color: #FACC15;
  text-shadow: 0 0 25px rgba(250, 204, 21, 0.3);
}

.hero-description {
  font-size: 1.18rem;
  color: #E2E8F0;
  line-height: 1.65;
  font-weight: 400;
  max-width: 530px;
}

/* Bullets */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #F8FAFC;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  backdrop-filter: blur(4px);
}

.bullet-icon {
  color: #10B981;
  font-size: 1.25rem;
  font-weight: 900;
}

/* Trust Rating Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FCD34D;
  margin-top: 6px;
}

/* Hero Action CTA Button (Scrolls to form on mobile) */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.hero-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  padding: 16px 30px;
  border-radius: var(--border-radius-sm);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  width: fit-content;
}

.hero-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  filter: brightness(1.08);
}

/* ==========================================================================
   MULTI-STEP FORM CARD (CENTERPIECE)
   ========================================================================== */

.form-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow-hero);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 5px solid #DC2626;
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

/* Progress bar dashes */
.progress-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.progress-bar {
  display: flex;
  gap: 6px;
}

.progress-step {
  flex: 1;
  height: 5px;
  background-color: #E2E8F0;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.progress-step.active {
  background: #DC2626;
  box-shadow: 0 0 6px rgba(220, 38, 38, 0.4);
}

.progress-step.completed {
  background: #10B981;
}

.step-indicator-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  background: none;
  margin-bottom: 16px;
  align-self: flex-start;
  transition: var(--transition-fast);
  padding: 4px 0;
}

.back-btn:hover {
  color: #DC2626;
  transform: translateX(-4px);
}

/* Form Steps */
.form-step {
  display: none;
  flex-direction: column;
  flex-grow: 1;
  animation: slideFadeIn 0.3s ease forwards;
}

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

.step-question {
  font-size: 1.55rem;
  color: #0F172A;
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.step-subtext {
  font-size: 0.94rem;
  color: #475569;
  margin-top: -6px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}

/* Options Wrapper */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}

/* Option Cards (Buttons styled as high-contrast choice pills) */
.option-card {
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  padding: 13px 18px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.02rem;
  color: #0F172A;
  transition: var(--transition-smooth);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  text-align: left;
  position: relative;
}

.option-card:hover {
  border-color: #DC2626;
  background-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.option-card.selected {
  border-color: #DC2626;
  background-color: #FEF2F2;
  color: #991B1B;
  box-shadow: 0 0 0 1.5px #DC2626, 0 4px 12px rgba(220, 38, 38, 0.12);
}

.option-index {
  background-color: #E2E8F0;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  color: #1E293B;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.option-card.selected .option-index {
  background-color: #DC2626;
  color: #FFFFFF;
}

.option-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.option-text {
  flex-grow: 1;
  line-height: 1.35;
}

/* Form Inputs styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input {
  padding: 14px 16px;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid #CBD5E1;
  background-color: #FFFFFF;
  font-size: 1.05rem;
  color: #0F172A;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-group input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.form-group input:focus {
  outline: none;
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
  background-color: #FFFFFF;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* Form Action Buttons */
.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  gap: 16px;
  padding-top: 10px;
}

.submit-btn {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  border: none;
  padding: 15px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  min-width: 140px;
  justify-content: center;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.45);
  filter: brightness(1.05);
}

.submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: #94A3B8;
}

.tally-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 700;
}

/* Success Step */
.success-step {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 10px;
  flex-grow: 1;
  animation: slideFadeIn 0.5s ease forwards;
}

.success-step.active {
  display: flex;
}

.success-icon-container {
  width: 76px;
  height: 76px;
  background-color: #ECFDF5;
  border: 2px solid #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #059669;
  font-size: 2.4rem;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
}

.success-title {
  font-size: 1.9rem;
  color: #0F172A;
  margin-bottom: 12px;
  font-weight: 900;
}

.success-message {
  font-size: 1.05rem;
  color: #475569;
  max-width: 380px;
  line-height: 1.6;
}

/* ==========================================================================
   TRUST BADGES BAR
   ========================================================================== */

.trust-badges {
  background-color: #FFFFFF;
  padding: 26px 24px;
  border-bottom: 1px solid var(--border-light);
}

.badges-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
}

.badge-icon {
  font-size: 1.4rem;
}

/* ==========================================================================
   HOW IT WORKS SECTION (ASÍ FUNCIONA)
   ========================================================================== */

.how-it-works {
  background-color: #F8FAFC;
  padding: 85px 24px;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-size: 2.5rem;
  color: #0F172A;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #475569;
  font-weight: 500;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #CBD5E1;
}

.step-num {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 900;
  color: #DC2626;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-card h3 {
  font-size: 1.35rem;
  color: #0F172A;
  font-weight: 800;
}

.step-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   SLOGAN BANNER
   ========================================================================== */

.slogan-banner {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  color: #FFFFFF;
  padding: 50px 24px;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.slogan-container {
  max-width: 1100px;
  margin: 0 auto;
}

.slogan-text {
  font-size: 2.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   SETTLEMENTS ACHIEVED & LEGAL DISCLAIMERS (SCREENSHOT SECTION)
   ========================================================================== */

.settlements-section {
  background-color: #FFFFFF;
  padding: 85px 24px;
  border-bottom: 1px solid var(--border-light);
}

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

.settlements-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.settlements-highlight {
  color: #DC2626;
  font-style: italic;
  font-weight: 900;
}

.settlements-subtitle {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 40px;
  font-weight: 500;
}

.settlements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.settlement-card {
  background-color: #FFFFFF;
  border: 1.5px solid #1E293B;
  border-left: 8px solid #059669;
  border-radius: 6px;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.settlement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.settlement-badge {
  display: inline-block;
  background-color: #ECFDF5;
  color: #059669;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settlement-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: #059669;
  line-height: 1.15;
  margin-bottom: 6px;
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

.settlement-label {
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  color: #0F172A;
  line-height: 1.3;
}

.settlement-sub-es {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
  color: #475569;
  margin-top: 4px;
}

/* Legal Disclaimers Box */
.settlements-disclaimer {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  padding: 28px 24px;
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.7;
  text-align: justify;
  max-width: 840px;
  margin: 0 auto;
}

.settlements-disclaimer p {
  margin-bottom: 14px;
}

.settlements-disclaimer p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */

.main-footer {
  background-color: #0A1128;
  color: #FFFFFF;
  padding: 70px 24px 30px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.94rem;
  color: #94A3B8;
  max-width: 360px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FACC15;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links a {
  color: #CBD5E1;
}

.footer-links a:hover {
  color: #FACC15;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #94A3B8;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ==========================================================================
   ANIMATIONS & MEDIA QUERIES
   ========================================================================== */

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

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.7rem;
  }
  
  .hero-description {
    margin: 0 auto;
  }
  
  .hero-bullets {
    align-items: stretch;
    max-width: 500px;
    width: 100%;
  }
  
  .hero-trust-bar {
    justify-content: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .logo-title {
    font-size: 1.15rem;
  }
  
  .phone-cta-btn {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .form-card {
    padding: 26px 20px;
    min-height: 480px;
  }
  
  .step-question {
    font-size: 1.32rem;
  }
  
  .option-card {
    font-size: 0.95rem;
    padding: 12px 14px;
  }
  
  .slogan-text {
    font-size: 1.6rem;
  }
  
  .settlement-amount {
    font-size: 2.1rem;
  }
  
  .settlement-label {
    font-size: 1.15rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
