/* ===================================================================
   AUTO FINANCE BROKERS — Premium Dark Theme
   Mobile-first, high-contrast, conversion-focused
   =================================================================== */

/* ---- CSS Variables ---- */
:root {
  --navy-950: #050A18;
  --navy-900: #0B1120;
  --navy-800: #111B33;
  --navy-700: #1A2744;
  --navy-600: #243555;
  --navy-400: #4A6FA5;
  --navy-200: #8EADD4;

  --gold-500: #D4A017;
  --gold-400: #E8B82A;
  --gold-600: #B8860B;
  --orange-500: #E8820C;
  --orange-400: #F09425;

  --white: #FFFFFF;
  --gray-50: #F8F9FC;
  --gray-100: #F0F2F7;
  --gray-200: #D8DCE6;
  --gray-300: #B0B8C9;
  --gray-400: #8892A6;
  --gray-500: #636E83;
  --gray-600: #4A5568;
  --gray-700: #2D3748;

  --red-500: #E53E3E;
  --green-500: #38A169;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(212,160,23,0.3);

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--navy-950);
  color: var(--gray-200);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-500); }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hidden { display: none !important; }
.text-gold { color: var(--gold-500); }
.req { color: var(--red-500); }

/* Honeypot — invisible to users */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 2px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--orange-500));
  color: var(--navy-950);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--orange-400));
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,160,23,0.4);
  color: var(--navy-950);
}
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-400);
}
.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}
.btn-outline-light {
  background: transparent;
  color: var(--gray-300);
  border-color: var(--navy-600);
  padding: 14px 28px;
}
.btn-outline-light:hover {
  border-color: var(--gray-400);
  color: var(--white);
}
.btn-outline-light:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.btn-full { width: 100%; }
.btn-arrow { font-size: 1.2em; }
.btn-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(11,17,32,0.3);
  border-top-color: var(--navy-950);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo:hover { color: var(--white); }
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-500), var(--orange-500));
  color: var(--navy-950);
  font-weight: 800;
  font-size: 0.9rem;
}
.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-highlight { color: var(--gold-500); }
.header-nav {
  display: none;
  gap: 28px;
}
.header-nav a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
}
.header-nav a:hover { color: var(--gold-400); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.9rem;
}
.header-phone span { display: none; }

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-phone span { display: inline; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-ctas-desktop { display: none; }

@media (min-width: 900px) {
  .hero { padding: 140px 0 80px; }
  .hero-grid {
    grid-template-columns: 1fr 420px;
    align-items: center;
  }
  .hero-headline { font-size: 3.2rem; }
  .hero-sub { font-size: 1.15rem; }
  .hero-ctas-desktop {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }
}

/* ---- Short Form Card ---- */
.hero-form-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}
.form-card-header {
  text-align: center;
  margin-bottom: 20px;
}
.form-card-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.form-helper {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ---- Form Controls ---- */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--navy-700);
  border: 1.5px solid var(--navy-600);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--gray-500); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}
.form-group input.error,
.form-group select.error {
  border-color: var(--red-500);
}
.form-group input.valid {
  border-color: var(--green-500);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238892A6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-error {
  display: block;
  font-size: 0.8rem;
  color: var(--red-500);
  margin-top: 4px;
  min-height: 1.2em;
}
.form-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}
.turnstile-container {
  margin: 12px 0;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 24px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}
.trust-item span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Sections ---- */
.section {
  padding: 64px 0;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section-title { font-size: 2.2rem; }
}

/* ---- How It Works ---- */
.how-it-works {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.steps-grid {
  display: grid;
  gap: 24px;
}
.step-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--orange-500));
  color: var(--navy-950);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Benefits ---- */
.benefits {
  background: var(--navy-950);
}
.benefits-grid {
  display: grid;
  gap: 16px;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition);
}
.benefit-card:hover {
  border-color: rgba(212,160,23,0.3);
}
.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,160,23,0.1);
  border-radius: var(--radius-sm);
}
.benefit-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.benefit-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.benefits-cta {
  text-align: center;
  margin-top: 36px;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Full Application Section ---- */
.full-app-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.app-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
}

/* Stepper */
.stepper {
  margin-bottom: 32px;
}
.stepper-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: color var(--transition);
}
.step-label.active { color: var(--gold-400); }
.step-label.completed { color: var(--green-500); }
.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid var(--navy-600);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: all var(--transition);
}
.step-label.active .step-circle {
  background: linear-gradient(135deg, var(--gold-500), var(--orange-500));
  border-color: transparent;
  color: var(--navy-950);
}
.step-label.completed .step-circle {
  background: var(--green-500);
  border-color: transparent;
  color: var(--white);
}
.stepper-track {
  width: 100%;
  height: 6px;
  background: var(--navy-700);
  border-radius: 3px;
  overflow: hidden;
}
.stepper-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--orange-500));
  border-radius: 3px;
  transition: width 0.4s ease;
}
.stepper-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 8px;
}

/* Steps */
.form-step {
  display: none;
  animation: fadeSlideIn 0.35s ease;
}
.form-step.active { display: block; }

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

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}
.step-helper {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

/* Radio cards for Employment */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-card {
  cursor: pointer;
}
.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--navy-700);
  border: 1.5px solid var(--navy-600);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-200);
  transition: all var(--transition);
}
.radio-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--navy-400);
  position: relative;
  transition: all var(--transition);
}
.radio-card input:checked + .radio-card-inner {
  border-color: var(--gold-500);
  background: rgba(212,160,23,0.08);
}
.radio-card input:checked + .radio-card-inner .radio-dot {
  border-color: var(--gold-500);
}
.radio-card input:checked + .radio-card-inner .radio-dot::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
}
.radio-card:hover .radio-card-inner {
  border-color: var(--gray-500);
}

/* Review card */
.review-card {
  background: var(--navy-700);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}
.review-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.review-row:last-child { border-bottom: none; }
.review-label {
  color: var(--gray-400);
  font-weight: 500;
}
.review-value {
  color: var(--white);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

/* Step Navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

/* ---- Testimonials ---- */
.testimonials {
  background: var(--navy-950);
}
.testimonials-grid {
  display: grid;
  gap: 20px;
}
.testimonial-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 24px;
}
.testimonial-stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-200);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- FAQ ---- */
.faq {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-500);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--gold-400); }
.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ---- Final CTA ---- */
.final-cta {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-top: 1px solid rgba(212,160,23,0.15);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.final-cta-inner {
  text-align: center;
}
.final-cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.final-cta p {
  color: var(--gray-300);
  margin-bottom: 24px;
}
.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 600px) {
  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0 100px; /* extra bottom for sticky bar */
}
.footer-inner {
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-links a {
  color: var(--gray-400);
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--gold-400); }
.footer-disclaimers p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Mobile Sticky Bar ---- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-sticky-bar.visible {
  transform: translateY(0);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}
.sticky-call {
  background: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-400);
}
.sticky-apply {
  background: linear-gradient(135deg, var(--gold-500), var(--orange-500));
  color: var(--navy-950);
}

@media (min-width: 900px) {
  .mobile-sticky-bar { display: none; }
  .site-footer { padding-bottom: 40px; }
}

/* ---- Success Overlay ---- */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 10, 24, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.success-content {
  text-align: center;
  padding: 40px;
}
.success-check { margin-bottom: 20px; }
.success-content h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.success-content p {
  color: var(--gray-300);
}

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

/* ---- Thank You Page ---- */
.thank-you-section {
  padding: 140px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}
.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.success-check-large { margin-bottom: 24px; }
.thank-you-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.thank-you-content > p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.ty-details {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}
.ty-details h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.ty-details ol {
  padding-left: 20px;
}
.ty-details li {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.ty-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.ty-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-500);
}

@media (min-width: 600px) {
  .ty-ctas {
    flex-direction: row;
    justify-content: center;
  }
}
