/* =====================================================
   WSUK — Services Page Styles
   ===================================================== */

/* ============================================================
   PREMIUM SERVICE CARDS
   ============================================================ */

/* Cards on services page are <div> not <a> */
.osvc-section div.osvc-card {
  cursor: default;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.8,.3,1), box-shadow 240ms, border-color 240ms;
}

/* Red gradient top accent bar */
.osvc-section div.osvc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 240ms;
}
.osvc-section div.osvc-card:hover::before { opacity: 1; }

.osvc-section div.osvc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(10,31,68,.12), 0 4px 12px rgba(200,16,46,.08);
  border-color: rgba(200,16,46,.25);
}

/* Checklist */
.osvc-card-checks {
  list-style: none;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.osvc-card-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.35;
}
.osvc-card-checks li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #DCFCE7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%2316A34A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Card footer */
.osvc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.osvc-card-learn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 180ms;
}
.osvc-card-learn:hover { color: var(--brand-red); }
.osvc-card-learn span { transition: transform 180ms; }
.osvc-card-learn:hover span { transform: translateX(3px); }

.osvc-card-quote {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: transform 180ms, box-shadow 180ms, filter 180ms;
  box-shadow: 0 3px 10px rgba(200,16,46,.3);
}
.osvc-card-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,.4);
  filter: brightness(1.08);
}
.osvc-card-quote:active { transform: translateY(0); }

/* ============================================================
   QUOTE MODAL
   ============================================================ */

/* Overlay */
.lq-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(6,15,34,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 300ms;
}
.lq-overlay.lq-open {
  opacity: 1;
  visibility: visible;
}

/* Modal card */
.lq-modal {
  display: flex;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  transform: translateY(24px) scale(.97);
  transition: transform 340ms cubic-bezier(.2,.8,.3,1);
}
.lq-overlay.lq-open .lq-modal {
  transform: translateY(0) scale(1);
}

/* ---- Left panel ---- */
.lq-left {
  width: 280px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #0D2550 0%, #0A1F44 60%, #060F22 100%);
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.lq-left::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.2) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}

.lq-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.lq-logo-text span {
  color: var(--brand-red);
}

.lq-left-top { display: flex; flex-direction: column; gap: 14px; }
.lq-left-tagline {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  font-weight: 400;
}

/* Step progress */
.lq-progress {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lq-prog-step {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lq-prog-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 280ms, border-color 280ms;
}
.lq-prog-dot span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  transition: color 280ms;
}
.lq-prog-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  transition: color 280ms;
}
.lq-prog-step--active .lq-prog-dot {
  background: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(200,16,46,.25);
}
.lq-prog-step--active .lq-prog-dot span { color: #fff; }
.lq-prog-step--active .lq-prog-label { color: #fff; font-weight: 600; }
.lq-prog-step--done .lq-prog-dot {
  background: #16A34A;
  border-color: #16A34A;
}
.lq-prog-step--done .lq-prog-dot span { color: #fff; }
.lq-prog-step--done .lq-prog-label { color: rgba(255,255,255,.6); }

.lq-prog-line {
  width: 2px;
  height: 28px;
  background: rgba(255,255,255,.12);
  margin-left: 15px;
  border-radius: 2px;
  transition: background 280ms;
}
.lq-prog-line--done { background: #16A34A; }

/* Trust list */
.lq-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.lq-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* ---- Right panel ---- */
.lq-right {
  flex: 1;
  background: #fff;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.lq-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--line-soft);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: background 180ms, color 180ms;
  z-index: 1;
}
.lq-close:hover { background: var(--line); color: var(--ink); }

/* Step panels */
.lq-step-panel {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 40px 36px 32px;
  animation: lqFadeIn 280ms ease;
}
.lq-step-panel--active { display: flex; }

@keyframes lqFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Step header */
.lq-step-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  background: var(--brand-red-soft);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.lq-step-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.lq-step-sub {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Fields */
.lq-fields { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.lq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lq-field { display: flex; flex-direction: column; gap: 6px; }
.lq-field--full { grid-column: 1 / -1; }

.lq-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.lq-req { color: var(--brand-red); }

.lq-input {
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 180ms, box-shadow 180ms, background 180ms;
  width: 100%;
}
.lq-input:focus {
  border-color: var(--brand-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.lq-input::placeholder { color: #AEBAC8; }

.lq-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='%23475569' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 12px; padding-right: 34px; cursor: pointer; }

.lq-textarea { resize: vertical; min-height: 100px; }

/* Nav buttons */
.lq-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

.lq-btn-next, .lq-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border: none;
  border-radius: 12px;
  padding: 13px 24px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(200,16,46,.35);
  transition: transform 180ms, box-shadow 180ms, filter 180ms;
}
.lq-btn-next:hover, .lq-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.45);
  filter: brightness(1.06);
}

.lq-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: border-color 180ms, color 180ms, background 180ms;
}
.lq-btn-back:hover { border-color: var(--slate); color: var(--ink); background: var(--bg-alt); }

/* Success panel */
.lq-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  gap: 16px;
  padding: 20px 0;
}
.lq-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16A34A, #15803D);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(22,163,74,.4);
  animation: successPop 500ms cubic-bezier(.2,1.4,.4,1) forwards;
}
@keyframes successPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.lq-success-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.lq-success-msg {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 340px;
}
.lq-btn-close-success {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 28px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 180ms, border-color 180ms;
}
.lq-btn-close-success:hover { background: var(--line); }

/* Responsive modal */
@media (max-width: 700px) {
  .lq-modal { flex-direction: column; max-height: 96vh; border-radius: 20px 20px 0 0; align-self: flex-end; }
  .lq-left { width: 100%; flex-direction: row; flex-wrap: wrap; padding: 20px 20px 16px; gap: 16px; }
  .lq-left-top { flex-direction: row; align-items: center; gap: 12px; width: 100%; }
  .lq-left-tagline { display: none; }
  .lq-progress { flex-direction: row; align-items: center; }
  .lq-prog-line { width: 28px; height: 2px; margin-left: 0; }
  .lq-prog-label { display: none; }
  .lq-trust-list { display: none; }
  .lq-step-panel { padding: 24px 20px 20px; }
  .lq-row { grid-template-columns: 1fr; }
}

/* ---------- Active nav link ---------- */
.nav-link--active {
  color: var(--brand-red) !important;
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */
.svc-page-hero {
  position: relative;
  overflow: hidden;
  background-color: #060F22;
  background-image:
    linear-gradient(100deg,
      #0D2550 0%,
      #0A1F44 38%,
      rgba(10,31,68,.82) 58%,
      rgba(6,15,34,.55) 100%
    ),
    url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 56px 0 48px;
}

/* Subtle dot-grid overlay */
.svc-hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, transparent 100%);
}

/* Decorative blobs */
.svc-hero-deco-1,
.svc-hero-deco-2,
.svc-hero-deco-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
/* Large red glow — top right */
.svc-hero-deco-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,.22) 0%, transparent 65%);
  top: -200px;
  right: -180px;
}
/* Ambient navy/blue — bottom left */
.svc-hero-deco-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(99,130,255,.1) 0%, transparent 65%);
  bottom: -120px;
  left: -80px;
}
/* Small amber warmth — mid left */
.svc-hero-deco-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  top: 40%;
  left: 10%;
}

/* Two-column inner layout */
.svc-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

/* Left: text column */
.svc-hero-text {
  flex: 1;
  min-width: 0;
}

/* Breadcrumb — frosted glass pill */
.svc-breadcrumb {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  width: fit-content;
}
.svc-breadcrumb a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color 180ms;
}
.svc-breadcrumb a:hover { color: #fff; }
.svc-breadcrumb svg {
  opacity: .3;
  flex-shrink: 0;
  color: #fff;
}
.svc-breadcrumb > span {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

/* H1 */
.svc-hero-title {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}

/* Gradient highlight span */
.svc-hero-highlight {
  background: linear-gradient(130deg, #FF3356 0%, var(--brand-red) 50%, #C8102E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.svc-hero-sub {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,.62);
  margin-bottom: 30px;
}

/* CTA buttons */
.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Stats panel — right side ---------- */
.svc-hero-stats {
  flex-shrink: 0;
  width: 240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 24px 64px rgba(0,0,0,.35);
}

.svc-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 12px;
  background: rgba(255,255,255,.04);
  transition: background 250ms;
}
.svc-hero-stat:hover {
  background: rgba(255,255,255,.08);
}

.svc-hero-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.svc-hero-stat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

/* Separators become the 2px gaps in the grid */
.svc-hero-stat-sep { display: none; }

/* ============================================================
   HOW IT WORKS — PREMIUM LIGHT
   ============================================================ */
.hiw-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,16,46,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Soft red ambient glow — top right */
.hiw-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.07) 0%, transparent 70%);
  top: -220px; right: -160px;
  pointer-events: none;
}

.hiw-blue-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,130,255,.06) 0%, transparent 70%);
  bottom: -180px; left: -120px;
  pointer-events: none;
}

.hiw-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

/* Steps row */
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Individual step card */
.hiw-step {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 36px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(15,23,42,.06), 0 1px 4px rgba(15,23,42,.04);
  position: relative;
  transition: border-color 260ms, transform 260ms, box-shadow 260ms;
}
.hiw-step:hover {
  border-color: rgba(200,16,46,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,31,68,.12), 0 4px 12px rgba(200,16,46,.08);
}

/* Red top accent on hover */
.hiw-step::before {
  content: '';
  position: absolute;
  top: 0; left: 16%; right: 16%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 260ms;
}
.hiw-step:hover::before { opacity: 1; }

/* Step number — circle badge */
.hiw-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  box-shadow: 0 6px 18px rgba(200,16,46,.35), 0 0 0 5px rgba(200,16,46,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 0;
  margin-bottom: 22px;
  flex-shrink: 0;
  user-select: none;
}

/* Step icon wrapper */
.hiw-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-red-soft), #fff5f6);
  border: 1.5px solid rgba(200,16,46,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--brand-red);
  transition: background 260ms, box-shadow 260ms, border-color 260ms, color 260ms;
}
.hiw-step:hover .hiw-step-icon {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border-color: var(--brand-red);
  box-shadow: 0 10px 30px rgba(200,16,46,.3);
  color: #fff;
}

/* Step text */
.hiw-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}

.hiw-step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate);
}

/* Connector between steps */
.hiw-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--brand-red);
  opacity: .4;
  margin-top: 100px;
}

/* ============================================================
   HIW ICON ANIMATIONS — mega-menu quality icons
   ============================================================ */

/* Step 1 — icon-pallet: crate floats, shadow pulses, slats glow */
.hiw-step:hover .icon-pallet .crate {
  animation: crateFloat 1.4s cubic-bezier(.4,1.6,.5,1) infinite;
  transform-origin: center bottom;
  transform-box: fill-box;
}
.hiw-step:hover .icon-pallet .crate-shadow {
  animation: shadowGrow 1.4s cubic-bezier(.4,1.6,.5,1) infinite;
}
.hiw-step:hover .icon-pallet .pallet-slat {
  animation: slatGlow 1.4s ease-in-out infinite;
}

/* Step 2 — icon-fulfilment: flaps open, check draws, sparks pop */
.hiw-step:hover .icon-fulfilment .flap-l {
  animation: flapL 1.6s ease-in-out infinite;
  transform-origin: right center;
  transform-box: fill-box;
}
.hiw-step:hover .icon-fulfilment .flap-r {
  animation: flapR 1.6s ease-in-out infinite;
  transform-origin: left center;
  transform-box: fill-box;
}
.hiw-step:hover .icon-fulfilment .check {
  animation: drawCheck 1.6s ease-in-out infinite;
}
.icon-fulfilment .check {
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
}
.hiw-step:hover .icon-fulfilment .spark { animation: sparkPop 1.4s ease-out infinite; }
.hiw-step:hover .icon-fulfilment .spark-2 { animation-delay: .25s; }
.hiw-step:hover .icon-fulfilment .spark-3 { animation-delay: .5s; }

/* Step 3 — icon-transport: wheels spin, motion lines dash, body bounces */
.hiw-step:hover .icon-transport .wheel {
  animation: wheelSpin .7s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hiw-step:hover .icon-transport .truck-body {
  animation: truckBounce .35s ease-in-out infinite;
}
.hiw-step:hover .icon-transport .motion-line {
  animation: motionDash 600ms linear infinite;
}
.hiw-step:hover .icon-transport .motion-line-2 { animation-delay: 200ms; }
.hiw-step:hover .icon-transport .motion-line-3 { animation-delay: 400ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .svc-page-hero {
    padding: 50px 0 40px;
  }

  .svc-hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .svc-hero-stats {
    width: 100%;
  }

  .hiw-steps {
    flex-direction: column;
    align-items: center;
  }

  .hiw-step {
    max-width: 100%;
    width: 100%;
  }

  .hiw-connector {
    transform: rotate(90deg);
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .svc-page-hero {
    padding: 44px 0 32px;
  }

  .svc-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-hero-ctas .btn {
    text-align: center;
  }
}
