/* ========================================================
       SOLAR JOURNEY NEW SECTION — Premium Interactive Animation
       Self-contained. Does NOT affect any existing page styles.
    ======================================================== */

    #solar-journey-new {
      --sj-bg: #ffffff;
      --sj-surface: #f5f7fa;
      --sj-surface2: #eef1f6;
      --sj-panel: rgba(255, 255, 255, 0.92);
      --sj-border: rgba(200, 140, 20, 0.22);
      --sj-gold: #d4950a;
      --sj-gold-dim: #b07a08;
      --sj-orange: #e07000;
      --sj-amber: #f5a623;
      --sj-teal: #0099a8;
      --sj-blue: #2a6fbb;
      --sj-text: #1a1f2e;
      --sj-text-dim: #5a6478;
      --sj-glow: rgba(212, 149, 10, 0.28);
      --sj-panel-glow: rgba(212, 149, 10, 0.06);
      --sj-road-color: #1e2a18;
      --sj-panel-cell: #162012;
      font-family: 'Inter', 'Outfit', system-ui, sans-serif;
      background: #ffffff;
      color: var(--sj-text);
      min-height: 100vh;
      padding: 80px 0 0;
      position: relative;
      overflow: hidden;
    }

    /* === Section header === */
    .sj-header {
      text-align: center;
      padding: 0 20px 60px;
      position: relative;
      z-index: 10;
    }

    .sj-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 149, 10, 0.08);
      border: 1px solid rgba(212, 149, 10, 0.28);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--sj-gold);
      margin-bottom: 20px;
    }

    .sj-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--sj-gold);
      border-radius: 50%;
      animation: sj-pulse 2s ease-in-out infinite;
    }

    .sj-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.1;
      margin: 0 0 16px;
      background: linear-gradient(135deg, #1a1f2e 0%, var(--sj-gold) 55%, var(--sj-orange) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sj-subtitle {
      font-size: clamp(14px, 2vw, 18px);
      color: var(--sj-text-dim);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
      font-weight: 400;
      color: #5a6478;
    }

    /* === Main journey canvas area === */
    .sj-stage {
      position: relative;
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 16px 50px;
    }

    /* === Road canvas container — 3D Executive Showcase Deck === */
    .sj-road-wrapper {
      position: relative;
      width: 100%;
      height: 680px;
      perspective: 1400px;
      border-radius: 28px;
      background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 50%, #f6f8fc 100%);
      border: 1.5px solid rgba(226, 232, 240, 0.95);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 10px 24px -4px rgba(15, 23, 42, 0.04),
        0 24px 50px -8px rgba(15, 23, 42, 0.08),
        0 40px 90px -15px rgba(245, 158, 11, 0.07),
        inset 0 2px 0 #ffffff,
        inset 0 -2px 6px rgba(15, 23, 42, 0.02);
      overflow: hidden;
    }

    #sj-canvas {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 26px;
    }

    /* === Step Info Card (overlay) — 3D SaaS Executive Grade === */
    .sj-info-card {
      position: absolute;
      width: 380px;
      max-width: calc(100% - 32px);
      padding: 26px 28px 22px;
      border-radius: 24px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 254, 255, 0.95) 45%, rgba(247, 250, 254, 0.97) 100%);
      border: 1.5px solid rgba(212, 149, 10, 0.28);
      backdrop-filter: blur(28px) saturate(190%);
      -webkit-backdrop-filter: blur(28px) saturate(190%);
      box-shadow:
        0 6px 12px -2px rgba(15, 23, 42, 0.05),
        0 18px 36px -4px rgba(15, 23, 42, 0.08),
        0 36px 72px -8px rgba(15, 23, 42, 0.12),
        0 48px 96px -14px var(--step-glow, rgba(212, 149, 10, 0.22)),
        inset 0 2px 1px rgba(255, 255, 255, 1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.85),
        inset 0 -1.5px 2px rgba(15, 23, 42, 0.03);
      z-index: 25;
      transform-style: preserve-3d;
      transform: perspective(1000px) rotateX(2.5deg) rotateY(-2deg) translateZ(10px);
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 0.4s ease,
                  box-shadow 0.4s ease,
                  border-color 0.4s ease;
      pointer-events: auto;
      cursor: pointer;
      overflow: hidden;
      user-select: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .sj-info-card.hidden {
      opacity: 0;
      transform: perspective(1000px) rotateX(10deg) rotateY(-4deg) translateY(24px) scale(0.92);
      filter: blur(6px);
      pointer-events: none;
    }

    .sj-info-card.visible {
      opacity: 1;
      transform: perspective(1000px) rotateX(2.5deg) rotateY(-2deg) translateY(0) scale(1);
      filter: blur(0);
      pointer-events: auto;
    }

    .sj-info-card:hover {
      transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-5px) translateZ(24px) scale(1.02);
      border-color: rgba(212, 149, 10, 0.42);
      box-shadow:
        0 6px 12px -2px rgba(15, 23, 42, 0.05),
        0 20px 38px -4px rgba(15, 23, 42, 0.09),
        0 35px 70px -8px rgba(15, 23, 42, 0.14),
        0 50px 100px -14px var(--step-glow, rgba(212, 149, 10, 0.28)),
        inset 0 2px 1px rgba(255, 255, 255, 1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95),
        inset 0 -1.5px 2px rgba(15, 23, 42, 0.03);
    }

    /* Specular glass reflection diagonal sweep */
    .sj-card-glass-sheen {
      position: absolute;
      top: -50%;
      right: -30%;
      width: 140%;
      height: 140%;
      background: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.15) 35%, transparent 65%);
      pointer-events: none;
      transform: rotate(-15deg);
      z-index: 1;
      opacity: 0.85;
      transition: transform 0.25s ease;
    }

    /* Crown Accent Line with dynamic gradient & soft laser glow */
    .sj-card-accent-line {
      position: absolute;
      top: 0;
      left: 18px;
      right: 18px;
      height: 2.5px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 15%, var(--step-color, #d4950a) 50%, var(--sj-orange, #e07000) 85%, transparent 100%);
      border-radius: 99px;
      box-shadow: 0 1px 8px var(--step-glow, rgba(212, 149, 10, 0.45));
      z-index: 3;
    }

    /* Header: Step Pill + Phase Tag */
    .sj-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
    }

    .sj-card-step-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 4px 11px 4px 8px;
      background: linear-gradient(135deg, rgba(212, 149, 10, 0.09) 0%, rgba(245, 166, 35, 0.04) 100%);
      border: 1px solid rgba(212, 149, 10, 0.28);
      border-radius: 50px;
      box-shadow: 0 2px 5px rgba(212, 149, 10, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .sj-card-step-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--step-color, #d4950a);
      box-shadow: 0 0 8px var(--step-color, #d4950a);
      animation: sj-radar-pulse 2s ease-in-out infinite;
    }

    @keyframes sj-radar-pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.35); opacity: 0.6; }
    }

    .sj-card-step-num {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 750;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: #9a6500;
      line-height: 1;
    }

    .sj-card-phase-tag {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: #5a6478;
      background: rgba(15, 23, 42, 0.04);
      border: 1px solid rgba(15, 23, 42, 0.07);
      padding: 3px 9px;
      border-radius: 6px;
      letter-spacing: 0.2px;
      white-space: nowrap;
    }

    /* 3D Floating Icon Showcase */
    .sj-card-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
    }

    .sj-card-icon-frame {
      position: relative;
      width: 52px;
      height: 52px;
      border-radius: 15px;
      background: var(--icon-bg, linear-gradient(135deg, #f0f7ff 0%, #e0effe 100%));
      border: 1px solid var(--icon-border, rgba(59, 130, 246, 0.25));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        0 6px 16px -2px var(--icon-shadow, rgba(59, 130, 246, 0.24)),
        inset 0 1.5px 1px #ffffff,
        inset 0 -1px 2px rgba(15, 23, 42, 0.05);
      transform: translateZ(16px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .sj-card-icon-frame:hover {
      transform: translateZ(22px) scale(1.06);
    }

    .sj-card-icon-glow {
      position: absolute;
      inset: -4px;
      border-radius: 18px;
      background: radial-gradient(circle, var(--step-glow, rgba(212, 149, 10, 0.25)) 0%, transparent 70%);
      z-index: -1;
      opacity: 0.7;
    }

    .sj-card-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      animation: sj-icon-bounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sj-card-icon svg {
      width: 28px;
      height: 28px;
      display: block;
      filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.12));
    }

    .sj-card-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }

    .sj-card-category-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: #8c97aa;
    }

    .sj-card-status-pill {
      font-size: 11px;
      font-weight: 600;
      color: #15803d;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.22);
      padding: 2px 8px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .sj-card-status-pill::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #22c55e;
    }

    /* Content Typography */
    .sj-card-content {
      position: relative;
      z-index: 2;
      margin-bottom: 16px;
    }

    .sj-card-title {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 750;
      color: #0f172a;
      letter-spacing: -0.02em;
      line-height: 1.25;
      margin: 0 0 8px;
      -webkit-font-smoothing: antialiased;
    }

    .sj-card-desc {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 13.5px;
      font-weight: 420;
      color: #475569;
      line-height: 1.6;
      margin: 0;
      letter-spacing: -0.005em;
    }

    /* Recessed 3D Progress Tracker & Footer */
    .sj-card-footer {
      position: relative;
      z-index: 2;
      padding-top: 14px;
      border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .sj-card-progress {
      margin-bottom: 10px;
    }

    .sj-card-progress-bar {
      height: 6px;
      background: rgba(15, 23, 42, 0.05);
      border-radius: 99px;
      overflow: visible;
      position: relative;
      box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
    }

    .sj-card-progress-fill {
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--step-color, #d4950a) 0%, #f5a623 50%, var(--sj-orange, #e07000) 100%);
      box-shadow: 0 0 10px var(--step-glow, rgba(212, 149, 10, 0.4));
      position: relative;
      transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sj-card-progress-glow-head {
      position: absolute;
      right: -2px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 14px var(--step-color, #d4950a);
    }

    .sj-card-footer-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sj-card-progress-step-text {
      font-size: 11px;
      font-weight: 500;
      color: #64748b;
    }

    .sj-card-progress-label {
      font-family: 'Outfit', sans-serif;
      font-size: 12px;
      font-weight: 750;
      color: #9a6500;
      letter-spacing: 0.5px;
    }

    /* === Completion overlay === */
    .sj-completion {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      z-index: 30;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s ease;
    }

    .sj-completion.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .sj-completion-inner {
      text-align: center;
      padding: 40px;
    }

    .sj-completion-badge {
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--sj-gold), var(--sj-orange));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 24px;
      animation: sj-complete-pulse 2s ease infinite;
      box-shadow: 0 0 40px rgba(245,200,66,0.5);
    }

    .sj-completion-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(22px, 4vw, 34px);
      font-weight: 800;
      color: #1a1f2e;
      margin: 0 0 12px;
    }

    .sj-completion-text {
      font-size: 15px;
      color: #5a6478;
      max-width: 400px;
      line-height: 1.7;
      margin: 0 auto 24px;
    }

    .sj-completion-restarting {
      font-size: 13px;
      color: var(--sj-gold);
      opacity: 0.7;
      letter-spacing: 1px;
    }

    /* === Progress dots strip === */
    .sj-dots-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .sj-dot {
      width: 28px; height: 6px;
      border-radius: 3px;
      background: rgba(15, 23, 42, 0.12);
      transition: background 0.4s ease, width 0.4s ease;
      cursor: pointer;
      border: none;
    }

    .sj-dot.active {
      background: linear-gradient(90deg, #d4950a, #ea580c);
      width: 44px;
    }

    .sj-dot.completed {
      background: rgba(22, 163, 74, 0.45);
    }

    /* === Mobile dedicated layout === */
    .sj-mobile-layout {
      display: none;
    }

    /* === Animations === */
    @keyframes sj-pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    @keyframes sj-icon-bounce {
      0% { transform: scale(0.7) translateY(6px); opacity: 0; }
      60% { transform: scale(1.1) translateY(-2px); opacity: 1; }
      100% { transform: scale(1) translateY(0); opacity: 1; }
    }

    @keyframes sj-complete-pulse {
      0%, 100% { box-shadow: 0 0 40px rgba(245,200,66,0.5); }
      50% { box-shadow: 0 0 70px rgba(245,200,66,0.8), 0 0 120px rgba(245,200,66,0.3); }
    }

    /* === Responsive 3D SaaS Design Across All Devices === */
    @media (min-width: 992px) and (max-width: 1200px) {
      .sj-road-wrapper { height: 600px; }
      .sj-info-card {
        width: 320px;
        padding: 20px 22px 16px;
      }
      .sj-card-title { font-size: 18px; margin-bottom: 6px; }
      .sj-card-desc { font-size: 12.5px; line-height: 1.5; }
      .sj-card-icon-frame { width: 44px; height: 44px; border-radius: 12px; }
      .sj-card-icon svg { width: 22px; height: 22px; }
    }

    /* Tablet Screens (600px to 991px, e.g. 652px, 768px iPads) */
    @media (max-width: 991.98px) {
      #solar-journey-new {
        min-height: auto;
        padding: 55px 0 20px;
      }
      .sj-header {
        padding: 0 16px 28px;
      }
      .sj-badge {
        margin-bottom: 12px;
        padding: 5px 14px;
        font-size: 11px;
      }
      .sj-title {
        font-size: clamp(26px, 5vw, 36px);
        margin: 0 0 10px;
      }
      .sj-subtitle {
        font-size: 14.5px;
        line-height: 1.6;
        padding: 0 8px;
      }
      .sj-stage {
        padding: 0 12px 40px;
      }
      .sj-road-wrapper {
        height: 570px;
        border-radius: 22px;
      }
      .sj-info-card {
        width: min(390px, calc(100% - 36px));
        padding: 16px 18px 14px;
        border-radius: 18px;
      }
      .sj-card-title { font-size: 17px; margin-bottom: 4px; }
      .sj-card-desc { font-size: 12px; line-height: 1.45; }
      .sj-card-icon-frame { width: 40px; height: 40px; border-radius: 10px; }
      .sj-card-icon svg { width: 20px; height: 20px; }
      .sj-card-hero { margin-bottom: 8px; }
      .sj-card-header { margin-bottom: 8px; }
      .sj-card-footer { padding-top: 8px; }
    }

    /* Mobile Phones (< 600px, specifically tailored for 360 x 800 standard mobile) */
    @media (max-width: 599.98px) {
      #solar-journey-new {
        padding: 38px 0 15px;
      }
      .sj-header {
        padding: 0 10px 16px;
      }
      .sj-badge {
        margin-bottom: 8px;
        padding: 4px 12px;
        font-size: 10.5px;
      }
      .sj-title {
        font-size: 26px;
        line-height: 1.15;
        margin: 0 0 8px;
      }
      .sj-subtitle {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 4px;
        margin-bottom: 0;
      }
      .sj-stage {
        padding: 0 6px 24px;
      }
      .sj-road-wrapper {
        height: 500px;
        border-radius: 18px;
        border-width: 1px;
      }
      .sj-info-card {
        width: min(308px, calc(100% - 16px));
        padding: 11px 13px 9px;
        border-radius: 14px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
      }
      .sj-card-header { margin-bottom: 5px; }
      .sj-card-step-badge { padding: 2px 7px; font-size: 9px; gap: 5px; }
      .sj-card-step-dot { width: 5px; height: 5px; }
      .sj-card-phase-tag { font-size: 9.5px; }
      .sj-card-hero { margin-bottom: 5px; gap: 10px; }
      .sj-card-icon-frame { width: 32px; height: 32px; min-width: 32px; border-radius: 8px; }
      .sj-card-icon svg { width: 16px; height: 16px; }
      .sj-card-category-label { font-size: 9px; }
      .sj-card-status-pill { font-size: 9.5px; padding: 1px 7px; }
      .sj-card-title { font-size: 14.5px; margin-bottom: 2px; }
      .sj-card-desc {
        font-size: 10.5px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .sj-card-footer { padding-top: 5px; }
      .sj-card-progress-bar { height: 4px; }
      .sj-card-progress-step-text { font-size: 9.5px; }
      .sj-card-progress-label { font-size: 9.5px; }
      .sj-dots-strip { margin-top: 14px; gap: 5px; }
      .sj-dot { width: 18px; height: 4px; border-radius: 2px; }
      .sj-dot.active { width: 28px; }
    }

    .sj-mobile-layout {
      display: none !important;
    }
    .sj-mobile-track { position: relative; }
    .sj-mobile-track::before {
      content: '';
      position: absolute;
      left: 32px;
      top: 15px; bottom: 15px;
      width: 2.5px;
      background: linear-gradient(to bottom, var(--sj-gold), var(--sj-orange), #0099a8, var(--sj-gold));
      opacity: 0.25;
      border-radius: 99px;
    }

    .sj-mobile-step {
      margin-bottom: 18px;
      position: relative;
      opacity: 0.75;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sj-mobile-step:hover {
      opacity: 0.95;
      transform: translateY(-2px);
    }

    .sj-mobile-step.active {
      opacity: 1;
      transform: translateY(-2px);
    }

    .sj-mobile-step.completed {
      opacity: 0.9;
    }

    .sj-mobile-step-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 254, 255, 0.94) 50%, rgba(247, 250, 254, 0.97) 100%);
      border: 1px solid rgba(212, 149, 10, 0.2);
      border-radius: 20px;
      padding: 20px;
      box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.04),
        0 12px 24px -4px rgba(15, 23, 42, 0.06),
        inset 0 1.5px 1px rgba(255, 255, 255, 1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .sj-mobile-step.active .sj-mobile-step-card {
      border-color: rgba(212, 149, 10, 0.45);
      box-shadow:
        0 8px 16px -2px rgba(15, 23, 42, 0.06),
        0 20px 40px -6px var(--step-glow, rgba(212, 149, 10, 0.22)),
        inset 0 2px 1px #ffffff,
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    }

    .sj-mobile-step-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .sj-mobile-step-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 10px;
      background: rgba(212, 149, 10, 0.09);
      border: 1px solid rgba(212, 149, 10, 0.25);
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: 10.5px;
      font-weight: 750;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #9a6500;
    }

    .sj-mobile-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--step-color, #d4950a);
      box-shadow: 0 0 6px var(--step-color, #d4950a);
    }

    .sj-mobile-phase {
      font-size: 10.5px;
      font-weight: 600;
      color: #64748b;
      background: rgba(15, 23, 42, 0.04);
      padding: 2px 8px;
      border-radius: 5px;
    }

    .sj-mobile-step-content-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }

    .sj-mobile-step-icon-box {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 14px -2px rgba(15, 23, 42, 0.08), inset 0 1px 1px #fff;
      border: 1px solid rgba(212, 149, 10, 0.25);
    }

    .sj-mob-svg-icon svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    .sj-mobile-step-body {
      flex: 1;
    }

    .sj-mobile-step-title {
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      font-weight: 750;
      color: #0f172a;
      margin: 0 0 6px;
      line-height: 1.25;
    }

    .sj-mobile-step-desc {
      font-size: 12.5px;
      color: #475569;
      line-height: 1.55;
      margin: 0;
    }

    .sj-mobile-step-footer {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .sj-mobile-progress-bar {
      flex: 1;
      height: 5px;
      background: rgba(15, 23, 42, 0.06);
      border-radius: 99px;
      overflow: hidden;
    }

    .sj-mobile-progress-fill {
      height: 100%;
      border-radius: 99px;
      transition: width 0.4s ease;
    }

    .sj-mobile-step-label {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 750;
      color: #9a6500;
    }

    .sj-mobile-truck {
      text-align: center; padding: 12px 0; font-size: 28px;
      animation: sj-truck-bounce 1.5s ease-in-out infinite;
    }

    @keyframes sj-truck-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    /* === Ambient background effects === */
    .sj-ambient { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
    .sj-ambient-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(212,149,10,0.06) 0%, transparent 70%);
      top: -100px; right: -100px;
    }
    .sj-ambient-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(0,153,168,0.05) 0%, transparent 70%);
      bottom: 0; left: -100px;
    }