/* ═══════════════════════════════════════════════
   CONTACT PAGE
   "What to expect" panel + success state
═══════════════════════════════════════════════ */

/* ── What to Expect — dark elevated panel ── */
.ct-expect {
  background: linear-gradient(180deg, #0B0F14 0%, #131922 100%);
  border-radius: 20px;
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  align-self: start;
}

.ct-expect::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-blue) 30%, #06b6d4 70%, transparent 100%);
}

.ct-expect-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.01em;
}

.ct-steps {
  display: grid;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
}

.ct-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all var(--duration-normal) var(--ease-out);
}

.ct-step:hover {
  border-color: rgba(0,162,255,0.25);
  background: rgba(0,162,255,0.06);
}

.ct-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  background: rgba(0,162,255,0.15);
  color: var(--brand-blue);
}

.ct-step-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding-top: 3px;
}

.ct-email {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.ct-email a {
  color: var(--brand-blue-200);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.ct-email a:hover {
  color: var(--brand-blue);
}

/* ── Success state ── */
.ct-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-5);
}

.ct-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: scale(0.5);
  animation: ctIconIn 0.5s var(--ease-out) 0.1s forwards;
}

.ct-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--brand-blue);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-success-icon svg .ct-check-path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: ctCheckDraw 0.4s ease 0.5s forwards;
}

@keyframes ctIconIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes ctCheckDraw {
  to { stroke-dashoffset: 0; }
}

.ct-success h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 var(--space-2);
  opacity: 0;
  transform: translateY(12px);
  animation: ctFadeUp 0.5s var(--ease-out) 0.3s forwards;
}

.ct-success p {
  font-size: var(--text-md);
  color: var(--muted);
  max-width: 380px;
  line-height: 1.6;
  margin: 0 0 var(--space-6);
  opacity: 0;
  transform: translateY(12px);
  animation: ctFadeUp 0.5s var(--ease-out) 0.45s forwards;
}

.ct-next {
  display: grid;
  gap: var(--space-3);
  width: 100%;
  max-width: 360px;
  opacity: 0;
  transform: translateY(12px);
  animation: ctFadeUp 0.5s var(--ease-out) 0.6s forwards;
}

.ct-next-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
}

.ct-next-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-next-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-next-label {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.4;
}

@keyframes ctFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ct-success-icon,
  .ct-success h2,
  .ct-success p,
  .ct-next {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .ct-success-icon svg .ct-check-path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .ct-expect { padding: var(--space-5); }
  .ct-success { padding: var(--space-6) var(--space-4); }
}
