.thank-you-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(201,151,58,.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(28,31,59,.14), transparent 30%),
    linear-gradient(135deg, #f9f4eb 0%, #f3ede3 100%);
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(28,31,59,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(28,31,59,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
}

.thank-you-hero .container,
.thank-you-content .container {
  position: relative;
  z-index: 1;
}

.thank-you-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.thank-you-breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.thank-you-breadcrumb span:last-child {
  color: var(--gold);
  font-weight: 600;
}

.thank-you-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
}

.thank-you-card,
.thank-you-panel {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(28,31,59,.08);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.thank-you-card {
  padding: 40px;
}

.thank-you-panel {
  padding: 30px;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), #2c316d);
  color: var(--gold);
  font-size: 2rem;
  box-shadow: 0 18px 40px rgba(28,31,59,.18);
  margin-bottom: 22px;
}

.thank-you-card h1 {
  margin-bottom: 14px;
}

.thank-you-card .lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 56ch;
}

.thank-you-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.thank-you-stat {
  display: grid;
  gap: 6px;
  padding: 18px 0;
}

.thank-you-stat + .thank-you-stat {
  border-top: 1px solid rgba(28,31,59,.08);
}

.thank-you-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
}

.thank-you-stat span {
  color: var(--text-soft);
  font-size: .95rem;
}

.thank-you-content {
  padding: 36px 0 88px;
  margin-top: -24px;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.thank-you-step {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28,31,59,.06);
}

.thank-you-step .step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(201,151,58,.12);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.thank-you-step h3 {
  margin-bottom: 10px;
}

.thank-you-step p {
  font-size: .95rem;
}

.thank-you-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--navy);
  color: rgba(255,255,255,.82);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.thank-you-note strong {
  color: var(--white);
}

.thank-you-note a {
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 960px) {
  .thank-you-layout,
  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-card,
  .thank-you-panel {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .thank-you-hero {
    padding: 68px 0 54px;
  }

  .thank-you-content {
    padding-bottom: 64px;
  }

  .thank-you-card,
  .thank-you-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
    justify-content: center;
  }
}