/* ═══════════════════════════════════════════════
   SF24 TEST ORDER TRACKING — Aurora Bento Light
═══════════════════════════════════════════════ */

.sf24-tot-wrap {
  position: relative;
  background: #f3f1ec;
  font-family: var(--th-body, "Nunito", system-ui, sans-serif);
  color: #1a0f2e;
  overflow: clip;
}
.sf24-tot-wrap a { color: inherit; }

/* ═══ HERO ═══ */
.sf24-tot-hero {
  position: relative;
  padding: clamp(60px, 10vw, 110px) clamp(20px, 5vw, 60px) clamp(40px, 6vw, 70px);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.sf24-tot-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.sf24-tot-h1 {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 14px 0 18px;
  color: #1a0f2e;
}
.sf24-tot-h1 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #7c3aed 0%, #dd2a7b 50%, #f58529 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf24-tot-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(26,15,46,0.7);
  max-width: 580px;
  margin: 0 auto 24px;
}
.sf24-tot-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.sf24-tot-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124,58,237,0.14);
  font-size: 13px;
  font-weight: 600;
  color: rgba(26,15,46,0.78);
}

/* ═══ FORM SECTION ═══ */
.sf24-tot-form-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  max-width: 880px;
  margin: 0 auto;
}
.sf24-tot-form-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.sf24-tot-form-head .sf24-th-h2 { margin-top: 12px; }

.sf24-tot-form-card {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,248,214,0.55) 100%);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(237,196,50,0.32);
  padding: clamp(32px, 4vw, 50px);
  box-shadow: 0 24px 60px -28px rgba(85,30,112,0.28), 0 8px 32px -16px rgba(237,196,50,0.20);
  overflow: hidden;
  isolation: isolate;
}
.sf24-tot-form-card-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(237,196,50,0.22) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(124,58,237,0.16) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.sf24-tot-form-card > * { position: relative; z-index: 1; }

.sf24-tot-form-grid { display: block; }
.sf24-tot-form-loading {
  text-align: center;
  padding: 32px 0;
  color: rgba(26,15,46,0.5);
  font-size: 14px;
  font-style: italic;
}

/* WC form overrides — apply on the reparented form */
.sf24-tot-form-element {
  margin: 0;
  display: grid;
  gap: 16px;
}
.sf24-tot-form-element h2,
.sf24-tot-form-element > p:first-of-type { display: none; } /* WC adds redundant heading + intro */
.sf24-tot-form-element p,
.sf24-tot-form-element .form-row {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf24-tot-form-element label {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.78);
}
.sf24-tot-form-element label .required { color: #dd2a7b; margin-left: 2px; }
.sf24-tot-form-element input[type="text"],
.sf24-tot-form-element input[type="email"],
.sf24-tot-form-element input.input-text {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid rgba(124,58,237,0.18);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 16px;
  color: #1a0f2e;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.sf24-tot-form-element input:focus {
  border-color: rgba(124,58,237,0.55);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.12);
}
.sf24-tot-form-element button,
.sf24-tot-form-element .button {
  width: 100%;
  padding: 18px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed 0%, #dd2a7b 60%, #f58529 100%);
  color: #fff;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease;
  box-shadow: 0 14px 32px -10px rgba(124,58,237,0.5);
  -webkit-appearance: none;
  appearance: none;
  margin-top: 8px;
}
.sf24-tot-form-element button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(124,58,237,0.58);
}
.sf24-tot-form-element button:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════
   CUSTOM ORDER DETAILS — replaces WC default table
═══════════════════════════════════════════════ */

/* Form-error notice (shown above form when lookup fails) */
.sf24-tot-form-error {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  margin: 0 0 22px;
  border-radius: 14px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
}
.sf24-tot-form-error-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sf24-tot-form-error p { margin: 0; font-size: 14.5px; line-height: 1.5; color: #b91c1c; }

/* Custom form layout */
.sf24-tot-form { display: grid; gap: 18px; }
.sf24-tot-field { display: flex; flex-direction: column; gap: 8px; }
.sf24-tot-field-label {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.78);
}
.sf24-tot-field input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid rgba(124,58,237,0.18);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 16px;
  color: #1a0f2e;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.sf24-tot-field input::placeholder { color: rgba(26,15,46,0.35); font-family: var(--th-body, "Nunito", sans-serif); }
.sf24-tot-field input:focus {
  border-color: rgba(124,58,237,0.55);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.12);
}
.sf24-tot-field-hint {
  font-size: 12.5px;
  color: rgba(26,15,46,0.55);
  font-family: var(--th-body, "Nunito", sans-serif);
}
.sf24-tot-form-submit,
button.sf24-tot-form-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 18px 28px !important;
  margin-top: 4px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #7c3aed 0%, #dd2a7b 60%, #f58529 100%) !important;
  background-color: #7c3aed !important;
  color: #fff !important;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border: 0 !important;
  cursor: pointer !important;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease !important;
  box-shadow: 0 14px 32px -10px rgba(124,58,237,0.5) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  text-shadow: none !important;
  opacity: 1 !important;
}
.sf24-tot-form-submit span,
.sf24-tot-form-submit svg,
button.sf24-tot-form-submit span,
button.sf24-tot-form-submit svg {
  color: #fff !important;
  fill: none !important;
  stroke: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.sf24-tot-form-submit:hover,
button.sf24-tot-form-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 40px -10px rgba(124,58,237,0.58) !important;
  background: linear-gradient(135deg, #7c3aed 0%, #dd2a7b 60%, #f58529 100%) !important;
  color: #fff !important;
  opacity: 1 !important;
}
.sf24-tot-form-submit:active { transform: translateY(0) !important; }
.sf24-tot-form-submit svg { transition: transform 0.25s ease !important; }
.sf24-tot-form-submit:hover svg { transform: translateX(3px) !important; }

/* ═══ ORDER DETAILS ═══ */
.sf24-tot-od-head {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}
.sf24-tot-od-head .sf24-th-h2 { margin-top: 12px; }
.sf24-tot-od-no {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #dd2a7b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf24-tot-od-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(124,58,237,0.18);
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(85,30,112,0.85);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sf24-tot-od-reset:hover {
  background: rgba(124,58,237,0.06);
  transform: translateY(-1px);
}

/* Status hero card */
.sf24-tot-od-status {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 3.5vw, 42px);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid;
  isolation: isolate;
}
.sf24-tot-od-status-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sf24-tot-od-status-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.sf24-tot-od-status-left { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.sf24-tot-od-status-label {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.65);
}
.sf24-tot-od-status-value {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1a0f2e;
}
.sf24-tot-od-status-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.sf24-tot-od-status-dot::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.18;
  animation: totDotPulse 2s ease-in-out infinite;
}
.sf24-tot-od-status-right p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(26,15,46,0.72);
}

.sf24-tot-od-status--processing {
  border-color: rgba(245,158,11,0.30);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(254,243,199,0.55));
}
.sf24-tot-od-status--processing .sf24-tot-od-status-glow { background: radial-gradient(60% 70% at 90% 20%, rgba(245,158,11,0.18) 0%, transparent 60%); }
.sf24-tot-od-status--processing .sf24-tot-od-status-dot { background: #f59e0b; }

.sf24-tot-od-status--inprogress {
  border-color: rgba(124,58,237,0.30);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(237,233,254,0.55));
}
.sf24-tot-od-status--inprogress .sf24-tot-od-status-glow { background: radial-gradient(60% 70% at 90% 20%, rgba(124,58,237,0.20) 0%, transparent 60%); }
.sf24-tot-od-status--inprogress .sf24-tot-od-status-dot { background: #7c3aed; }

.sf24-tot-od-status--completed {
  border-color: rgba(34,197,94,0.32);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(220,252,231,0.55));
}
.sf24-tot-od-status--completed .sf24-tot-od-status-glow { background: radial-gradient(60% 70% at 90% 20%, rgba(34,197,94,0.20) 0%, transparent 60%); }
.sf24-tot-od-status--completed .sf24-tot-od-status-dot { background: #22c55e; }

.sf24-tot-od-status--hold {
  border-color: rgba(239,68,68,0.30);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(254,226,226,0.55));
}
.sf24-tot-od-status--hold .sf24-tot-od-status-glow { background: radial-gradient(60% 70% at 90% 20%, rgba(239,68,68,0.20) 0%, transparent 60%); }
.sf24-tot-od-status--hold .sf24-tot-od-status-dot { background: #ef4444; }

/* Items grid */
.sf24-tot-od-items {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}
.sf24-tot-od-item {
  position: relative;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(124,58,237,0.12);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 4px 24px -12px rgba(85,30,112,0.10);
}
.sf24-tot-od-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}
.sf24-tot-od-item-head h3 {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 0 0 6px;
  line-height: 1.25;
}
.sf24-tot-od-item-qty {
  font-size: 13.5px;
  color: rgba(26,15,46,0.6);
  font-weight: 600;
}
.sf24-tot-od-item-pct {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #7c3aed, #f58529);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

/* Progress bar */
.sf24-tot-od-progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(124,58,237,0.10);
  overflow: hidden;
  margin-bottom: 10px;
}
.sf24-tot-od-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed 0%, #dd2a7b 50%, #f58529 100%);
  background-size: 200% 100%;
  animation: totProgressShimmer 3.5s linear infinite;
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
@keyframes totProgressShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.sf24-tot-od-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(26,15,46,0.6);
  margin-bottom: 22px;
}
.sf24-tot-od-progress-labels strong {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: #1a0f2e;
  font-weight: 700;
}

/* Meta grid */
.sf24-tot-od-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.10);
  background: rgba(247,244,238,0.6);
}
.sf24-tot-od-meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-right: 1px solid rgba(124,58,237,0.08);
  border-bottom: 1px solid rgba(124,58,237,0.08);
  min-width: 0;
}
.sf24-tot-od-meta-row:nth-child(2n) { border-right: 0; }
.sf24-tot-od-meta-label {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.65);
}
.sf24-tot-od-meta-val {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
  color: #1a0f2e;
  word-break: break-word;
  letter-spacing: -0.005em;
}
.sf24-tot-od-meta-val--url {
  color: #7c3aed;
  text-decoration: none;
  font-size: 12.5px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s ease;
}
.sf24-tot-od-meta-val--url:hover { border-bottom-color: rgba(124,58,237,0.4); }

/* Totals card */
.sf24-tot-od-total {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,248,214,0.55) 100%);
  border: 1px solid rgba(237,196,50,0.30);
  padding: clamp(20px, 2.5vw, 30px);
  margin-bottom: 24px;
}
.sf24-tot-od-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(124,58,237,0.08);
  font-size: 14.5px;
  color: rgba(26,15,46,0.7);
}
.sf24-tot-od-total-row:last-child { border-bottom: 0; }
.sf24-tot-od-total-row strong {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-weight: 700;
  color: #1a0f2e;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.sf24-tot-od-total-row--final {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1.5px solid rgba(237,196,50,0.45);
  font-size: 16px;
}
.sf24-tot-od-total-row--final span {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-weight: 700;
  color: #1a0f2e;
  letter-spacing: -0.01em;
}
.sf24-tot-od-total-row--final strong {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #7c3aed, #EDC432);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Action row */
.sf24-tot-od-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.sf24-tot-od-action {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(124,58,237,0.14);
  text-decoration: none;
  color: #1a0f2e;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s ease, border-color 0.3s;
  overflow: hidden;
}
.sf24-tot-od-action:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,0.32);
  background: rgba(255,255,255,0.92);
}
.sf24-tot-od-action--primary {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 60%, #8b5cf6 100%);
  border-color: transparent;
  color: #fff;
}
.sf24-tot-od-action--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(237,196,50,0.28) 0%, transparent 60%);
  pointer-events: none;
}
.sf24-tot-od-action--primary:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 60%, #6d28d9 100%);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(124,58,237,0.55);
}
.sf24-tot-od-action--primary span:not(.sf24-tot-od-action-ico) { color: rgba(255,255,255,0.82); }
.sf24-tot-od-action-ico {
  font-size: 22px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.sf24-tot-od-action strong {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}
.sf24-tot-od-action span:not(.sf24-tot-od-action-ico) {
  font-size: 13px;
  color: rgba(26,15,46,0.6);
  position: relative;
  z-index: 1;
}

/* Target / link / comment / mention block (per-item) */
.sf24-tot-od-target {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(247,244,238,0.6);
  border: 1px solid rgba(124,58,237,0.10);
  margin-bottom: 18px;
}
.sf24-tot-od-target-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
}
.sf24-tot-od-target-row--block { flex-direction: column; align-items: flex-start; gap: 6px; }
.sf24-tot-od-target-key {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.65);
  flex-shrink: 0;
  min-width: 90px;
}
.sf24-tot-od-target-val {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13.5px;
  color: rgba(26,15,46,0.85);
  word-break: break-word;
}
.sf24-tot-od-target-val--link {
  color: #7c3aed;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(124,58,237,0.25);
  transition: border-color 0.2s ease;
}
.sf24-tot-od-target-val--link:hover { border-bottom-color: rgba(124,58,237,0.55); }

/* Provider panels (SMM API) */
.sf24-tot-od-panels { display: grid; gap: 14px; margin-top: 4px; }
.sf24-tot-od-panels.is-split { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.sf24-tot-od-panel {
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(124,58,237,0.10);
  padding: 18px 20px;
}
.sf24-tot-od-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.sf24-tot-od-panel-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(26,15,46,0.78);
  min-width: 0;
}
.sf24-tot-od-panel-title a {
  color: #7c3aed;
  text-decoration: none;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  border-bottom: 1.5px solid rgba(124,58,237,0.25);
}
.sf24-tot-od-panel-title a:hover { border-bottom-color: rgba(124,58,237,0.55); }
.sf24-tot-od-panel-num {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,0.16), rgba(237,196,50,0.20));
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 800;
  color: rgba(85,30,112,0.85);
}
.sf24-tot-od-panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid;
}
.sf24-tot-od-panel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  position: relative;
}
.sf24-tot-od-panel-dot.is-live::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.32;
  animation: totDotPulse 1.5s ease-in-out infinite;
}

.sf24-tot-od-stats {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.sf24-tot-od-stats li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(247,244,238,0.6);
  border: 1px solid rgba(124,58,237,0.08);
}
.sf24-tot-od-stats span {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.6);
}
.sf24-tot-od-stats strong {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14.5px;
  font-weight: 700;
  color: #1a0f2e;
  letter-spacing: -0.005em;
}
.sf24-tot-od-panel-sync {
  display: block;
  margin-top: 12px;
  font-size: 11.5px;
  color: rgba(26,15,46,0.5);
}

.sf24-tot-od-panel-empty {
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px dashed rgba(124,58,237,0.22);
  text-align: center;
}
.sf24-tot-od-panel-empty span {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: rgba(85,30,112,0.78);
}
.sf24-tot-od-panel-empty p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(26,15,46,0.6);
}

/* Billing + Payment grid */
.sf24-tot-od-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.sf24-tot-od-billing,
.sf24-tot-od-payment {
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(124,58,237,0.12);
  padding: 26px 26px;
}
.sf24-tot-od-payment {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,248,214,0.55) 100%);
  border-color: rgba(237,196,50,0.30);
}
.sf24-tot-od-card-head { margin-bottom: 18px; }
.sf24-tot-od-card-head h3 {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 8px 0 0;
}
.sf24-tot-od-billing-body,
.sf24-tot-od-payment-body { display: flex; flex-direction: column; gap: 12px; }
.sf24-tot-od-billing-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(124,58,237,0.06);
}
.sf24-tot-od-billing-row:last-of-type { border-bottom: 0; }
.sf24-tot-od-billing-row--block { grid-template-columns: 1fr; }
.sf24-tot-od-billing-label {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.65);
  align-self: center;
}
.sf24-tot-od-billing-row strong {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
  color: #1a0f2e;
  letter-spacing: -0.005em;
  word-break: break-word;
}
.sf24-tot-od-billing-row address {
  font-style: normal;
  font-family: var(--th-body, "Nunito", sans-serif);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26,15,46,0.78);
  margin: 0;
}

.sf24-tot-od-invoice-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 16px;
}
.sf24-tot-od-invoice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  border: 1.5px solid;
  white-space: nowrap;
}
.sf24-tot-od-invoice-btn--primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(124,58,237,0.45);
}
.sf24-tot-od-invoice-btn--primary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(124,58,237,0.55);
}
.sf24-tot-od-invoice-btn--ghost {
  background: rgba(255,255,255,0.7);
  border-color: rgba(26,15,46,0.18);
  color: rgba(26,15,46,0.78);
  padding: 13px 16px;
}
.sf24-tot-od-invoice-btn--ghost:hover {
  background: rgba(26,15,46,0.04);
  border-color: rgba(26,15,46,0.32);
  color: #1a0f2e;
  transform: translateY(-1px);
}

/* Item-qty multiplier sub-text */
.sf24-tot-od-item-mult {
  color: rgba(26,15,46,0.4);
  font-size: 12.5px;
}

@media (max-width: 720px) {
  .sf24-tot-od-status-inner { grid-template-columns: 1fr; gap: 16px; }
  .sf24-tot-od-meta { grid-template-columns: 1fr; }
  .sf24-tot-od-meta-row { border-right: 0; }
  .sf24-tot-od-meta-row:last-child { border-bottom: 0; }
  .sf24-tot-od-actions { grid-template-columns: 1fr; }
  .sf24-tot-od-grid-2 { grid-template-columns: 1fr; }
  .sf24-tot-od-invoice-row { grid-template-columns: 1fr 1fr; }
  .sf24-tot-od-invoice-btn { padding: 13px 14px; font-size: 13px; }
  .sf24-tot-od-item-head { flex-direction: column; gap: 10px; }
  .sf24-tot-od-item-pct { align-self: flex-end; }
  .sf24-tot-od-target-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}


/* ═══ WC ORDER VIEW (legacy fallback — kept for any other shortcode use) ═══ */
.sf24-tot-form-grid .woocommerce-order-details,
.sf24-tot-form-grid .woocommerce-customer-details,
.sf24-tot-form-grid .woocommerce-column { margin-top: 8px; }

/* Top intro line: "Order #X was placed on Y and is currently Z" */
.sf24-tot-form-grid > p:first-child,
.sf24-tot-form-grid .woocommerce-order-details + p,
.sf24-tot-form-grid p.order-info,
.sf24-tot-form-grid .woocommerce > p:first-child {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26,15,46,0.78);
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(124,58,237,0.10);
  margin: 0 0 24px;
}

.sf24-tot-form-grid mark {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(237,196,50,0.20));
  color: #1a0f2e;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid rgba(124,58,237,0.20);
}

/* Section titles inside view-order */
.sf24-tot-form-grid h2,
.sf24-tot-form-grid h3,
.sf24-tot-form-grid .woocommerce-order-details__title,
.sf24-tot-form-grid .woocommerce-column__title {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 28px 0 14px;
}

/* Order details table */
.sf24-tot-form-grid .shop_table,
.sf24-tot-form-grid table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  margin: 0 0 18px;
  font-size: 14.5px;
}
.sf24-tot-form-grid .shop_table thead th {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(237,196,50,0.08));
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.7);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(124,58,237,0.14);
}
.sf24-tot-form-grid .shop_table th:last-child,
.sf24-tot-form-grid .shop_table td:last-child { text-align: right; }
.sf24-tot-form-grid .shop_table tbody td,
.sf24-tot-form-grid .shop_table tfoot td,
.sf24-tot-form-grid .shop_table tfoot th {
  padding: 14px 18px;
  vertical-align: top;
  border-top: 1px solid rgba(124,58,237,0.08);
  color: #1a0f2e;
}
.sf24-tot-form-grid .shop_table tbody tr:first-child td,
.sf24-tot-form-grid .shop_table tbody tr:first-child th { border-top: 0; }
.sf24-tot-form-grid .shop_table tfoot th { font-weight: 700; color: rgba(26,15,46,0.78); }
.sf24-tot-form-grid .shop_table tfoot td { font-weight: 800; color: #1a0f2e; }
.sf24-tot-form-grid .shop_table tfoot tr:last-child td,
.sf24-tot-form-grid .shop_table tfoot tr:last-child th {
  background: linear-gradient(135deg, rgba(237,196,50,0.08), rgba(124,58,237,0.04));
  font-size: 16px;
}
.sf24-tot-form-grid .shop_table .product-name a,
.sf24-tot-form-grid .shop_table a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(124,58,237,0.25);
  word-break: break-all;
}
.sf24-tot-form-grid .shop_table a:hover { border-bottom-color: rgba(124,58,237,0.65); }
.sf24-tot-form-grid .shop_table .product-quantity { color: rgba(26,15,46,0.5); font-weight: 600; }

/* Item meta — the AOI / Start Count / Order Status block */
.sf24-tot-form-grid .wc-item-meta,
.sf24-tot-form-grid .variation,
.sf24-tot-form-grid dl.variation {
  list-style: none;
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(247,244,238,0.7);
  border: 1px solid rgba(124,58,237,0.10);
  font-size: 13.5px;
  line-height: 1.6;
}
.sf24-tot-form-grid .wc-item-meta li,
.sf24-tot-form-grid .variation > * {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(124,58,237,0.06);
  margin: 0;
}
.sf24-tot-form-grid .wc-item-meta li:last-child,
.sf24-tot-form-grid .variation > *:last-child { border-bottom: 0; }
.sf24-tot-form-grid .wc-item-meta li strong,
.sf24-tot-form-grid .wc-item-meta-label,
.sf24-tot-form-grid .variation dt {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.7);
  align-self: center;
}
.sf24-tot-form-grid .wc-item-meta li p,
.sf24-tot-form-grid .variation dd {
  margin: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13.5px;
  color: rgba(26,15,46,0.85);
  word-break: break-word;
}

/* Print invoice / action buttons */
.sf24-tot-form-grid .woocommerce-order-details .actions,
.sf24-tot-form-grid .woocommerce-order-actions,
.sf24-tot-form-grid .order-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.sf24-tot-form-grid a.button,
.sf24-tot-form-grid .button:not([type="submit"]) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(124,58,237,0.25);
  color: #7c3aed;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  width: auto;
  margin: 0;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: none;
}
.sf24-tot-form-grid a.button:hover,
.sf24-tot-form-grid .button:not([type="submit"]):hover {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.45);
  transform: translateY(-1px);
  color: #7c3aed;
}

/* Customer details — billing address etc. */
.sf24-tot-form-grid .woocommerce-customer-details address {
  font-style: normal;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(124,58,237,0.10);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26,15,46,0.78);
}

/* WC notices (success/error after submission) */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  margin: 0 0 16px !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  list-style: none !important;
  border: 1px solid rgba(124,58,237,0.12) !important;
  background: rgba(124,58,237,0.06) !important;
  color: #1a0f2e !important;
}
.woocommerce-error {
  background: rgba(239,68,68,0.08) !important;
  border-color: rgba(239,68,68,0.22) !important;
  color: #b91c1c !important;
}
.woocommerce-message {
  background: rgba(34,197,94,0.10) !important;
  border-color: rgba(34,197,94,0.28) !important;
  color: #15803d !important;
}

.sf24-tot-form-help {
  margin: 22px 0 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(26,15,46,0.6);
}
.sf24-tot-form-help a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(124,58,237,0.3);
  cursor: pointer;
}
.sf24-tot-form-help a:hover { border-bottom-color: rgba(124,58,237,0.7); }

/* ═══ STATUS LEGEND ═══ */
.sf24-tot-status {
  position: relative;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 60px);
  max-width: 1280px;
  margin: 0 auto;
}
.sf24-tot-status-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.sf24-tot-status-head .sf24-th-h2 { margin-top: 12px; }

.sf24-tot-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sf24-tot-status-card {
  position: relative;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(124,58,237,0.10);
  padding: 26px 22px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.4s, box-shadow 0.4s;
}
.sf24-tot-status-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -24px rgba(85,30,112,0.22);
}
.sf24-tot-status-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  margin-bottom: 18px;
  position: relative;
}
.sf24-tot-status-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.18;
  animation: totDotPulse 2s ease-in-out infinite;
}
@keyframes totDotPulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50% { opacity: 0.32; transform: scale(1.18); }
}
.sf24-tot-status-card--processing { border-color: rgba(245,158,11,0.28); }
.sf24-tot-status-card--processing .sf24-tot-status-dot { background: #f59e0b; }
.sf24-tot-status-card--inprogress { border-color: rgba(124,58,237,0.28); }
.sf24-tot-status-card--inprogress .sf24-tot-status-dot { background: #7c3aed; }
.sf24-tot-status-card--completed { border-color: rgba(34,197,94,0.28); }
.sf24-tot-status-card--completed .sf24-tot-status-dot { background: #22c55e; }
.sf24-tot-status-card--hold { border-color: rgba(239,68,68,0.28); }
.sf24-tot-status-card--hold .sf24-tot-status-dot { background: #ef4444; }

.sf24-tot-status-card h3 {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 0 0 8px;
}
.sf24-tot-status-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26,15,46,0.66);
  margin: 0 0 14px;
}
.sf24-tot-status-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,0.08);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(85,30,112,0.78);
}
.sf24-tot-status-card--completed .sf24-tot-status-tag { background: rgba(34,197,94,0.12); color: #15803d; }
.sf24-tot-status-card--hold .sf24-tot-status-tag { background: rgba(239,68,68,0.10); color: #b91c1c; }
.sf24-tot-status-card--processing .sf24-tot-status-tag { background: rgba(245,158,11,0.14); color: #b45309; }

/* ═══ WHAT YOU NEED ═══ */
.sf24-tot-need {
  position: relative;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 60px);
  max-width: 1280px;
  margin: 0 auto;
}
.sf24-tot-need-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.sf24-tot-need-head .sf24-th-h2 { margin-top: 12px; }

.sf24-tot-need-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.sf24-tot-need-card {
  position: relative;
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124,58,237,0.12);
  padding: clamp(28px, 3.2vw, 38px);
  display: flex;
  gap: 22px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.4s;
  overflow: hidden;
}
.sf24-tot-need-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.22); }
.sf24-tot-need-card--accent {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,248,214,0.55) 100%);
  border-color: rgba(237,196,50,0.32);
}
.sf24-tot-need-num {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #7c3aed, #f58529);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}
.sf24-tot-need-card--accent .sf24-tot-need-num {
  background: linear-gradient(135deg, #EDC432, #dd2a7b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf24-tot-need-body { flex: 1; min-width: 0; }
.sf24-tot-need-body h3 {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 0 0 8px;
}
.sf24-tot-need-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(26,15,46,0.66);
  margin: 0 0 16px;
}
.sf24-tot-need-body p code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  padding: 2px 8px;
  background: rgba(124,58,237,0.08);
  border-radius: 6px;
  color: #7c3aed;
}
.sf24-tot-need-mock {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(247,244,238,0.7);
  border: 1px solid rgba(124,58,237,0.10);
  font-size: 13.5px;
}
.sf24-tot-need-mock-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(85,30,112,0.55);
  margin-bottom: 6px;
}
.sf24-tot-need-mock strong {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(26,15,46,0.78);
  letter-spacing: -0.01em;
}
.sf24-tot-need-highlight {
  background: linear-gradient(135deg, #7c3aed, #dd2a7b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* ═══ FAQ ═══ */
.sf24-tot-faq-section {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 60px);
  max-width: 880px;
  margin: 0 auto;
}
.sf24-tot-faq-head { text-align: center; margin-bottom: 44px; }
.sf24-tot-faq-head .sf24-th-h2 { margin-top: 12px; }
.sf24-tot-faq { display: flex; flex-direction: column; gap: 10px; }
.sf24-tot-faq-item {
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(124,58,237,0.10);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.sf24-tot-faq-item[open] { border-color: rgba(124,58,237,0.25); }
.sf24-tot-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #1a0f2e;
}
.sf24-tot-faq-item summary::-webkit-details-marker { display: none; }
.sf24-tot-faq-mark {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.sf24-tot-faq-mark::before, .sf24-tot-faq-mark::after {
  content: "";
  position: absolute;
  background: #7c3aed;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.sf24-tot-faq-mark::before { top: 10px; left: 4px; width: 14px; height: 2px; }
.sf24-tot-faq-mark::after  { left: 10px; top: 4px; width: 2px; height: 14px; }
.sf24-tot-faq-item[open] .sf24-tot-faq-mark::after { transform: rotate(90deg); opacity: 0; }
.sf24-tot-faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26,15,46,0.7);
}

/* ═══ CONTACT ═══ */
.sf24-tot-contact {
  position: relative;
  padding: clamp(80px, 12vw, 130px) clamp(20px, 5vw, 60px);
  max-width: 1280px;
  margin: clamp(40px, 6vw, 80px) auto 0;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0f2e 0%, #551E70 50%, #7c3aed 100%);
  isolation: isolate;
}
.sf24-tot-contact-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 80% 20%, rgba(237,196,50,0.30) 0%, transparent 60%),
    radial-gradient(35% 50% at 10% 90%, rgba(221,42,123,0.40) 0%, transparent 60%);
  animation: totAuroraShift 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes totAuroraShift {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.sf24-tot-contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.sf24-tot-contact-h {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 14px 0 16px;
}
.sf24-tot-contact-h em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #EDC432 0%, #f58529 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf24-tot-contact-inner > p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto 36px;
}
.sf24-tot-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.sf24-tot-contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  color: #fff;
  text-align: left;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s ease, border-color 0.3s;
}
.sf24-tot-contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(237,196,50,0.4);
}
.sf24-tot-contact-icon { font-size: 22px; margin-bottom: 6px; }
.sf24-tot-contact-card strong {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.sf24-tot-contact-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ═══ ANIMATIONS ═══ */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .sf24-tot-status-grid { grid-template-columns: repeat(2, 1fr); }
  .sf24-tot-need-grid { grid-template-columns: 1fr; }
  .sf24-tot-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .sf24-tot-wrap { padding-top: 64px; }
  .sf24-tot-hero { padding: clamp(44px, 9vw, 70px) 18px clamp(28px, 6vw, 44px); }
  .sf24-tot-h1 { font-size: clamp(36px, 9.5vw, 56px); line-height: 1.02; }
  .sf24-tot-trust { gap: 8px; }
  .sf24-tot-pill { font-size: 12px; padding: 8px 12px; }
  .sf24-tot-form-section { padding: clamp(40px, 8vw, 64px) 18px; }
  .sf24-tot-form-card { padding: 28px 22px; border-radius: 24px; }
  .sf24-tot-status, .sf24-tot-need { padding: clamp(50px, 9vw, 80px) 18px; }
  .sf24-tot-status-grid { grid-template-columns: 1fr; gap: 12px; }
  .sf24-tot-need-card { flex-direction: column; gap: 14px; padding: 24px 22px; border-radius: 22px; }
  .sf24-tot-need-num { font-size: 36px; }
  .sf24-tot-faq-section { padding: clamp(50px, 9vw, 80px) 18px; }
  .sf24-tot-faq-item summary { padding: 18px 20px; font-size: 15px; }
  .sf24-tot-faq-item p { padding: 0 20px 20px; font-size: 14px; }
  .sf24-tot-contact { border-radius: 28px; margin: 32px 12px 0; padding: 56px 22px; }
  .sf24-tot-contact-grid { gap: 10px; }
  .sf24-tot-contact-card { padding: 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .sf24-tot-status-dot::before, .sf24-tot-contact-aurora { animation: none !important; }
  [data-anim] { transition: none !important; opacity: 1 !important; transform: none !important; }
}
