/* thank-you.css — styles for /thank-you confirmation page */

/* ===== HERO ===== */
.ty-hero {
  padding: 80px 24px 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.ty-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.ty-check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  margin-bottom: 24px;
}
.ty-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ty-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== TIMELINE ===== */
.ty-timeline {
  padding: 88px 24px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.ty-timeline-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.ty-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.ty-step {
  flex: 1;
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}
.ty-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 18px;
}
.ty-step-icon { margin-bottom: 18px; }
.ty-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.ty-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ty-step-eta {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.ty-step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245,158,11,0.4), rgba(245,158,11,0.1));
  align-self: center;
  margin: 0 -1px; /* overlap card borders slightly */
  position: relative;
  z-index: 1;
}

/* ===== TRUST BLOCK ===== */
.ty-trust {
  padding: 88px 24px;
  border-bottom: 1px solid var(--border);
}
.ty-trust-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ty-stats-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.ty-stat {
  flex: 1;
  padding: 48px 24px;
  text-align: center;
}
.ty-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  margin-bottom: 8px;
}
.ty-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.ty-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.ty-trust-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA ===== */
.ty-cta {
  padding: 96px 24px;
  text-align: center;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}
.ty-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}
.ty-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.ty-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.ty-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.ty-cta-btn {
  font-size: 16px;
  padding: 16px 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ty-steps {
    flex-direction: column;
    gap: 16px;
  }
  .ty-step-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(245,158,11,0.4), rgba(245,158,11,0.1));
    align-self: center;
    margin: -1px 0;
  }
  .ty-stats-row {
    flex-direction: column;
  }
  .ty-stat-divider {
    width: auto;
    height: 1px;
    align-self: auto;
  }
  .ty-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .ty-hero { padding: 48px 20px 56px; }
  .ty-step { padding: 28px 24px; }
}
