/* success.css — Post-booking 85% hero, process strip, trust strip, and order tracker */

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

@keyframes ringDraw {
  from { stroke-dashoffset: 879.6 }
  to   { stroke-dashoffset: var(--ring-target, 131.94) }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1 }
  50%       { transform: scale(1.4); opacity: 0.6 }
}

@keyframes pulseAqua {
  0%   { box-shadow: 0 0 0 0   rgba(46,247,199,0.55) }
  70%  { box-shadow: 0 0 0 14px rgba(46,247,199,0) }
  100% { box-shadow: 0 0 0 0   rgba(46,247,199,0) }
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0   rgba(46,247,199,0.55) }
  70%  { box-shadow: 0 0 0 18px rgba(46,247,199,0) }
  100% { box-shadow: 0 0 0 0   rgba(46,247,199,0) }
}

@keyframes checkPop {
  0%   { transform: scale(0) rotate(-45deg); opacity: 0 }
  60%  { transform: scale(1.3) rotate(0);   opacity: 1 }
  100% { transform: scale(1) rotate(0);     opacity: 1 }
}

@keyframes drawLine {
  from { transform: scaleY(0) }
  to   { transform: scaleY(1) }
}

@keyframes shimmer {
  0%   { background-position: -200px 0 }
  100% { background-position: calc(200px + 100%) 0 }
}

@keyframes liveBlink {
  0%, 49%  { opacity: 1 }
  50%, 100% { opacity: 0.35 }
}

@media (prefers-reduced-motion: reduce) {
  .success-ring-fg,
  .order-timeline::after {
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   85% HERO (post-booking success header)
   ═══════════════════════════════════════════════════════════ */

.success-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  margin-bottom: 32px;
}

.success-hero-copy {
  display: flex;
  flex-direction: column;
}

.success-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--aqua);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.success-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  animation: pulseDot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.success-hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 68px;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0 0 20px;
}

.success-hero-title em {
  font-style: normal;
  color: var(--aqua);
}

.success-hero-lede {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.55;
  max-width: 46ch;
}

.success-hero-lede b {
  color: var(--fg);
  font-weight: 600;
  font-family: var(--font-head);
}

/* Ring */
.success-ring-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin-left: auto;
}

.success-ring-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
}

.success-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 14;
}

.success-ring-fg {
  fill: none;
  stroke: var(--aqua);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 879.6;
  stroke-dashoffset: 879.6;
  animation: ringDraw 2s 0.3s cubic-bezier(0.2,0.7,0.2,1) forwards;
  filter: drop-shadow(0 0 24px rgba(46,247,199,0.35));
}

.success-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-ring-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 100px;
  letter-spacing: -0.05em;
  color: var(--fg);
  line-height: 0.9;
}

.success-ring-num .pct {
  font-size: 46px;
  color: #fff;
  margin-left: 2px;
  vertical-align: top;
  line-height: 1;
  margin-top: 16px;
  display: inline-block;
}

.success-scroll-cta {
  align-self: flex-start;
  margin-top: 8px;
}

.success-ring-label {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.success-ring-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  max-width: 22ch;
}

.success-ring-sub b {
  color: var(--fg);
  font-weight: 600;
  font-family: var(--font-head);
}


/* ═══════════════════════════════════════════════════════════
   PROCESS STRIP (6-stage horizontal tracker)
   ═══════════════════════════════════════════════════════════ */

.success-process-strip {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 20px;
}

.success-process-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  gap: 24px;
}

.success-process-strip-head h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.success-process-strip-head .strip-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.success-process-strip-head .strip-note b {
  color: var(--aqua);
  font-weight: 500;
}

.process-stages {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

/* Connector line between stages (leading into each node except first) */
.process-stage:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 18px;
  right: calc(100% - 18px);
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,0.07);
  z-index: 0;
}

/* Done→Done: royal */
.process-stage.is-done + .process-stage.is-done::before {
  background: var(--royal);
  box-shadow: 0 0 8px rgba(57,94,229,0.4);
}

/* Done→Active: royal-to-aqua gradient */
.process-stage.is-done + .process-stage.is-active::before {
  background: linear-gradient(90deg, var(--royal) 0%, var(--royal) 35%, var(--aqua) 100%);
  box-shadow: 0 0 12px rgba(46,247,199,0.45);
}

.process-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 10px;
  z-index: 2;
}

.process-stage .stage-node {
  position: relative;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-stage .stage-who {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.process-stage .stage-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--fg);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
  line-height: 1.2;
}

.process-stage .stage-eta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}

/* Done state */
.process-stage.is-done {
  opacity: 0.65;
  transition: opacity 0.25s ease;
}

.process-stage.is-done:hover { opacity: 1 }

.process-stage.is-done .stage-node {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(57,94,229,0.18);
}

.process-stage.is-done .stage-node .stage-num { display: none }
.process-stage.is-done .stage-node::before {
  content: "✓";
  font-size: 15px;
  font-weight: 800;
}

.process-stage.is-done .stage-who { color: var(--royal-light) }
.process-stage.is-done .stage-label { color: var(--fg) }

/* Active state */
.process-stage.is-active .stage-node {
  background: var(--ink);
  border-color: var(--aqua);
  color: var(--aqua);
  animation: pulseAqua 2s ease-in-out infinite;
}

.process-stage.is-active .stage-num { color: var(--aqua) }
.process-stage.is-active .stage-who { color: var(--aqua) }
.process-stage.is-active .stage-label { color: var(--aqua) }

/* Pending state */
.process-stage.is-pending .stage-label { color: rgba(243,244,248,0.45) }

.process-stage.is-pending .stage-node::after {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  border: 1.5px solid rgba(139,144,164,0.7);
  border-radius: 1.5px;
  position: relative;
  top: 1px;
}

.process-stage.is-pending .stage-num { display: none }


/* ═══════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════ */

.success-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  gap: 0;
}

.success-trust-strip > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  border-right: 1px solid var(--line-2);
}

.success-trust-strip > span:first-child { padding-left: 0 }
.success-trust-strip > span:last-child { border-right: 0 }

.success-trust-strip .check { color: var(--aqua); font-weight: 700 }
.success-trust-strip b { color: var(--fg); font-weight: 500 }


/* ═══════════════════════════════════════════════════════════
   ORDER TRACKER (post-brief submission)
   ═══════════════════════════════════════════════════════════ */

/* Wrapper used in both booking.html and brief.html */
.order-tracker-wrap {
  padding: 0;
  background: transparent;
  border: none;
}

/* Hero */
.tracker-hero {
  text-align: center;
  padding: clamp(16px, 1.4vw, 36px) 0 clamp(32px, 3.3vw, 72px);
}

.tracker-check-burst {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,247,199,0.25), rgba(46,247,199,0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracker-check-burst::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 36px rgba(46,247,199,0.4);
}

.tracker-check-burst svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  animation: checkPop 0.55s 0.2s cubic-bezier(0.2,1.4,0.4,1) both;
}

.tracker-eyebrow {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--aqua);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tracker-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 58px;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin: 0 0 14px;
  color: var(--fg);
}

.tracker-title em {
  font-style: normal;
  color: var(--aqua);
}

.tracker-lede {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.tracker-lede b {
  color: var(--fg);
  font-weight: 600;
  font-family: var(--font-head);
}

.tracker-meta-strip {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink-2);
  overflow: hidden;
}

.tracker-meta-strip > div {
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tracker-meta-strip > div:last-child { border-right: 0 }
.tracker-meta-strip b { color: var(--fg); font-weight: 500 }
.tracker-meta-strip .glyph { color: var(--aqua); font-size: 10px }

/* Body layout */
.tracker-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* Timeline */
.order-timeline {
  position: relative;
  padding-left: 0;
}

/* Vertical background line */
.order-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  z-index: 0;
}

/* Progress fill — royal for completed, aqua at live edge. Height = through step 3 midpoint */
.order-timeline::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--royal) 0%, var(--royal) 60%, var(--aqua) 100%);
  border-radius: 1px;
  z-index: 1;
  height: calc(33.33% + 16px);
  transform-origin: top;
  transform: scaleY(0);
  animation: drawLine 1.4s 0.4s cubic-bezier(0.2,0.7,0.2,1) forwards;
  box-shadow: 0 0 12px rgba(46,247,199,0.4);
}

.order-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 14px 0 18px;
  align-items: flex-start;
  z-index: 2;
}

.order-node {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Done step */
.order-step.is-done {
  opacity: 0.65;
  transition: opacity 0.25s ease;
}

.order-step.is-done:hover { opacity: 1 }

.order-step.is-done .order-node {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(57,94,229,0.14), 0 0 24px rgba(57,94,229,0.28);
}

.order-step.is-done .order-node .step-num { display: none }

.order-step.is-done .order-node svg {
  width: 18px;
  height: 18px;
  animation: checkPop 0.6s cubic-bezier(0.2,1.4,0.4,1) both;
}

/* Active step */
.order-step.is-active .order-node {
  background: var(--ink-2);
  border-color: var(--aqua);
  color: var(--aqua);
  animation: pulseRing 2s ease-in-out infinite;
}

.order-step.is-active .step-num { color: var(--aqua); font-weight: 800 }

/* Pending step */
.order-step.is-pending .order-node::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 11px;
  border: 1.5px solid var(--muted);
  border-radius: 2px;
  opacity: 0.7;
}

.order-step.is-pending .step-num { display: none }

/* Step card */
.order-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all 0.3s ease;
}

.order-step.is-done .order-card {
  border-color: rgba(57,94,229,0.22);
  background: linear-gradient(180deg, rgba(57,94,229,0.05), rgba(57,94,229,0.01) 60%, var(--ink-2));
}

.order-step.is-active .order-card {
  border-color: rgba(46,247,199,0.32);
  background: linear-gradient(180deg, rgba(46,247,199,0.07), var(--ink-2) 80%);
  box-shadow: 0 0 50px -20px rgba(46,247,199,0.35);
}

.order-step.is-pending .order-card { opacity: 0.72 }

.order-card-who {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-step.is-done .order-card-who { color: var(--royal-light) }
.order-step.is-active .order-card-who { color: var(--aqua) }

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.live-indicator::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  animation: liveBlink 1.3s ease-in-out infinite;
}

.order-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 5px;
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.order-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
}

.order-card-meta b {
  color: var(--fg);
  font-weight: 500;
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.order-step.is-done .order-card-meta b { color: var(--royal-light) }

.order-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.order-card-desc b {
  color: var(--fg);
  font-weight: 600;
  font-family: var(--font-head);
}

/* Done sub-row */
.order-done-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(57,94,229,0.18);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

.order-done-sub .check { color: var(--royal-light); font-weight: 700 }
.order-done-sub b { color: var(--fg); font-weight: 500 }
.order-done-sub .sep { opacity: 0.4 }

/* Active step extras */
.order-active-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(46,247,199,0.18);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.order-active-note .ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46,247,199,0.12);
  color: var(--aqua);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-top: 1px;
}

.order-active-note b { color: var(--fg); font-weight: 600; font-family: var(--font-head) }

/* Active step shimmer bar */
.order-shimmer-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(46,247,199,0.18);
}

.order-shimmer-bar .bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.order-shimmer-bar .bar span {
  display: block;
  height: 100%;
  width: 35%;
  border-radius: 3px;
  background-image: linear-gradient(90deg, var(--aqua) 0%, rgba(255,255,255,0.4) 50%, var(--aqua) 100%);
  background-size: 200px 100%;
  animation: shimmer 2.4s ease-in-out infinite;
}

.order-shimmer-bar .bar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--aqua);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   TRACKER SIDEBAR
   ═══════════════════════════════════════════════════════════ */

.tracker-sidebar {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tracker-panel {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.tracker-panel-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.tracker-panel-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Delivery panel */
.tracker-panel.is-delivery {
  background: linear-gradient(180deg, rgba(46,247,199,0.08), var(--ink-2) 70%);
  border-color: rgba(46,247,199,0.22);
}

.tracker-delivery-date {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--aqua);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.tracker-delivery-cap {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.tracker-delivery-cap b {
  color: var(--fg);
  font-weight: 600;
  font-family: var(--font-head);
}

/* Summary rows */
.tracker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.tracker-row:first-of-type { border-top: 0 }

.tracker-row .k {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.tracker-row .v {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  color: var(--fg);
  letter-spacing: -0.005em;
  text-align: right;
}

.tracker-row .v.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
}

/* Help panel */
.tracker-help {
  background: linear-gradient(160deg, rgba(46,247,199,0.06), rgba(46,247,199,0.01));
  border: 1px solid rgba(46,247,199,0.18);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}

.tracker-help-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(46,247,199,0.18);
  color: var(--aqua);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 10px;
}

.tracker-help h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg);
  margin: 0 0 6px;
}

.tracker-help p {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.tracker-help a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  color: var(--aqua);
  text-decoration: none;
}

.tracker-help a:hover { text-decoration: underline }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .success-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .success-ring-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .success-hero-title {
    font-size: 50px;
  }

  .process-stages {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }

  .process-stage::before { display: none !important }

  .tracker-body {
    grid-template-columns: 1fr;
  }

  .tracker-sidebar {
    position: static;
  }

  .tracker-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .success-hero {
    gap: 20px;
  }

  .success-hero-title {
    font-size: 36px;
  }

  .success-hero-lede {
    font-size: 15px;
  }

  .success-ring-wrap {
    max-width: 200px;
  }

  .success-ring-num {
    font-size: 68px;
  }

  .success-ring-num .pct {
    font-size: 28px;
    margin-top: 10px;
  }

  .success-process-strip {
    padding: 16px;
  }

  .success-process-strip-head {
    flex-direction: column;
    gap: 4px;
  }

  .process-stages {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }

  .tracker-hero {
    padding: 12px 0 28px;
  }

  .tracker-title {
    font-size: 32px;
  }

  .tracker-meta-strip {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .tracker-meta-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
  }

  .tracker-meta-strip > div:last-child {
    border-bottom: 0;
  }

  .success-trust-strip {
    flex-direction: column;
    gap: 8px;
  }

  .success-trust-strip > span {
    padding: 0;
    border-right: 0;
  }
}
