/* Thank You Page Styles */
:root {
  --bg: #090611;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --white: #fff;
  --muted: #c8c8d0;
  --primary: #6e42c5;
  --primary-strong: #8400ff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% -10%, rgba(132,0,255,.18), transparent 60%),
              radial-gradient(1000px 700px at 100% 0%, rgba(0,185,255,.12), transparent 60%),
              var(--bg);
  color: var(--white);
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 48px 16px;
}

.card {
  width: 100%;
  max-width: 760px;
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 18px;
  background: radial-gradient(320px circle at 50% 0%, rgba(132,0,255,.9), rgba(132,0,255,.35) 30%, rgba(132,0,255,.15) 55%, transparent 75%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}

.icon-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(46, 204, 113, .15), rgba(46, 204, 113, .28));
  border: 1px solid rgba(46, 204, 113, .45);
  color: #2ecc71;
}

.icon-circle i { font-size: 34px; }

h1 {
  margin: 16px 0 10px;
  font-size: 2rem;
  line-height: 1.2;
}

p { color: var(--muted); margin: 0 0 18px; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border: 1px solid rgba(132,0,255,.55);
  box-shadow: 0 10px 24px rgba(132,0,255,.25);
}

.btn-primary:hover { box-shadow: 0 14px 30px rgba(132,0,255,.28); }

/* Back Home block */
.back-home {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}

/* Calendly wrapper */
.calendly-wrapper {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.foot-note {
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
  .wrap { padding: 40px 14px; }
  .card { padding: 28px 22px; }
  .calendly-inline-widget { height: 70vh !important; min-width: 100% !important; }
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  p { font-size: 1rem; }
  .wrap { padding: 32px 12px; }
  .card { padding: 22px 18px; }
  .actions { gap: 10px; }
  .actions .btn { flex: 1 1 100%; justify-content: center; }
  .calendly-inline-widget { height: 72vh !important; min-width: 100% !important; }
  .back-home { padding: 16px; }
}

/* Small mobile */
@media (max-width: 560px) {
  h1 { font-size: 1.4rem; }
  .calendly-inline-widget { height: 68vh !important; }
}
