/* ===========================
   CSS RESET & GLOBAL STYLES
=========================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Selection */
::selection {
  background: #0056b3;
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #0056b3;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003d82;
}

/* Images */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Videos */
video {
  max-width: 100%;
  display: block;
}

/* SVG */
svg {
  display: block;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Buttons */
button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font: inherit;
  transition: all 0.3s ease;
}

/* Inputs */
input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* Iframe */
iframe {
  border: 0;
  width: 100%;
}

/* Utility */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Smooth Animations */
html:focus-within {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}


/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Brand colours */
  --sj-navy: #1E2D5F;
  --sj-navy-dark: #141f45;
  --sj-orange: #E8541A;
  --sj-orange-hover: #c94012;
  --sj-orange-tint: #fff3ee;

  /* Neutral */
  --sj-white: #ffffff;
  --sj-offwhite: #f8f9fc;
  --sj-gray-text: #5a6478;
  --sj-border: #e8ecf4;

  /* Shadows */
  --sj-shadow-sm: 0 2px 12px rgba(30, 45, 95, 0.08);
  --sj-shadow-md: 0 6px 30px rgba(30, 45, 95, 0.14);
  --sj-shadow-drop: 0 8px 28px rgba(232, 84, 26, 0.28);

  /* Sizing */
  --sj-navbar-h: 72px;
  --sj-topbar-h: 38px;

  /* Easing */
  --sj-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESETS (scoped) ──────────────────────────────────────── */
.sj-topbar *,
.sj-topbar *::before,
.sj-topbar *::after,
.sj-header *,
.sj-header *::before,
.sj-header *::after,
.sj-overlay {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── SHARED CONTAINER ─────────────────────────────────────── */
.sj-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.sj-topbar {
  background-color: var(--sj-navy-dark);
  height: var(--sj-topbar-h);
  display: flex;
  align-items: center;
}

.sj-topbar .sj-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sj-topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sj-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s var(--sj-ease);
  white-space: nowrap;
}

.sj-topbar__item i {
  color: var(--sj-orange);
  font-size: 11.5px;
  flex-shrink: 0;
}

.sj-topbar__item:hover {
  color: var(--sj-white);
}

.sj-topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sj-topbar__right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.25s var(--sj-ease);
}

.sj-topbar__right a:hover {
  background-color: var(--sj-orange);
  border-color: var(--sj-orange);
  color: var(--sj-white);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER WRAPPER (sticky)
   ============================================================ */
.sj-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.sj-navbar {
  background-color: var(--sj-white);
  height: var(--sj-navbar-h);
  box-shadow: var(--sj-shadow-sm);
  transition: height 0.3s var(--sj-ease),
    box-shadow 0.3s var(--sj-ease);
}

.sj-navbar.sj-scrolled {
  height: 62px;
  box-shadow: var(--sj-shadow-md);
}

.sj-navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  gap: 16px;
}

/* ── LOGO ─────────────────────────────────────────────────── */
.sj-navbar__logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.sj-navbar__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s var(--sj-ease);
}

.sj-navbar.sj-scrolled .sj-navbar__logo img {
  height: 42px;
}

/* ── NAV MENU (desktop) ───────────────────────────────────── */
.sj-nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

/* ── NAV ITEM ─────────────────────────────────────────────── */
.sj-nav__item {
  position: relative;
}

/* ── NAV LINK ─────────────────────────────────────────────── */
.sj-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sj-navy);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.22s var(--sj-ease),
    background-color 0.22s var(--sj-ease);
  position: relative;
}

/* Small icon before label */
.sj-nav__link>i:first-child {
  font-size: 12.5px;
  color: var(--sj-orange);
  flex-shrink: 0;
}

/* Chevron */
.sj-chevron {
  font-size: 10px;
  color: var(--sj-gray-text);
  transition: transform 0.28s var(--sj-ease), color 0.22s;
  margin-left: 1px;
}

.sj-nav__link:hover {
  color: var(--sj-orange);
  background-color: var(--sj-orange-tint);
}

.sj-nav__link:hover .sj-chevron {
  color: var(--sj-orange);
}

/* Active state — underline bar */
.sj-nav__link.active {
  color: var(--sj-orange);
}

.sj-nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 13px;
  height: 2.5px;
  background-color: var(--sj-orange);
  border-radius: 2px 2px 0 0;
}

/* ── DROPDOWN CONTAINER ───────────────────────────────────── */
.sj-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--sj-white);
  border-radius: 10px;
  box-shadow: var(--sj-shadow-md);
  min-width: 255px;
  list-style: none;
  padding: 8px 0;
  border-top: 3px solid var(--sj-orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--sj-ease),
    transform 0.25s var(--sj-ease),
    visibility 0.25s;
  z-index: 1100;
}

/* Grid layout for locations */
.sj-dropdown--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 340px;
  padding: 10px;
  gap: 2px;
}

/* Show on hover (desktop) */
.sj-has-dropdown:hover>.sj-dropdown,
.sj-has-dropdown.sj-open>.sj-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate chevron when open */
.sj-has-dropdown:hover>.sj-nav__link .sj-chevron,
.sj-has-dropdown.sj-open>.sj-nav__link .sj-chevron {
  transform: rotate(-180deg);
  color: var(--sj-orange);
}

/* ── DROPDOWN LINKS ───────────────────────────────────────── */
.sj-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--sj-navy);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s var(--sj-ease),
    color 0.2s var(--sj-ease),
    padding-left 0.2s var(--sj-ease);
}

.sj-dropdown--grid li a {
  padding: 8px 10px;
}

.sj-dropdown li a i {
  font-size: 12.5px;
  color: var(--sj-orange);
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.sj-dropdown li a:hover {
  background-color: var(--sj-orange-tint);
  color: var(--sj-orange);
  padding-left: 22px;
}

.sj-dropdown--grid li a:hover {
  padding-left: 14px;
}

/* ── GET QUOTE BUTTON ─────────────────────────────────────── */
.sj-nav__cta {
  margin-left: 8px;
}

.sj-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--sj-orange) 0%, #c94012 100%);
  color: var(--sj-white) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--sj-shadow-drop);
  transition: transform 0.25s var(--sj-ease),
    box-shadow 0.25s var(--sj-ease),
    background 0.25s var(--sj-ease);
  position: relative;
  overflow: hidden;
}

/* Ripple shimmer on hover */
.sj-btn-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.18) 50%,
      transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--sj-ease);
}

.sj-btn-quote:hover::before {
  transform: translateX(100%);
}

.sj-btn-quote:hover {
  background: linear-gradient(135deg, #c94012 0%, var(--sj-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 84, 26, 0.4);
}

.sj-btn-quote:active {
  transform: translateY(0);
}

.sj-btn-quote i {
  font-size: 13px;
}

/* ── HAMBURGER BUTTON ─────────────────────────────────────── */
.sj-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid var(--sj-navy);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.22s var(--sj-ease),
    background-color 0.22s var(--sj-ease);
}

.sj-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--sj-navy);
  border-radius: 2px;
  transition: transform 0.3s var(--sj-ease),
    opacity 0.3s var(--sj-ease),
    background-color 0.22s;
  transform-origin: center;
}

/* Active (X) state */
.sj-hamburger.sj-active {
  background-color: var(--sj-orange-tint);
  border-color: var(--sj-orange);
}

.sj-hamburger.sj-active span {
  background-color: var(--sj-orange);
}

.sj-hamburger.sj-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sj-hamburger.sj-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.sj-hamburger.sj-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── OVERLAY (mobile backdrop) ────────────────────────────── */
.sj-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 20, 42, 0.58);
  z-index: 998;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s var(--sj-ease);
}

.sj-overlay.sj-active {
  display: block;
  opacity: 1;
}

/* ============================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .sj-nav__link {
    padding: 9px 10px;
    font-size: 13px;
  }

  .sj-btn-quote {
    padding: 9px 16px;
    font-size: 13px;
  }

  .sj-topbar__item.sj-topbar__hours {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 900px
   ============================================================ */
@media (max-width: 900px) {

  /* Show hamburger */
  .sj-hamburger {
    display: flex;
  }

  /* Hide email in topbar */
  .sj-topbar__left .sj-topbar__item:last-child {
    display: none;
  }

  /* ── Slide-in drawer ──────────────────────────────────── */
  .sj-nav__menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100dvh;
    background: var(--sj-white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    list-style: none;
    padding: 0 0 30px 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
    border-left: 4px solid var(--sj-orange);
    box-shadow: -8px 0 40px rgba(14, 20, 42, 0.18);
    transition: right 0.35s var(--sj-ease);
    /* Scroll style */
    scrollbar-width: thin;
    scrollbar-color: var(--sj-border) transparent;
  }

  .sj-nav__menu::-webkit-scrollbar {
    width: 4px;
  }

  .sj-nav__menu::-webkit-scrollbar-thumb {
    background: var(--sj-border);
    border-radius: 2px;
  }

  /* Drawer header strip (navy) */
  .sj-nav__menu::before {
    content: 'Menu';
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 20px;
    background: var(--sj-navy);
    color: var(--sj-white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .sj-nav__menu.sj-open {
    right: 0;
  }

  /* ── Mobile nav items ─────────────────────────────────── */
  .sj-nav__item {
    border-bottom: 1px solid var(--sj-border);
    position: static;
  }

  .sj-nav__link {
    display: flex;
    width: 100%;
    padding: 14px 20px;
    font-size: 14.5px;
    border-radius: 0;
    justify-content: flex-start;
  }

  .sj-nav__link .sj-chevron {
    margin-left: auto;
    font-size: 12px;
  }

  /* Active — left bar instead of bottom */
  .sj-nav__link.active::after {
    display: none;
  }

  .sj-nav__link.active {
    border-left: 3px solid var(--sj-orange);
    padding-left: 17px;
    background-color: var(--sj-orange-tint);
  }

  /* ── Mobile dropdown (accordion) ─────────────────────── */
  .sj-dropdown,
  .sj-dropdown--grid {
    position: static !important;
    opacity: 1 !important;
    visibility: hidden;
    transform: none !important;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 3px solid var(--sj-orange);
    background-color: var(--sj-offwhite);
    min-width: unset !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--sj-ease),
      visibility 0s linear 0.35s;
    display: block !important;
    padding: 0 !important;
    gap: unset !important;
    grid-template-columns: unset !important;
    z-index: 0;
  }

  .sj-dropdown.sj-open,
  .sj-dropdown--grid.sj-open {
    max-height: 600px;
    visibility: visible;
    transition: max-height 0.4s var(--sj-ease),
      visibility 0s;
  }

  .sj-dropdown li a,
  .sj-dropdown--grid li a {
    padding: 11px 20px 11px 36px;
    font-size: 13.5px;
    border-radius: 0;
    border-bottom: 1px solid var(--sj-border);
  }

  .sj-dropdown li:last-child a,
  .sj-dropdown--grid li:last-child a {
    border-bottom: none;
  }

  .sj-dropdown li a:hover,
  .sj-dropdown--grid li a:hover {
    padding-left: 42px;
  }

  /* Chevron when accordion is open */
  .sj-has-dropdown.sj-open>.sj-nav__link .sj-chevron {
    transform: rotate(-180deg);
    color: var(--sj-orange);
  }

  /* Override desktop hover trigger */
  .sj-has-dropdown:hover>.sj-dropdown {
    opacity: 1;
    visibility: hidden;
    transform: none;
  }

  .sj-has-dropdown.sj-open>.sj-dropdown {
    visibility: visible;
  }

  /* ── Get Quote (mobile) ───────────────────────────────── */
  .sj-nav__cta {
    margin: 16px 20px;
    border-bottom: none !important;
  }

  .sj-btn-quote {
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .sj-topbar {
    display: none;
  }

  .sj-navbar__logo img {
    height: 42px;
  }

  .sj-navbar.sj-scrolled .sj-navbar__logo img {
    height: 38px;
  }

  :root {
    --sj-navbar-h: 64px;
  }
}

/* ============================================================
   HERO SECTION — Shree Jagarnath Packers and Movers (v2)
   Append to css/style.css (uses existing --sj-* tokens)
   ============================================================ */

.sj-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  max-height: 570px;
  height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Background image layer */
.sj-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_img.avif');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  backface-visibility: hidden;
}

/* Dark gradient overlay for text legibility over a busy photo */
.sj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(20, 31, 69, 0.94) 0%,
      rgba(20, 31, 69, 0.90) 30%,
      rgba(20, 31, 69, 0.58) 58%,
      rgba(20, 31, 69, 0.28) 100%);
  z-index: 1;
}

.sj-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 36px;
  width: 100%;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* ============================================================
   LEFT — SEO CONTENT
   ============================================================ */
.sj-hero__content {
  color: var(--sj-white);
  max-width: 620px;
}

.sj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(232, 84, 26, 0.16);
  border: 1px solid rgba(232, 84, 26, 0.5);
  color: #ffb38c;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.sj-hero__badge i {
  color: var(--sj-orange);
  font-size: 11px;
}

.sj-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--sj-white);
  margin-bottom: 12px;
}

.sj-hero__title-accent {
  display: block;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  color: #ffb38c;
  margin-top: 6px;
}

.sj-hero__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 18px;
}

.sj-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  list-style: none;
  margin-bottom: 22px;
  padding: 0;
}

.sj-hero__highlights li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.sj-hero__highlights li i {
  color: #4ade80;
  font-size: 13px;
}

.sj-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.sj-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s var(--sj-ease), box-shadow 0.25s var(--sj-ease);
}

.sj-hero__btn--call {
  background: linear-gradient(135deg, var(--sj-orange) 0%, #c94012 100%);
  color: var(--sj-white);
  box-shadow: var(--sj-shadow-drop);
}

.sj-hero__btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 84, 26, 0.4);
}

.sj-hero__btn--whatsapp {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sj-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.sj-hero__btn--whatsapp i {
  color: #25D366;
  font-size: 15px;
}

.sj-hero__btn--whatsapp:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Trust strip */
.sj-hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sj-hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sj-hero__trust-num {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--sj-white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sj-hero__trust-num i {
  color: #ffb38c;
  font-size: 13px;
}

.sj-hero__trust-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.sj-hero__trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   RIGHT — CONTACT FORM CARD
   ============================================================ */
.sj-hero__form-wrap {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}

.sj-hero__form {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--sj-white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--sj-shadow-md);
  border-top: 4px solid var(--sj-orange);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sj-hero__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.sj-hero__form-head {
  margin-bottom: 0;
}

.sj-hero__form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--sj-navy);
  margin-bottom: 2px;
}

.sj-hero__form-sub {
  font-size: 11.5px;
  color: var(--sj-gray-text);
}

.sj-hero__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sj-hero__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sj-hero__label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sj-navy);
}

.sj-hero__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.sj-hero__input-wrap i {
  position: absolute;
  left: 12px;
  font-size: 12px;
  color: var(--sj-orange);
  pointer-events: none;
}

.sj-hero__input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: var(--sj-offwhite);
  border: 1.5px solid var(--sj-border);
  border-radius: 8px;
  transition: border-color 0.22s var(--sj-ease), background-color 0.22s var(--sj-ease);
}

.sj-hero__input::placeholder {
  color: #9aa3b5;
}

.sj-hero__input:focus {
  border-color: var(--sj-orange);
  background: var(--sj-white);
}

.sj-hero__input:invalid:not(:placeholder-shown) {
  border-color: #e0584f;
}

.sj-hero__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--sj-orange) 0%, #c94012 100%);
  color: var(--sj-white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: var(--sj-shadow-drop);
  transition: transform 0.22s var(--sj-ease), box-shadow 0.22s var(--sj-ease), opacity 0.22s;
  position: relative;
  flex-shrink: 0;
}

.sj-hero__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 84, 26, 0.4);
}

.sj-hero__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.sj-hero__submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--sj-white);
  border-radius: 50%;
}

.sj-hero__submit.sj-loading .sj-hero__submit-text {
  display: none;
}

.sj-hero__submit.sj-loading .sj-hero__submit-spinner {
  display: inline-block;
  animation: sj-spin 0.7s linear infinite;
}

@keyframes sj-spin {
  to {
    transform: rotate(360deg);
  }
}

.sj-hero__form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--sj-gray-text);
  justify-content: center;
  flex-shrink: 0;
}

.sj-hero__form-note i {
  color: var(--sj-orange);
  font-size: 9.5px;
}

/* Status renders as a floating toast OVER the form, not pushing layout height */
.sj-hero__form-status {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -46px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--sj-ease), transform 0.25s var(--sj-ease), visibility 0.25s;
  box-shadow: var(--sj-shadow-sm);
  z-index: 5;
}

.sj-hero__form-status.sj-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sj-hero__form-status.sj-success {
  background: #e7f8ee;
  color: #1d8a4d;
}

.sj-hero__form-status.sj-error {
  background: #fdeceb;
  color: #c8362a;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — stack form below content, allow height to grow */
@media (max-width: 992px) {
  .sj-hero {
    height: auto;
    max-height: none;
    padding: 36px 0;
  }

  .sj-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    height: auto;
  }

  .sj-hero__form-wrap {
    justify-content: flex-start;
    height: auto;
  }

  .sj-hero__form {
    max-width: 100%;
  }

  .sj-hero__content {
    max-width: 100%;
  }

  .sj-hero__form-status {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 8px;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }

  .sj-hero__form-status.sj-show {
    max-height: 60px;
    padding: 10px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .sj-hero {
    padding: 28px 0;
  }

  .sj-hero__title {
    font-size: 25px;
  }

  .sj-hero__title-accent {
    font-size: 15px;
  }

  .sj-hero__desc {
    font-size: 13.5px;
  }

  .sj-hero__cta-group {
    flex-direction: column;
    width: 100%;
  }

  .sj-hero__btn {
    width: 100%;
    justify-content: center;
  }

  .sj-hero__field-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sj-hero__trust {
    gap: 12px;
  }

  .sj-hero__trust-label {
    font-size: 10px;
  }

  .sj-hero__overlay {
    background: linear-gradient(180deg,
        rgba(20, 31, 69, 0.848) 0%,
        rgba(20, 31, 69, 0.744) 100%);
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .sj-hero__form {
    padding: 16px;
  }

  .sj-hero__trust-divider {
    display: none;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .sj-hero__btn,
  .sj-hero__submit,
  .sj-hero__form-status {
    transition: none;
  }
}












/* SECTION */
.sj-about {
  padding: clamp(4px, 3vw, 96px) 0;
  background: var(--sj-offwhite, #f8f9fc);
  border-top: 1px solid var(--sj-border, #e8ecf4);
}

/* ── HEADING ──────────────────────────────── */
.sj-about-heading {
  text-align: left;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.sj-about-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--sj-navy, #1E2D5F);
  line-height: 1.25;
  margin-bottom: 14px;
  white-space: normal;
  hyphens: none;
  word-break: keep-all;
}

.sj-about-title-accent {
  color: var(--sj-orange, #E8541A);
  text-decoration: underline;
  text-decoration-color: var(--sj-orange, #E8541A);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.sj-about-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--sj-orange, #E8541A), var(--sj-navy, #1E2D5F));
  border-radius: 4px;
}

/* ── MAIN GRID ─────────────────────────────── */
.sj-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

/* ── LEFT — TEXT ───────────────────────────── */
.sj-about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

/* Drop-cap */
.sj-about-dropcap {
  display: inline-block;
  float: left;
  font-family: Poppins, sans-serif;
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.78;
  margin-right: 6px;
  margin-top: 8px;
  color: var(--sj-orange, #E8541A);
}

.sj-about-lead {
  font-family: Poppins, sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.8;
  color: #333;
  overflow: hidden;
  text-align: left;
}

.sj-about-body {
  font-family: Poppins, sans-serif;
  font-size: clamp(13px, 1.2vw, 14.5px);
  line-height: 1.8;
  color: var(--sj-gray-text, #5a6478);
  max-width: 68ch;
  text-align: left;
}

/* Highlight bullets */
.sj-about-highlights {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.sj-about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: Poppins, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sj-navy, #1E2D5F);
  line-height: 1.5;
}

.sj-about-highlights li i {
  color: var(--sj-orange, #E8541A);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Read More */
.sj-about-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--sj-orange, #E8541A);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.22s ease;
}

.sj-about-readmore i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.sj-about-readmore:hover {
  color: var(--sj-orange-hover, #c94012);
  gap: 12px;
}

.sj-about-readmore:hover i {
  transform: translateX(4px);
}

/* ── RIGHT — VIDEO ─────────────────────────── */
.sj-about-video-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30, 45, 95, 0.15);
}

.sj-about-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #dde1ec;
  overflow: hidden;
}

.sj-about-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Stats strip */
.sj-about-video-badge {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--sj-navy, #1E2D5F);
  padding: 18px 20px;
}

.sj-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex: 1;
}

.sj-about-stat-num {
  font-family: Poppins, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
}

.sj-about-stat-plus {
  font-size: 13px;
  font-weight: 700;
  color: var(--sj-orange, #E8541A);
  margin-top: 2px;
}

.sj-about-stat-label {
  font-family: Poppins, sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.sj-about-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* ── RESPONSIVE — TABLET ≤ 900px ──────────── */
@media (max-width: 900px) {
  .sj-about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .sj-about-video-wrap {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ── RESPONSIVE — MOBILE ≤ 600px ──────────── */
@media (max-width: 600px) {

  /* Left-align the heading block */
  .sj-about-heading {
    text-align: left;
  }

  .sj-about-title {
    font-size: 20px;
    line-height: 1.35;
  }

  /* Left-align the orange divider bar */
  .sj-about-divider {
    margin: 0;
  }

  /* Hide the <br> on desktop — only show on mobile */
  .sj-about-title .sj-title-br {
    display: block;
    /* force line break on mobile */
  }

  .sj-about-lead {
    font-size: 13.5px;
  }

  .sj-about-body {
    font-size: 13px;
  }

  .sj-about-highlights li {
    font-size: 13px;
  }

  .sj-about-video-badge {
    padding: 14px 10px;
  }

  .sj-about-stat-label {
    font-size: 9px;
    letter-spacing: 0.3px;
  }

  .sj-about-stat-num {
    font-size: 17px;
  }
}

/* ── RESPONSIVE — DESKTOP: hide the forced <br> ── */
@media (min-width: 601px) {
  .sj-about-title .sj-title-br {
    display: none;
    /* single flowing line on desktop */
  }
}

/* ── SMALL MOBILE ≤ 400px ─────────────────── */
@media (max-width: 400px) {
  .sj-about-title {
    font-size: 24px;
  }

  .sj-about-stat-divider {
    display: none;
  }

  .sj-about-divider {
    display: none;
  }

}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .sj-about-readmore,
  .sj-about-readmore i {
    transition: none;
  }
}

.sjs {
  --sjs-navy: #1E2D5F;
  --sjs-dark: #0f1a3a;
  --sjs-orange: #E8541A;
  --sjs-orange2: #c94012;
  --sjs-off: #f8f9fc;
  --sjs-border: #e8ecf4;
  --sjs-gray: #5a6478;
  --sjs-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.sjs {
  padding: clamp(56px, 7vw, 100px) 0;
  background: #fff;
  overflow: hidden;
}

[data-sjs-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--sjs-ease), transform 0.65s var(--sjs-ease);
}

[data-sjs-animate].sjs-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="80"] {
  transition-delay: 0.08s;
}

[data-delay="160"] {
  transition-delay: 0.16s;
}

.sjs-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sjs-dark) 0%, var(--sjs-navy) 60%, #2a3f7a 100%);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
}

.sjs-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sjs-hero-blob--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 84, 26, 0.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  animation: sjs-float 6s ease-in-out infinite;
}

.sjs-hero-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  bottom: 60px;
  left: -60px;
  animation: sjs-float 8s ease-in-out infinite reverse;
}

.sjs-hero-blob--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 84, 26, 0.10) 0%, transparent 70%);
  bottom: -50px;
  right: 20%;
  animation: sjs-float 7s ease-in-out infinite 1s;
}

@keyframes sjs-float {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-18px) scale(1.04)
  }
}

.sjs-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 5vw, 80px) clamp(32px, 4vw, 52px);
  gap: clamp(16px, 2vw, 22px);
}

.sjs-seal {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: sjs-spin-slow 20s linear infinite;
}

@keyframes sjs-spin-slow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.sjs-seal-core {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sjs-orange), var(--sjs-orange2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232, 84, 26, 0.50);
  animation: sjs-spin-slow 20s linear infinite reverse;
}

.sjs-seal-core i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.sjs-seal-iba {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
}

.sjs-seal-sub {
  font-family: Poppins, sans-serif;
  font-size: 6.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sjs-seal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(232, 84, 26, 0.40);
}

.sjs-seal-ring--1 {
  width: 96px;
  height: 96px;
}

.sjs-seal-ring--2 {
  width: 110px;
  height: 110px;
  border-color: rgba(255, 255, 255, 0.10);
}

.sjs-hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--sjs-orange);
  background: rgba(232, 84, 26, 0.12);
  border: 1px solid rgba(232, 84, 26, 0.25);
  padding: 5px 16px;
  border-radius: 50px;
  margin: 0;
}

.sjs-h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(26px, 5.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.5px;
}

.sjs-h2-only {
  color: var(--sjs-orange);
  font-style: italic;
}

.sjs-h2-iba {
  background: linear-gradient(90deg, var(--sjs-orange), #ff8c5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sjs-hero-sub {
  font-family: Poppins, sans-serif;
  font-size: clamp(13.5px, 1.3vw, 15.5px);
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.66);
  max-width: 700px;
  margin: 0;
}

.sjs-hero-sub strong {
  color: rgba(255, 255, 255, 0.93);
  font-weight: 600;
}

.sjs-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sjs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--sjs-orange) 0%, var(--sjs-orange2) 100%);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(232, 84, 26, 0.40);
  transition: transform 0.24s var(--sjs-ease), box-shadow 0.24s var(--sjs-ease);
  position: relative;
  overflow: hidden;
}

.sjs-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--sjs-ease);
}

.sjs-btn-primary:hover::before {
  transform: translateX(100%);
}

.sjs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 84, 26, 0.52);
}

.sjs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.sjs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.50);
  transform: translateY(-2px);
}

.sjs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--sjs-navy);
  font-family: Poppins, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--sjs-border);
  text-decoration: none;
  transition: border-color 0.22s, color 0.22s, transform 0.22s;
}

.sjs-btn-outline:hover {
  border-color: var(--sjs-orange);
  color: var(--sjs-orange);
  transform: translateY(-2px);
}

.sjs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.sjs-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-family: Poppins, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.2s, border-color 0.2s;
}

.sjs-pill:hover {
  background: rgba(232, 84, 26, 0.14);
  border-color: rgba(232, 84, 26, 0.35);
  color: rgba(255, 255, 255, 0.90);
}

.sjs-pill i {
  font-size: 9px;
  color: var(--sjs-orange);
}

.sjs-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sjs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: clamp(16px, 2vw, 24px) 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sjs-stat:last-child {
  border-right: none;
}

.sjs-stat-n {
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.sjs-stat-sym {
  font-family: Poppins, sans-serif;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 700;
  color: var(--sjs-orange);
}

.sjs-stat-l {
  font-family: Poppins, sans-serif;
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
}

.sjs-sec-tag {
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sjs-orange);
  background: rgba(232, 84, 26, 0.08);
  border: 1px solid rgba(232, 84, 26, 0.20);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.sjs-h3 {
  font-family: Poppins, sans-serif;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--sjs-navy);
  line-height: 1.25;
  margin: 0 0 10px;
  text-wrap: balance;
}

.sjs-accent {
  color: var(--sjs-orange);
}

.sjs-h3-sub {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: var(--sjs-gray);
  margin: 0;
}

.sjs-sec-head {
  margin-bottom: clamp(28px, 3vw, 48px);
}

.sjs-intro {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(28px, 3vw, 56px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.sjs-intro-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sjs-intro-text p {
  font-family: Poppins, sans-serif;
  font-size: clamp(13.5px, 1.2vw, 15px);
  line-height: 1.88;
  color: var(--sjs-gray);
  margin: 0;
}

.sjs-intro-text p strong {
  color: var(--sjs-navy);
  font-weight: 600;
}

.sjs-intro-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sjs-intro-highlight {
  background: linear-gradient(135deg, var(--sjs-navy) 0%, #2a3f7a 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.sjs-intro-highlight::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(232, 84, 26, 0.15);
  pointer-events: none;
}

.sjs-intro-quote {
  font-size: 28px;
  color: rgba(232, 84, 26, 0.50);
}

.sjs-intro-highlight p {
  font-family: Poppins, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.sjs-intro-stars {
  display: flex;
  gap: 3px;
}

.sjs-intro-stars i {
  font-size: 13px;
  color: #f59e0b;
}

.sjs-intro-highlight span {
  font-family: Poppins, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sjs-intro-checklist {
  list-style: none;
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--sjs-off);
  border: 1px solid var(--sjs-border);
  border-radius: 14px;
}

.sjs-intro-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--sjs-navy);
  transition: transform 0.2s;
}

.sjs-intro-checklist li:hover {
  transform: translateX(4px);
}

.sjs-intro-checklist li i {
  font-size: 13px;
  color: var(--sjs-orange);
  flex-shrink: 0;
}

.sjs-why {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.sjs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.sjs-card {
  background: var(--sjs-off);
  border: 1px solid var(--sjs-border);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--sjs-ease), box-shadow 0.28s var(--sjs-ease), border-color 0.28s var(--sjs-ease);
}

.sjs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(30, 45, 95, 0.13);
  border-color: rgba(232, 84, 26, 0.25);
}

.sjs-card-no {
  position: absolute;
  top: -6px;
  right: 14px;
  font-family: Poppins, sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(30, 45, 95, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.sjs-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(232, 84, 26, 0.12), rgba(232, 84, 26, 0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.sjs-card:hover .sjs-card-icon {
  background: linear-gradient(135deg, rgba(232, 84, 26, 0.22), rgba(232, 84, 26, 0.12));
  transform: scale(1.1);
}

.sjs-card-icon i {
  font-size: 20px;
  color: var(--sjs-orange);
}

.sjs-card h4 {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sjs-navy);
  line-height: 1.3;
  margin: 0;
}

.sjs-card p {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  line-height: 1.78;
  color: var(--sjs-gray);
  margin: 0;
}

.sjs-card p strong {
  color: var(--sjs-navy);
  font-weight: 600;
}

.sjs-card-line {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--sjs-orange), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--sjs-ease);
  margin-top: auto;
}

.sjs-card:hover .sjs-card-line {
  transform: scaleX(1);
}

.sjs-services-section {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.sjs-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.sjs-svc-card {
  background: #fff;
  border: 1px solid var(--sjs-border);
  border-radius: 16px;
  padding: clamp(22px, 2.5vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.28s var(--sjs-ease), box-shadow 0.28s var(--sjs-ease);
  position: relative;
  overflow: hidden;
}

.sjs-svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sjs-orange), var(--sjs-navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--sjs-ease);
}

.sjs-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(30, 45, 95, 0.11);
}

.sjs-svc-card:hover::after {
  transform: scaleX(1);
}

.sjs-svc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(232, 84, 26, 0.10), rgba(30, 45, 95, 0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.sjs-svc-card:hover .sjs-svc-icon {
  transform: scale(1.08);
}

.sjs-svc-icon i {
  font-size: 22px;
  color: var(--sjs-navy);
}

.sjs-svc-card h4 {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sjs-navy);
  line-height: 1.3;
  margin: 0;
}

.sjs-svc-card p {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  line-height: 1.78;
  color: var(--sjs-gray);
  margin: 0;
  flex: 1;
}

.sjs-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Poppins, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sjs-orange);
  text-decoration: none;
  transition: gap 0.22s;
}

.sjs-svc-link:hover {
  gap: 10px;
}

.sjs-areas {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.sjs-areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}

.sjs-areas-heading {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sjs-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}

.sjs-areas-heading i {
  color: var(--sjs-orange);
  font-size: 13px;
}

.sjs-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sjs-area-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sjs-off);
  border: 1px solid var(--sjs-border);
  border-radius: 50px;
  font-family: Poppins, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--sjs-navy);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.sjs-area-tag:hover {
  background: rgba(30, 45, 95, 0.06);
  border-color: var(--sjs-navy);
  transform: translateY(-2px);
}

.sjs-area-tag--national {
  color: var(--sjs-orange);
  background: rgba(232, 84, 26, 0.06);
  border-color: rgba(232, 84, 26, 0.20);
}

.sjs-area-tag--national:hover {
  background: rgba(232, 84, 26, 0.12);
  border-color: var(--sjs-orange);
}

.sjs-detail {
  display: grid;
  grid-template-columns: 1fr 290px;
  background: var(--sjs-off);
  border: 1px solid var(--sjs-border);
  border-radius: 20px;
  overflow: hidden;
}

.sjs-detail-left {
  padding: clamp(28px, 3vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sjs-h3-sm {
  font-family: Poppins, sans-serif;
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 800;
  color: var(--sjs-navy);
  line-height: 1.35;
  margin: 0;
}

.sjs-detail-left p {
  font-family: Poppins, sans-serif;
  font-size: clamp(13px, 1.2vw, 14.5px);
  line-height: 1.85;
  color: var(--sjs-gray);
  margin: 0;
}

.sjs-detail-left p strong {
  color: var(--sjs-navy);
  font-weight: 600;
}

.sjs-detail-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.sjs-btn-sm {
  padding: 11px 24px;
  font-size: 13.5px;
}

.sjs-detail-right {
  background: var(--sjs-navy);
  padding: clamp(28px, 3vw, 48px) 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.sjs-services-title {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(232, 84, 26, 0.40);
}

.sjs-services-title i {
  color: var(--sjs-orange);
  font-size: 14px;
}

.sjs-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sjs-services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s, transform 0.2s;
}

.sjs-services-list li:hover {
  color: #fff;
  transform: translateX(4px);
}

.sjs-services-list li i {
  font-size: 11px;
  color: var(--sjs-orange);
  flex-shrink: 0;
}

.sjs-services-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Poppins, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sjs-orange);
  text-decoration: none;
  transition: gap 0.22s;
  margin-top: 4px;
}

.sjs-services-link:hover {
  gap: 10px;
}

@media (max-width:900px) {
  .sjs-intro {
    grid-template-columns: 1fr;
  }

  .sjs-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .sjs-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sjs-areas-wrap {
    grid-template-columns: 1fr;
  }

  .sjs-detail {
    grid-template-columns: 1fr;
  }

  .sjs-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 20px;
  }

  .sjs-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .sjs-stat:nth-child(2) {
    border-right: none;
  }

  .sjs-stat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sjs-stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
  }
}

@media (max-width:580px) {
  .sjs-hero {
    border-radius: 16px;
  }

  .sjs-h2 {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .sjs-h2-br {
    display: none;
  }

  .sjs-seal {
    width: 88px;
    height: 88px;
  }

  .sjs-seal-core {
    width: 62px;
    height: 62px;
  }

  .sjs-seal-iba {
    font-size: 18px;
  }

  .sjs-seal-ring--1 {
    width: 76px;
    height: 76px;
  }

  .sjs-seal-ring--2 {
    width: 88px;
    height: 88px;
  }

  .sjs-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .sjs-btn-primary,
  .sjs-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .sjs-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .sjs-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sjs-card {
    flex-direction: row;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
  }

  .sjs-card-no {
    display: none;
  }

  .sjs-card-line {
    display: none;
  }

  .sjs-svc-grid {
    grid-template-columns: 1fr;
  }

  .sjs-services-list {
    grid-template-columns: 1fr;
  }

  .sjs-detail-btns {
    flex-direction: column;
  }

  .sjs-btn-outline,
  .sjs-btn-sm {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion:reduce) {
  [data-sjs-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sjs-seal,
  .sjs-seal-core {
    animation: none;
  }

  .sjs-hero-blob {
    animation: none;
  }

  .sjs-btn-primary::before {
    display: none;
  }
}

.sjw {
  --sjw-navy: #1E2D5F;
  --sjw-dark: #0f1a3a;
  --sjw-orange: #E8541A;
  --sjw-or2: #c94012;
  --sjw-off: #f4f6fb;
  --sjw-border: #e4e8f2;
  --sjw-gray: #5a6478;
  --sjw-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.sjw {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--sjw-off);
}

[data-sjw-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--sjw-ease), transform .65s var(--sjw-ease);
}

[data-sjw-animate].sjw-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="80"] {
  transition-delay: .08s;
}

[data-delay="160"] {
  transition-delay: .16s;
}

[data-delay="240"] {
  transition-delay: .24s;
}

[data-delay="320"] {
  transition-delay: .32s;
}

[data-delay="400"] {
  transition-delay: .40s;
}

.sjw-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(44px, 6vw, 72px);
}

.sjw-tag {
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sjw-orange);
  background: rgba(232, 84, 26, 0.08);
  border: 1px solid rgba(232, 84, 26, 0.20);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.sjw-h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  color: var(--sjw-navy);
  line-height: 1.25;
  margin: 0 0 12px;
}

.sjw-accent {
  color: var(--sjw-orange);
}

.sjw-sub {
  font-family: Poppins, sans-serif;
  font-size: clamp(13.5px, 1.2vw, 15px);
  line-height: 1.80;
  color: var(--sjw-gray);
  margin: 0;
}

.sjw-steps {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.sjw-badges-row {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.sjw-badge-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sjw-badge-wrap:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 34px);
  right: calc(-50% + 34px);
  height: 2px;
  background: linear-gradient(90deg, rgba(232, 84, 26, 0.35), rgba(232, 84, 26, 0.10));
  transform: translateY(-50%);
}

.sjw-badge-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--sjw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--sjw-orange);
  position: relative;
  z-index: 2;
  transition: background .28s var(--sjw-ease), border-color .28s, transform .28s, box-shadow .28s;
}

.sjw-badge-circle:hover {
  background: var(--sjw-orange);
  border-color: var(--sjw-orange);
  color: #fff;
  transform: scale(1.10);
  box-shadow: 0 8px 28px rgba(232, 84, 26, 0.32);
}

.sjw-badge-circle--last {
  background: linear-gradient(135deg, var(--sjw-navy), #2a3f7a);
  border-color: var(--sjw-navy);
  color: #fff;
}

.sjw-badge-circle--last:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: #f59e0b;
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.38);
}

.sjw-badge-number {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sjw-orange);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sjw-off);
  z-index: 3;
}

.sjw-badge-circle--last .sjw-badge-number {
  background: #f59e0b;
}

.sjw-content-row {
  display: flex;
  align-items: flex-start;
}

.sjw-content-item {
  flex: 1;
  padding: 0 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
}

.sjw-content-item:last-child {
  padding-right: 0;
}

.sjw-content-item h3 {
  font-family: Poppins, sans-serif;
  font-size: clamp(12.5px, 1vw, 14.5px);
  font-weight: 700;
  color: var(--sjw-navy);
  margin: 0;
  line-height: 1.3;
}

.sjw-content-item p {
  font-family: Poppins, sans-serif;
  font-size: 12px;
  line-height: 1.72;
  color: var(--sjw-gray);
  margin: 0;
}

.sjw-pts {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sjw-pts li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--sjw-gray);
}

.sjw-pts li i {
  font-size: 5px;
  color: var(--sjw-orange);
  flex-shrink: 0;
}

.sjw-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--sjw-dark) 0%, var(--sjw-navy) 60%, #2a3f7a 100%);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 36px) clamp(28px, 4vw, 52px);
}

.sjw-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sjw-cta-text>i {
  font-size: 26px;
  color: var(--sjw-orange);
  flex-shrink: 0;
}

.sjw-cta-text div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sjw-cta-text strong {
  font-family: Poppins, sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  color: #fff;
}

.sjw-cta-text span {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
}

.sjw-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sjw-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--sjw-orange), var(--sjw-or2));
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(232, 84, 26, 0.38);
  transition: transform .22s, box-shadow .22s;
  position: relative;
  overflow: hidden;
}

.sjw-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s var(--sjw-ease);
}

.sjw-btn-primary:hover::before {
  transform: translateX(100%);
}

.sjw-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 84, 26, 0.50);
}

.sjw-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: background .22s, border-color .22s, transform .22s;
}

.sjw-btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.50);
  transform: translateY(-2px);
}

@media (max-width:860px) {
  .sjw-badges-row {
    flex-wrap: wrap;
    gap: 0;
  }

  .sjw-badge-wrap {
    flex: 0 0 33.333%;
    margin-bottom: 16px;
  }

  .sjw-badge-wrap:nth-child(3)::after,
  .sjw-badge-wrap:nth-child(6)::after {
    display: none;
  }

  .sjw-content-row {
    flex-wrap: wrap;
  }

  .sjw-content-item {
    flex: 0 0 33.333%;
    padding: 0 14px 22px 0;
  }

  .sjw-content-item:nth-child(3),
  .sjw-content-item:nth-child(6) {
    padding-right: 0;
  }
}

@media (max-width:540px) {
  .sjw-badges-row {
    display: none;
  }

  .sjw-content-row {
    flex-direction: column;
    position: relative;
    padding-left: 52px;
    gap: 28px;
  }

  .sjw-content-row::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--sjw-orange), rgba(232, 84, 26, 0.08));
  }

  .sjw-content-item {
    flex: 1 1 100%;
    padding: 0;
    position: relative;
  }

  .sjw-content-item::before {
    content: attr(data-num);
    position: absolute;
    left: -52px;
    top: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sjw-orange);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sjw-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .sjw-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .sjw-btn-primary,
  .sjw-btn-outline {
    justify-content: center;
  }
}

@media (prefers-reduced-motion:reduce) {
  [data-sjw-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sjw-btn-primary::before {
    display: none;
  }
}

.sj-partner{
  margin:0;
  padding:0 0;
  background:linear-gradient(180deg,#f4f6fb 0%,#eef2fb 100%);
}
.sj-partner .sj-container{
  padding:0;
}
.sj-partner-wrap{
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid #e4e8f2;
  border-radius:28px;
  padding:clamp(20px,3vw,32px);
  box-shadow:0 14px 38px rgba(30,45,95,.08);
}
.sj-partner-wrap::before{
  content:'';
  position:absolute;
  inset:auto -60px -60px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(232,84,26,.10),transparent 70%);
  pointer-events:none;
}
.sj-partner-head{
  text-align:center;
  max-width:980px;
  margin:0 auto 20px;
}
.sj-partner-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(232,84,26,.10);
  color:#E8541A;
  font-family:Poppins,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.sj-partner-title{
  margin:0 0 12px;
  font-family:Poppins,sans-serif;
  font-size:clamp(24px,3.2vw,42px);
  line-height:1.12;
  font-weight:800;
  color:#1E2D5F;
}
.sj-partner-title span{
  display:block;
  color:#E8541A;
}
.sj-partner-text{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:clamp(14px,1.25vw,16px);
  line-height:1.9;
  color:#5a6478;
  max-width:920px;
  margin-inline:auto;
}
.sj-partner-logos{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  margin:22px auto 20px;
  max-width:820px;
}
.sj-logo-card{
  height:92px;
  border-radius:20px;
  background:#fff;
  border:1px solid #e4e8f2;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  box-shadow:0 10px 26px rgba(30,45,95,.06);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.sj-logo-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(30,45,95,.10);
  border-color:rgba(232,84,26,.18);
}
.sj-logo-card img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.sj-logo-card--brand{
  min-width:220px;
}
.sj-logo-card--shiprocket{
  min-width:220px;
}
.sj-partner-flow{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:72px;
}
.sj-partner-flow-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(135deg,#1E2D5F,#2a3f7a);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  box-shadow:0 10px 24px rgba(30,45,95,.20);
  position:relative;
}
.sj-partner-flow-icon::before,
.sj-partner-flow-icon::after{
  content:'';
  position:absolute;
  border-radius:50%;
  inset:-10px;
  border:1px solid rgba(30,45,95,.12);
}
.sj-partner-flow-icon::after{
  inset:-18px;
  border-color:rgba(232,84,26,.08);
}
.sj-partner-flow-line{
  width:2px;
  height:32px;
  background:linear-gradient(180deg,rgba(232,84,26,.60),rgba(232,84,26,.10));
  border-radius:2px;
}
.sj-partner-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:10px;
}
.sj-partner-point{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  background:#f8f9fc;
  border:1px solid #e7ebf5;
  border-radius:16px;
  font-family:Poppins,sans-serif;
  color:#1E2D5F;
  font-size:14px;
  line-height:1.65;
  box-shadow:0 6px 16px rgba(30,45,95,.04);
}
.sj-partner-point i{
  color:#E8541A;
  font-size:16px;
  flex-shrink:0;
  margin-top:2px;
}
@media (max-width:900px){
  .sj-partner-logos{
    grid-template-columns:1fr;
    gap:14px;
    max-width:540px;
  }
  .sj-partner-flow{
    width:auto;
    flex-direction:row;
    gap:10px;
  }
  .sj-partner-flow-line{
    width:32px;
    height:2px;
  }
  .sj-partner-points{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .sj-partner-wrap{
    padding:16px;
    border-radius:20px;
  }
  .sj-logo-card{
    height:72px;
  }
  .sj-logo-card--brand,
  .sj-logo-card--shiprocket{
    min-width:unset;
  }
  .sj-partner-title{
    font-size:24px;
  }
  .sj-partner-text{
    font-size:14px;
    line-height:1.75;
  }
  .sj-partner-point{
    padding:12px 14px;
    font-size:13px;
  }
}



.sj-faq{
  margin:0;
  padding:90px 0;
  background:#f4f6fb;
}
.sj-faq .sj-container{
  padding:0;
}
.sj-faq-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:22px;
  align-items:start;
  background:#fff;
  border:1px solid #e4e8f2;
  border-radius:28px;
  padding:clamp(18px,3vw,30px);
  box-shadow:0 14px 38px rgba(30,45,95,.08);
}
.sj-faq-head{
  position:sticky;
  top:92px;
  align-self:start;
  padding:8px 6px;
}
.sj-faq-tag{
  display:inline-flex;
  align-items:center;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(232,84,26,.10);
  color:#E8541A;
  font-family:Poppins,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.sj-faq-title{
  margin:0 0 12px;
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3.2vw,42px);
  line-height:1.08;
  font-weight:800;
  color:#1E2D5F;
}
.sj-faq-title span{
  color:#E8541A;
}
.sj-faq-sub{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:15px;
  line-height:1.85;
  color:#5a6478;
  max-width:300px;
}
.sj-faq-proof{
  margin-top:18px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  background:#f8f9fc;
  border:1px solid #e7ebf5;
  border-radius:16px;
  color:#1E2D5F;
  font-family:Poppins,sans-serif;
  font-size:13px;
  line-height:1.6;
}
.sj-faq-proof i{
  color:#E8541A;
  font-size:16px;
  margin-top:2px;
}
.sj-faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.sj-faq-item{
  background:#fff;
  border:1px solid #e4e8f2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(30,45,95,.04);
  transition:border-color .25s ease,box-shadow .25s ease;
}
.sj-faq-item[open]{
  border-color:rgba(232,84,26,.22);
  box-shadow:0 12px 26px rgba(232,84,26,.08);
}
.sj-faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  font-family:Poppins,sans-serif;
  font-size:15px;
  font-weight:700;
  color:#1E2D5F;
}
.sj-faq-item summary::-webkit-details-marker{
  display:none;
}
.sj-faq-item summary i{
  color:#E8541A;
  transition:transform .25s ease;
  flex-shrink:0;
}
.sj-faq-item[open] summary i{
  transform:rotate(45deg);
}
.sj-faq-body{
  padding:0 20px 18px 20px;
}
.sj-faq-body p{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#5a6478;
}
@media (max-width:900px){
  .sj-faq-grid{
    grid-template-columns:1fr;
  }
  .sj-faq-head{
    position:static;
    max-width:unset;
    padding:0 0 8px;
  }
  .sj-faq-sub{
    max-width:unset;
  }
  .sj-faq-list{
    margin-top:4px;
  }
}
@media (max-width:640px){
  .sj-faq-grid{
    padding:16px;
    border-radius:20px;
  }
  .sj-faq-item summary{
    padding:16px;
    font-size:14px;
  }
  .sj-faq-body{
    padding:0 16px 16px;
  }
  .sj-faq-body p{
    font-size:13px;
  }
}
@media (prefers-reduced-motion:reduce){
  .sj-faq-item,
  .sj-faq-item summary i{
    transition:none;
  }
}.sjr{
  margin:0;
  padding:14px 0 0;
  background:linear-gradient(180deg,#f4f6fb 0%,#eef2fb 100%);
  overflow:hidden;
  position:relative;
}
.sjr::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top left,rgba(232,84,26,.08),transparent 28%),
             radial-gradient(circle at bottom right,rgba(30,45,95,.06),transparent 24%);
  pointer-events:none;
}
.sj-container{
  position:relative;
  z-index:1;
}
.sjr-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  padding:0 16px;
  max-width:1400px;
  margin:0 auto 18px;
}
.sjr-head-left{
  max-width:760px;
}
.sjr-tag{
  display:inline-flex;
  align-items:center;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(232,84,26,.10);
  color:#E8541A;
  font-family:Poppins,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.sjr-title{
  margin:0 0 10px;
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3.5vw,48px);
  line-height:1.05;
  font-weight:800;
  color:#1E2D5F;
}
.sjr-title span{
  color:#E8541A;
}
.sjr-sub{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:15px;
  line-height:1.85;
  color:#5a6478;
  max-width:720px;
}
.sjr-head-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.sjr-count{
  background:#fff;
  border:1px solid #e4e8f2;
  border-radius:18px;
  padding:12px 14px;
  box-shadow:0 10px 22px rgba(30,45,95,.06);
  min-width:120px;
  text-align:left;
}
.sjr-count strong{
  display:block;
  font-family:Poppins,sans-serif;
  font-size:18px;
  line-height:1;
  color:#1E2D5F;
}
.sjr-count span{
  display:block;
  margin-top:4px;
  font-family:Poppins,sans-serif;
  font-size:12px;
  color:#5a6478;
}
.sjr-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#E8541A,#c94012);
  color:#fff;
  text-decoration:none;
  font-family:Poppins,sans-serif;
  font-size:13.5px;
  font-weight:700;
  box-shadow:0 8px 24px rgba(232,84,26,.24);
  transition:transform .22s ease,box-shadow .22s ease;
}
.sjr-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(232,84,26,.32);
}
.sjr-marquee-wrap{
  width:100vw;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  padding:12px 0 22px;
  position:relative;
}
.sjr-marquee-wrap::before,
.sjr-marquee-wrap::after{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  width:90px;
  z-index:2;
  pointer-events:none;
}
.sjr-marquee-wrap::before{
  left:0;
  background:linear-gradient(90deg,#eef2fb,transparent);
}
.sjr-marquee-wrap::after{
  right:0;
  background:linear-gradient(270deg,#eef2fb,transparent);
}
.sjr-marquee{
  display:flex;
  width:max-content;
  gap:16px;
  padding:0 28px;
}
.sjr-track{
  display:flex;
  gap:16px;
  flex:0 0 auto;
}
.sjr-card{
  width:340px;
  flex:0 0 auto;
  background:#fff;
  border:1px solid #e4e8f2;
  border-radius:26px;
  padding:18px 18px 16px;
  box-shadow:0 12px 26px rgba(30,45,95,.07);
  position:relative;
  overflow:hidden;
}
.sjr-card::before{
  content:'';
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,#E8541A,#2a3f7a);
}
.sjr-card-top{
  display:grid;
  grid-template-columns:50px 1fr auto;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}
.sjr-avatar{
  width:50px;
  height:50px;
  border-radius:16px;
  background:linear-gradient(135deg,#1E2D5F,#2a3f7a);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Poppins,sans-serif;
  font-weight:800;
  letter-spacing:.5px;
  box-shadow:0 8px 18px rgba(30,45,95,.18);
}
.sjr-card-top h3{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:15px;
  font-weight:700;
  color:#1E2D5F;
}
.sjr-card-top span{
  font-family:Poppins,sans-serif;
  font-size:12px;
  color:#5a6478;
}
.sjr-stars{
  display:flex;
  gap:3px;
  color:#f59e0b;
  font-size:13px;
  justify-self:end;
}
.sjr-card p{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#5a6478;
}
@keyframes sjr-move{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.sjr-marquee{
  animation:sjr-move 42s linear infinite;
}
.sjr:hover .sjr-marquee{
  animation-play-state:paused;
}
@media (max-width:900px){
  .sjr-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .sjr-head-right{
    justify-content:flex-start;
  }
  .sjr-card{
    width:300px;
  }
  .sjr-marquee{
    animation-duration:34s;
  }
}
@media (max-width:640px){
  .sjr-card{
    width:260px;
    padding:16px;
  }
  .sjr-card-top{
    grid-template-columns:42px 1fr;
  }
  .sjr-stars{
    grid-column:1/-1;
    justify-self:start;
    margin-top:2px;
  }
  .sjr-marquee-wrap::before,
  .sjr-marquee-wrap::after{
    width:42px;
  }
  .sjr-btn{
    width:100%;
    justify-content:center;
  }
}
@media (prefers-reduced-motion:reduce){
  .sjr-marquee,
  .sjr-btn{
    animation:none;
    transition:none;
  }
}.sj-cta{
  margin:2px 0 0;
  padding:0;
  background:linear-gradient(180deg,#eef2fb 0%,#f8f9fd 100%);
}
.sj-cta .sj-container{
  padding:0;
}
.sj-cta-wrap{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:18px;
  align-items:center;
  background:linear-gradient(135deg,#ffffff 0%,#f7f8fc 100%);
  border:1px solid #e4e8f2;
  border-radius:28px;
  padding:clamp(22px,3vw,34px);
  box-shadow:0 14px 34px rgba(30,45,95,.08);
  position:relative;
  overflow:hidden;
}
.sj-cta-wrap::before{
  content:'';
  position:absolute;
  right:-80px;
  top:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(232,84,26,.12),transparent 70%);
  pointer-events:none;
}
.sj-cta-left{
  max-width:760px;
}
.sj-cta-tag{
  display:inline-flex;
  align-items:center;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(232,84,26,.10);
  color:#E8541A;
  font-family:Poppins,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.sj-cta-title{
  margin:0 0 12px;
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3.4vw,44px);
  line-height:1.05;
  font-weight:800;
  color:#1E2D5F;
}
.sj-cta-title span{
  color:#E8541A;
}
.sj-cta-text{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:15px;
  line-height:1.85;
  color:#5a6478;
  max-width:640px;
}
.sj-cta-note{
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  background:#fff;
  border:1px solid #e7ebf5;
  border-radius:14px;
  color:#1E2D5F;
  font-family:Poppins,sans-serif;
  font-size:13px;
  font-weight:600;
  box-shadow:0 8px 18px rgba(30,45,95,.05);
}
.sj-cta-note i{
  color:#E8541A;
}
.sj-cta-right{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
  justify-content:center;
}
.sj-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 18px;
  border-radius:999px;
  text-decoration:none;
  font-family:Poppins,sans-serif;
  font-size:14px;
  font-weight:700;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease;
}
.sj-cta-btn:hover{
  transform:translateY(-2px);
}
.sj-cta-btn-primary{
  background:linear-gradient(135deg,#E8541A,#c94012);
  color:#fff;
  box-shadow:0 10px 24px rgba(232,84,26,.24);
}
.sj-cta-btn-primary:hover{
  box-shadow:0 14px 30px rgba(232,84,26,.30);
}
.sj-cta-btn-secondary{
  background:#fff;
  color:#1E2D5F;
  border:1.5px solid #dbe2f1;
  box-shadow:0 8px 18px rgba(30,45,95,.05);
}
.sj-cta-btn-secondary:hover{
  border-color:rgba(232,84,26,.18);
}
.sj-cta-mini{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:#f8f9fc;
  border:1px solid #e7ebf5;
  color:#5a6478;
  font-family:Poppins,sans-serif;
  font-size:12.5px;
  line-height:1.6;
}
.sj-cta-mini i{
  color:#E8541A;
  font-size:15px;
  margin-top:2px;
  flex-shrink:0;
}
@media (max-width:900px){
  .sj-cta-wrap{
    grid-template-columns:1fr;
  }
  .sj-cta-right{
    max-width:520px;
  }
}
@media (max-width:640px){
  .sj-cta-wrap{
    padding:18px;
    border-radius:20px;
  }
  .sj-cta-title{
    font-size:24px;
  }
  .sj-cta-text{
    font-size:14px;
    line-height:1.75;
  }
  .sj-cta-btn{
    padding:13px 16px;
    font-size:13.5px;
  }
}
@media (prefers-reduced-motion:reduce){
  .sj-cta-btn{
    transition:none;
  }
}.sj-cta3{
  margin:50px 0 0;
  padding:0;
  background:#fff;
}
.sj-cta3 .sj-container{
  padding:0;
}
.sj-cta3-wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:center;
  background:#fff;
  border:1px solid #edf0f6;
  border-radius:28px;
  padding:clamp(24px,3vw,36px);
  box-shadow:0 10px 28px rgba(30,45,95,.06);
  position:relative;
  overflow:hidden;
}
.sj-cta3-wrap::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#E8541A,#f59e0b,#2a3f7a);
}
.sj-cta3-left{
  position:relative;
  z-index:1;
  max-width:760px;
}
.sj-cta3-kicker{
  display:inline-flex;
  align-items:center;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(232,84,26,.08);
  color:#E8541A;
  font-family:Poppins,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.sj-cta3-title{
  margin:0 0 12px;
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,3.5vw,46px);
  line-height:1.04;
  font-weight:800;
  color:#1E2D5F;
}
.sj-cta3-title span{
  color:#E8541A;
}
.sj-cta3-text{
  margin:0;
  font-family:Poppins,sans-serif;
  font-size:15px;
  line-height:1.9;
  color:#5a6478;
  max-width:620px;
}
.sj-cta3-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.sj-cta3-point{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #edf0f6;
  font-family:Poppins,sans-serif;
  font-size:13px;
  font-weight:600;
  color:#1E2D5F;
}
.sj-cta3-point i{
  color:#E8541A;
}
.sj-cta3-right{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}
.sj-cta3-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius:22px;
  background:#f9fbff;
  border:1px solid #edf0f6;
  box-shadow:0 8px 18px rgba(30,45,95,.04);
}
.sj-cta3-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#1E2D5F,#2a3f7a);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 8px 18px rgba(30,45,95,.16);
  flex-shrink:0;
}
.sj-cta3-card-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.sj-cta3-card-text strong{
  font-family:Poppins,sans-serif;
  font-size:16px;
  color:#1E2D5F;
}
.sj-cta3-card-text span{
  font-family:Poppins,sans-serif;
  font-size:13px;
  color:#5a6478;
}
.sj-cta3-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.sj-cta3-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 18px;
  border-radius:999px;
  text-decoration:none;
  font-family:Poppins,sans-serif;
  font-size:14px;
  font-weight:700;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease;
}
.sj-cta3-btn:hover{
  transform:translateY(-2px);
}
.sj-cta3-btn-primary{
  background:linear-gradient(135deg,#E8541A,#c94012);
  color:#fff;
  box-shadow:0 10px 24px rgba(232,84,26,.22);
}
.sj-cta3-btn-secondary{
  background:#fff;
  color:#1E2D5F;
  border:1.5px solid #dbe2f1;
  box-shadow:0 8px 18px rgba(30,45,95,.04);
}
.sj-cta3-btn-secondary:hover{
  border-color:rgba(232,84,26,.18);
}
@media (max-width:900px){
  .sj-cta3-wrap{
    grid-template-columns:1fr;
  }
  .sj-cta3-actions{
    grid-template-columns:1fr;
  }
  .sj-cta3-right{
    max-width:560px;
  }
}
@media (max-width:640px){
  .sj-cta3-wrap{
    padding:18px;
    border-radius:22px;
  }
  .sj-cta3-title{
    font-size:24px;
  }
  .sj-cta3-text{
    font-size:14px;
    line-height:1.75;
  }
  .sj-cta3-point{
    font-size:12px;
    padding:9px 12px;
  }
  .sj-cta3-card{
    padding:14px;
    border-radius:18px;
  }
  .sj-cta3-icon{
    width:46px;
    height:46px;
    font-size:18px;
  }
  .sj-cta3-btn{
    padding:13px 16px;
    font-size:13.5px;
  }
}
@media (prefers-reduced-motion:reduce){
  .sj-cta3-btn,
  .sj-cta3-point{
    transition:none;
  }
}.sjf{
  background:#1E2D5F;
  color:#fff;
  padding:46px 0 18px;
  margin:50px 0 0;
  position:relative;
  overflow:hidden;
}
.sjf::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 15% 15%,rgba(232,84,26,.14),transparent 22%),
             radial-gradient(circle at 85% 10%,rgba(255,255,255,.08),transparent 18%),
             radial-gradient(circle at 70% 90%,rgba(232,84,26,.10),transparent 20%);
  pointer-events:none;
}
.sjf .sj-container{
  padding:0;
  position:relative;
  z-index:1;
}
.sjf-grid{
  display:grid;
  grid-template-columns:1.2fr 1.1fr 1.2fr .9fr;
  gap:42px;
  padding:0 18px 28px;
}
.sjf-col h3{
  margin:0 0 18px;
  font-family:Poppins,sans-serif;
  font-size:16px;
  font-weight:800;
  letter-spacing:.5px;
  color:#fff;
  text-transform:uppercase;
  position:relative;
}
.sjf-col h3::after{
  content:'';
  display:block;
  width:46px;
  height:2px;
  background:#E8541A;
  margin-top:10px;
  border-radius:2px;
}
.sjf-col ul{
  list-style:none;
  padding:0;
  margin:0;
}
.sjf-col ul li a,
.sjf-office p,
.sjf-office strong,
.sjf-hours li,
.sjf-extra p{
  font-family:Poppins,sans-serif;
}
.sjf-col ul li a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.22);
  transition:color .2s ease,border-color .2s ease,transform .2s ease;
}
.sjf-col ul li a:hover{
  color:#f7b73e;
  border-bottom-color:rgba(255,255,255,.48);
  transform:translateX(2px);
}
.sjf-office strong{
  display:block;
  font-size:15px;
  font-weight:800;
  margin-bottom:10px;
  color:#fff;
}
.sjf-office p{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.6;
  color:#f3f3f3;
}
.sjf-office i{
  margin-right:8px;
  color:#fff;
}
.sjf-office a{
  color:#fff;
  text-decoration:none;
}
.sjf-office a:hover{
  color:#f7b73e;
}
.sjf-hours{
  list-style:none;
  margin:0;
  padding:0;
}
.sjf-hours li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:9px 0;
  font-size:14px;
  border-bottom:1px dashed rgba(255,255,255,.22);
  color:#f5f7ff;
}
.sjf-hours li span:last-child{
  text-align:right;
}
.sjf-extra{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.14);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding-left:18px;
  padding-right:18px;
}
.sjf-extra-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px 14px 12px;
}
.sjf-extra-card h4{
  margin:0 0 8px;
  font-family:Poppins,sans-serif;
  font-size:13px;
  font-weight:800;
  letter-spacing:.4px;
  color:#fff;
  text-transform:uppercase;
}
.sjf-extra-card p{
  margin:0 0 8px;
  font-size:13px;
  line-height:1.7;
  color:#edf1ff;
}
.sjf-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.sjf-social a{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  transition:transform .2s ease,background .2s ease;
}
.sjf-social a:hover{
  transform:translateY(-2px);
  background:rgba(232,84,26,.25);
}
.sjf-bottom{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.14);
  padding:16px 18px 0;
  flex-wrap:wrap;
  margin-top:16px;
}
.sjf-copy{
  font-family:Poppins,sans-serif;
  font-size:13px;
  color:#f1f1f1;
}
.sjf-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.sjf-links a{
  font-family:Poppins,sans-serif;
  font-size:13px;
  color:#fff;
  text-decoration:underline;
  opacity:.95;
}
.sjf-links a:hover{
  color:#f7b73e;
}
.sjf-extra p a{
  color:#fff;
  text-decoration:none;
}
.sjf-extra p a:hover{
  color:#f7b73e;
}
.sjf-extra p i{
  margin-right:8px;
  color:#fff;
}
@media (max-width:980px){
  .sjf-grid{
    grid-template-columns:repeat(2,1fr);
    gap:28px;
  }
  .sjf-extra{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .sjf{
    padding:30px 0 16px;
    margin-top:50px;
  }
  .sjf-grid{
    grid-template-columns:1fr;
    gap:22px;
    padding:0 16px 22px;
  }
  .sjf-extra{
    padding-left:16px;
    padding-right:16px;
  }
  .sjf-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .sjf-links{
    gap:10px 14px;
  }
}
@media (prefers-reduced-motion:reduce){
  .sjf-col ul li a,
  .sjf-social a{
    transition:none;
  }
}