:root {
  --dark: #111217;
  --dark-section: #16171d;
  --dark-card: #1c1d24;
  --dark-border: #2a2b34;
  --white: #ffffff;
  --off-white: #f4f4f6;
  --light-gray: #dddde2;
  --mid-gray: #72737e;
  --text-muted: #8e8f9a;
  --red: #c8102e;
  --red-light: #e0243f;
  --red-dark: #a00d24;
  --red-glow: rgba(200, 16, 46, 0.15);
  --red-subtle: rgba(200, 16, 46, 0.08);
  --green: #22c55e;
  --green-subtle: rgba(34, 197, 94, 0.12);
  --amber: #f59e0b;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: linear-gradient(160deg, #111217 0%, #1a1b24 40%, #131419 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow: visible;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes checkDraw {
  from {
    stroke-dashoffset: 50;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Site Header */
.site-header {
  padding: 28px 24px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.site-logo {
  display: inline-block;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.site-logo:hover {
  opacity: 0.85;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--white);
  display: inline-block;
}
.site-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.wrapper::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.wrapper::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.card {
  background: rgba(28, 29, 36, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 56px 48px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease;
}

/* Success Icon */
.success-icon {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulseRing 2s ease-out infinite;
}
.success-icon-inner {
  width: 100%;
  height: 100%;
  background: var(--green-subtle);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.success-icon-inner svg {
  width: 44px;
  height: 44px;
  stroke: var(--green);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkDraw 0.6s ease 0.4s forwards;
}

/* Badge */
.request-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
h1 span {
  color: var(--red-light);
}

.intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* What Happens Next */
.next-steps {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 36px;
  text-align: left;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.next-steps-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.step:last-child {
  border-bottom: none;
}
.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(200, 16, 46, 0.15);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.step-content {
  flex: 1;
  padding-top: 2px;
}
.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.step-title .time {
  color: var(--red-light);
  font-weight: 600;
}
.step-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

/* CTA */
.cta-wrap {
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.cta-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  letter-spacing: 0.2px;
}
.cta-btn:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.35);
}
.cta-btn svg {
  transition: transform 0.3s ease;
}
.cta-btn:hover svg {
  transform: translateX(4px);
}

/* Trust row */
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeInUp 0.8s ease 0.5s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--red-light);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  position: relative;
  z-index: 1;
}
.footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--red-light);
}

@media (max-width: 600px) {
  .card {
    padding: 40px 24px;
  }
  .next-steps {
    padding: 20px;
  }
  h1 {
    font-size: 28px;
  }
  .trust-row {
    gap: 14px;
  }
  .trust-item {
    font-size: 11.5px;
  }
  .site-header {
    padding: 20px 24px;
  }
  .site-logo img {
    height: 38px;
  }
  .logo-text {
    font-size: 22px;
    letter-spacing: 3px;
  }
}
